/*!
Theme Name: Kids Candy & Slush
Theme URI: https://kidscandyandslush.local/
Author: Kids Candy & Slush
Description: A modern Bootstrap and WooCommerce storefront for colorful candy and gift-ready treats.
Version: 2.4.0
Requires PHP: 7.4
Text Domain: kidscandyandslush_theme
*/

/* 1. Design tokens: edit brand colors, type, and page width here. */
:root {
	--ink: #1e1720;
	--muted: #675c66;
	--paper: #fffdfa;
	--cream: #fff6e7;
	--pink-soft: #fcebf0;
	--blue-soft: #e9f5fa;
	--pink: #db3866;
	--pink-dark: #b7244e;
	--teal: #198eba;
	--teal-dark: #116581;
	--yellow: #ffd65a;
	--border: #e9dfe5;
	--white: #fff;
	--dot-blue: #2f97cf;
	--dot-pink: #dd4778;
	--dot: rgba(255, 255, 255, 0.12);
	--panel: rgba(255, 253, 250, 0.96);
	--font-body: "DM Sans", "Avenir Next", sans-serif;
	--font-display: "Fraunces", Georgia, serif;
	--shadow: 0 18px 50px rgba(63, 31, 51, 0.09);
	--radius: 8px;
	--page-width: 1240px;
	--gutter: clamp(20px, 4vw, 56px);
}

/* 2. Reset and base elements. */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background-color: var(--dot-blue);
	/* Brand wallpaper: blue left / pink right with staggered circles. */
	background-image:
		radial-gradient(circle, var(--dot) 22px, transparent 23px),
		radial-gradient(circle, var(--dot) 22px, transparent 23px),
		linear-gradient(90deg, var(--dot-blue) 49.4%, var(--dot-pink) 50.6%);
	background-size: 96px 176px, 96px 176px, 100% 100%;
	background-position: 0 0, 48px 88px, 0 0;
	background-attachment: fixed;
	color: var(--ink);
	font: 400 16px/1.65 var(--font-body);
}
body, button, input, select, textarea { font-family: var(--font-body); }
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.6em;
	color: var(--ink);
	font-family: var(--font-display);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}
h1 { font-size: clamp(42px, 6vw, 76px); }
h2 { font-size: clamp(34px, 4vw, 54px); }
h3 { font-size: 24px; }
p { margin: 0 0 1.25em; }
a { color: var(--pink-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover, a:focus { color: var(--pink); }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-size: 1rem; }
button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; }
input[type="text"], input[type="email"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="tel"], select, textarea {
	width: 100%; min-height: 48px; padding: 11px 14px;
	border: 1px solid var(--border); border-radius: 6px;
	background: var(--white); color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
	border-color: var(--pink); outline: 0; box-shadow: 0 0 0 3px rgba(219, 56, 102, 0.12);
}
table { width: 100%; border-collapse: collapse; }
th, td { padding: 15px; border-bottom: 1px solid var(--border); text-align: start; }

