/* ==========================================================================
   Scaffold — main stylesheet
   This is where you recreate your purchased design. Start by setting the
   design tokens below (colors, fonts, spacing) to match the Shopify theme,
   then style each section.
   ========================================================================== */

/* --- Design tokens ----------------------------------------------------------
   Tuned to match the ShowTime theme layout. Confirm/adjust the accent + fonts
   against the live preview. --color-accent drives buttons, sale badges, links.
   --------------------------------------------------------------------------- */
:root {
	--color-bg: #ffffff;
	--color-text: #1f2937;
	--color-muted: #6b7280;

	/* Royal-blue brand accent (header, sticky nav, primary buttons). */
	--color-accent: #2b50c8;
	--color-accent-dark: #1e3a9e;
	--color-accent-contrast: #ffffff;

	/* Cyan — the round search button / secondary highlights. */
	--color-cyan: #15b2cc;
	--color-cyan-dark: #109bb2;

	/* Cream — hero headline color. */
	--color-cream: #e7d8b8;

	/* Sale/flash color (the "80% OFF" / countdown blocks). */
	--color-sale: #d23b2e;

	--color-primary: #111111;
	--color-primary-contrast: #ffffff;
	--color-border: #e5e7eb;

	/* Top promo bar (dark navy) and secondary nav bar (light gray). */
	--color-topbar-bg: #1e2a78;
	--color-topbar-text: #ffffff;
	--color-subnav-bg: #f3f4f6;
	--color-subnav-text: #1f2937;

	--font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	--font-heading: "Fredoka", "Poppins", system-ui, sans-serif;

	--container-max: 1280px;
	--gap: 1.5rem;
	--radius: 10px;
	--header-height: 76px;
}

/* --- Reset-ish ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	overflow-x: hidden;
}
/* Let flex/grid children shrink instead of forcing the page wider than the
   viewport (the usual cause of mobile horizontal scroll). */
.header-main__inner > *,
.site-nav__inner > *,
.woocommerce-page-wrap { min-width: 0; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; transition: color .15s ease, background .15s ease, opacity .15s ease; }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.2; }

/* --- Layout helpers ------------------------------------------------------ */
.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gap);
}
.content-area { padding-block: 3rem; }
.has-sidebar {
	display: grid;
	gap: 2.5rem;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.has-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

/* Accessibility: visually hidden but available to screen readers. */
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link:focus { position: fixed; top: 1rem; left: 1rem; background: #fff; padding: .5rem 1rem; z-index: 1000; }

/* --- Buttons (cohesive system with smooth hover) ------------------------- */
.btn {
	display: inline-block;
	padding: .8rem 1.8rem;
	border: 1px solid transparent;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	cursor: pointer;
	line-height: 1.2;
	transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease, transform .12s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.btn--primary {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
}
.btn--primary:hover {
	background: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	box-shadow: 0 8px 22px rgba(43, 80, 200, .32);
}

/* --- Inline SVG icons ---------------------------------------------------- */
.scaffold-icon { width: 22px; height: 22px; display: inline-block; vertical-align: middle; flex: 0 0 auto; }
.search-submit .scaffold-icon { width: 20px; height: 20px; }
.subnav__social .scaffold-icon { width: 18px; height: 18px; }
.header-account__icon, .cart-link__icon { display: inline-flex; line-height: 0; }

/* --- Header wrapper (sticky) --------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; }
.site-header.is-stuck { box-shadow: 0 6px 20px rgba(0, 0, 0, .12); }

/* Nav focus: clean ring for keyboard users, none on mouse click. */
.primary-menu a:focus:not(:focus-visible),
.subnav-menu a:focus:not(:focus-visible) { outline: none; }
.primary-menu a:focus-visible { outline: 2px solid #fff; outline-offset: -3px; border-radius: var(--radius); }
.subnav-menu a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: -3px; }

/* --- Header: 1. promo bar (navy) ----------------------------------------- */
.promo-bar {
	background: var(--color-topbar-bg);
	color: var(--color-topbar-text);
	font-size: .9rem;
	font-weight: 600;
}
.promo-bar__msg { margin: 0; text-align: center; padding-block: .55rem; }

/* --- Header: 2. main blue bar -------------------------------------------- */
/* position:relative makes the blue bar the anchor for the full-width mega
   panel, so it drops directly beneath this bar with no gap (hover-safe). */
.header-main { background: var(--color-accent); color: #fff; position: relative; z-index: 60; }
.header-main__inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--header-height);
}
.site-branding { flex: 0 0 auto; }
.site-title {
	font-family: var(--font-heading);
	font-weight: 700; font-size: 1.6rem; color: #fff;
	text-decoration: none; letter-spacing: -.01em;
}
.custom-logo { max-height: 52px; width: auto; }

/* Header layout preset: "Centered logo" (Customizer → Header → Header layout). */
.header-main--centered .header-main__inner { flex-wrap: wrap; justify-content: center; }
.header-main--centered .site-branding { flex-basis: 100%; text-align: center; margin-bottom: .5rem; }
.header-main--centered .header-search { order: 5; flex-basis: 100%; }

/* Primary menu (Departments, Today's Deals) sits inside the blue bar. */
.primary-nav { flex: 0 0 auto; }
.primary-menu {
	display: flex;
	list-style: none;
	margin: 0; padding: 0;
}
.primary-menu li { position: relative; }
.primary-menu > li > a {
	display: flex; align-items: center; gap: .4rem;
	padding: .6rem .9rem;
	color: #fff; text-decoration: none;
	font-weight: 600; font-size: 1rem;
	border-radius: var(--radius);
}
.primary-menu > li:hover > a,
.primary-menu > li:focus-within > a { background: var(--color-accent-dark); }
/* Caret on items that have a dropdown. */
.primary-menu .menu-item-has-children > a::after { content: "▾"; font-size: .8em; opacity: .85; }

/* Dropdown / mega panel. */
.primary-menu .sub-menu {
	position: absolute;
	left: 0; top: 100%;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-top: 3px solid var(--color-cyan);
	box-shadow: 0 12px 32px rgba(0, 0, 0, .15);
	border-radius: 0 0 var(--radius) var(--radius);
	list-style: none;
	margin: 0; padding: .5rem 0;
	display: none;
	z-index: 200;
}
.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu { display: block; }
.primary-menu .sub-menu a {
	display: block; color: var(--color-text);
	padding: .55rem 1.25rem; text-decoration: none; font-weight: 500;
}
.primary-menu .sub-menu a:hover { background: #f4f4f4; color: var(--color-accent); }
/* --- Mega menu ----------------------------------------------------------
   Add CSS class "mega" to a top-level menu item (Appearance → Menus → Screen
   Options → CSS Classes). Build a 3-level menu:
     Level 1 (top)  = "Departments"   (class: mega)
     Level 2        = column headings (e.g. "Kitchen & Dining")
     Level 3        = links under each heading
   ------------------------------------------------------------------------ */
.primary-menu .menu-item.mega { position: static; }
/* Mega panel: laid out as flex COLUMNS, but only shown on hover/focus (the
   base .sub-menu rule keeps it display:none until then). */
.primary-menu .menu-item.mega > .sub-menu {
	left: 0; right: 0; width: 100%;
	flex-wrap: wrap; gap: 2rem;
	padding: 1.75rem max(var(--gap), calc((100vw - var(--container-max)) / 2));
}
.primary-menu .menu-item.mega:hover > .sub-menu,
.primary-menu .menu-item.mega:focus-within > .sub-menu { display: flex; }
/* Each level-2 item becomes a column. */
.primary-menu .menu-item.mega > .sub-menu > li { flex: 1 1 180px; min-width: 160px; }
.primary-menu .menu-item.mega > .sub-menu > li > a {
	font-family: var(--font-heading);
	font-weight: 700; color: var(--color-text);
	padding: 0 0 .5rem; border-bottom: 2px solid var(--color-border); margin-bottom: .5rem;
}
.primary-menu .menu-item.mega > .sub-menu > li > a:hover { background: none; }
/* Level-3 links: shown statically inside the column (not on hover). */
.primary-menu .menu-item.mega .sub-menu .sub-menu {
	position: static; display: block;
	box-shadow: none; border: 0; padding: 0; min-width: 0;
}
.primary-menu .menu-item.mega .sub-menu .sub-menu a { padding: .35rem 0; font-weight: 500; }

/* Promo banner inside a dropdown — add class "mega-promo" to a menu item. */
.primary-menu .mega-promo > a {
	background: linear-gradient(135deg, var(--color-cyan), var(--color-accent));
	color: #fff !important; border-radius: var(--radius); padding: 1rem !important;
	border: 0 !important; font-weight: 700;
}

/* Search — pill field with a round cyan button. */
.header-search { flex: 1 1 auto; }
.header-search .search-form { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: .25rem .25rem .25rem 1.25rem; }
.header-search .search-field {
	flex: 1; border: 0; background: transparent;
	padding: .55rem 0; font: inherit; color: var(--color-text);
}
.header-search .search-field:focus { outline: none; }
.header-search .search-submit {
	flex: 0 0 auto;
	width: 42px; height: 42px;
	border: 0; border-radius: 50%;
	background: var(--color-cyan); color: #fff;
	cursor: pointer; font-size: 1.1rem; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center;
}
.header-search .search-submit:hover { background: var(--color-cyan-dark); }

/* Login + cart actions. */
.header-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 1.5rem; }
.header-account { display: flex; flex-direction: column; align-items: center; color: #fff; text-decoration: none; font-size: .8rem; font-weight: 600; }
.header-account__icon { font-size: 1.25rem; line-height: 1; }
.cart-link { display: flex; flex-direction: column; align-items: center; color: #fff; text-decoration: none; font-size: .8rem; font-weight: 600; position: relative; }
.cart-link__icon { font-size: 1.35rem; line-height: 1; }
.cart-link__count {
	position: absolute; top: -.35rem; right: -.6rem;
	background: var(--color-cyan); color: #fff;
	border-radius: 999px; min-width: 18px; padding: 0 .3rem;
	font-size: .7rem; line-height: 18px; text-align: center;
}

/* --- Header: 3. secondary light bar -------------------------------------- */
.subnav { background: var(--color-subnav-bg); color: var(--color-subnav-text); border-bottom: 1px solid var(--color-border); }
.subnav__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--gap); }
.subnav-menu { display: flex; gap: 2.5rem; list-style: none; margin: 0; padding: 0; }
.subnav-menu a {
	display: flex; align-items: center; gap: .4rem;
	padding: .7rem 0; color: var(--color-subnav-text);
	text-decoration: none; font-weight: 600; font-size: .95rem;
}
.subnav-menu a:hover { color: var(--color-accent); }
.subnav-menu .menu-item-has-children > a::after { content: "▾"; font-size: .8em; opacity: .7; }
.subnav__social { display: flex; gap: 1rem; }
.subnav__social a { color: var(--color-subnav-text); text-decoration: none; font-size: .9rem; }
.subnav__social a:hover { color: var(--color-accent); }

/* Mobile menu toggle (hidden on desktop). */
.menu-toggle { display: none; background: none; border: 0; padding: .6rem; cursor: pointer; margin-left: auto; }
.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
	display: block; width: 24px; height: 2px; background: #fff; position: relative;
}
.menu-toggle__bars::before { content: ""; position: absolute; top: -7px; }
.menu-toggle__bars::after { content: ""; position: absolute; top: 7px; }

@media (max-width: 900px) {
	.header-main__inner { flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-block: .75rem; }
	.site-branding { order: 1; }
	.header-actions { order: 2; }
	.menu-toggle { display: block; order: 3; margin-left: 0; }
	.header-search { order: 4; flex-basis: 100%; width: 100%; }
	.primary-nav { order: 5; flex-basis: 100%; display: none; }
	.header-main.is-open .primary-nav { display: block; }
	.primary-menu { flex-direction: column; }
	.primary-menu .sub-menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 1rem; }
	.subnav__inner { overflow-x: auto; }
	.subnav-menu { gap: 1.25rem; white-space: nowrap; }

	/* Hard guard: no section/element may exceed the viewport width. */
	.site-header, .header-main, .promo-bar, .subnav, .site-main, .site-footer,
	.container, .woocommerce-page-wrap, .shop-sidebar, .shop-content { max-width: 100%; box-sizing: border-box; }
	.shop-sidebar, .shop-content { min-width: 0; }
	.shop-sidebar *, .price_slider, .ui-slider { max-width: 100%; }
	/* Neutralise the mega-menu's viewport-based padding on mobile (it's hidden anyway). */
	.primary-menu .menu-item.mega > .sub-menu { padding-left: 1rem; padding-right: 1rem; }
}

