/*
Theme Name: The Parlour
Theme URI: https://theparlour.co
Author: Yoni Mazuz
Description: Custom theme for The Parlour ice cream shop.
Version: 0.9.6
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: the-parlour
Tags: woocommerce, custom

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
	font-family: 'jimmy-headline';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('fonts/jimmy-headline.woff2') format('woff2');
}

@font-face {
	font-family: 'Albert Sans';
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url('fonts/albert-sans-vwght.woff2') format('woff2-variations');
}

@font-face {
	font-family: 'Albert Sans';
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url('fonts/albert-sans-italic-vwght.woff2') format('woff2-variations');
}

/*--------------------------------------------------------------
# Custom Properties
--------------------------------------------------------------*/

:root {
	--color-cream:      #FDFBF6;
	--color-brown:      #514735;
	--color-pink:       #F79D9A;
	--color-pale-pink:  #FAE8E7;
	--color-black:      #1a1a1a;
	--color-white:      #ffffff;

	--font-display: 'jimmy-headline', serif;
	--font-body:    'Albert Sans', sans-serif;

	--content-width: 1200px;
	--gap: 1.5rem;
}

/*--------------------------------------------------------------
# Reset / Base
--------------------------------------------------------------*/

*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	background-color: var(--color-cream);
	color: var(--color-brown);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-brown);
	text-decoration: none;
}

a:hover {
	color: var(--color-pink);
}

/* Pink links inside prose content */
.entry-content a {
	color: var(--color-pink);
}

.entry-content a:hover {
	opacity: 0.75;
	color: var(--color-pink);
}

.entry-content a {
	font-weight:700;
}



/* Remove bullets/numbers from all lists outside of prose content.
   Actual article/page content gets bullets via .entry-content below. */
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Restore sensible defaults inside prose — but not plugin/theme UI lists */
.entry-content ul:not(.flavors-list),
.entry-content ol {
	margin: 0 0 1rem 1.5rem;
}

.entry-content ul:not(.flavors-list) {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 0.25em;
}

/* Flavors list inside entry-content: always no bullets, don't touch padding */
.entry-content .flavors-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.entry-content .flavors-list li {
	list-style: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 0.3em;
}