/* 3. Shared layout, controls, and accessibility. */
.site { min-height: 100vh; overflow: hidden; }
/* Brand watermark: sits behind all content at the top right of the wallpaper. */
.site-watermark {
	position: fixed; top: 150px; right: clamp(16px, 3vw, 60px); z-index: -1;
	width: clamp(110px, 14vw, 210px); opacity: 0.92; pointer-events: none;
	filter: drop-shadow(0 12px 30px rgba(30, 23, 32, 0.25));
}
.site-watermark img { width: 100%; height: auto; }
.on-wallpaper { color: var(--white); text-shadow: 0 2px 14px rgba(30, 23, 32, 0.3); }
.site-shell { width: min(100% - (2 * var(--gutter)), var(--page-width)); margin-inline: auto; }
.site-main { min-height: 42vh; }
body:not(.home) .site-main {
	width: min(100% - (2 * var(--gutter)), var(--page-width));
	margin-inline: auto; margin-block: 40px 70px; padding: 64px var(--gutter) 90px;
	border-radius: 18px; background: var(--panel); box-shadow: var(--shadow);
}
.eyebrow {
	margin-bottom: 16px; color: var(--pink-dark); font-size: 13px; font-weight: 700;
	letter-spacing: 0.12em; line-height: 1.4; text-transform: uppercase;
}
.button, button.button, input.button, .wp-element-button,
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit {
	display: inline-flex; align-items: center; justify-content: center;
	min-height: 48px; padding: 12px 22px; border: 1px solid transparent;
	border-radius: 6px; background: var(--pink); color: var(--white);
	box-shadow: 0 10px 24px rgba(219, 56, 102, 0.2);
	font: 700 14px/1.2 var(--font-body); text-align: center; text-decoration: none;
	transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.button:hover, .button:focus, button.button:hover,
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover {
	background: var(--pink-dark); color: var(--white); transform: translateY(-2px);
	box-shadow: 0 12px 28px rgba(183, 36, 78, 0.24);
}
.button--quiet { border-color: var(--ink); background: transparent; box-shadow: none; color: var(--ink); }
.button--quiet:hover, .button--quiet:focus, .button--dark { background: var(--ink); box-shadow: none; color: var(--white); }
.button--dark:hover, .button--dark:focus { background: var(--teal-dark); }
.button--light { background: var(--white); box-shadow: none; color: var(--pink-dark); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link span { display: inline-block; margin-inline-start: 5px; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0, 0, 0, 0); border: 0; word-wrap: normal !important;
}
.screen-reader-text:focus {
	top: 10px; left: 10px; z-index: 100000; display: block; width: auto; height: auto;
	padding: 12px 18px; clip: auto !important; background: var(--white); color: var(--ink);
	box-shadow: var(--shadow); font-weight: 700;
}

/* 4. Header: menus remain editable in Appearance > Menus. */
.announcement-bar { background: var(--teal-dark); color: var(--white); font-size: 12px; }
.announcement-bar__inner {
	display: flex; align-items: center; justify-content: space-between; min-height: 36px; gap: 20px;
}
.announcement-bar p { margin: 0; }
.announcement-bar a { color: var(--white); font-weight: 700; text-decoration: none; }
.site-header {
	position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(30, 23, 32, 0.08);
	background: rgba(255, 253, 250, 0.95); backdrop-filter: blur(14px);
}
.admin-bar .site-header { top: 32px; }
.site-header__inner {
	display: grid; grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
	align-items: center; min-height: 78px; gap: 30px;
}
.site-branding { min-width: 0; }
.custom-logo-link { display: block; width: fit-content; }
.site-header .custom-logo { width: 68px; height: 68px; object-fit: contain; }
.site-wordmark {
	display: inline-flex; align-items: center; min-width: 0; gap: 10px; color: var(--ink);
	font: 700 20px/1 var(--font-display); text-decoration: none;
}
.site-wordmark:hover, .site-wordmark:focus { color: var(--pink-dark); }
.site-wordmark__mark {
	display: grid; width: 38px; height: 38px; place-items: center; flex: 0 0 38px;
	border-radius: 50%; background: var(--pink); color: var(--white);
	font: 700 17px/1 var(--font-body);
}
.main-navigation .menu-toggle { display: none; }
.main-navigation ul {
	display: flex; align-items: center; justify-content: center; padding: 0; margin: 0;
	gap: 30px; list-style: none;
}
.main-navigation li { position: relative; }
.main-navigation a {
	display: block; padding: 27px 0 25px; border-bottom: 2px solid transparent;
	color: var(--ink); font-size: 14px; font-weight: 600; line-height: 24px; text-decoration: none;
}
.main-navigation a:hover, .main-navigation a:focus,
.main-navigation .current-menu-item > a, .main-navigation .current_page_item > a {
	border-color: var(--pink); color: var(--pink-dark);
}
.main-navigation ul ul {
	position: absolute; top: calc(100% - 8px); left: -18px; display: none; width: 210px;
	padding: 10px; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow);
}
.main-navigation li:hover > ul, .main-navigation li.focus > ul { display: block; }
.main-navigation ul ul a { padding: 10px; border: 0; }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 7px; }
.header-actions > a, .header-search > summary {
	position: relative; display: grid; width: 42px; height: 42px; place-items: center;
	border-radius: 50%; color: var(--ink); text-decoration: none;
	transition: background 180ms ease, color 180ms ease;
}
.header-actions > a:hover, .header-actions > a:focus,
.header-search > summary:hover, .header-search > summary:focus {
	background: var(--pink-soft); color: var(--pink-dark);
}
.header-actions .dashicons { width: 20px; height: 20px; font-size: 20px; }
.header-search { position: relative; }
.header-search summary { cursor: pointer; list-style: none; }
.header-search summary::-webkit-details-marker { display: none; }
.header-search__panel {
	position: absolute; top: calc(100% + 16px); right: 0;
	width: min(360px, calc(100vw - 40px)); padding: 16px;
	border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow);
}
.woocommerce-product-search { display: flex; gap: 8px; }
.woocommerce-product-search button {
	padding: 10px 16px; border: 0; border-radius: 6px;
	background: var(--ink); color: var(--white); font-weight: 700;
}
.site-cart__count {
	position: absolute; top: 1px; right: -1px; display: grid; min-width: 18px; height: 18px;
	padding: 0 4px; place-items: center; border: 2px solid var(--paper); border-radius: 12px;
	background: var(--pink); color: var(--white); font-size: 9px; font-weight: 700; line-height: 1;
}
.header-language { position: relative; z-index: 2; line-height: 1.2; }
.language-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 8px 16px; border: 1px solid var(--border); border-radius: 999px;
	background: var(--white); color: var(--ink);
	font-family: var(--font-body); font-size: 13px; font-weight: 700; text-decoration: none;
	transition: background 150ms ease, color 150ms ease;
}
.language-toggle:hover,
.language-toggle:focus-visible {
	background: var(--ink); color: var(--white);
}

/* Arabic typography and RTL adjustments are activated by TranslatePress. */
html[lang^="ar"] body,
html[lang^="ar"] button,
html[lang^="ar"] input,
html[lang^="ar"] select,
html[lang^="ar"] textarea,
html[lang^="ar"] h1,
html[lang^="ar"] h2,
html[lang^="ar"] h3,
html[lang^="ar"] h4,
html[lang^="ar"] h5,
html[lang^="ar"] h6 {
	font-family: "Baloo Bhaijaan 2", sans-serif;
}
html[dir="rtl"] .main-navigation ul ul { right: -18px; left: auto; }
html[dir="rtl"] .header-search__panel { right: auto; left: 0; }
html[dir="rtl"] .featured-product-card__sale { right: 12px; left: auto; }
html[dir="rtl"] .woocommerce-message,
html[dir="rtl"] .woocommerce-info,
html[dir="rtl"] .woocommerce-error { padding: 18px 52px 18px 20px; }