/* --- Posts grid ---------------------------------------------------------- */
.posts-list {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.post-card__thumb { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; background: #eef1f7; }
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-card__title { margin: .75rem 0 .25rem; font-size: 1.25rem; }
.post-card__title a { text-decoration: none; }
.post-card__meta { color: var(--color-muted); font-size: .875rem; }

/* --- Home: shared -------------------------------------------------------- */
.section-title { font-family: var(--font-heading); text-align: center; font-size: 1.85rem; margin: 0 0 2rem; }

/* 1. Hero — set a background image via the Customizer or inline style on
   .home-hero (e.g. style="background-image:url(...)"). Falls back to a soft
   blue-grey so it looks intentional before an image is added. */
.home-hero {
	position: relative;
	min-height: 540px;
	display: flex;
	align-items: center;
	color: #fff;
	background: #dfe4ee center/cover no-repeat;
}
/* Left-side dark scrim so text stays readable over a photo. */
.home-hero::before {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(90deg, rgba(20,28,60,.55) 0%, rgba(20,28,60,.15) 45%, transparent 70%);
}
.home-hero__inner { position: relative; max-width: 600px; }
.home-hero__eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; margin: 0 0 .75rem; opacity: .95; }
.home-hero__title {
	font-family: var(--font-heading);
	color: var(--color-cream);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	margin: 0 0 1rem; line-height: 1.05;
}
.home-hero__subtitle { font-size: 1.15rem; margin: 0 0 2rem; max-width: 30ch; }
.home-hero__actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
/* On the hero, the primary CTA is a white pill; secondary is an underlined link. */
.home-hero .btn--primary { background: #fff; color: var(--color-text); border-color: #fff; border-radius: 999px; padding: .85rem 2rem; }
.home-hero .btn--ghost { background: transparent; color: #fff; border: 0; text-decoration: underline; padding: .85rem .5rem; }

/* 2. Value props */
.value-props { border-bottom: 1px solid var(--color-border); }
.value-props__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	padding-block: 2.5rem;
	text-align: center;
}
.value-prop__title { margin: 0 0 .4rem; font-size: 1.1rem; }
.value-prop p { margin: 0; color: var(--color-muted); }

/* 3. Category grid (4 tiles) */
.category-grid { padding-block: 3.5rem; }
.category-grid__tiles {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .category-grid__tiles { grid-template-columns: repeat(4, 1fr); } }
.cat-tile {
	display: flex; align-items: flex-end;
	min-height: 220px;
	padding: 1.25rem;
	border-radius: var(--radius);
	background: #ececec linear-gradient(180deg, transparent, rgba(0,0,0,.45));
	color: #fff; text-decoration: none; font-weight: 700;
	transition: transform .15s ease;
}
.cat-tile:hover { transform: translateY(-3px); }

/* 4. Flash sale + countdown */
.flash-sale { background: var(--color-sale); color: #fff; }
.flash-sale__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 2rem; flex-wrap: wrap; padding-block: 2.5rem;
}
.flash-sale__badge { display: inline-block; background: #fff; color: var(--color-sale); font-weight: 800; padding: .25rem .75rem; border-radius: 999px; margin: 0 0 .5rem; }
.flash-sale__title { margin: 0; font-size: 2rem; }
.flash-sale__text p { margin: .25rem 0 0; }
.countdown { display: flex; gap: .75rem; }
.countdown__unit {
	background: rgba(255,255,255,.15);
	border-radius: var(--radius);
	padding: .75rem 1rem; text-align: center; min-width: 64px;
}
.countdown__num { display: block; font-size: 1.75rem; font-weight: 800; line-height: 1; }
.countdown__lbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }

/* 5. Staff picks carousel */
.staff-picks { padding-block: 4rem; }

/* ==========================================================================
   PRODUCT CAROUSEL (Staff Picks) — horizontal scroll + arrows + "Shop All" CTA
   ========================================================================== */
.product-carousel { position: relative; margin: 0; }
.product-carousel .product-carousel__track { overflow: visible; }
.product-carousel[data-carousel] ul.products {
	display: flex !important;
	grid-template-columns: none !important;
	gap: 1.5rem; margin: 0 !important; padding: 1rem .25rem 1.5rem;
	list-style: none;
	overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.product-carousel[data-carousel] ul.products::before,
.product-carousel[data-carousel] ul.products::after { content: none !important; display: none !important; }
.product-carousel[data-carousel] ul.products::-webkit-scrollbar { display: none; }
.product-carousel[data-carousel] ul.products li.product {
	flex: 0 0 clamp(215px, 23%, 250px) !important;
	width: auto !important; margin: 0 !important; padding: 1.25rem !important;
	scroll-snap-align: start;
	background: #fff; border: 1px solid #eef1f5; border-radius: 18px;
	box-shadow: 0 10px 30px rgba(20, 28, 60, .06);
	display: flex; flex-direction: column; align-items: center; text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.product-carousel[data-carousel] ul.products li.product:hover { transform: translateY(-5px); box-shadow: 0 18px 42px rgba(20, 28, 60, .12); }
/* Card media (product photo on white). */
.pc-card__media { display: block; width: 100%; position: relative; margin-bottom: 1rem; }
.pc-card__media img { width: 100%; height: 190px; object-fit: contain; display: block; }
.pc-card__media .onsale { top: 0 !important; right: 0 !important; }
/* "+ Add" pill button. */
.pc-card__cart { margin-bottom: 1rem; }
.product-carousel[data-carousel] ul.products li.product .pc-card__cart .button {
	display: inline-flex; align-items: center; justify-content: center; gap: .3rem;
	background: var(--color-accent); color: #fff; border-radius: 999px;
	font-weight: 600; font-size: .95rem; padding: .6rem 1.5rem; border: 0;
	box-shadow: 0 6px 16px rgba(43, 80, 200, .22);
	transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
}
.product-carousel[data-carousel] ul.products li.product .pc-card__cart .button:hover { background: var(--color-accent-dark); color: #fff; transform: translateY(-2px); }
/* After adding, WC appends a "View cart" link — hide it (the slide-out cart
   opens automatically), so it doesn't push the card layout around. */
.product-carousel[data-carousel] ul.products li.product .pc-card__cart .added_to_cart { display: none; }
/* Name + price. */
.pc-card__title { display: block; color: var(--color-text); text-decoration: none; font-weight: 600; text-transform: uppercase; font-size: .78rem; letter-spacing: .02em; line-height: 1.4; margin-bottom: .5rem; }
.pc-card__title:hover { color: var(--color-accent); }
.pc-card__price { font-weight: 700; font-size: 1.05rem; color: var(--color-text); margin-top: auto; }
.pc-card__price del { color: var(--color-muted); font-weight: 400; font-size: .88rem; margin-right: .35rem; }
.pc-card__price ins { text-decoration: none; }
/* "Shop All" CTA card at the end of the carousel. */
.product-carousel[data-carousel] ul.products li.pc-cta { padding: 0 !important; background: none; border: 0; box-shadow: none; overflow: hidden; }
.pc-cta__link {
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	height: 100%; min-height: 100%; text-decoration: none; color: #fff; padding: 2rem;
	background: linear-gradient(150deg, #26346e, #2b50c8); border-radius: 18px;
	transition: transform .2s ease;
}
.product-carousel[data-carousel] ul.products li.pc-cta:hover .pc-cta__link { transform: translateY(-5px); }
.pc-cta__eyebrow { font-size: .8rem; letter-spacing: .04em; opacity: .85; margin-bottom: .4rem; }
.pc-cta__title { font-family: var(--font-heading); font-size: 1.65rem; font-weight: 600; }
/* Prev / next arrows. */
.carousel-nav {
	position: absolute; top: calc(50% - 1.25rem); transform: translateY(-50%);
	width: 48px; height: 48px; border-radius: 50%; border: 0;
	background: #fff; box-shadow: 0 8px 24px rgba(20, 28, 60, .16);
	color: var(--color-text); cursor: pointer; z-index: 5;
	display: inline-flex; align-items: center; justify-content: center;
	transition: background .15s ease, color .15s ease, opacity .15s ease;
}
.carousel-nav:hover { background: var(--color-accent); color: #fff; }
.carousel-nav--prev { left: -10px; }
.carousel-nav--next { right: -10px; }
.carousel-nav .scaffold-icon { width: 22px; height: 22px; }
.carousel-nav[disabled] { opacity: 0; pointer-events: none; }
@media (max-width: 600px) {
	.product-carousel[data-carousel] ul.products li.product { flex-basis: 70% !important; }
	.carousel-nav { display: none; }
}

/* 6. Department grid (10 cards) */
.department-grid { padding-block: 4rem; background: #f7f7f7; }
.department-grid__cards {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px) { .department-grid__cards { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .department-grid__cards { grid-template-columns: repeat(5, 1fr); } }
.dept-card {
	display: flex; align-items: center; justify-content: center;
	min-height: 110px; padding: 1rem; text-align: center;
	background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
	text-decoration: none; font-weight: 600; color: var(--color-text);
	transition: border-color .15s ease, color .15s ease;
}
.dept-card:hover { border-color: var(--color-accent); color: var(--color-accent-dark); }

/* 7. Newsletter */
.newsletter { padding-block: 4rem; text-align: center; }
.newsletter__title { margin: 0 0 .5rem; }
.newsletter__form { display: flex; gap: .5rem; max-width: 460px; margin: 1.5rem auto 0; }
.newsletter__form input {
	flex: 1; padding: .75rem 1rem; font: inherit;
	border: 1px solid var(--color-border); border-radius: var(--radius);
}

/* --- Footer -------------------------------------------------------------- */
.site-footer {
	background: var(--color-topbar-bg);
	color: rgba(255, 255, 255, .8);
	margin-top: 4rem;
}
.site-footer__grid {
	display: grid; gap: 2.5rem;
	grid-template-columns: 1fr;
	padding-block: 3.5rem;
}
@media (min-width: 700px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .site-footer__grid { grid-template-columns: 1fr 1fr 1.4fr 1fr; } }
.footer-logo, .site-footer .custom-logo { font-family: var(--font-heading); font-weight: 700; font-size: 1.5rem; color: #fff; text-decoration: none; display: inline-block; margin-bottom: .75rem; }
.footer-about { color: rgba(255, 255, 255, .65); line-height: 1.7; margin: 0 0 1rem; max-width: 34ch; }
.footer-social { display: flex; gap: .6rem; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: #fff; transition: background .15s ease; }
.footer-social a:hover { background: var(--color-cyan); }
.footer-social .scaffold-icon { width: 18px; height: 18px; }
/* Labeled social (icon + text rows), ShowTime "Follow us" style. */
.footer-social--labeled { flex-direction: column; align-items: flex-start; gap: .85rem; }
.footer-social--labeled a { width: auto; height: auto; border-radius: 0; background: none; color: rgba(255, 255, 255, .75); display: inline-flex; align-items: center; gap: .55rem; font-weight: 500; line-height: 1; }
/* Fixed 20px icon box, centred with the label (display:block kills the inline
   SVG baseline gap that made the icons sit slightly high). */
.footer-social--labeled .scaffold-icon { display: block; flex: 0 0 auto; width: 20px; height: 20px; }
.footer-social--labeled a > span { line-height: 1; }
.footer-social--labeled a:hover { background: none; color: #fff; }
.footer-heading { color: #fff; font-family: var(--font-heading); font-size: 1.05rem; margin: 0 0 1rem; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-menu a { color: rgba(255, 255, 255, .75); text-decoration: none; transition: color .15s ease; }
.footer-menu a:hover { color: #fff; }
.footer-email { color: var(--color-cyan); text-decoration: none; }
.footer-col--widgets .widget-title { color: #fff; font-family: var(--font-heading); font-size: 1.05rem; }
.footer-col--widgets a { color: rgba(255, 255, 255, .75); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .12); padding-block: 1.25rem; }
.site-footer__copy { color: rgba(255, 255, 255, .6); font-size: .875rem; margin: 0; }

/* ==========================================================================
   COMPONENTS (template-parts/components/)
   ========================================================================== */

/* Section header (title + view-all link). */
.section-header { margin: 0 0 2rem; }
.section-header--center { text-align: center; }
.section-header--center .section-title { margin-bottom: .75rem; }
.section-header--left { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.section-header--left .section-title { margin: 0; }
/* ShowTime-style yellow highlight behind centred section titles. */
.section-header--center .section-title { display: inline-block; background: linear-gradient(transparent 62%, rgba(245, 210, 100, .7) 62%); padding: 0 .2em; }
/* "View all" as an outlined pill (ShowTime "View All"). */
.section-header__link { display: inline-block; margin-top: .35rem; color: var(--color-text); font-weight: 600; text-decoration: none; white-space: nowrap; border: 1.5px solid var(--color-border); border-radius: 999px; padding: .5rem 1.5rem; transition: border-color .15s ease, color .15s ease, background .15s ease; }
.section-header__link:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Promo banner — ShowTime feature tile: image with a floating white label card. */
.promo-banner {
	position: relative; overflow: hidden;
	display: flex; align-items: flex-end; justify-content: center;
	min-height: 260px; padding: 1.5rem;
	border-radius: 16px;
	background: #e6eaf5 center/cover no-repeat;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease;
}
.promo-banner:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0, 0, 0, .14); }
.promo-banner__body {
	position: relative; z-index: 1; text-align: center;
	background: #fff; border-radius: 12px; padding: .9rem 1.5rem; max-width: 88%;
	box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
	display: flex; flex-direction: column-reverse;
}
.promo-banner__title { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.35rem; color: var(--color-text); }
.promo-banner__subtitle { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); margin-bottom: .2rem; }

/* Homepage category feature tiles: two large photo-backed tiles per row
   (ShowTime-style). Force the Elementor columns to wrap 2-up. */
.category-tiles .promo-banner { min-height: 380px; }
.category-tiles .promo-banner__body { max-width: 78%; padding: 1.2rem 2rem; }
/* Heading: lighter weight than the chunky default, matching the Shopify demo. */
.category-tiles .promo-banner__title { font-size: 1.7rem; font-weight: 500; letter-spacing: -.01em; }
.category-tiles .promo-banner__subtitle { font-size: .72rem; margin-bottom: .35rem; }
@media (min-width: 768px) {
	.category-tiles > .elementor-container { flex-wrap: wrap; row-gap: 1.75rem; }
	.category-tiles > .elementor-container > .elementor-column { width: 50%; flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 600px) { .category-tiles .promo-banner { min-height: 260px; } .category-tiles .promo-banner__title { font-size: 1.4rem; } }

/* Presentational product card. */
.product-card {
	display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
	padding: .85rem; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.product-card:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, .1); transform: translateY(-4px); border-color: transparent; }
.product-card__media { position: relative; display: block; border-radius: var(--radius); overflow: hidden; background: #f3f4f6; aspect-ratio: 1 / 1; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-card__badge { position: absolute; top: .6rem; left: .6rem; background: var(--color-sale); color: #fff; font-size: .72rem; font-weight: 700; padding: .15rem .5rem; border-radius: 999px; }
.product-card__title { font-size: 1rem; margin: .6rem 0 .2rem; }
.product-card__title a { text-decoration: none; color: var(--color-text); }
.product-card__price { font-weight: 700; color: var(--color-accent); }

/* ==========================================================================
   WOOCOMMERCE
   ========================================================================== */
.woocommerce-page-wrap { padding-block: 3rem; }

/* Two-column shop layout (sidebar + products). */
.woocommerce-page-wrap.has-shop-sidebar {
	display: grid; gap: 2.5rem; align-items: start;
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.woocommerce-page-wrap.has-shop-sidebar { grid-template-columns: 260px minmax(0, 1fr); }
}
.shop-sidebar .widget { margin-bottom: 2rem; }
.shop-sidebar .widget-title { font-size: 1rem; margin: 0 0 .75rem; }
.shop-sidebar__hint { color: var(--color-muted); font-size: .85rem; }

/* Result count + sort dropdown row. */
.woocommerce-result-count { color: var(--color-muted); margin: 0 0 1rem; }
.woocommerce-ordering select {
	padding: .55rem .75rem; border: 1px solid var(--color-border);
	border-radius: var(--radius); font: inherit; background: #fff;
}

/* Product grid + cards. Use .woocommerce specificity + !important to override
   WooCommerce's default float layout (which otherwise causes a staggered grid). */
.woocommerce ul.products,
.woocommerce-page ul.products {
	list-style: none; margin: 0 !important; padding: 0;
	display: grid !important; gap: 1.75rem;
	grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 600px) { .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3, 1fr) !important; } }
@media (min-width: 1000px) { .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(4, 1fr) !important; } }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none !important; width: auto !important; clear: none !important;
	grid-column: auto !important; grid-row: auto !important;
	margin: 0 !important; text-align: left; position: relative;
	display: flex; flex-direction: column;
	background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius);
	padding: .85rem; transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.woocommerce ul.products li.product:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, .1); transform: translateY(-4px); border-color: transparent;
}
/* Title/price fill, buttons pinned to the bottom for even card heights. */
.woocommerce ul.products li.product .price { margin-top: auto; padding-top: .5rem; }
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; content: none !important; }
.woocommerce ul.products li.product a img { border-radius: var(--radius); margin: 0 0 .75rem; }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 1rem; font-weight: 600; padding: 0; }
.woocommerce ul.products li.product .price { color: var(--color-accent); font-weight: 700; }
.woocommerce ul.products li.product .price del { color: var(--color-muted); font-weight: 400; margin-right: .35rem; }
/* Stacked full-width action buttons — keeps the "View cart" link from breaking
   the card layout after add-to-cart. */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .quick-view-btn {
	display: block; width: 100%; margin: .5rem 0 0; text-align: center; white-space: nowrap;
}
.woocommerce ul.products li.product .added_to_cart {
	display: block; width: 100%; margin: .5rem 0 0; text-align: center;
	font-size: .85rem; color: var(--color-accent); text-decoration: underline;
}
.woocommerce ul.products li.product .onsale { top: 1rem; left: 1rem; }
/* Rounded corners on the card's thumbnail area. */
.woocommerce ul.products li.product .loop-thumb { border-radius: var(--radius); }

/* Sale + sold-out badges. */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
	background: var(--color-sale) !important; color: #fff !important;
	border-radius: 999px !important; padding: .25rem .7rem !important;
	min-height: 0 !important; min-width: 0 !important;
	font-size: .72rem !important; font-weight: 700 !important; line-height: 1.5 !important;
	position: absolute !important; top: 1rem !important; right: 1rem !important; left: auto !important; bottom: auto !important;
	width: auto !important; height: auto !important; display: inline-block !important; margin: 0 !important; z-index: 3 !important;
}
.woocommerce ul.products li.product .button,
.woocommerce a.button, .woocommerce button.button, .woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button {
	background: var(--color-accent); color: #fff;
	border-radius: 999px; font-weight: 600; padding: .75rem 1.4rem;
	border: 0; cursor: pointer;
	transition: background .18s ease, box-shadow .18s ease, transform .12s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .single_add_to_cart_button:hover {
	background: var(--color-accent-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(43, 80, 200, .3);
}
.woocommerce a.button:active, .woocommerce button.button:active,
.woocommerce .single_add_to_cart_button:active { transform: translateY(0); }
/* Clean focus ring that follows the pill shape (fixes the "square glow"). */
.woocommerce a.button:focus, .woocommerce button.button:focus, .woocommerce input.button:focus,
.woocommerce #respond input#submit:focus, .woocommerce .single_add_to_cart_button:focus,
.woocommerce .price_slider_amount .button:focus {
	outline: none; box-shadow: 0 0 0 3px rgba(43, 80, 200, .3);
}
/* WooCommerce's ".alt" buttons (Add to cart on single, Place order, Proceed to
   checkout) default to purple with high specificity — override to our accent. */
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,
.woocommerce #respond input#submit.alt, .woocommerce #place_order,
.woocommerce .single_add_to_cart_button {
	background: var(--color-accent) !important; color: #fff !important; border: 0;
}
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,
.woocommerce #place_order:hover, .woocommerce .single_add_to_cart_button:hover {
	background: var(--color-accent-dark) !important; color: #fff !important;
	transform: translateY(-2px); box-shadow: 0 8px 22px rgba(43, 80, 200, .3);
}

/* Single-product gallery: fill its grid column. */
.woocommerce div.product .woocommerce-product-gallery {
	width: 100% !important; float: none !important; margin: 0 !important;
}
.woocommerce div.product .woocommerce-product-gallery img { width: 100%; }

/* WooCommerce breadcrumb — aligned bar. */
.scaffold-breadcrumb { background: #f7f8fa; border-bottom: 1px solid var(--color-border); padding: .85rem 0; margin-bottom: 2rem; }
.scaffold-breadcrumb .woocommerce-breadcrumb { max-width: none; margin: 0; padding: 0; color: var(--color-muted); font-size: .9rem; }
.scaffold-breadcrumb .woocommerce-breadcrumb a { color: var(--color-accent); text-decoration: none; }
.scaffold-breadcrumb .woocommerce-breadcrumb a:hover { text-decoration: underline; }

/* Shop sidebar — professional widgets. */
.shop-sidebar .widget-title { font-family: var(--font-heading); font-size: 1.05rem; margin: 0 0 1rem; padding-bottom: .6rem; border-bottom: 2px solid var(--color-border); }
.shop-sidebar ul.product-categories { list-style: none; margin: 0; padding: 0; }
.shop-sidebar ul.product-categories li { display: flex; justify-content: space-between; align-items: center; padding: .55rem 0; border-bottom: 1px solid var(--color-border); }
.shop-sidebar ul.product-categories li:last-child { border-bottom: 0; }
.shop-sidebar ul.product-categories li a { text-decoration: none; color: var(--color-text); font-weight: 500; }
.shop-sidebar ul.product-categories li a:hover { color: var(--color-accent); }
.shop-sidebar ul.product-categories .count { color: var(--color-muted); font-size: .78rem; background: #eef1f7; border-radius: 999px; padding: .1rem .55rem; }

/* Price filter slider in brand colours (WooCommerce default is purple). */
.woocommerce .price_slider.ui-slider,
.woocommerce .price_slider .ui-slider,
.woocommerce .price_slider_wrapper .ui-widget-content { background: #e6eaf5 !important; }
.woocommerce .price_slider .ui-slider-range { background: var(--color-accent) !important; }
.woocommerce .price_slider .ui-slider-handle { background: var(--color-accent) !important; border: 2px solid #fff !important; box-shadow: 0 2px 6px rgba(0, 0, 0, .2); }
.woocommerce .price_slider_amount .price_label { color: var(--color-muted); font-size: .9rem; }

/* Single product: quantity + add-to-cart row. */
.woocommerce div.product form.cart { display: flex; align-items: center; gap: .75rem; margin: 0 0 1.5rem; }
.woocommerce div.product form.cart .quantity .qty {
	width: 78px; height: 50px; text-align: center; font-weight: 600; font-size: 1rem;
	border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff;
}
.woocommerce div.product form.cart .single_add_to_cart_button { height: 50px; padding: 0 2.2rem; font-size: 1rem; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--color-text); line-height: 1.7; margin: 0 0 1.5rem; }

/* Trust / reassurance list under add-to-cart. */
.product-trust { list-style: none; margin: 1.5rem 0 0; padding: 1.25rem 0 0; border-top: 1px solid var(--color-border); display: grid; gap: .7rem; }
.product-trust li { display: flex; align-items: center; gap: .7rem; color: var(--color-muted); font-size: .92rem; }
.product-trust .scaffold-icon { width: 20px; height: 20px; color: var(--color-accent); flex: 0 0 auto; }

/* Product meta (category/SKU/tags). */
.woocommerce div.product .product_meta { color: var(--color-muted); font-size: .9rem; margin-top: 1.25rem; }
.woocommerce div.product .product_meta a { color: var(--color-accent); text-decoration: none; }

/* Tabs — underline active. */
.woocommerce div.product .woocommerce-tabs ul.tabs { border-bottom: 1px solid var(--color-border); margin-bottom: 1.5rem; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-color: var(--color-border); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: none; border: 0; border-radius: 0; margin: 0 1.5rem 0 0; padding: 0; }
.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 { font-family: var(--font-heading); font-weight: 600; color: var(--color-muted); padding: .5rem 0; display: inline-block; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--color-text); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { box-shadow: inset 0 -3px 0 var(--color-accent); }

/* Related / upsell heading. */
.woocommerce div.product .related > h2, .woocommerce div.product .upsells > h2 { font-family: var(--font-heading); font-size: 1.75rem; margin: 0 0 1.5rem; }

/* Single product layout. */
.woocommerce div.product { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 850px) { .woocommerce div.product { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: start; } }
.woocommerce div.product .woocommerce-product-gallery { margin: 0; }
.woocommerce div.product .woocommerce-product-gallery img { border-radius: var(--radius); }
.woocommerce div.product .product_title { font-family: var(--font-heading); font-size: 2rem; margin: 0 0 .5rem; }
/* Sticky summary as the gallery scrolls (desktop). */
@media (min-width: 850px) {
	.woocommerce div.product .summary.entry-summary { position: sticky; top: 100px; align-self: start; }
}
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--color-accent); font-size: 1.5rem; font-weight: 700; }
/* Tabs + related span the full width below the two columns. */
.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .related, .woocommerce div.product .upsells { grid-column: 1 / -1; }
.woocommerce div.product .woocommerce-tabs ul.tabs { padding: 0; }
.woocommerce #reviews h2, .woocommerce .related > h2, .woocommerce .upsells > h2 { font-family: var(--font-heading); }

/* Cart / checkout buttons inherit the accent button styles above. */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #payment { border-radius: var(--radius); }

/* Product-card image rollover (shop/archive loop). */
ul.products li.product .loop-thumb { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: .75rem; }
ul.products li.product .loop-thumb img { display: block; width: 100%; height: auto; margin: 0; border-radius: 0; }
.loop-thumb__rollover { position: absolute; inset: 0; opacity: 0; transition: opacity .35s ease; }
.loop-thumb__rollover img { width: 100%; height: 100%; object-fit: cover; }
ul.products li.product:hover .loop-thumb__rollover { opacity: 1; }

/* ==========================================================================
   BACK TO TOP
   ========================================================================== */
.back-to-top {
	position: fixed; right: 20px; bottom: 20px;
	width: 46px; height: 46px; border: 0; border-radius: 50%;
	background: var(--color-accent); color: #fff; cursor: pointer;
	display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
	opacity: 0; visibility: hidden; transform: translateY(8px);
	transition: opacity .2s ease, visibility .2s ease, transform .2s ease, background .15s ease;
	z-index: 300;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--color-accent-dark); }
.back-to-top .scaffold-icon { width: 22px; height: 22px; }

/* ==========================================================================
   SINGLE PRODUCT — cap gallery so it isn't oversized on wide screens.
   ========================================================================== */
.woocommerce div.product { gap: 3rem; align-items: start; }
.woocommerce div.product .woocommerce-product-gallery { max-width: 480px; }
.woocommerce div.product .entry-summary > * { max-width: 560px; }

/* ==========================================================================
   RESPONSIVE — tablet & mobile
   ========================================================================== */

/* Tablet and below */
@media (max-width: 900px) {
	.header-search .search-form { min-width: 0; }
	.header-search .search-field { width: 100%; }

	/* Shop toolbar: result count + sort stack, sort full-width */
	.woocommerce .woocommerce-result-count { float: none; margin-bottom: .5rem; }
	.woocommerce .woocommerce-ordering { float: none; width: 100%; margin: 0 0 1.25rem; }
	.woocommerce .woocommerce-ordering select { width: 100%; }

	/* Shop filter widgets never exceed their column */
	.woocommerce .price_slider_wrapper, .woocommerce .price_slider,
	.woocommerce .price_slider_amount { max-width: 100%; }
	.shop-sidebar { margin-bottom: 2rem; }

	/* Single product stacks; summary not sticky */
	.woocommerce div.product { grid-template-columns: 1fr; gap: 2rem; }
	.woocommerce div.product .woocommerce-product-gallery { max-width: 100%; }
	.woocommerce div.product .summary.entry-summary { position: static; }
}

/* Phones */
@media (max-width: 600px) {
	.home-hero { min-height: auto; padding-block: 3.5rem; }
	.home-hero__title { font-size: 2.1rem; overflow-wrap: break-word; }
	.home-hero__subtitle { font-size: 1rem; }

	.value-props__grid { grid-template-columns: 1fr; gap: 1.25rem; text-align: center; }
	.category-grid__tiles { grid-template-columns: 1fr 1fr; }
	.flash-sale__inner { flex-direction: column; text-align: center; }
	.section-title { font-size: 1.5rem; }

	/* Product grid: 2 up on phones */
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem; }
	.woocommerce ul.products li.product { padding: .6rem; }
	.woocommerce ul.products li.product .button,
	.woocommerce ul.products li.product .quick-view-btn { padding: .55rem; font-size: .85rem; }

	/* Header: tighten so the top row fits — hide text labels, keep icons. */
	.header-main__inner { gap: .6rem; }
	.site-title { font-size: 1.2rem; }
	.custom-logo { max-height: 40px; }
	.promo-bar__msg { font-size: .78rem; }
	.header-account__label, .cart-link__total { display: none; }
	.header-actions { gap: .9rem; }
	.header-search { flex-basis: 100%; width: 100%; }

	/* WooCommerce price filter: stack the amount row so it never overflows. */
	.woocommerce .price_slider_amount { display: block; }
	.woocommerce .price_slider_amount .button { float: none; display: block; margin: .6rem 0 0; }
	.woocommerce .price_slider_amount .price_label { display: block; margin-top: .4rem; }
	.woocommerce .price_slider { margin: .5rem 0 1rem; }

	/* Quick-view modal single column */
	.qv { grid-template-columns: 1fr; }
	.qv-modal__dialog { padding: 1.5rem; }

	/* Mini cart full width on small phones */
	.mini-cart { width: 100%; max-width: 100%; }
}

/* Very small phones: single-column product grid */
@media (max-width: 400px) {
	.woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
	.category-grid__tiles { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ANIMATIONS — scroll reveal (fade-up) + hover motion
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
	.js .value-prop,
	.js .cat-tile,
	.js .dept-card,
	.js .flash-sale__inner,
	.js .staff-picks .section-header,
	.js .department-grid .section-header,
	.js .woocommerce ul.products li.product,
	.js .about-stats .stat,
	.js .team-member,
	.js .promo-banner,
	.js .newsletter__inner,
	.js .home-hero__inner > * {
		opacity: 0;
		transform: translateY(26px);
		transition: opacity .6s ease, transform .6s ease;
	}
	.js .in-view { opacity: 1 !important; transform: none !important; }
	/* Hero content animates in on load (staggered). */
	.js .home-hero__inner > *:nth-child(1) { transition-delay: .05s; }
	.js .home-hero__inner > *:nth-child(2) { transition-delay: .15s; }
	.js .home-hero__inner > *:nth-child(3) { transition-delay: .25s; }
	.js .home-hero__inner > *:nth-child(4) { transition-delay: .35s; }
}

/* Image hover zoom on product cards (subtle, ShowTime-like). */
.loop-thumb img, .product-card__media img { transition: transform .5s ease; }
.woocommerce ul.products li.product:hover .loop-thumb img,
.product-card:hover .product-card__media img { transform: scale(1.07); }

/* Respect "reduce motion": collapse every transition/animation to instant and
   turn off smooth scrolling. We shorten DURATIONS rather than null `transform`,
   so state-carrying transforms (e.g. the off-canvas cart's translateX(100%))
   still apply — they just snap instead of sliding. */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important;
	}
	.btn:hover { transform: none; }
}

/* ==========================================================================
   SLIDE-OUT MINI CART
   ========================================================================== */
.offcanvas-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, .5); z-index: 400; }
body.has-offcanvas { overflow: hidden; }
.mini-cart {
	position: fixed; top: 0; right: 0; height: 100%; width: 380px; max-width: 90vw;
	background: #fff; z-index: 500; display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform .3s ease;
	box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
}
.mini-cart.is-open { transform: none; }
.mini-cart__head { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; border-bottom: 1px solid var(--color-border); }
.mini-cart__title { margin: 0; font-size: 1.2rem; }
.mini-cart__close { background: none; border: 0; font-size: 1.75rem; line-height: 1; cursor: pointer; color: var(--color-muted); }
.mini-cart__body { padding: 1.25rem; overflow-y: auto; flex: 1; }

/* Promo banner at the top of the cart (ShowTime-style). */
.mini-cart__promo { display: block; position: relative; margin: 0 1.25rem 1rem; min-height: 130px; border-radius: var(--radius); overflow: hidden; background: var(--color-accent) center/cover no-repeat; color: #fff; text-decoration: none; padding: 1rem; display: flex; flex-direction: column; justify-content: flex-end; }
.mini-cart__promo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.55)); }
.mini-cart__promo-sub, .mini-cart__promo-title { position: relative; }
.mini-cart__promo-sub { font-size: .8rem; opacity: .9; }
.mini-cart__promo-title { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; }