/* Jimmy needs breathing room — keep it big */
h1 { font-size: clamp(2.2rem, 5vw,   3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.05rem; }

p {
	margin-top: 0;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/

.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.site-content {
	flex: 1;
}

.container {
	max-width: var(--content-width);
	margin-inline: auto;
	padding-inline: var(--gap);
}

/*--------------------------------------------------------------
# Pre-header / Top Bar
--------------------------------------------------------------*/

.pre-header {
	background: var(--color-brown);
	color: var(--color-cream);
	font-size: 0.9rem;
	padding: 0.35rem 0;
	text-align: center;
	border-bottom: 3px solid var(--color-pink);
}

.pre-header a {
	color: var(--color-pink);
	font-weight: 500;
	text-decoration: none;
}

.pre-header a:hover {
	color: var(--color-pink);
}

/* Inline widgets side by side */
.pre-header .container {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 0 1.5rem;
}

.pre-header .widget {
	display: contents;
}

.pre-header p {
	margin: 0;
}

.pre-header-social {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.pre-header-social .pre-header-social-link {
	font-size: 1.1rem;
	line-height: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

.site-header {
	background: var(--color-cream);
	border-bottom: 1px solid rgba(81, 71, 53, 0.15);
	padding: 0.75rem 0;
	position: sticky;
	top: 0;
	z-index: 500;
	transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
	padding: 0.35rem 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.site-header .container {
	display: flex;
	align-items: center;
	gap: var(--gap);
}

.main-navigation {
	margin-left: auto;
}

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	text-decoration: none;
	display: block;
	line-height: 0;
}

/* Constrain the badge logo — looks great, just needs a leash */
.site-header .custom-logo {
	height: 130px;
	width: auto;
	transition: height 0.3s ease;
}

.site-header.is-scrolled .custom-logo {
	height: 90px;
}

@media (max-width: 768px) {
	.site-header .custom-logo {
		height: 80px;
	}

	.site-header.is-scrolled .custom-logo {
		height: 60px;
	}
}

.site-title {
	font-family: var(--font-display);
	font-size: 2rem;
	margin: 0;
}

.site-title a {
	color: var(--color-brown);
	text-decoration: none;
}

/* Hide page title on front page — the hero handles it */
.home .entry-title {
	display: none;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: center;
}

.main-navigation li {
	margin: 0;
	padding: 0;
	position: relative;
}

.main-navigation a {
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 1.45rem;
	letter-spacing: 0.02em;
	white-space: nowrap;
}

.main-navigation a:hover {
	color: var(--color-pink);
}

/* Active / current page highlight */
.main-navigation .current-menu-item > a,
.main-navigation .current-page-ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: var(--color-pink);
}

/* Dropdown submenus */
.main-navigation .menu-item-has-children > a::after {
	content: ' ▾';
	font-size: 0.75em;
	opacity: 0.55;
	font-family: var(--font-body);
}

.main-navigation .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-cream);
	border: 1px solid rgba(81, 71, 53, 0.15);
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	min-width: 180px;
	z-index: 150;
	flex-direction: column;
	padding: 0.25rem 0;
}

.main-navigation .menu-item-has-children:hover > .sub-menu,
.main-navigation .menu-item-has-children:focus-within > .sub-menu {
	display: flex;
}

.main-navigation .sub-menu li {
	width: 100%;
}

.main-navigation .sub-menu a {
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 1rem;
	text-align: center;
	border-bottom: 1px solid rgba(81, 71, 53, 0.06);
	white-space: nowrap;
}

.main-navigation .sub-menu li:last-child a {
	border-bottom: none;
}

/* Header icons cluster */
.header-icons {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

/* Account menu */
.account-menu {
	position: relative;
}

.account-toggle {
	background: none;
	border: none;
	padding: 0.25rem;
	cursor: pointer;
	color: var(--color-brown);
	display: flex;
	align-items: center;
}

.account-toggle:hover {
	color: var(--color-pink);
}

.account-icon {
	width: 26px;
	height: 26px;
	display: block;
}

.account-dropdown {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	background: var(--color-cream);
	border: 1px solid rgba(81, 71, 53, 0.15);
	border-radius: 4px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	min-width: 140px;
	z-index: 200;
}

.account-dropdown.is-open {
	display: block;
}

.account-dropdown li {
	border-bottom: 1px solid rgba(81, 71, 53, 0.08);
}

.account-dropdown li:last-child {
	border-bottom: none;
}

.account-dropdown a {
	display: block;
	padding: 0.6rem 1rem;
	font-size: 0.9rem;
	text-decoration: none;
	color: var(--color-brown);
	white-space: nowrap;
}

.account-dropdown a:hover {
	background: rgba(247, 157, 154, 0.15);
	color: var(--color-brown);
}

/* Cart link — only visible when cart has items */
.cart-fragment {
	display: none;
}

.cart-fragment.cart-has-items {
	display: block;
}

.cart-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--color-brown);
	padding: 0.25rem;
}

.cart-link:hover {
	color: var(--color-pink);
}

.cart-icon {
	width: 26px;
	height: 26px;
	display: block;
}

.cart-count {
	position: absolute;
	top: -4px;
	right: -6px;
	background: var(--color-pink);
	color: var(--color-white);
	font-family: var(--font-body);
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}


/* Hamburger button — hidden on desktop */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	padding: 0.5rem;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--color-brown);
	transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Open state */
.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
	opacity: 0;
}
.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
	.menu-toggle {
		display: flex;
	}

	.main-navigation #primary-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--color-cream);
		border-top: 1px solid rgba(81, 71, 53, 0.15);
		border-bottom: 1px solid rgba(81, 71, 53, 0.15);
		flex-direction: column;
		gap: 0;
		padding: 0.5rem 0;
		z-index: 100;
	}

	.main-navigation #primary-menu.is-open {
		display: flex;
	}

	.main-navigation #primary-menu li {
		width: 100%;
	}

	.main-navigation #primary-menu a {
		display: block;
		padding: 0.75rem 1.5rem;
		border-bottom: 1px solid rgba(81, 71, 53, 0.08);
	}

	/* Sub-menus on mobile: flat, indented, always visible under parent */
	.main-navigation .sub-menu {
		display: flex !important;
		position: static;
		flex-direction: column;
		box-shadow: none;
		border: none;
		border-radius: 0;
		min-width: 0;
		background: transparent;
		padding: 0;
		transform: none;
	}

	.main-navigation .sub-menu a {
		padding: 0.5rem 1.5rem 0.5rem 2.5rem;
		font-size: 1rem;
		text-align: left;
		color: rgba(81, 71, 53, 0.7);
	}

	/* Drop the chevron on mobile — items are always visible */
	.main-navigation .menu-item-has-children > a::after {
		display: none;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background: var(--color-pale-pink);
	color: var(--color-brown);
	padding: 3rem 0;
}

.site-footer a {
	color: var(--color-pink);
}

.site-footer a:hover {
	color: var(--color-pink);
}