/* 5. Homepage hero: copy is in front-page.php; imagery comes from WooCommerce. */
.home-hero { position: relative; }
.home-hero::after {
	position: absolute; right: 0; bottom: 0; width: 30%; height: 10px;
	background: var(--yellow); content: "";
}
.home-hero__grid {
	display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
	align-items: center; min-height: 610px; gap: 70px; padding-block: 64px;
}
.home-hero__content {
	position: relative; z-index: 2; max-width: 670px; padding: 44px 46px;
	border-radius: 18px; background: var(--panel); box-shadow: var(--shadow);
	animation: rise-in 600ms ease both;
}
.home-hero h1 { max-width: 760px; margin-bottom: 24px; }
.home-hero__intro { max-width: 610px; margin-bottom: 30px; color: var(--muted); font-size: 18px; }
.hero-assurances { display: flex; flex-wrap: wrap; padding: 0; margin: 38px 0 0; gap: 24px; list-style: none; }
.hero-assurances li {
	display: flex; align-items: center; gap: 8px; color: var(--muted);
	font-size: 12px; font-weight: 700; text-transform: uppercase;
}
.hero-assurances span {
	display: grid; width: 28px; height: 28px; place-items: center;
	border: 1px solid rgba(30, 23, 32, 0.18); border-radius: 50%;
	color: var(--pink-dark); font-size: 9px;
}
.home-hero__visual {
	position: relative; display: grid; grid-template-columns: minmax(0, 1fr); min-height: 460px; place-items: center;
	animation: rise-in 700ms 100ms ease both;
}
.hero-orbit {
	position: absolute; width: min(410px, 86%); aspect-ratio: 1;
	border: 1px solid rgba(255, 255, 255, 0.5); border-radius: 50%;
}
.hero-orbit::before, .hero-orbit::after { position: absolute; border-radius: 50%; content: ""; }
.hero-orbit::before { top: 8%; right: 5%; width: 25px; height: 25px; background: var(--yellow); }
.hero-orbit::after { bottom: 12%; left: 2%; width: 17px; height: 17px; background: var(--pink); }
.hero-slider { position: relative; z-index: 2; width: min(390px, 82%); min-width: 0; }
.hero-slider:not(.slick-initialized) .hero-slide + .hero-slide { display: none; }
.hero-slider .slick-list { overflow: visible; }
.hero-slide { outline: 0; }
.hero-slider .slick-dots {
	display: flex; justify-content: center; padding: 0; margin: 22px 0 0; gap: 8px; list-style: none;
}
.hero-slider .slick-dots li { display: block; }
.hero-slider .slick-dots button {
	display: block; width: 10px; height: 10px; padding: 0; overflow: hidden;
	border: 0; border-radius: 50%; background: rgba(255, 255, 255, 0.55); text-indent: -9999px;
	transition: background 180ms ease, transform 180ms ease;
}
.hero-slider .slick-dots .slick-active button { background: var(--yellow); transform: scale(1.3); }
.hero-product {
	position: relative; z-index: 2; display: block; width: 100%;
	color: var(--ink); text-decoration: none;
}
.hero-product__image, .hero-product img {
	width: 100%; aspect-ratio: 1; border: 12px solid rgba(255, 255, 255, 0.9);
	border-radius: 50%; box-shadow: 0 28px 70px rgba(30, 23, 32, 0.28); object-fit: cover;
}
.hero-product__label {
	position: absolute; right: -18px; bottom: 15px; z-index: 3; display: block; width: min(250px, 76%);
	padding: 14px 18px; border-left: 4px solid var(--pink); border-radius: 6px;
	background: var(--white); box-shadow: var(--shadow);
}
.hero-product__label small, .hero-product__label strong { display: block; }
.hero-product__label small {
	margin-bottom: 3px; color: var(--pink-dark); font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.hero-product__label strong {
	overflow: hidden; font-size: 13px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap;
}
.hero-sticker {
	position: absolute; top: 5%; left: 0; z-index: 3; display: grid; width: 100px; height: 100px;
	padding: 10px; place-items: center; border-radius: 50%; background: var(--yellow);
	box-shadow: 0 12px 30px rgba(30, 23, 32, 0.22); color: var(--ink);
	font-size: 12px; font-weight: 700; line-height: 1.3; text-align: center; transform: rotate(-8deg);
}

/* 6. Homepage content bands. */
.benefit-strip { padding-block: 10px 0; color: var(--white); }
.benefit-strip__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
	border-radius: 20px; background: rgba(17, 101, 129, 0.92); box-shadow: var(--shadow);
}
.benefit-strip__grid > div {
	display: flex; flex-direction: column; justify-content: center; min-height: 112px; padding: 20px 40px;
}
.benefit-strip__grid > div + div { border-left: 1px solid rgba(255, 255, 255, 0.22); }
.benefit-strip strong { font-family: var(--font-display); font-size: 20px; }
.benefit-strip span { color: rgba(255, 255, 255, 0.78); font-size: 13px; }
.home-section { padding-block: 40px; }
/* Homepage bands sit on translucent panels so the wallpaper stays visible everywhere. */
.home-featured > .site-shell, .home-story__grid, .home-delivery__inner, .home-locations > .site-shell, .home-gallery > .site-shell {
	padding: 60px var(--gutter); border-radius: 22px; background: var(--panel); box-shadow: var(--shadow);
}
.home-featured { background: transparent; }
.home-featured__grid { margin-top: 0; }
.featured-product-card {
	position: relative; display: flex; min-width: 0; overflow: hidden; flex-direction: column;
	border: 1px solid rgba(30, 23, 32, 0.08); border-radius: var(--radius);
	background: var(--white); box-shadow: 0 14px 35px rgba(63, 31, 51, 0.07);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.featured-product-card:hover {
	border-color: rgba(219, 56, 102, 0.3); box-shadow: 0 22px 48px rgba(63, 31, 51, 0.12);
	transform: translateY(-5px);
}
.featured-product-card__image {
	position: relative; display: block; margin: 12px 12px 0; overflow: hidden;
	border-radius: 6px; background: var(--blue-soft);
}
.featured-product-card__image img {
	width: 100%; aspect-ratio: 1; margin: 0; object-fit: cover;
	transition: transform 320ms ease;
}
.featured-product-card:hover .featured-product-card__image img { transform: scale(1.035); }
.featured-product-card__sale {
	position: absolute; top: 12px; left: 12px; padding: 6px 10px;
	border-radius: 4px; background: var(--pink); color: var(--white);
	font-size: 11px; font-weight: 700; line-height: 1; text-transform: uppercase;
}
.featured-product-card__body {
	display: flex; min-height: 205px; padding: 20px; flex: 1; flex-direction: column;
}
.featured-product-card__category {
	min-height: 22px; margin-bottom: 8px; overflow: hidden; color: var(--teal-dark);
	font-size: 11px; font-weight: 700; line-height: 1.4; text-overflow: ellipsis;
	text-transform: uppercase; white-space: nowrap;
}
.featured-product-card__category a { color: inherit; text-decoration: none; }
.featured-product-card h3 {
	display: -webkit-box; min-height: 52px; margin: 0; overflow: hidden;
	font: 700 17px/1.5 var(--font-body); -webkit-box-orient: vertical; -webkit-line-clamp: 2;
}
.featured-product-card h3 a { color: var(--ink); text-decoration: none; }
.featured-product-card h3 a:hover { color: var(--pink-dark); }
.featured-product-card__footer {
	display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center;
	margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border); gap: 12px;
}
.featured-product-card__price { min-width: 0; color: var(--pink-dark); font-size: 16px; font-weight: 700; }
.featured-product-card__price del { display: block; color: var(--muted); font-size: 11px; font-weight: 500; }
.featured-product-card__price ins { text-decoration: none; }
.featured-product-card .button {
	min-height: 40px; padding: 10px 14px; margin: 0; box-shadow: none;
	font-size: 12px; white-space: nowrap;
}
.featured-product-card .added_to_cart {
	grid-column: 1 / -1; color: var(--teal-dark); font-size: 12px; font-weight: 700;
}
.section-heading {
	display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 46px; gap: 30px;
}
.section-heading h2 { max-width: 900px; margin-bottom: 0; }
.home-story { background: transparent; }
.home-story__grid {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
	align-items: center; gap: 7%;
}
.home-story__media { position: relative; min-height: 570px; }
.home-story__media img {
	position: absolute; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover;
}
.home-story__media img:first-child { top: 0; left: 0; width: 72%; height: 78%; }
.home-story__media img:nth-child(2) {
	right: 0; bottom: 0; width: 48%; height: 49%; border: 10px solid var(--paper);
}
.story-note {
	position: absolute; left: 4%; bottom: 5%; z-index: 2; max-width: 190px;
	padding: 16px 20px; border-radius: 6px; background: var(--yellow); color: var(--ink);
	font-family: var(--font-display); font-weight: 700; line-height: 1.25; transform: rotate(-3deg);
}
.home-story__content { max-width: 560px; }
.home-story__content p:not(.eyebrow) { color: var(--muted); }
.home-story__content .button { margin-top: 10px; }
.home-cta { position: relative; color: var(--white); text-align: center; }
.home-cta::before, .home-cta::after {
	position: absolute; top: 50%; width: 90px; height: 90px;
	border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 50%; content: "";
	transform: translateY(-50%);
}
.home-cta::before { left: 7%; }
.home-cta::after { right: 7%; }
.home-cta__inner { position: relative; z-index: 2; padding-block: 75px; }
.home-cta .eyebrow, .home-cta h2 { color: var(--white); text-shadow: 0 2px 14px rgba(30, 23, 32, 0.25); }
.home-cta h2 { margin-bottom: 25px; }