/* Free-shipping progress bar (ShowTime-style). */
.mini-cart__ship { background: #eef1f7; color: var(--color-text); padding: .7rem .9rem; border-radius: var(--radius); font-size: .85rem; text-align: center; margin-bottom: 1rem; }
.mini-cart__ship--ok { background: #e8f6ee; color: #1b7a43; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: .5rem; }
.mini-cart__ship-check { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: #22a45d; color: #fff; flex: 0 0 auto; }
.mini-cart__ship-check .scaffold-icon { width: 14px; height: 14px; }
.mini-cart__tax { color: var(--color-muted); font-size: .8rem; text-align: center; margin: .5rem 0 0; }

/* Cart items — thumbnail left, name + qty middle, remove ✕ top-right. */
.mini-cart__body ul.woocommerce-mini-cart { list-style: none; margin: 0; padding: 0; }
.mini-cart__body li.woocommerce-mini-cart-item { position: relative; padding: .85rem 2.5rem .85rem .85rem; margin-bottom: .75rem; border: 1px solid var(--color-border); border-radius: var(--radius); list-style: none; box-shadow: 0 2px 8px rgba(0,0,0,.04); }
.mini-cart__body li.woocommerce-mini-cart-item::before,
.mini-cart__body li.woocommerce-mini-cart-item::after { display: none; }
.mini-cart__body li.woocommerce-mini-cart-item > a:not(.remove) { display: block; padding-left: 72px; min-height: 60px; font-weight: 600; color: var(--color-text) !important; text-decoration: none; line-height: 1.3; }
.mini-cart__body li.woocommerce-mini-cart-item img { position: absolute; left: .85rem; top: .85rem; width: 58px !important; height: 58px; object-fit: cover; border-radius: 8px; margin: 0 !important; float: none !important; }
.mini-cart__body li.woocommerce-mini-cart-item .quantity { display: block; padding-left: 70px; margin-top: .25rem; color: var(--color-muted); font-weight: 500; }
.mini-cart__body li.woocommerce-mini-cart-item a.remove {
	position: absolute; right: .6rem; top: .85rem; width: 22px; height: 22px; line-height: 20px; text-align: center;
	border-radius: 50%; background: #f1f1f4; color: var(--color-muted) !important; font-size: 15px; text-decoration: none;
}
.mini-cart__body li.woocommerce-mini-cart-item a.remove:hover { background: var(--color-sale); color: #fff !important; }
/* Quantity stepper (− qty +). */
.qty-stepper { display: inline-flex; align-items: center; margin: .5rem 0 0 70px; border: 1px solid var(--color-border); border-radius: 999px; overflow: hidden; }
.qty-stepper button { width: 30px; height: 30px; border: 0; background: #f4f4f7; color: var(--color-text); cursor: pointer; font-size: 16px; line-height: 1; transition: background .15s ease, color .15s ease; }
.qty-stepper button:hover { background: var(--color-accent); color: #fff; }
.qty-stepper__val { min-width: 34px; text-align: center; font-weight: 600; font-size: .9rem; }
.qty-stepper.is-loading { opacity: .5; pointer-events: none; }
.mini-cart__body .woocommerce-mini-cart__total { display: flex; justify-content: space-between; align-items: center; border-top: 2px solid var(--color-border); padding-top: 1rem; margin-top: 1rem; font-size: 1.05rem; }

/* Buttons: full-width, big checkout. */
.mini-cart__body .woocommerce-mini-cart__buttons { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.mini-cart__body .woocommerce-mini-cart__buttons .button { display: block; width: 100%; text-align: center; border-radius: 999px; padding: .85rem; }
.mini-cart__body .woocommerce-mini-cart__buttons .checkout { order: -1; background: var(--color-accent) !important; color: #fff !important; font-size: 1.05rem; }
.mini-cart__body .woocommerce-mini-cart__buttons .button:not(.checkout) { background: #fff; color: var(--color-text); border: 1px solid var(--color-border); }

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.qv-modal { position: fixed; inset: 0; z-index: 600; display: none; }
.qv-modal.is-open { display: block; }
.qv-modal__overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.qv-modal__dialog {
	position: relative; z-index: 1; background: #fff; border-radius: var(--radius);
	max-width: 860px; width: calc(100% - 2rem); max-height: 90vh; overflow-y: auto;
	margin: 5vh auto; padding: 2rem;
}
.qv-modal__close { position: absolute; top: .75rem; right: 1rem; background: none; border: 0; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--color-muted); }
.qv { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .qv { grid-template-columns: 1fr 1fr; } }
.qv__media img { width: 100%; height: auto; border-radius: var(--radius); }
.qv__title { font-family: var(--font-heading); margin: 0 0 .5rem; }
.qv__price { color: var(--color-accent); font-size: 1.35rem; font-weight: 700; margin-bottom: 1rem; }
.qv__desc { color: var(--color-muted); margin-bottom: 1.25rem; }
.qv__link { display: inline-block; margin-top: 1rem; color: var(--color-accent); font-weight: 600; }
.qv-loading { text-align: center; color: var(--color-muted); }

/* Quick-view button on product cards. */
.quick-view-btn {
	display: inline-block; margin-top: .35rem; background: none; border: 1px solid var(--color-border);
	border-radius: var(--radius); padding: .4rem .9rem; cursor: pointer; font: inherit; font-size: .85rem;
	color: var(--color-text); transition: border-color .15s ease, color .15s ease;
}
.quick-view-btn { transition: border-color .15s ease, color .15s ease, background .15s ease; }
.quick-view-btn:hover { border-color: var(--color-accent); color: var(--color-accent); background: rgba(43, 80, 200, .04); }

/* ==========================================================================
   PAGE HEADER / BREADCRUMB (component)
   ========================================================================== */
.page-header-banner {
	background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
	color: #fff; padding-block: 3.5rem; text-align: center;
}
.page-header-banner__title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); margin: 0; }
.page-header-banner__subtitle { margin: .75rem 0 0; opacity: .95; }
.breadcrumb { margin-top: 1rem; font-size: .9rem; display: flex; gap: .5rem; justify-content: center; opacity: .9; }
.breadcrumb a { color: #fff; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-intro { padding-block: 4rem; }
.about-intro__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 800px) { .about-intro__grid { grid-template-columns: 1fr 1fr; } }
.about-intro__placeholder { display: block; width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); background: #e6eaf5; }

.about-stats { background: var(--color-accent); color: #fff; padding-block: 3rem; }
.about-stats__grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
@media (min-width: 720px) { .about-stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat__number { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.stat__label { margin-top: .35rem; opacity: .92; }
/* Stats sit on the blue band (both coded + Elementor) — force white text. */
.about-stats .stat__number, .about-stats .stat__label,
.elementor-widget-scaffold-stat .stat__number,
.elementor-widget-scaffold-stat .stat__label { color: #fff; }
.elementor-widget-scaffold-stat { text-align: center; }
/* Staff Picks now renders as the standard responsive product grid (4/3/2 up),
   so no card is ever cut off mid-width. */

/* Elementor hero: left-aligned, constrained content (ShowTime-style). */
.scaffold-hero { min-height: 520px; display: flex; align-items: center; }
.scaffold-hero .elementor-widget-heading,
.scaffold-hero .elementor-widget-text-editor,
.scaffold-hero .elementor-widget-button { max-width: 600px; }
.scaffold-hero .elementor-heading-title { font-family: var(--font-heading); line-height: 1.05; }

/* Circle category tile (round image + label). */
.circle-cat { display: flex; flex-direction: column; align-items: center; text-decoration: none; text-align: center; }
.circle-cat__img { display: block; width: 100%; max-width: 200px; aspect-ratio: 1 / 1; border-radius: 50%; background: #e6eaf5 center/cover no-repeat; box-shadow: 0 10px 26px rgba(0, 0, 0, .08); transition: transform .2s ease, box-shadow .2s ease; }
.circle-cat:hover .circle-cat__img { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(0, 0, 0, .14); }
.circle-cat__title { margin-top: 1rem; font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; color: var(--color-text); }

/* Flash-sale countdown block. Real burst image when set (see generator); the
   gradient is only a fallback. Light overlay + text-shadow keep it vibrant and
   readable. */
.flash-deal { position: relative; overflow: hidden; border-radius: 18px; background: linear-gradient(135deg, #e0521f, var(--color-sale)) center/cover no-repeat; color: #fff; text-align: center; padding: 4.5rem 1.5rem; }
.flash-deal::before { content: ""; position: absolute; inset: 0; background: rgba(60, 12, 0, .12); }
.flash-deal__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.flash-deal__title { font-family: var(--font-heading); font-size: clamp(2.5rem, 6vw, 4rem); margin: 0 0 .25rem; text-shadow: 0 2px 16px rgba(70, 18, 0, .55); }
.flash-deal__sub { text-transform: uppercase; letter-spacing: .1em; opacity: .95; margin: 0 0 1.5rem; text-shadow: 0 1px 10px rgba(70, 18, 0, .5); }
.flash-deal__countdown { justify-content: center; margin-bottom: 1.75rem; }
/* Countdown on the flash-sale image: plain colon-separated numbers (no boxes),
   labels underneath — matching the ShowTime demo. */
.flash-deal .countdown { gap: .5rem; align-items: start; }
.flash-deal .countdown__unit { background: none; padding: 0 .55rem; min-width: 64px; }
.flash-deal .countdown__unit + .countdown__unit { position: relative; }
.flash-deal .countdown__unit + .countdown__unit::before {
	content: ":"; position: absolute; left: -.3em; top: -.05em; line-height: 1;
	font-size: 2.6rem; font-weight: 700; color: rgba(255, 255, 255, .85);
}
.flash-deal .countdown__num { font-size: 2.9rem; text-shadow: 0 2px 12px rgba(70, 18, 0, .55); }
.flash-deal .countdown__lbl { margin-top: .4rem; opacity: .85; text-shadow: 0 1px 8px rgba(70, 18, 0, .5); }
.flash-deal__btn { background: var(--color-cyan); border-color: var(--color-cyan); font-size: 1.1rem; padding: .9rem 2.5rem; }
.flash-deal__btn:hover { background: var(--color-cyan-dark); border-color: var(--color-cyan-dark); box-shadow: 0 8px 22px rgba(21, 178, 204, .4); }

/* Icon box component (value props). */
.icon-box { text-align: center; }
.icon-box__icon { display: inline-flex; align-items: center; justify-content: center; width: 66px; height: 66px; border-radius: 50%; background: rgba(43, 80, 200, .1); color: var(--color-accent); margin-bottom: 1rem; transition: transform .2s ease, background .2s ease; }
.icon-box:hover .icon-box__icon { transform: translateY(-3px); background: rgba(43, 80, 200, .16); }
.icon-box__icon .scaffold-icon { width: 30px; height: 30px; }
.icon-box__title { font-family: var(--font-heading); margin: 0 0 .4rem; font-size: 1.2rem; }
.icon-box__text { color: var(--color-muted); margin: 0; line-height: 1.6; }

/* Value-props band (below the hero): icon on the LEFT with the text beside it,
   plain blue icons (no circle), and thin vertical dividers between the three —
   matching the ChicShop/ShowTime demo. */
.value-props .icon-box {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-areas: "icon title" "icon text";
	align-items: center; justify-content: center; column-gap: 1rem; row-gap: .1rem;
	text-align: left;
}
.value-props .icon-box__icon {
	grid-area: icon; align-self: center;
	background: none; width: auto; height: auto; margin: 0; border-radius: 0;
	color: var(--color-accent);
}
.value-props .icon-box:hover .icon-box__icon { transform: none; background: none; }
.value-props .icon-box__icon .scaffold-icon { width: 42px; height: 42px; }
.value-props .icon-box__title { grid-area: title; font-size: 1.2rem; margin: 0; line-height: 1.2; }
.value-props .icon-box__text { grid-area: text; font-size: .92rem; margin: 0; line-height: 1.35; max-width: 16rem; }
@media (min-width: 768px) {
	.value-props .elementor-column + .elementor-column { border-left: 1px solid var(--color-border); }
}

.about-values { padding-block: 4rem; }
.about-team { padding-block: 4rem; background: #f7f7f7; }
.team-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 820px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-member { text-align: center; }
.team-member__photo { border-radius: var(--radius); overflow: hidden; background: #e6eaf5; aspect-ratio: 1 / 1; }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-member__name { margin: .75rem 0 .1rem; font-size: 1.1rem; }
.team-member__role { margin: 0; color: var(--color-muted); font-size: .9rem; }
.about-cta { padding-block: 3rem; }
.about-cta .promo-banner { min-height: 160px; align-items: center; justify-content: center; text-align: center; }

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact { padding-block: 4rem 0; }
.contact__intro { max-width: 640px; margin: 0 0 2.5rem; color: var(--color-muted); font-size: 1.05rem; line-height: 1.7; }
.contact__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .contact__grid { grid-template-columns: 1fr 1.2fr; } }
.contact__info h2, .contact__form-wrap h2 { font-family: var(--font-heading); font-size: 1.5rem; margin: 0 0 1.5rem; }

/* Contact detail cards (icon + label + value). */
.contact__cards { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact__card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 1.25rem; border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff; transition: transform .18s ease, box-shadow .18s ease; }
.contact__card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20, 28, 60, .08); }
.contact__icon { flex: 0 0 auto; width: 44px; height: 44px; border-radius: 12px; background: rgba(43, 80, 200, .1); color: var(--color-accent); display: inline-flex; align-items: center; justify-content: center; }
.contact__icon .scaffold-icon { width: 22px; height: 22px; }
.contact__card-body { display: flex; flex-direction: column; gap: .2rem; }
.contact__label { font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--color-muted); }
.contact__value { color: var(--color-text); line-height: 1.5; }
.contact__value a { color: inherit; text-decoration: none; }
.contact__value a:hover { color: var(--color-accent); }
.contact__social { margin-top: 1.5rem; }
.contact__social-links { display: flex; gap: .6rem; margin-top: .5rem; }
.contact__social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--color-accent-dark); color: #fff; display: inline-flex; align-items: center; justify-content: center; transition: background .15s ease; }
.contact__social-links a:hover { background: var(--color-accent); }
.contact__social-links .scaffold-icon { width: 18px; height: 18px; }

/* Form card (works for the demo form and a Contact Form 7 shortcode). */
.contact__form-wrap { background: #fff; border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2rem; box-shadow: 0 10px 34px rgba(20, 28, 60, .06); }
.contact-form, .wpcf7-form { display: grid; gap: 1.1rem; }
.contact-form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .contact-form__row { grid-template-columns: 1fr 1fr; } }
.contact-form label, .wpcf7-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .9rem; }
.contact-form input, .contact-form textarea,
.wpcf7-form input.wpcf7-form-control,
.wpcf7-form textarea.wpcf7-form-control {
	width: 100%; padding: .75rem .95rem; border: 1px solid var(--color-border);
	border-radius: var(--radius); font: inherit; background: #fff; color: var(--color-text);
	transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus,
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
	outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(43, 80, 200, .15);
}
.wpcf7-form textarea { min-height: 140px; }
.contact-form button, .wpcf7-form input.wpcf7-submit {
	justify-self: start; width: auto; background: var(--color-accent); color: #fff; border: 0;
	border-radius: 999px; padding: .85rem 2.4rem; font-family: var(--font-heading); font-weight: 600;
	font-size: 1rem; cursor: pointer; box-shadow: none;
	transition: background .15s ease, transform .12s ease, box-shadow .15s ease;
}
.contact-form button:hover, .wpcf7-form input.wpcf7-submit:hover {
	background: var(--color-accent-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(43, 80, 200, .28);
}
.contact-form__note { font-size: .8rem; color: var(--color-muted); font-weight: 400; margin: 0; }
/* CF7 validation + response messages. */
.wpcf7-not-valid-tip { color: var(--color-sale); font-size: .8rem; font-weight: 500; }
.wpcf7-response-output { border-radius: var(--radius); border-width: 1px; margin: 1rem 0 0 !important; padding: .8rem 1rem !important; font-size: .9rem; }
.wpcf7-spinner { margin: 0 0 0 .6rem; }

/* Full-width embedded map. */
.contact__map { margin-top: 4rem; }
.contact__map iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ==========================================================================
   WOOCOMMERCE — NOTICES (message / info / error), brand-styled
   ========================================================================== */
.woocommerce-notices-wrapper:empty { margin: 0; }
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border: 1px solid var(--color-border);
	border-left-width: 4px;
	border-radius: var(--radius);
	background: #f7f8fa;
	padding: 1rem 1.25rem;
	margin: 0 0 1.5rem;
	list-style: none;
	display: flex; align-items: center; flex-wrap: wrap; gap: .5rem 1rem;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}
.woocommerce-message::before,
.woocommerce-info::before,
.woocommerce-error::before { position: static; margin: 0 .35rem 0 0; font-size: 1.1rem; }
.woocommerce-message { border-left-color: #22a45d; color: #14532d; background: #eef9f1; }
.woocommerce-message::before { color: #22a45d; }
.woocommerce-info { border-left-color: var(--color-accent); color: #17306e; background: #eef1fb; }
.woocommerce-info::before { color: var(--color-accent); }
.woocommerce-error { border-left-color: var(--color-sale); color: #7a1420; background: #fdeef0; }
.woocommerce-error::before { color: var(--color-sale); }
.woocommerce-message .button,
.woocommerce-info .button,
.woocommerce-error .button { margin-left: auto; padding: .5rem 1.1rem; font-size: .85rem; }

/* ==========================================================================
   WOOCOMMERCE — FORM FIELDS (cart, checkout, account share these)
   ========================================================================== */
.woocommerce form .form-row { margin: 0 0 1.1rem; padding: 0; }
.woocommerce form .form-row label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .35rem; color: var(--color-text); }
.woocommerce .required { color: var(--color-sale); border: 0; }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .select2-container .select2-selection--single,
.woocommerce #order_comments,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="password"],
.woocommerce input[type="number"] {
	width: 100%;
	padding: .7rem .9rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: #fff;
	font: inherit;
	color: var(--color-text);
	line-height: 1.4;
	transition: border-color .15s ease, box-shadow .15s ease;
}
.woocommerce .select2-container--default .select2-selection--single { height: auto; }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered { line-height: 1.6; padding: 0; color: var(--color-text); }
.woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; top: 0; }
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="tel"]:focus,
.woocommerce input[type="password"]:focus,
.woocommerce input[type="number"]:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(43, 80, 200, .15);
}
.woocommerce .select2-container--default.select2-container--focus .select2-selection--single,
.woocommerce .select2-container--open .select2-selection--single { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(43, 80, 200, .15); }
.woocommerce form .form-row-first,
.woocommerce form .form-row-last { width: calc(50% - .6rem); }
.woocommerce form .form-row-first { float: left; }
.woocommerce form .form-row-last { float: right; }
.woocommerce form .form-row.form-row-wide, .woocommerce form .form-row.form-row-first + .clear + .form-row-wide { clear: both; }

/* ==========================================================================
   WOOCOMMERCE — CART PAGE
   ========================================================================== */
.woocommerce table.shop_table {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	margin: 0 0 1.5rem;
}
.woocommerce table.shop_table thead th {
	background: #f7f8fa;
	font-family: var(--font-heading);
	font-size: .82rem; text-transform: uppercase; letter-spacing: .04em;
	color: var(--color-muted);
	padding: 1rem;
	border-bottom: 1px solid var(--color-border);
}
.woocommerce table.shop_table td { padding: 1.1rem 1rem; vertical-align: middle; border-top: 1px solid var(--color-border); }
.woocommerce-cart table.cart img { width: 72px; border-radius: 8px; }
.woocommerce-cart table.cart td.product-name a { color: var(--color-text); font-weight: 600; text-decoration: none; }
.woocommerce-cart table.cart td.product-name a:hover { color: var(--color-accent); }
.woocommerce-cart table.cart td.product-price,
.woocommerce-cart table.cart td.product-subtotal { color: var(--color-text); font-weight: 600; }
.woocommerce-cart table.cart td.product-remove { text-align: center; }
.woocommerce-cart table.cart td.product-remove a.remove {
	display: inline-flex; align-items: center; justify-content: center;
	width: 26px; height: 26px; border-radius: 50%;
	background: #f1f1f4; color: var(--color-muted) !important; font-size: 16px; text-decoration: none;
}
.woocommerce-cart table.cart td.product-remove a.remove:hover { background: var(--color-sale); color: #fff !important; }
/* Quantity stepper look on cart + single. */
.woocommerce .quantity input.qty {
	width: 72px; height: 46px; text-align: center; font-weight: 600;
	border: 1px solid var(--color-border); border-radius: var(--radius); background: #fff;
}
/* Coupon + update row. */
.woocommerce-cart table.cart td.actions { background: #fafbfc; padding: 1.25rem 1rem; }
.woocommerce-cart table.cart td.actions .coupon { display: flex; gap: .6rem; align-items: center; }
.woocommerce-cart table.cart td.actions .coupon .input-text {
	width: auto; min-width: 180px; height: 46px;
	border: 1px solid var(--color-border); border-radius: var(--radius); padding: 0 .9rem;
}
.woocommerce-cart table.cart td.actions .button { height: 46px; }
.woocommerce-cart table.cart td.actions > .button[name="update_cart"] { float: right; }
/* Cart totals card (floats to the right, sticky-ish card). */
.woocommerce-cart .cart-collaterals { width: 100%; display: flow-root; }
.woocommerce-cart .cart-collaterals .cart_totals {
	float: right; width: 400px; max-width: 100%;
	background: #fff; border: 1px solid var(--color-border);
	border-radius: var(--radius); padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}
.woocommerce-cart .cart_totals h2 { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 1rem; }
.woocommerce-cart .cart_totals table.shop_table { border: 0; margin: 0; }
.woocommerce-cart .cart_totals table.shop_table th { background: none; text-transform: none; letter-spacing: 0; font-size: .95rem; color: var(--color-text); padding: .75rem 0; border: 0; border-bottom: 1px solid var(--color-border); }
.woocommerce-cart .cart_totals table.shop_table td { padding: .75rem 0; border: 0; border-bottom: 1px solid var(--color-border); text-align: right; }
.woocommerce-cart .cart_totals tr.order-total th, .woocommerce-cart .cart_totals tr.order-total td { font-size: 1.15rem; font-weight: 700; border-bottom: 0; }
.woocommerce-cart .cart_totals tr.order-total .amount { color: var(--color-accent); }
.woocommerce-cart .wc-proceed-to-checkout { padding: 1rem 0 0; }
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button { display: block; width: 100%; text-align: center; font-size: 1.05rem; padding: .9rem; }
.woocommerce-cart .cross-sells { clear: both; padding-top: 2.5rem; }
.woocommerce-cart .cross-sells > h2 { font-family: var(--font-heading); font-size: 1.5rem; margin: 0 0 1.5rem; }

/* "Update cart" is disabled by WooCommerce until a quantity changes — give it a
   clean inactive look (neutral, readable) instead of the faded/washed default,
   and the normal accent style once it's enabled. */
.woocommerce-cart td.actions .button[name="update_cart"]:disabled,
.woocommerce-cart td.actions .button[name="update_cart"][disabled] {
	background: #eef1f7 !important; color: var(--color-muted) !important;
	box-shadow: none !important; opacity: 1 !important; cursor: not-allowed; transform: none !important;
}

/* Shipping calculator ("Change address") inside the totals card: the totals cell
   is right-aligned, so force the form left-aligned with full-width fields. */
.woocommerce-cart .cart_totals .shipping-calculator-form { margin: 1.25rem 0 0; text-align: left; display: grid; gap: 1rem; }
.woocommerce-cart .cart_totals .shipping-calculator-form .form-row { margin: 0; float: none; width: 100%; }
.woocommerce-cart .cart_totals .shipping-calculator-form label { display: block; text-align: left; font-weight: 600; font-size: .82rem; margin: 0 0 .35rem; color: var(--color-text); }
.woocommerce-cart .cart_totals .shipping-calculator-form .input-text,
.woocommerce-cart .cart_totals .shipping-calculator-form select { width: 100%; text-align: left; }
.woocommerce-cart .cart_totals .shipping-calculator-form .select2-container { width: 100% !important; text-align: left; }
.woocommerce-cart .cart_totals .shipping-calculator-form .select2-container .select2-selection__rendered { text-align: left; }
.woocommerce-cart .cart_totals .shipping-calculator-form button[name="calc_shipping"] { width: 100%; margin-top: .25rem; }
/* "Change address" toggle link. */
.woocommerce-cart .cart_totals .shipping-calculator-button { color: var(--color-accent); font-weight: 600; }
.woocommerce-cart .cart_totals .shipping-calculator-button:hover { text-decoration: underline; }

/* ==========================================================================
   WOOCOMMERCE — CHECKOUT PAGE
   ========================================================================== */
.woocommerce-checkout .col2-set { display: grid; grid-template-columns: 1fr; gap: 1.5rem; width: 100%; float: none; }
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 { width: 100%; float: none; }
.woocommerce-checkout h3 { font-family: var(--font-heading); font-size: 1.3rem; margin: 0 0 1.25rem; }
/* Two-column checkout via floats: billing on the left, the "Your order" heading
   + summary stacked on the right. (A CSS grid with a row-spanning left column
   expands the rows to fit the tall billing form, which dropped a big gap above
   the order summary — floats keep the heading tight to its table.) */
.woocommerce form.checkout { display: block; }
#customer_details { min-width: 0; }
.woocommerce-checkout #order_review_heading { margin: 0 0 1rem; font-family: var(--font-heading); font-size: 1.3rem; }
.woocommerce-checkout #order_review {
	background: #fff; border: 1px solid var(--color-border);
	border-radius: var(--radius); padding: 1.5rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}
@media (min-width: 900px) {
	.woocommerce form.checkout::after { content: ""; display: block; clear: both; }
	.woocommerce-checkout #customer_details { float: left; width: 56%; }
	.woocommerce-checkout #order_review_heading { float: right; width: 40%; clear: right; margin-top: 0; }
	.woocommerce-checkout #order_review { float: right; width: 40%; clear: right; position: sticky; top: 100px; }
}
@media (max-width: 899px) {
	.woocommerce-checkout #order_review_heading { margin-top: 2.5rem; }
}
.woocommerce-checkout table.shop_table { border: 0; }
.woocommerce-checkout #order_review table.shop_table th,
.woocommerce-checkout #order_review table.shop_table td { padding: .7rem 0; border: 0; border-bottom: 1px solid var(--color-border); background: none; text-transform: none; letter-spacing: 0; }
.woocommerce-checkout #order_review .order-total th,
.woocommerce-checkout #order_review .order-total td { font-size: 1.15rem; font-weight: 700; border-bottom: 0; }
.woocommerce-checkout #order_review .order-total .amount { color: var(--color-accent); }
.woocommerce-checkout #payment { background: #f7f8fa; border-radius: var(--radius); border: 1px solid var(--color-border); margin-top: 1.25rem; }
.woocommerce-checkout #payment ul.payment_methods { border-bottom: 1px solid var(--color-border); padding: 1.25rem; }
.woocommerce-checkout #payment ul.payment_methods li { list-style: none; }
.woocommerce-checkout #payment div.payment_box { background: #fff; border-radius: var(--radius); border: 1px solid var(--color-border); }
.woocommerce-checkout #payment div.payment_box::before { border-bottom-color: #fff; }
.woocommerce-checkout #payment .place-order { padding: 1.25rem; }
.woocommerce-checkout #place_order { width: 100%; font-size: 1.1rem; padding: 1rem; }
.woocommerce form .woocommerce-billing-fields, .woocommerce form .woocommerce-shipping-fields, .woocommerce form .woocommerce-additional-fields { min-width: 0; }
.woocommerce-checkout .woocommerce-form-login, .woocommerce-checkout .woocommerce-form-coupon {
	border: 1px solid var(--color-border) !important; border-radius: var(--radius);
	background: #fafbfc; padding: 1.5rem !important;
}

/* ==========================================================================
   WOOCOMMERCE — MY ACCOUNT
   ========================================================================== */
/* Login / register: force a clean, top-aligned two-column row. WooCommerce's
   default column floats + 47% widths (higher specificity via .col-1/.col-2)
   otherwise stagger these into a broken diagonal — the #customer_login id plus
   !important reliably overrides them. */
.woocommerce-account:not(.logged-in) #customer_login {
	display: flex; flex-wrap: wrap; gap: 2rem; align-items: flex-start; width: 100%;
}
.woocommerce-account #customer_login .u-column1,
.woocommerce-account #customer_login .u-column2 {
	float: none !important; width: auto !important; margin: 0 !important;
	flex: 1 1 320px; min-width: 0; max-width: 560px;
}
@media (max-width: 759px) {
	.woocommerce-account:not(.logged-in) #customer_login { display: block; }
	.woocommerce-account #customer_login .u-column2 { margin-top: 2rem !important; }
}
.woocommerce .woocommerce-form-login,
.woocommerce .woocommerce-form-register,
.woocommerce-account form.login,
.woocommerce-account form.register {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 2rem;
	background: #fff;
	box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
	margin: 0;
}
.woocommerce-account h2 { font-family: var(--font-heading); font-size: 1.4rem; margin: 0 0 1.25rem; }
.woocommerce-form-login__rememberme { display: inline-flex; align-items: center; gap: .4rem; }
.woocommerce-form-login__submit, .woocommerce-form-register__submit { width: 100%; margin-top: .5rem; }
.woocommerce-LostPassword { margin: 1rem 0 0; }
.woocommerce-LostPassword a { color: var(--color-accent); }
/* Logged-in dashboard: nav sidebar + content. The empty notices wrapper is a
   third child of .woocommerce, so it must span the full width — otherwise it
   eats a grid cell and pushes the nav/content into a broken diagonal. WC's own
   float + width on the nav/content are overridden so the grid controls layout. */
.woocommerce-account.logged-in .woocommerce { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 820px) { .woocommerce-account.logged-in .woocommerce { grid-template-columns: 240px minmax(0, 1fr); } }
/* WooCommerce puts a clearfix ::before/::after on .woocommerce; when it becomes
   a grid those pseudo-elements turn into phantom grid items that eat the first
   cell and shove the nav/content into the wrong columns. Null them out. */
.woocommerce-account.logged-in .woocommerce::before,
.woocommerce-account.logged-in .woocommerce::after { content: none; display: none; }
.woocommerce-account.logged-in .woocommerce > .woocommerce-notices-wrapper { grid-column: 1 / -1; margin: 0; }
.woocommerce-account.logged-in .woocommerce-MyAccount-navigation,
.woocommerce-account.logged-in .woocommerce-MyAccount-content {
	float: none !important; width: auto !important; margin: 0 !important; min-width: 0;
}
.woocommerce-MyAccount-navigation { margin: 0; }
.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.woocommerce-MyAccount-navigation li { margin: 0; border-bottom: 1px solid var(--color-border); }
.woocommerce-MyAccount-navigation li:last-child { border-bottom: 0; }
.woocommerce-MyAccount-navigation li a { display: block; padding: .85rem 1.1rem; color: var(--color-text); text-decoration: none; font-weight: 500; transition: background .15s ease, color .15s ease; }
.woocommerce-MyAccount-navigation li a:hover { background: #f7f8fa; color: var(--color-accent); }
.woocommerce-MyAccount-navigation li.is-active a { background: var(--color-accent); color: #fff; }
.woocommerce-MyAccount-content { min-width: 0; }
.woocommerce-MyAccount-content > p:first-child { margin-top: 0; }
.woocommerce-MyAccount-content .woocommerce-Address { margin-top: 1rem; }
.woocommerce-MyAccount-content h3, .woocommerce-MyAccount-content h2 { font-family: var(--font-heading); }
.woocommerce table.my_account_orders .button, .woocommerce .woocommerce-orders-table .button { padding: .45rem 1rem; font-size: .85rem; }
.woocommerce-order-details, .woocommerce-customer-details { margin-top: 2rem; }
.woocommerce ul.order_details { background: #f7f8fa; border-radius: var(--radius); padding: 1.5rem; list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 0 0 2rem; }
.woocommerce ul.order_details li { list-style: none; border: 0; font-size: .9rem; color: var(--color-muted); text-transform: uppercase; letter-spacing: .03em; padding: 0; }
.woocommerce ul.order_details li strong { display: block; font-size: 1.05rem; color: var(--color-text); text-transform: none; letter-spacing: 0; margin-top: .25rem; }
/* Addresses — two cards side by side. Null the clearfix pseudo-elements so they
   don't become phantom grid items (same issue as the dashboard grid). */
.woocommerce-Addresses.col2-set { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.woocommerce-Addresses.col2-set::before,
.woocommerce-Addresses.col2-set::after { content: none; display: none; }
@media (min-width: 640px) { .woocommerce-Addresses.col2-set { grid-template-columns: 1fr 1fr; } }
.woocommerce-Addresses .woocommerce-Address { float: none !important; width: auto !important; }
.woocommerce-Address { border: 1px solid var(--color-border); border-radius: var(--radius); padding: 1.5rem; background: #fff; }
.woocommerce-Address address { font-style: normal; line-height: 1.7; color: var(--color-text); }
.woocommerce .addresses .title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.woocommerce .addresses .title h3 { margin: 0; }
.woocommerce .addresses .title .edit { white-space: nowrap; color: var(--color-accent); text-decoration: none; font-weight: 600; font-size: .9rem; }
.woocommerce .addresses .title .edit:hover { text-decoration: underline; }

/* ==========================================================================
   WOOCOMMERCE CART/CHECKOUT/ACCOUNT — RESPONSIVE
   ========================================================================== */
@media (max-width: 720px) {
	.woocommerce table.shop_table, .woocommerce table.shop_table tbody, .woocommerce table.shop_table tr { display: block; }
	.woocommerce-cart table.cart thead { display: none; }
	.woocommerce-cart table.cart tr.cart_item { border: 1px solid var(--color-border); border-radius: var(--radius); padding: .5rem; margin-bottom: 1rem; position: relative; }
	.woocommerce-cart table.cart tr.cart_item td { display: flex; justify-content: space-between; align-items: center; border: 0; padding: .5rem; text-align: right; }
	.woocommerce-cart table.cart tr.cart_item td::before { content: attr(data-title); font-weight: 600; color: var(--color-muted); font-size: .8rem; text-transform: uppercase; }
	.woocommerce-cart table.cart tr.cart_item td.product-remove { position: absolute; top: .35rem; right: .35rem; padding: 0; }
	.woocommerce-cart table.cart tr.cart_item td.product-remove::before { display: none; }
	.woocommerce-cart table.cart td.actions { display: block; }
	.woocommerce-cart table.cart td.actions .coupon { flex-wrap: wrap; }
	.woocommerce-cart table.cart td.actions > .button[name="update_cart"] { float: none; width: 100%; margin-top: .6rem; }
	.woocommerce-cart .cart-collaterals .cart_totals { float: none; width: 100%; }
	.woocommerce form .form-row-first, .woocommerce form .form-row-last { width: 100%; float: none; }
}

/* ==========================================================================
   UI/UX POLISH — designed empty states (branded gradients replace the
   placeholder imagery) + hero, tiles, and micro-interactions (ShowTime feel)
   ========================================================================== */

/* --- Hero: a premium brand gradient so it looks finished with no photo.
   Overrides Elementor's placeholder background; a real image still wins if the
   merchant sets one in the editor (Elementor prints it after this rule with
   the same specificity, and image URLs beat our gradient there). --- */
.scaffold-hero {
	background-color: #1a2452; /* fallback tint if the hero photo fails to load */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 560px;
	position: relative;
}
/* Heading + subtitle legibility over the bright product photo. */
.scaffold-hero .elementor-heading-title { text-shadow: 0 2px 14px rgba(10, 14, 30, .5); }
.scaffold-hero .elementor-widget-text-editor { text-shadow: 0 1px 10px rgba(10, 14, 30, .5); }
.scaffold-hero .elementor-container { position: relative; z-index: 1; }

/* Hero action row: primary white pill + secondary underlined link, side by side. */
.hero-actions > .elementor-container { min-height: 0; }
.hero-actions .elementor-widget-wrap { flex-direction: row !important; flex-wrap: wrap; align-items: center; gap: .6rem 1.75rem; }
.hero-actions .elementor-widget-button { width: auto !important; max-width: none !important; margin: 0 !important; }
.scaffold-hero .hero-actions .elementor-button {
	background: #fff; color: #141c3c; border-radius: 999px;
	font-family: var(--font-heading); font-weight: 600; padding: 1rem 2.3rem; font-size: 1.05rem;
	box-shadow: 0 10px 26px rgba(10, 14, 30, .28);
	transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.scaffold-hero .hero-actions .elementor-button:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(10, 14, 30, .34); background: #f3f5ff; }
/* Secondary "link" button (underlined white text, no pill). */
.scaffold-hero .hero-btn-link .elementor-button {
	background: transparent !important; color: #fff !important; box-shadow: none !important;
	padding: 1rem .25rem; border-radius: 0;
	text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 2px;
}
.scaffold-hero .hero-btn-link .elementor-button:hover { transform: none; color: #e7d8b8 !important; background: transparent !important; }

/* --- Category feature tiles: branded gradient when no image is set. --- */
.promo-banner--tint { background: linear-gradient(135deg, #2b50c8, #1b3aa0); }
.promo-banner--tint::before {
	content: ""; position: absolute; inset: 0;
	background: radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .18), transparent 55%);
}
/* Cycle four brand hues across the row for a lively, intentional grid. */
.elementor-column:nth-of-type(4n+1) .promo-banner--tint { background: linear-gradient(135deg, #2b50c8, #1b3aa0); }
.elementor-column:nth-of-type(4n+2) .promo-banner--tint { background: linear-gradient(135deg, #15b2cc, #0d7f93); }
.elementor-column:nth-of-type(4n+3) .promo-banner--tint { background: linear-gradient(135deg, #f0663a, #d13d16); }
.elementor-column:nth-of-type(4n+4) .promo-banner--tint { background: linear-gradient(135deg, #6b4dff, #4b2bcf); }
/* Lift the white label a touch on tinted tiles. */
.promo-banner--tint .promo-banner__body { box-shadow: 0 14px 34px rgba(0, 0, 0, .28); }

/* --- Department circles: colourful branded gradients when no image is set
   (ShowTime uses vivid category bubbles). --- */
.circle-cat--tint .circle-cat__img {
	background: linear-gradient(140deg, #2b50c8, #1b3aa0);
	position: relative;
}
.circle-cat--tint .circle-cat__img::after {
	content: ""; position: absolute; inset: 0; border-radius: 50%;
	background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .35), transparent 55%);
}
.elementor-column:nth-of-type(5n+1) .circle-cat--tint .circle-cat__img { background: linear-gradient(140deg, #2b50c8, #1b3aa0); }
.elementor-column:nth-of-type(5n+2) .circle-cat--tint .circle-cat__img { background: linear-gradient(140deg, #15b2cc, #0d7f93); }
.elementor-column:nth-of-type(5n+3) .circle-cat--tint .circle-cat__img { background: linear-gradient(140deg, #f0663a, #d13d16); }
.elementor-column:nth-of-type(5n+4) .circle-cat--tint .circle-cat__img { background: linear-gradient(140deg, #6b4dff, #4b2bcf); }
.elementor-column:nth-of-type(5n+5) .circle-cat--tint .circle-cat__img { background: linear-gradient(140deg, #1e9e6a, #127a4f); }

/* --- Micro-interactions: crisper product-card hover + button sheen. --- */
.woocommerce ul.products li.product {
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.woocommerce ul.products li.product:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(20, 28, 60, .12);
}
/* Quick-view fades up on card hover instead of always sitting there. */
@media (min-width: 700px) and (prefers-reduced-motion: no-preference) {
	.woocommerce ul.products li.product .quick-view-btn {
		opacity: 0; transform: translateY(6px);
		transition: opacity .2s ease, transform .2s ease, border-color .15s ease, color .15s ease, background .15s ease;
	}
	.woocommerce ul.products li.product:hover .quick-view-btn,
	.woocommerce ul.products li.product:focus-within .quick-view-btn { opacity: 1; transform: none; }
}

/* Section rhythm: a touch more breathing room between home sections. */
.home-section + .home-section { margin-top: .5rem; }