.footer-widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: calc(var(--gap) * 2);
}

/* Jetpack Instagram gallery block */
.wp-block-jetpack-instagram-gallery {
	margin-bottom: 1.5rem;
}

.footer-widget-area .widget-title {
	font-size: 1rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
	color: var(--color-brown);
	opacity: 0.6;
}

/* Footer sub-bar — brown strip at the very bottom */
.footer-sub {
	background: var(--color-brown);
	padding: 0.65rem 0;
}

.footer-sub .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--gap);
	flex-wrap: wrap;
}

.footer-sub-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.footer-sub-nav a {
	color: var(--color-cream);
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 0.95rem;
}

.footer-sub-nav a:hover {
	color: var(--color-pink);
}

.site-info {
	font-size: 0.8rem;
	color: var(--color-cream);
	opacity: 0.7;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.footer-sub .container {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-info {
		white-space: normal;
	}
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

.button,
button,
input[type="submit"] {
	display: inline-block;
	background: var(--color-pink);
	color: var(--color-white);
	border: none;
	border-bottom: 3px solid rgba(0, 0, 0, 0.15);
	border-radius: 2em;
	padding: 0.6em 1.5em 0.65em;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
	opacity: 0.85;
	color: var(--color-white);
}

/* Block editor buttons — brand style but case as typed, semibold */
.wp-block-button__link {
	display: inline-block;
	background: var(--color-pink);
	color: var(--color-white);
	border: none;
	border-bottom: 3px solid rgba(0, 0, 0, 0.15);
	border-radius: 2em;
	padding: 0.6em 1.5em 0.65em;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: none;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.wp-block-button__link:hover {
	opacity: 0.85;
	color: var(--color-white);
}

/* Buttons inside a Cover/hero block — smaller, semibold, case as typed */
.wp-block-cover .wp-block-button__link {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 0.55em 1.4em 0.6em;
	letter-spacing: 0.03em;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
textarea,
select {
	width: 100%;
	padding: 0.5em 0.75em;
	border: 1px solid rgba(81, 71, 53, 0.3);
	border-radius: 3px;
	background: var(--color-white);
	color: var(--color-brown);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.5;
}

input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--color-pink);
	outline-offset: 1px;
	border-color: var(--color-pink);
}

label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.25em;
}

/*--------------------------------------------------------------
# Dividers
--------------------------------------------------------------*/

/* 2-tone brand divider: pink over brown, 4px total */
hr,
.wp-block-separator:not(.is-style-dots) {
	border: none;
	width: 100%;
	height: 4px;
	background: linear-gradient(to bottom, var(--color-pink) 50%, var(--color-brown) 50%);
	margin: 1.75rem auto;
}

/* Override WP's opacity fade on separators */
.wp-block-separator.has-css-opacity,
.wp-block-separator.has-alpha-channel-opacity {
	opacity: 1;
}

/* Inverted variant: brown over pink — add class "is-style-inverted" in block editor */
.wp-block-separator.is-style-inverted {
	background: linear-gradient(to bottom, var(--color-brown) 50%, var(--color-pink) 50%);
}

/* Dots: leave as plain text, just brand the color */
.wp-block-separator.is-style-dots {
	background: none;
	border: none;
	height: auto;
	text-align: center;
	color: var(--color-pink);
	margin: 1.75rem auto;
}

/* Wave/ripple edge — applies to the Group block BELOW a hero/Cover block.
 * Same technique as Enfold: in-flow ::before with repeat-x PNG, top: -34px.
 * Set block spacing above to 0 in the editor for a seamless join. */
.wp-block-group.is-style-scallop-top::before,
.wp-block-group.is-style-scallop-top-pale-pink::before {
	content: '';
	display: block;
	position: relative;
	top: -34px;
	margin-bottom: -34px;
	width: 100%;
	height: 34px;
	background-repeat: repeat-x;
	background-size: auto 34px;
	pointer-events: none;
}

.wp-block-group.is-style-scallop-top::before {
	background-image: url("assets/images/ripple-cream.png");
}

.wp-block-group.is-style-scallop-top-pale-pink::before {
	background-image: url("assets/images/ripple-pink.png");
}

/*--------------------------------------------------------------
# Blocks
--------------------------------------------------------------*/

/*
 * Gutenberg block layout — the > child selector is the whole trick.
 * Direct children of .entry-content get the gutter treatment.
 * Nested content (inside Group, Cover, Columns, etc.) is untouched —
 * it just gets whatever padding its parent block provides.
 */

/* Side gutter on the content area itself */
.entry-content {
	padding-left: var(--gap);
	padding-right: var(--gap);
	box-sizing: border-box;
}

/* Every top-level block: constrained to content width, centered */
.entry-content > * {
	max-width: var(--content-width);
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

/* Wide alignment: broader than content, still inset from edges */
.entry-content > .alignwide {
	max-width: 1400px;
}

/* Full-width: undo the parent's side padding to reach the viewport edges.
   Uses calc() on the known padding — avoids the 100vw scrollbar problem. */
.entry-content > .alignfull {
	width: calc( 100% + 2 * var(--gap) );
	max-width: calc( 100% + 2 * var(--gap) );
	margin-left: calc( -1 * var(--gap) );
	margin-right: calc( -1 * var(--gap) );
}

/* Navigation block — inline/sub-page nav inserted via the block editor.
   Distinct from .main-navigation (header, uses wp_nav_menu).
   Jimmy Headline at a step below the top nav's 1.45rem. */
.wp-block-navigation .wp-block-navigation-item__content {
	font-family: var(--font-display);
	font-size: 1.15rem;
	letter-spacing: 0.02em;
	text-decoration: none;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
	color: var(--color-pink);
}

/* Hero cover block — tame the text and buttons on small screens */
@media (max-width: 768px) {
	.wp-block-cover .wp-block-heading,
	.wp-block-cover h1,
	.wp-block-cover h2 {
		font-size: clamp(1.8rem, 8vw, 3rem);
	}

	.wp-block-cover .wp-block-buttons .wp-block-button__link {
		font-size: 0.85rem;
		padding: 0.5em 1.1em;
	}
}

/*--------------------------------------------------------------
# WooCommerce
--------------------------------------------------------------*/

/* Kill the WooCommerce purple — override with our palette */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order,
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce .button.wc-forward {
	background-color: var(--color-pink) !important;
	color: var(--color-white) !important;
	border-color: var(--color-pink) !important;
	border-radius: 2em;
	font-family: var(--font-body);
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce #payment #place_order:hover,
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover {
	background-color: var(--color-brown) !important;
	border-color: var(--color-brown) !important;
	color: var(--color-cream) !important;
	opacity: 1;
}

/* WooCommerce links */
.woocommerce a,
.woocommerce-page a {
	color: var(--color-brown);
}

.woocommerce a:hover,
.woocommerce-page a:hover {
	color: var(--color-pink);
}

/* Star ratings */
.woocommerce .star-rating span::before,
.woocommerce .star-rating::before {
	color: var(--color-pink);
}

/* Sale badge */
.woocommerce span.onsale {
	background-color: var(--color-pink);
}

/* Price */
.woocommerce .price ins,
.woocommerce .price .amount {
	color: var(--color-brown);
}

/* Notices */
.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--color-pink) !important;
}

.woocommerce-message::before,
.woocommerce-info::before {
	color: var(--color-pink) !important;
}

/* Tighten up WooCommerce form fields */
.woocommerce-checkout .form-row,
.woocommerce-billing-fields .form-row,
.woocommerce-shipping-fields .form-row,
.woocommerce-account-fields .form-row {
	margin-bottom: 0.75rem;
}

.woocommerce form .form-row label {
	margin-bottom: 0.25em;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
	padding: 0.5em 0.75em;
	line-height: 1.5;
}

/*--------------------------------------------------------------
# Flavors List
--------------------------------------------------------------*/

.flavors-list {
	max-width: 600px;
	margin-inline: auto;
}

.flavor-row {
	padding: 0.5rem 1.25rem;
	text-align: center;
}

.flavor-row--even {
	background: rgba(247, 157, 154, 0.1); /* light pink tint */
}

.flavor-row--odd {
	background: transparent;
}

.flavor-name {
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	margin: 0;
	display: inline;
}

.flavor-vegan-tag {
	display: inline-flex;
	align-items: center;
	margin-right: 0.4em;
	vertical-align: 0.1em;
}

.flavor-vegan-tag svg {
	width: 1.2em;
	height: 1.2em;
}

.flavor-description {
	font-size: 0.875rem;
	color: rgba(81, 71, 53, 0.65);
	margin: 0;
}

.flavor-description p {
	margin: 0;
}

/* Legend below the list */
.flavors-legend {
	max-width: 600px;
	margin: 0.75rem auto 0;
	font-size: 1rem;
	color: rgba(81, 71, 53, 0.6);
	display: flex;
	align-items: center;
	gap: 0.4em;
	justify-content: center;
}

.flavors-legend svg {
	width: 1.2em;
	height: 1.2em;
	flex-shrink: 0;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}