/* 6b. Delivery apps, gallery, and store locations. */
.section-heading--center { justify-content: center; text-align: center; }
.home-delivery { background: transparent; }
.home-delivery__logos {
	display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 34px;
}
.delivery-app {
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	padding: 26px 34px; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow); text-decoration: none;
	transition: transform 150ms ease;
}
.delivery-app:hover { transform: translateY(-4px); }
.delivery-app img { width: 110px; height: 64px; object-fit: contain; }
.delivery-app span { color: var(--ink); font-size: 14px; font-weight: 700; }
.home-gallery__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.home-gallery__item {
	display: block; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow);
}
.home-gallery__item img {
	width: 100%; height: 240px; object-fit: cover; transition: transform 200ms ease;
}
.home-gallery__item:hover img { transform: scale(1.04); }
.home-gallery__item:first-child { grid-row: span 2; }
.home-gallery__item:first-child img { height: 100%; }
.home-locations { background: transparent; }
.home-locations__grid {
	display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px;
}
.location-card {
	display: flex; flex-direction: column; gap: 16px;
	padding: 24px; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow);
}
.location-card h3 { margin: 0; font-size: 22px; }
.location-card iframe { width: 100%; height: 250px; border: 0; border-radius: 12px; }
.location-card .button { align-self: flex-start; }

/* 7. WooCommerce catalog: content remains managed in Products. */
.woocommerce .woocommerce-breadcrumb { margin: 0 0 24px; color: var(--muted); font-size: 13px; }
.woocommerce .woocommerce-breadcrumb a { color: var(--muted); }
.woocommerce-products-header { max-width: 800px; margin-bottom: 36px; }
.woocommerce-products-header__title, .page-title { font-size: clamp(38px, 5vw, 62px); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { margin-bottom: 30px; }
.woocommerce .woocommerce-ordering select { min-width: 220px; }
.woocommerce ul.products, .woocommerce-page ul.products {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; gap: 24px;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
	position: relative; display: flex; width: auto; min-width: 0; min-height: 100%;
	margin: 0; padding: 14px 14px 18px; flex-direction: column; float: none;
	border: 1px solid rgba(103, 92, 102, 0.12); border-radius: var(--radius);
	background: var(--white); box-shadow: 0 12px 35px rgba(63, 31, 51, 0.06);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}
.woocommerce ul.products li.product:hover {
	border-color: rgba(219, 56, 102, 0.28); box-shadow: var(--shadow); transform: translateY(-5px);
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link { color: var(--ink); text-decoration: none; }
.woocommerce ul.products li.product a img {
	width: 100%; margin: 0 0 18px; aspect-ratio: 1; border-radius: 6px;
	background: var(--pink-soft); object-fit: cover;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box; min-height: 48px; padding: 0; margin: 0 4px 8px; overflow: hidden;
	font: 700 15px/1.45 var(--font-body); -webkit-box-orient: vertical; -webkit-line-clamp: 2;
}
.woocommerce ul.products li.product .price {
	margin: auto 4px 14px; color: var(--pink-dark); font-size: 16px; font-weight: 700;
}
.woocommerce ul.products li.product .price del { color: var(--muted); font-size: 12px; }
.woocommerce ul.products li.product .button { width: 100%; margin-top: 0; box-shadow: none; }
.woocommerce span.onsale {
	top: 24px; left: 24px; z-index: 3; min-width: auto; min-height: auto; padding: 7px 10px;
	border-radius: 6px; background: var(--yellow); color: var(--ink);
	font-size: 11px; font-weight: 700; line-height: 1;
}
.woocommerce nav.woocommerce-pagination { margin-top: 50px; }
.woocommerce nav.woocommerce-pagination ul { display: inline-flex; border: 0; gap: 6px; }
.woocommerce nav.woocommerce-pagination ul li { border: 0; }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
	display: grid; min-width: 42px; height: 42px; padding: 0; place-items: center;
	border: 1px solid var(--border); border-radius: 6px;
}
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { background: var(--pink); color: var(--white); }

/* 8. Single product and native WooCommerce galleries. */
.single-product div.product {
	display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr); gap: 56px 7%;
}
/* WooCommerce's layout stylesheet floats these at 48%; the grid needs them full-width. */
.woocommerce div.product div.images, .woocommerce div.product div.summary,
.single-product div.product .woocommerce-product-gallery, .single-product div.product .summary {
	width: 100% !important; min-width: 0; margin: 0 !important; float: none !important; clear: none;
}
.single-product div.product .woocommerce-product-gallery { grid-column: 1; grid-row: 1; }
.single-product div.product .summary { grid-column: 2; grid-row: 1; }
.single-product div.product .woocommerce-product-gallery img { border-radius: var(--radius); }
.single-product div.product .product_title {
	font-size: clamp(28px, 3.4vw, 46px); line-height: 1.15; overflow-wrap: anywhere;
}
.single-product div.product p.price, .single-product div.product span.price {
	color: var(--pink-dark); font-size: 24px; font-weight: 700;
}
.single-product .woocommerce-product-details__short-description { color: var(--muted); }
.woocommerce div.product form.cart { display: flex; align-items: stretch; margin-block: 28px; gap: 10px; }
.woocommerce div.product form.cart .button { white-space: nowrap; }
.woocommerce .quantity .qty {
	width: 76px; height: 48px; border: 1px solid var(--border); border-radius: 6px;
}
.woocommerce div.product .woocommerce-tabs,
.single-product .related.products, .single-product .up-sells {
	grid-column: 1 / -1; width: 100%; min-width: 0; margin: 24px 0 0;
}
.single-product .related.products > h2, .single-product .up-sells > h2 { margin-bottom: 30px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; border-bottom: 1px solid var(--border); }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
	padding: 0; margin: 0 25px 0 0; border: 0; background: transparent;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 14px 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
	border-bottom: 2px solid var(--pink); color: var(--pink-dark);
}

/* 9. Cart, checkout, notices, forms, and account. */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	padding: 18px 20px 18px 52px; border: 1px solid var(--border);
	border-top: 4px solid var(--teal); border-radius: 6px;
	background: var(--white); box-shadow: 0 8px 25px rgba(63, 31, 51, 0.05);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--teal); }
.woocommerce-error { border-top-color: var(--pink); }
.woocommerce-cart-form, .cart-collaterals .cart_totals, .woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
	padding: 26px; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow);
}
.woocommerce table.shop_table { border: 0; border-radius: 0; }
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
	padding: 18px 14px; border-top: 0; border-bottom: 1px solid var(--border);
}
.woocommerce-cart table.cart img { width: 82px; border-radius: 6px; }
.woocommerce a.remove { color: var(--pink) !important; }
.woocommerce a.remove:hover { background: var(--pink); color: var(--white) !important; }
.woocommerce .cart-collaterals { margin-top: 35px; }
.woocommerce .cart-collaterals .cart_totals { width: min(100%, 460px); }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { font-size: 16px; }
.woocommerce form .form-row { padding: 0; margin-bottom: 18px; }
.woocommerce form .form-row label { margin-bottom: 6px; font-size: 13px; font-weight: 700; }
.select2-container--default .select2-selection--single {
	height: 48px; border-color: var(--border); border-radius: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered { padding: 9px 14px; }
.woocommerce-checkout #payment { background: var(--blue-soft); }
.woocommerce-checkout #payment div.payment_box { background: var(--white); }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: var(--white); }
.woocommerce-MyAccount-navigation ul { padding: 0; margin: 0; list-style: none; }
.woocommerce-MyAccount-navigation a {
	display: block; padding: 12px 15px; border-bottom: 1px solid var(--border); text-decoration: none;
}
.woocommerce-MyAccount-navigation .is-active a {
	background: var(--pink-soft); color: var(--pink-dark); font-weight: 700;
}
.woocommerce-account .entry-title { font-size: clamp(34px, 4vw, 48px); }
.woocommerce-account .woocommerce h2,
.woocommerce-account .woocommerce h3,
.woocommerce-account .woocommerce-MyAccount-content h2,
.woocommerce-account .woocommerce-MyAccount-content h3,
.woocommerce-account .woocommerce-Address-title h2 {
	font-size: clamp(24px, 2.4vw, 34px); line-height: 1.2;
}

/* WooCommerce address columns share Bootstrap's col-1/col-2 names. */
.woocommerce-account .woocommerce-Addresses .col-1,
.woocommerce-account .woocommerce-Addresses .col-2 {
	width: 48%; max-width: none; padding-inline: 0; flex: 0 0 48%;
}

/* WooCommerce Blocks power the current cart and checkout pages. */
.woocommerce-cart .entry-header, .woocommerce-cart .entry-content,
.woocommerce-checkout .entry-header, .woocommerce-checkout .entry-content,
.woocommerce-account .entry-header, .woocommerce-account .entry-content {
	max-width: none;
}
.wp-block-woocommerce-cart, .wp-block-woocommerce-checkout { margin: 0; }
.wc-block-cart__main, .wc-block-checkout__main {
	padding: 28px !important; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: var(--shadow);
}
.wc-block-cart__sidebar, .wc-block-checkout__sidebar {
	padding: 28px !important; border-radius: var(--radius); background: var(--blue-soft);
}
.wc-block-cart__totals-title, .wc-block-components-title {
	font-family: var(--font-display); font-size: 22px; letter-spacing: 0;
}
.wc-block-cart-items { margin: 0 !important; }
.wc-block-cart-items__row { border-bottom: 1px solid var(--border) !important; }
.wc-block-cart-item__image img { border-radius: 6px; }
.wc-block-components-product-name {
	color: var(--ink); font-size: 15px; font-weight: 700; line-height: 1.4; text-decoration: none;
}
.wc-block-components-product-price { color: var(--pink-dark); font-weight: 700; }
.wc-block-components-quantity-selector {
	border-color: var(--border) !important; border-radius: 6px !important; box-shadow: none !important;
}
.wc-block-cart-item__remove-link { color: var(--muted) !important; font-weight: 600 !important; }
.wc-block-components-button:not(.is-link) {
	min-height: 50px; border-radius: 6px !important; background: var(--pink) !important;
	box-shadow: 0 10px 24px rgba(219, 56, 102, 0.2); color: var(--white) !important;
	font-family: var(--font-body); font-weight: 700;
}
.wc-block-components-button:not(.is-link):hover {
	background: var(--pink-dark) !important; box-shadow: 0 12px 28px rgba(183, 36, 78, 0.24);
}
.wc-block-components-totals-wrapper { border-top-color: rgba(17, 101, 129, 0.15) !important; }
.wc-block-components-totals-footer-item { font-family: var(--font-display); }

/* 10. WordPress content and footer. */
.entry-header, .entry-content, .entry-footer, .comments-area { max-width: 820px; margin-inline: auto; }
.entry-title { font-size: clamp(38px, 5vw, 62px); }
.entry-content > * { max-width: 100%; }
.page:not(.woocommerce-page) .entry-header,
.page:not(.woocommerce-page) .entry-content { max-width: 1040px; }
.page:not(.woocommerce-page) .entry-header { margin-bottom: 42px; }
.page:not(.woocommerce-page) .entry-content > h2 { margin-top: 52px; font-size: clamp(27px, 3vw, 38px); }
.page:not(.woocommerce-page) .entry-content > h2 + p { color: var(--muted); }
.content-intro { max-width: 780px; margin-bottom: 48px; }
.content-intro h2 { margin-bottom: 18px; font-size: clamp(30px, 4vw, 48px); }
.content-intro > p:last-child { color: var(--muted); font-size: 18px; }
.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.info-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-card {
	padding: 28px; border: 1px solid var(--border); border-top: 4px solid var(--teal);
	border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 34px rgba(63, 31, 51, 0.06);
}
.info-card:nth-child(even) { border-top-color: var(--pink); }
.info-card h3 { margin-bottom: 12px; font-size: 24px; }
.info-card p:last-child { margin-bottom: 0; color: var(--muted); }
.notice-panel {
	margin-block: 36px; padding: 28px; border-inline-start: 5px solid var(--pink);
	border-radius: var(--radius); background: var(--pink-soft);
}
.notice-panel h3 { margin-bottom: 10px; font-size: 25px; }
.notice-panel p:last-child { margin-bottom: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
	padding: 0 22px; border: 1px solid var(--border); border-radius: var(--radius);
	background: var(--white); box-shadow: 0 8px 24px rgba(63, 31, 51, 0.05);
}
.faq-list summary {
	padding-block: 19px; color: var(--ink); cursor: pointer; font-weight: 700; list-style-position: inside;
}
.faq-list details[open] summary { color: var(--pink-dark); }
.faq-list p { padding: 0 20px 20px; margin: 0; color: var(--muted); }
.widget-area:empty { display: none; }
.site-footer { background: rgba(17, 101, 129, 0.93); color: rgba(255, 255, 255, 0.78); }
.site-footer__grid {
	display: grid; grid-template-columns: 1.5fr 0.8fr 1fr; padding-block: 70px 55px; gap: 9%;
}
.footer-brand .custom-logo { width: 140px; height: 140px; object-fit: contain; }
.site-wordmark--footer, .site-wordmark--footer:hover, .site-wordmark--footer:focus { color: var(--white); }
.site-wordmark--footer .site-wordmark__mark { background: var(--yellow); color: var(--ink); }
.footer-brand p { max-width: 390px; margin: 20px 0 0; }
.site-footer h2 {
	margin-bottom: 17px; color: var(--white); font: 700 13px/1.4 var(--font-body); text-transform: uppercase;
}
.site-footer a { color: var(--white); }
.footer-navigation ul { padding: 0; margin: 0; list-style: none; }
.footer-navigation li + li { margin-top: 8px; }
.footer-navigation a, .footer-help a { font-size: 14px; font-weight: 600; text-decoration: none; }
.footer-help p { margin-bottom: 10px; }
.footer-contact, .footer-social { padding: 0; margin: 0; list-style: none; }
.footer-contact li + li { margin-top: 8px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a {
	display: inline-block; padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 999px;
}
.site-footer__bottom {
	display: flex; align-items: center; justify-content: space-between; min-height: 72px;
	border-top: 1px solid rgba(255, 255, 255, 0.14); gap: 25px; font-size: 12px;
}
.site-footer__bottom p { margin: 0; }

/* 11. Responsive layout. */
@media (max-width: 1024px) {
	.site-header__inner { grid-template-columns: 1fr auto auto; }
	.main-navigation { grid-column: 3; grid-row: 1; }
	.main-navigation .menu-toggle {
		display: grid; width: 42px; height: 42px; padding: 0; place-items: center;
		border: 0; border-radius: 50%; background: transparent;
	}
	.menu-toggle__lines { display: grid; gap: 5px; }
	.menu-toggle__lines span { display: block; width: 19px; height: 2px; background: var(--ink); }
	.main-navigation > ul, .main-navigation > .menu-primary-container {
		position: absolute; top: 100%; left: 0; display: none; width: 100%;
		padding: 18px var(--gutter) 24px; border-top: 1px solid var(--border);
		background: var(--paper); box-shadow: var(--shadow);
	}
	.main-navigation.toggled > ul, .main-navigation.toggled > .menu-primary-container { display: block; }
	.main-navigation ul { align-items: stretch; flex-direction: column; gap: 0; }
	.main-navigation a { padding: 12px 0; border-bottom-width: 1px; }
	.main-navigation ul ul {
		position: static; display: block; width: 100%; padding: 0 0 0 18px; border: 0; box-shadow: none;
	}
	.header-actions { grid-column: 2; grid-row: 1; }
	.home-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); min-height: 560px; gap: 30px;
	}
	.home-hero__visual { min-height: 390px; }
	.hero-sticker { left: -12px; width: 82px; height: 82px; }
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.home-story__grid { gap: 6%; }
	.home-story__media { min-height: 480px; }
}

@media (max-width: 782px) {
	.admin-bar .site-header { top: 46px; }
	.announcement-bar p { display: none; }
	.announcement-bar__inner { justify-content: center; }
	.site-header__inner { min-height: 68px; gap: 8px; }
	.site-header .custom-logo { width: 58px; height: 58px; }
	.site-wordmark { font-size: 16px; }
	.site-wordmark__mark { width: 34px; height: 34px; flex-basis: 34px; }
	.header-actions { gap: 0; }
	.header-account { display: none !important; }
	.woocommerce-account .woocommerce-Addresses .col-1,
	.woocommerce-account .woocommerce-Addresses .col-2 {
		width: 100%; flex-basis: 100%;
	}
	.home-hero__grid { grid-template-columns: 1fr; padding-block: 58px 42px; }
	.home-hero__content { max-width: 620px; padding: 30px 26px; }
	.home-hero__visual { min-height: 430px; }
	.hero-product { width: min(360px, 78%); }
	.benefit-strip__grid { grid-template-columns: 1fr; }
	.benefit-strip__grid > div { min-height: 88px; padding-inline: 10px; text-align: center; }
	.benefit-strip__grid > div + div { border-top: 1px solid rgba(255, 255, 255, 0.22); border-left: 0; }
	.home-section { padding-block: 24px; }
	.home-featured > .site-shell, .home-story__grid, .home-delivery__inner, .home-locations > .site-shell, .home-gallery > .site-shell {
		padding: 40px var(--gutter); border-radius: 16px;
	}
	.site-watermark { top: 120px; width: 90px; opacity: 0.85; }
	.section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 34px; }
	.woocommerce ul.products, .woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px;
	}
	.home-story__grid, .single-product div.product { grid-template-columns: 1fr; }
	.single-product div.product .woocommerce-product-gallery { grid-column: 1; grid-row: 1; }
	.single-product div.product .summary { grid-column: 1; grid-row: 2; }
	.home-story__media { min-height: 520px; }
	.home-gallery__grid { grid-template-columns: repeat(2, 1fr); }
	.home-locations__grid { grid-template-columns: 1fr; }
	.single-product div.product .woocommerce-product-gallery { margin-bottom: 35px; }
	.site-footer__grid { grid-template-columns: 1.4fr 0.7fr; gap: 50px; }
	.footer-help { grid-column: 1 / -1; }
	.info-grid, .info-grid--two { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
	:root { --gutter: 18px; }
	body { background-size: 64px 118px, 64px 118px, 100% 100%; background-position: 0 0, 32px 59px, 0 0; }
	body:not(.home) .site-main { margin-block: 20px 40px; padding: 42px var(--gutter) 60px; border-radius: 12px; }
	h1 { font-size: 38px; }
	h2 { font-size: 34px; }
	.site-wordmark > span:last-child {
		max-width: 150px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
	}
	.header-search { display: none; }
	.language-toggle { padding: 6px 12px; font-size: 11px; }
	.home-gallery__grid { grid-template-columns: 1fr; }
	.home-gallery__item img { height: 220px; }
	.home-delivery__logos { gap: 16px; }
	.delivery-app { padding: 18px 22px; }
	.home-hero__grid { padding-block: 38px 18px; gap: 8px; }
	.home-hero__intro { margin-bottom: 22px; font-size: 15px; }
	.button-row { flex-wrap: nowrap; }
	.button-row .button { min-width: 0; padding-inline: 12px; flex: 1; font-size: 13px; }
	.hero-assurances { display: none; }
	.home-hero__visual { min-height: 235px; }
	.hero-product { width: min(215px, 62%); }
	.hero-product__image, .hero-product img { border-width: 7px; }
	.hero-product__label { right: -42px; bottom: 0; width: 170px; padding: 10px 12px; }
	.hero-sticker { top: 4px; left: 7%; width: 62px; height: 62px; font-size: 9px; }
	.home-section { padding-block: 64px; }
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { min-height: 0; }
	.home-story__media { min-height: 390px; }
	.story-note { font-size: 13px; }
	.home-cta::before, .home-cta::after { display: none; }
	.woocommerce-cart-form { padding: 10px; overflow-x: auto; }
	.wc-block-cart__main, .wc-block-checkout__main,
	.wc-block-cart__sidebar, .wc-block-checkout__sidebar { padding: 16px !important; }
	.woocommerce table.shop_table_responsive tr td,
	.woocommerce-page table.shop_table_responsive tr td { padding-block: 13px; }
	.site-footer__grid { grid-template-columns: 1fr; padding-block: 55px 40px; gap: 35px; }
	.footer-help { grid-column: auto; }
	.site-footer__bottom {
		align-items: flex-start; justify-content: center; padding-block: 20px;
		flex-direction: column; gap: 6px;
	}
}

@keyframes rise-in {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		scroll-behavior: auto !important; animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important; transition-duration: 0.01ms !important;
	}
}