/* =========================================================================
   Ace Custom Creations — theme stylesheet
   Color tokens are injected as CSS variables by functions.php (Customizer).
   ========================================================================= */

:root {
	--background: #faf8f4;
	--foreground: #402f26;
	--primary: #d38969;
	--secondary: #5f9595;
	--muted: #f3eee8;
	--accent: #e198a7;
	--border: #e8e0d9;
	--peach: #f5c8ad;
	--champagne: #eddbc0;
	--terracotta: #c66e53;
	--cream: #f8f3ed;
	--button-text: #ffffff;
	--logo-height: 56px;
	--radius-lg: 1.25rem;
	--radius-md: 1rem;
	--radius-sm: 0.75rem;
	--font-display: 'Fredoka', sans-serif;
	--font-body: 'Nunito', sans-serif;
	--shadow-soft: 0 8px 30px -8px rgba(211, 137, 105, 0.25);
	--shadow-elevated: 0 24px 55px -14px rgba(198, 110, 83, 0.32);
	--gradient-sunset: linear-gradient(135deg, var(--primary) 0%, var(--peach) 55%, var(--accent) 100%);
	--gradient-rainbow: linear-gradient(90deg, var(--champagne) 0%, var(--peach) 35%, var(--accent) 70%, var(--secondary) 100%);
	--gradient-cool: linear-gradient(135deg, var(--terracotta) 0%, var(--primary) 50%, var(--accent) 100%);
	--ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
	--header-height: 80px;
}

/* ------------------------------- Reset / base ---------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--background);
	color: var(--foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	margin: 0;
	letter-spacing: -0.01em;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, img.hero-video, video.hero-video {
	max-width: none;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding-inline: 2rem; }
}

.site-main { overflow-x: hidden; }

/* --------------------------------- Utilities ------------------------------ */
.yarn-dots {
	background-image: radial-gradient(rgba(211, 137, 105, 0.14) 1.5px, transparent 1.5px);
	background-size: 22px 22px;
}
.stitched-divider {
	height: 2px;
	background-image: linear-gradient(to right, rgba(211, 137, 105, 0.55) 60%, transparent 40%);
	background-size: 12px 2px;
	background-repeat: repeat-x;
}

/* ------------------------------- Scroll reveal ---------------------------- */
.reveal-item, .reveal-fade {
	opacity: 0;
	transform: translateY(32px);
	filter: blur(6px);
	transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth), filter 0.75s var(--ease-smooth);
}
.reveal-fade { transform: translateY(20px); }
.reveal-item.is-visible, .reveal-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
	filter: blur(0);
}
body.is-customizer .reveal-item,
body.is-customizer .reveal-fade {
	opacity: 1 !important;
	transform: none !important;
	filter: none !important;
}
@media (prefers-reduced-motion: reduce) {
	.reveal-item, .reveal-fade {
		transition: none;
		opacity: 1;
		transform: none;
		filter: none;
	}
}

@keyframes floaty {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-14px); }
}
@keyframes spin-slow {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ------------------------------ Scroll progress bar ------------------------ */
.theme-scroll-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 4px;
	background: var(--gradient-sunset);
	transform: scaleX(0);
	transform-origin: left;
	z-index: 60;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-solid {
	background: rgba(250, 248, 244, 0.92);
	backdrop-filter: blur(10px);
	border-bottom-color: var(--border);
	box-shadow: var(--shadow-soft);
}
.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4rem;
}
@media (min-width: 1024px) {
	.site-nav { height: 5rem; }
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.site-logo-img {
	height: var(--logo-height);
	width: var(--logo-height);
	max-height: 3.5rem;
	max-width: 3.5rem;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: var(--shadow-soft);
	border: 2px solid rgba(255, 255, 255, 0.6);
	transition: transform 0.3s ease;
}
.site-header.is-solid .site-logo-img { border-color: rgba(211, 137, 105, 0.3); }
.site-brand:hover .site-logo-img { transform: scale(1.05) rotate(-2deg); }
.site-logo-text, .site-brand-name {
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 1.125rem;
	color: #fff;
	text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.site-header.is-solid .site-logo-text,
.site-header.is-solid .site-brand-name { color: var(--foreground); text-shadow: none; }
@media (max-width: 639px) { .site-brand-name, .site-logo-text { display: none; } }

.site-nav__desktop { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .site-nav__desktop { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 1.5rem; }
.theme-nav-link {
	font-weight: 700;
	font-size: 0.875rem;
	color: rgba(255,255,255,0.9);
	position: relative;
	transition: color 0.2s ease;
}
.site-header.is-solid .theme-nav-link { color: rgba(64,47,38,0.8); }
.theme-nav-link::after {
	content: '';
	position: absolute;
	left: 0; bottom: -4px;
	height: 3px; width: 100%;
	background: var(--gradient-sunset);
	border-radius: 2px;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.theme-nav-link:hover::after { transform: scaleX(1); }
.theme-nav-link:hover { color: #fff; }
.site-header.is-solid .theme-nav-link:hover { color: var(--foreground); }

.cart-icon-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	color: #fff;
	transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header.is-solid .cart-icon-btn { color: var(--foreground); }
.cart-icon-btn:hover { background: rgba(0,0,0,0.08); }
.theme-cart-count {
	position: absolute;
	top: -0.15rem; right: -0.15rem;
	display: flex; align-items: center; justify-content: center;
	min-width: 1.25rem; height: 1.25rem;
	border-radius: 999px;
	background: var(--primary);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 700;
	padding: 0 0.25rem;
	box-shadow: var(--shadow-soft);
}
.theme-cart-count:empty { display: none; }

.btn-header-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.65rem 1.25rem;
	border-radius: 999px;
	background: var(--gradient-sunset);
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-header-cta:hover { transform: scale(1.05); }

.site-nav__mobile-triggers { display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .site-nav__mobile-triggers { display: none; } }
.mobile-menu-toggle {
	display: flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem;
	color: #fff;
}
.site-header.is-solid .mobile-menu-toggle,
.mobile-menu-open .mobile-menu-toggle { color: var(--foreground); }
.mobile-menu-toggle .icon-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s var(--ease-smooth);
	border-top: 1px solid transparent;
}
@media (min-width: 1024px) { .mobile-menu { display: none; } }
.mobile-menu.is-open { max-height: 32rem; border-top-color: var(--border); }
.mobile-menu__list,
.mobile-menu .theme-nav-list { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.mobile-menu .theme-nav-list a {
	display: block;
	padding: 0.6rem 0.75rem;
	border-radius: var(--radius-md);
	font-weight: 700;
	font-size: 1rem;
	transition: background 0.2s ease;
}
.mobile-menu .theme-nav-list a:hover { background: var(--muted); }
.mobile-menu__list a {
	display: block;
	padding: 0.6rem 0.75rem;
	border-radius: 0.75rem;
	font-weight: 700;
	font-size: 1rem;
	color: var(--foreground);
}
.mobile-menu__list a:hover { background: var(--muted); }
.mobile-menu__cta { margin: 0.5rem 0 1rem; justify-content: center; width: 100%; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
body.theme-no-hero .hero-section { display: none; }
.hero-media { position: absolute; inset: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay--1 { background: linear-gradient(135deg, rgba(225,152,167,0.7), rgba(64,47,38,0.55), rgba(95,149,149,0.7)); mix-blend-mode: multiply; }
.hero-overlay--2 { background: linear-gradient(to bottom, rgba(64,47,38,0.7), rgba(64,47,38,0.65), rgba(64,47,38,0.85)); }
.hero-overlay--3 { background: rgba(64,47,38,0.3); }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(28px); pointer-events: none; animation: floaty 6s ease-in-out infinite; }
.hero-blob--1 { left: 8%; top: 22%; width: 6rem; height: 6rem; background: rgba(237,219,192,0.5); }
.hero-blob--2 { right: 12%; top: 30%; width: 8rem; height: 8rem; background: rgba(95,149,149,0.5); animation-delay: 1.5s; }
.hero-blob--3 { bottom: 20%; left: 20%; width: 7rem; height: 7rem; background: rgba(225,152,167,0.5); animation-delay: 0.8s; }

.hero-content { position: relative; z-index: 10; padding: 7rem 0; text-align: center; }
.hero-badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	margin-bottom: 1.25rem;
	padding: 0.5rem 1.25rem;
	border-radius: 999px;
	background: rgba(255,255,255,0.15);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	backdrop-filter: blur(6px);
}
.hero-title {
	margin: 0 auto 1.5rem;
	max-width: 56rem;
	font-size: 2.75rem;
	line-height: 1.05;
	color: #fff;
	text-shadow: 0 4px 24px rgba(0,0,0,0.6);
}
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 6rem; } }
.hero-subtitle {
	margin: 0 auto 2.5rem;
	max-width: 36rem;
	font-size: 1.125rem;
	font-weight: 600;
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.5rem; } }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; }
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.btn-hero-primary, .btn-hero-outline {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 1rem 2.25rem;
	border-radius: 999px;
	font-weight: 800;
	font-size: 1rem;
	text-transform: none;
	transition: transform 0.2s ease, background-color 0.2s ease;
}
.btn-hero-primary { background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-elevated); }
.btn-hero-primary:hover { transform: scale(1.05); }
.btn-hero-outline { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(6px); }
.btn-hero-outline:hover { background: rgba(255,255,255,0.25); }

/* ==========================================================================
   Feature strip
   ========================================================================== */
.feature-strip { padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 60%, transparent); }
.feature-strip__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .feature-strip__grid { grid-template-columns: repeat(4, 1fr); } }
.feature-strip__item { display: flex; align-items: center; justify-content: center; gap: 0.75rem; text-align: center; }
@media (min-width: 768px) { .feature-strip__item { justify-content: flex-start; text-align: left; } }
.feature-strip__icon {
	flex-shrink: 0; display: flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background: var(--gradient-sunset); color: #fff;
}
.feature-strip__text { font-weight: 800; font-size: 0.875rem; }

/* ==========================================================================
   Shop section
   ========================================================================== */
.shop-section { padding: 5rem 0; }
@media (min-width: 768px) { .shop-section { padding: 7rem 0; } }
.shop-header { text-align: center; margin-bottom: 2.5rem; }
.shop-eyebrow, .testimonials-eyebrow, .owner-eyebrow, .faq-eyebrow, .policies-eyebrow, .contact-eyebrow {
	display: block; margin-bottom: 0.5rem;
	font-size: 0.875rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.25em;
	color: var(--primary);
}
.shop-heading { font-family: var(--font-display); font-size: 2.25rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3.75rem; } }
.shop-heading .text-gradient,
.text-gradient-sunset,
.hero-title-accent {
	display: inline;
	background: var(--gradient-sunset);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}
.shop-subtitle { max-width: 32rem; margin: 0.75rem auto 0; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

.shop-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; }
.shop-filter-btn {
	padding: 0.6rem 1.25rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.875rem;
	border: 2px solid var(--border);
	background: var(--background);
	color: color-mix(in srgb, var(--foreground) 70%, transparent);
	transition: all 0.2s ease;
}
.shop-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.shop-filter-btn.is-active { background: var(--gradient-sunset); color: #fff; border-color: transparent; box-shadow: var(--shadow-soft); }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.75rem;
	align-items: stretch;
}
@media (min-width: 640px) { .theme-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(3, 1fr); } }

.theme-product-card-wrap.is-hidden { display: none; }
.theme-product-card {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: auto auto auto;
	height: 100%;
}
.theme-product-card > .theme-card-link {
	grid-row: 1 / -1;
	grid-column: 1;
	align-self: stretch;
	justify-self: stretch;
	min-height: 100%;
	z-index: 2;
	pointer-events: auto;
}
.theme-product-card *:not(.theme-card-link):not(.theme-product-card__add) { pointer-events: none; }
.theme-product-card__add { pointer-events: auto; }

.theme-product-card__image-wrapper {
	grid-row: 1;
	grid-column: 1;
	position: relative;
	margin-bottom: 1rem;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: var(--radius-lg);
	background: var(--muted);
	box-shadow: var(--shadow-soft);
	transition: box-shadow 0.3s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { box-shadow: var(--shadow-elevated); }
.theme-product-card__image.tilt-neg-1 { transform: rotate(-1deg); }
.theme-product-card__image.tilt-pos-1 { transform: rotate(1deg); }
.theme-product-card__image.tilt-0 { transform: rotate(0deg); }
.theme-product-card__image.tilt-neg-2 { transform: rotate(-2deg); }
.theme-product-card__image.tilt-pos-2 { transform: rotate(2deg); }
.theme-product-card__image {
	transition: transform 0.7s ease;
}
.theme-product-card:hover .theme-product-card__image { transform: rotate(0deg) scale(1.1); }

.theme-product-card__price {
	position: absolute; top: 0.75rem; right: 0.75rem; z-index: 1;
	padding: 0.35rem 0.75rem; border-radius: 999px;
	background: color-mix(in srgb, var(--background) 95%, transparent);
	font-weight: 800; font-size: 0.875rem; box-shadow: var(--shadow-soft);
}
.theme-product-card__cat {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 1;
	padding: 0.3rem 0.6rem; border-radius: 999px;
	background: var(--secondary); color: #fff;
	font-weight: 700; font-size: 0.7rem;
}
.theme-product-card__add {
	grid-row: 1;
	grid-column: 1;
	align-self: end;
	justify-self: end;
	z-index: 10;
	margin: 0 0.75rem 0.75rem 0;
	display: flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background: var(--gradient-sunset); color: #fff;
	box-shadow: var(--shadow-elevated);
	transition: transform 0.3s ease;
}
.theme-product-card__add:hover { transform: scale(1.1); }

.theme-product-card__title {
	grid-row: 2;
	grid-column: 1;
	font-size: 1.125rem;
	line-height: 1.25;
	transition: color 0.2s ease;
}
.theme-product-card:hover .theme-product-card__title { color: var(--primary); }
.theme-product-card__blurb {
	grid-row: 3;
	grid-column: 1;
	margin-top: 0.25rem;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--foreground) 60%, transparent);
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.shop-viewall-wrap { margin-top: 3rem; text-align: center; }
.btn-view-all {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	border: 2px solid var(--border);
	background: var(--background);
	font-weight: 700; font-size: 0.875rem;
	box-shadow: var(--shadow-soft);
	transition: all 0.2s ease;
}
.btn-view-all:hover { border-color: var(--primary); color: var(--primary); }
.btn-view-all svg { transition: transform 0.2s ease; }
.btn-view-all.is-expanded svg { transform: rotate(90deg); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { position: relative; overflow: hidden; padding: 5rem 0; background: color-mix(in srgb, var(--muted) 60%, transparent); }
@media (min-width: 768px) { .testimonials-section { padding: 7rem 0; } }
.testimonials-rainbow-bar { position: absolute; inset: 0 0 auto 0; height: 4px; background: var(--gradient-rainbow); opacity: 0.7; }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	border: 2px dashed color-mix(in srgb, var(--primary) 50%, transparent);
	background: var(--background);
	padding: 0.4rem 1rem;
}
.testimonials-title { font-family: var(--font-display); font-size: 2.25rem; margin-top: 0.75rem; }
@media (min-width: 768px) { .testimonials-title { font-size: 3.75rem; } }
.testimonials-subtitle { max-width: 34rem; margin: 1rem auto 0; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.testimonials-divider { width: 8rem; margin: 1.5rem auto 0; }

.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
	position: relative;
	display: flex; flex-direction: column; justify-content: space-between;
	border: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
	background: var(--background);
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-soft);
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonial-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-8px) rotate(0deg) !important; }
.testimonial-card__quote-icon { position: absolute; top: -0.75rem; right: 1.5rem; color: color-mix(in srgb, var(--primary) 30%, transparent); transform: rotate(180deg); }
.testimonial-card__stars { display: flex; gap: 0.15rem; margin-bottom: 1rem; color: var(--accent); }
.testimonial-card blockquote { margin: 0; font-size: 1rem; line-height: 1.6; color: color-mix(in srgb, var(--foreground) 85%, transparent); }
.testimonial-card__caption { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem; padding-top: 1rem; border-top: 1px dashed var(--border); }
.testimonial-card__person { flex: 1; }
.testimonial-card__name { font-family: var(--font-display); font-size: 1rem; }
.testimonial-card__location { font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.testimonial-card__tag { padding: 0.25rem 0.65rem; border-radius: 999px; background: color-mix(in srgb, var(--accent) 25%, transparent); font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: color-mix(in srgb, var(--foreground) 70%, transparent); }

.testimonials-cta {
	position: relative;
	max-width: 42rem; margin: 3.5rem auto 0;
	text-align: center;
	border: 2px dashed color-mix(in srgb, var(--primary) 40%, transparent);
	background: var(--background);
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-soft);
}
.testimonials-cta__icon {
	margin: 0 auto 1rem; display: flex; align-items: center; justify-content: center;
	width: 3rem; height: 3rem; border-radius: 50%;
	background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-soft);
}
.testimonials-cta h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.testimonials-cta p { max-width: 28rem; margin: 0 auto 1.5rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); font-size: 0.875rem; }
.btn-testimonials-cta {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.85rem 1.75rem; border-radius: 999px;
	background: var(--gradient-sunset); color: #fff;
	font-weight: 800; font-size: 0.875rem; box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease;
}
.btn-testimonials-cta:hover { transform: scale(1.03); }

/* ==========================================================================
   Custom orders
   ========================================================================== */
.custom-orders-section {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
	background: var(--gradient-cool);
	color: #fff;
}
@media (min-width: 768px) { .custom-orders-section { padding: 7rem 0; } }
.custom-orders-blob { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.1); filter: blur(50px); }
.custom-orders-blob--1 { top: -5rem; right: -5rem; width: 18rem; height: 18rem; }
.custom-orders-blob--2 { bottom: -6rem; left: -4rem; width: 20rem; height: 20rem; }
.custom-orders-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .custom-orders-grid { grid-template-columns: 1fr 1fr; } }
.custom-orders-eyebrow {
	display: inline-flex; align-items: center; gap: 0.5rem;
	margin-bottom: 0.75rem;
	padding: 0.4rem 1rem; border-radius: 999px;
	background: rgba(255,255,255,0.2);
	font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
	color: #fff;
}
.custom-orders-section .custom-orders-eyebrow,
.custom-orders-section .custom-orders-eyebrow span,
.custom-orders-section .custom-orders-eyebrow svg {
	color: #fff;
}
.custom-orders-title { font-size: 2.25rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .custom-orders-title { font-size: 3rem; } }
.custom-orders-text { font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.custom-orders-list { display: flex; flex-direction: column; gap: 0.75rem; }
.custom-orders-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: rgba(255,255,255,0.9); }
.custom-orders-bullet-icon { margin-top: 0.2rem; flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(255,255,255,0.25); }

.custom-orders-form-wrap { color: var(--foreground); }
.custom-order-form, .contact-form {
	display: flex; flex-direction: column; gap: 1.25rem;
	border-radius: var(--radius-lg);
	background: var(--background);
	padding: 1.75rem;
	box-shadow: var(--shadow-elevated);
}
@media (min-width: 768px) { .custom-order-form, .contact-form { padding: 2.25rem; } }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label { margin-bottom: 0.5rem; font-weight: 700; font-size: 0.875rem; }
.form-field input, .form-field select, .form-field textarea {
	width: 100%;
	border: 2px solid var(--border);
	background: color-mix(in srgb, var(--muted) 40%, transparent);
	border-radius: var(--radius-md);
	padding: 0.75rem 1rem;
	font-size: 0.875rem;
	color: var(--foreground);
	transition: border-color 0.2s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); }
.form-field textarea { resize: none; }

.btn-form-submit, .btn-form-submit--full {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	width: 100%;
	padding: 1rem 1.5rem;
	border-radius: 999px;
	background: var(--gradient-sunset);
	color: #fff;
	font-weight: 800; font-size: 1rem;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease;
}
.btn-form-submit:hover { transform: scale(1.02); }

/* ==========================================================================
   Owner
   ========================================================================== */
.owner-section { padding: 5rem 0; background: color-mix(in srgb, var(--muted) 60%, transparent); }
@media (min-width: 768px) { .owner-section { padding: 7rem 0; } }
.owner-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .owner-grid { grid-template-columns: 1fr 1fr; } }
.owner-photo-wrap { position: relative; }
.owner-photo-frame { border-radius: 2.5rem; background: var(--gradient-sunset); padding: 0.5rem; box-shadow: var(--shadow-elevated); }
.owner-photo { aspect-ratio: 4 / 5; width: 100%; border-radius: 2rem; }
.owner-photo-badge {
	position: absolute; bottom: -1.25rem; right: -1rem;
	display: none;
	transform: rotate(3deg);
	border-radius: var(--radius-lg);
	background: var(--background);
	padding: 1.25rem;
	box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) { .owner-photo-badge { display: block; } }
.owner-photo-badge__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.owner-photo-badge__role { font-size: 0.875rem; font-weight: 600; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.owner-title { font-family: var(--font-display); font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .owner-title { font-size: 3rem; } }
.owner-bio { display: flex; flex-direction: column; gap: 1rem; font-size: 1rem; line-height: 1.7; color: color-mix(in srgb, var(--foreground) 65%, transparent); }
.owner-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem; }
.owner-badge { padding: 0.5rem 1rem; border-radius: 999px; background: var(--background); font-weight: 700; font-size: 0.875rem; box-shadow: var(--shadow-soft); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section { padding: 5rem 0; }
@media (min-width: 768px) { .faq-section { padding: 7rem 0; } }
.faq-container { max-width: 48rem; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 2.5rem; }
.faq-eyebrow { color: var(--secondary); }
.faq-title { font-size: 2.25rem; }
@media (min-width: 768px) { .faq-title { font-size: 3rem; } }
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 2px solid var(--border); border-radius: var(--radius-lg); background: var(--background); overflow: hidden; }
.faq-item__question {
	display: flex; align-items: center; justify-content: space-between; gap: 1rem;
	width: 100%;
	padding: 1.25rem 1.5rem;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.125rem;
}
.faq-item__icon {
	flex-shrink: 0; display: flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem; border-radius: 50%;
	background: var(--gradient-sunset); color: #fff;
	transition: transform 0.3s ease;
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease-smooth); }
.faq-item.is-open .faq-item__answer { max-height: 30rem; }
.faq-item__answer p { padding: 0 1.5rem 1.5rem; font-size: 0.9375rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground) 65%, transparent); }

/* ==========================================================================
   Policies
   ========================================================================== */
.policies-section { padding: 5rem 0; background: color-mix(in srgb, var(--muted) 60%, transparent); }
@media (min-width: 768px) { .policies-section { padding: 7rem 0; } }
.policies-header { text-align: center; margin-bottom: 2.5rem; }
.policies-title { font-size: 2.25rem; }
@media (min-width: 768px) { .policies-title { font-size: 3rem; } }
.policies-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .policies-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.policy-card { background: var(--background); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-soft); transition: box-shadow 0.3s ease, transform 0.3s ease; }
.policy-card:hover { box-shadow: var(--shadow-elevated); transform: translateY(-8px); }
.policy-card__icon {
	display: flex; align-items: center; justify-content: center;
	width: 3.5rem; height: 3.5rem; margin-bottom: 1rem;
	border-radius: var(--radius-md);
	background: var(--gradient-sunset); color: #fff;
}
.policy-card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.policy-card__text { font-size: 0.9375rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground) 65%, transparent); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-section { position: relative; overflow: hidden; padding: 6rem 0; }
@media (min-width: 768px) { .contact-section { padding: 8rem 0; } }
.contact-bg-img { position: absolute; inset: 0; z-index: 0; }
.contact-overlay { position: absolute; inset: 0; background: rgba(64,47,38,0.6); z-index: 1; }
.contact-blob { position: absolute; border-radius: 50%; filter: blur(50px); z-index: 1; }
.contact-blob--1 { left: -5rem; top: 2.5rem; width: 18rem; height: 18rem; background: rgba(255,255,255,0.1); }
.contact-blob--2 { right: -4rem; bottom: 0; width: 20rem; height: 20rem; background: rgba(225,152,167,0.3); }
.contact-inner { position: relative; z-index: 2; }
.contact-header { text-align: center; margin-bottom: 3rem; }
.contact-eyebrow { color: rgba(255,255,255,0.8); }
.contact-title { font-size: 2.25rem; color: #fff; }
@media (min-width: 768px) { .contact-title { font-size: 3.75rem; } }
.contact-text { max-width: 32rem; margin: 1rem auto 0; color: rgba(255,255,255,0.85); font-size: 1rem; }
@media (min-width: 768px) { .contact-text { font-size: 1.125rem; } }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(5, 1fr); } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 1024px) { .contact-info { grid-column: span 2; } }
.contact-info-card {
	display: flex; align-items: center; gap: 1rem;
	border-radius: var(--radius-lg);
	background: rgba(255,255,255,0.95);
	padding: 1.25rem;
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease;
}
.contact-info-card:hover { transform: translateY(-4px); }
.contact-info-card__icon {
	flex-shrink: 0; display: flex; align-items: center; justify-content: center;
	width: 3rem; height: 3rem; border-radius: var(--radius-md);
	background: var(--gradient-sunset); color: #fff;
}
.contact-info-card__icon--secondary { background: var(--secondary); }
.contact-info-card__icon--accent { background: var(--accent); }
.contact-info-card__body { min-width: 0; display: flex; flex-direction: column; }
.contact-info-card__label { font-family: var(--font-display); font-size: 1rem; color: var(--foreground); }
.contact-info-card__value { font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); word-break: break-word; }
.contact-social { display: flex; gap: 0.75rem; padding-top: 0.25rem; }
.contact-social-link {
	display: flex; align-items: center; justify-content: center;
	width: 3rem; height: 3rem; border-radius: var(--radius-md);
	background: rgba(255,255,255,0.95); color: var(--foreground);
	box-shadow: var(--shadow-soft);
	transition: all 0.2s ease;
}
.contact-social-link:hover { transform: scale(1.1); background: var(--gradient-sunset); color: #fff; }
.contact-form-wrap { }
@media (min-width: 1024px) { .contact-form-wrap { grid-column: span 3; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { position: relative; overflow: hidden; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 60%, transparent); }
.footer-rainbow-bar { position: absolute; inset: 0 0 auto 0; height: 6px; background: var(--gradient-rainbow); }
.footer-inner { padding-block: 3.5rem; }
@media (min-width: 1024px) { .footer-inner { padding-block: 5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 4rem; } }
.footer-brand { display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; }
.footer-logo-img { height: 3.5rem; width: 3.5rem; border-radius: 50%; object-fit: cover; box-shadow: var(--shadow-soft); border: 2px solid color-mix(in srgb, var(--primary) 30%, transparent); }
.footer-brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; }
.footer-blurb { max-width: 22rem; font-size: 0.875rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.footer-heading { font-size: 1.125rem; margin-bottom: 1.25rem; }
.theme-footer-nav-list, .footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.theme-footer-nav-list a { font-size: 0.875rem; font-weight: 600; color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.theme-footer-nav-list a:hover { color: var(--primary); }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.footer-mailto, .footer-tel { word-break: break-all; transition: color 0.2s ease; }
.footer-mailto:hover, .footer-tel:hover { color: var(--foreground); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social-link {
	display: flex; align-items: center; justify-content: center;
	width: 2.5rem; height: 2.5rem; border-radius: 50%;
	background: var(--background); color: var(--foreground);
	box-shadow: var(--shadow-soft);
	transition: all 0.2s ease;
}
.footer-social-link:hover { transform: scale(1.1); background: var(--gradient-sunset); color: #fff; }
.footer-bottom { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; border-top: 1px solid var(--border); padding-top: 1.5rem; margin-top: 3rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copy, .footer-owner, .footer-built-by { font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.footer-built-by:hover { color: var(--primary); }

/* ==========================================================================
   Cart drawer + overlay
   ========================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0; z-index: 90;
	background: rgba(0,0,0,0.5);
	opacity: 0; visibility: hidden;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed; top: 0; right: 0; bottom: 0;
	z-index: 91;
	width: 100%; max-width: 26rem;
	display: flex; flex-direction: column;
	background: var(--background);
	box-shadow: var(--shadow-elevated);
	transform: translateX(100%);
	transition: transform 0.35s var(--ease-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--border); }
.theme-cart-drawer__header h2 { font-size: 1.5rem; }
.theme-cart-drawer__close { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; transition: background-color 0.2s ease; }
.theme-cart-drawer__close:hover { background: var(--muted); }
.theme-cart-drawer__body { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.theme-cart-drawer__list { display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__item { display: grid; grid-template-columns: 4rem 1fr auto; gap: 0.75rem; align-items: start; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.theme-cart-drawer__item-img { display: block; width: 4rem; height: 4rem; border-radius: var(--radius-sm); overflow: hidden; background: var(--muted); }
.theme-cart-drawer__item-img img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-name { font-weight: 700; font-size: 0.9375rem; }
.theme-cart-drawer__item-price { font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin: 0.15rem 0 0.5rem; }
.theme-cart-drawer__qty { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); border-radius: 999px; padding: 0.15rem 0.5rem; }
.theme-cart-drawer__qty button { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; width: 1.5rem; height: 1.5rem; }
.theme-cart-drawer__item-side { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.theme-cart-drawer__item-subtotal { font-weight: 800; color: var(--primary); }
.theme-cart-drawer__remove { display: inline-flex; align-items: center; justify-content: center; color: color-mix(in srgb, var(--foreground) 55%, transparent); }
.theme-cart-drawer__remove:hover { color: #d74242; }
.theme-cart-drawer__empty { text-align: center; padding: 3rem 1rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.btn-drawer-shop, .btn-drawer-checkout {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	margin-top: 1rem; width: 100%;
	padding: 0.85rem 1.25rem; border-radius: 999px;
	background: var(--gradient-sunset); color: #fff;
	font-weight: 800; font-size: 0.9375rem;
}
.theme-cart-drawer__footer { padding: 1.25rem 1.5rem 1.75rem; border-top: 1px solid var(--border); }
.theme-cart-drawer__subtotal-row { display: flex; justify-content: space-between; margin-bottom: 0.75rem; font-size: 0.9375rem; }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

/* ------------------------------------ Toasts ------------------------------- */
#theme-toast-host { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; display: flex; flex-direction: column; gap: 0.5rem; }
.theme-toast {
	background: var(--foreground); color: #fff;
	padding: 0.75rem 1.25rem; border-radius: var(--radius-md);
	font-size: 0.875rem; font-weight: 600;
	box-shadow: var(--shadow-elevated);
	opacity: 0; transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-toast.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Single product page
   ========================================================================== */
.single-product-page { padding-top: 4rem; }
@media (min-width: 1024px) { .single-product-page { padding-top: 5rem; } }
.breadcrumb-bar { border-bottom: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 30%, transparent); }
.breadcrumb-inner { display: flex; align-items: center; gap: 0.5rem; padding-block: 1rem; font-size: 0.8125rem; overflow-x: auto; white-space: nowrap; }
.breadcrumb-inner a { color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner span { color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.breadcrumb-current { font-weight: 700; }
.product-detail-section { padding-block: 2.5rem; }
@media (min-width: 768px) { .product-detail-section { padding-block: 4rem; } }
.back-to-shop { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 2rem; font-weight: 700; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.back-to-shop:hover { color: var(--primary); }

.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; min-width: 0; }
@media (min-width: 768px) { .theme-product-layout { gap: 3.5rem; } }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: 1fr 1fr; } }
.theme-product-gallery, .theme-product-info { min-width: 0; max-width: 100%; }

.product-main-image-wrap { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius-lg); background: var(--muted); box-shadow: var(--shadow-elevated); }
.product-main-image { position: absolute; inset: 0; width: 100%; height: 100%; }
.product-gallery-nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	display: flex; align-items: center; justify-content: center;
	width: 2.75rem; height: 2.75rem; border-radius: 50%;
	background: color-mix(in srgb, var(--background) 95%, transparent);
	box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease;
	z-index: 2;
}
.product-gallery-nav:hover { transform: translateY(-50%) scale(1.1); }
.product-gallery-nav--prev { left: 0.75rem; }
.product-gallery-nav--next { right: 0.75rem; }
.product-main-image__cat { position: absolute; left: 1rem; top: 1rem; z-index: 2; padding: 0.3rem 0.75rem; border-radius: 999px; background: var(--secondary); color: #fff; font-size: 0.75rem; font-weight: 700; }

.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; }
.product-thumb { position: relative; width: calc(20% - 0.6rem); aspect-ratio: 1/1; border-radius: var(--radius-md); overflow: hidden; background: var(--muted); opacity: 0.7; transition: opacity 0.2s ease, box-shadow 0.2s ease; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb:hover { opacity: 1; }
.product-thumb.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--primary), 0 0 0 4px var(--background); }

.product-cat-badge { display: inline-block; margin-bottom: 0.75rem; padding: 0.3rem 0.75rem; border-radius: 999px; background: color-mix(in srgb, var(--secondary) 15%, transparent); font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--secondary); }
.product-title { font-family: var(--font-body); font-weight: 700; font-size: 2rem; line-height: 1.2; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .product-title { font-size: 2.75rem; } }
.product-price { font-family: var(--font-display); font-size: 2rem; color: var(--primary); margin-bottom: 1.25rem; }
@media (min-width: 768px) { .product-price { font-size: 2.75rem; } }
.product-blurb { font-size: 1rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground) 65%, transparent); margin-bottom: 1.25rem; }
@media (min-width: 768px) { .product-blurb { font-size: 1.125rem; } }
.product-description { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.9375rem; line-height: 1.65; color: color-mix(in srgb, var(--foreground) 65%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 768px) { .product-description { font-size: 1rem; } }

.product-qty-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.product-qty-label { font-weight: 700; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.theme-quantity-wrapper { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid var(--border); border-radius: 999px; padding: 0.25rem; }
.theme-qty-minus, .theme-qty-plus { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; transition: background-color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--muted); }
.theme-qty-input { width: 2.5rem; text-align: center; border: none; background: transparent; font-weight: 700; font-size: 1rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 0.75rem; }
.single_add_to_cart_button, .buy-now-button {
	display: inline-flex; flex: 1 1 auto; min-width: 160px;
	align-items: center; justify-content: center; gap: 0.5rem;
	padding: 1rem 1.75rem; border-radius: 999px;
	font-weight: 800; font-size: 1rem;
	text-transform: none;
	transition: transform 0.2s ease, opacity 0.2s ease;
}
.single_add_to_cart_button { background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-elevated); }
.single_add_to_cart_button:hover { transform: scale(1.02); }
.buy-now-button { background: var(--background); border: 2px solid var(--primary); color: var(--primary); }
.buy-now-button:hover { background: var(--primary); color: #fff; }

.product-custom-link { margin-top: 0.5rem; margin-bottom: 1.5rem; }
.product-custom-link a { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); text-underline-offset: 4px; }
.product-custom-link a:hover { color: var(--primary); text-decoration: underline; }

.product-trust-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
@media (min-width: 640px) { .product-trust-strip { grid-template-columns: repeat(4, 1fr); } }
.product-trust-item { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.product-trust-item__icon { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 50%; background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); }
.product-trust-item__text { font-size: 0.75rem; font-weight: 700; line-height: 1.3; }

.related-products-section { padding: 4rem 0 5rem; border-top: 1px solid var(--border); background: color-mix(in srgb, var(--muted) 30%, transparent); }
@media (min-width: 768px) { .related-products-section { padding: 5rem 0; } }
.related-products-title { font-size: 1.875rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .related-products-title { font-size: 2.25rem; } }

/* ==========================================================================
   Cart page
   ========================================================================== */
.cart-page, .checkout-page { min-height: 100vh; padding: 6rem 0 5rem; }
@media (min-width: 768px) { .cart-page, .checkout-page { padding-top: 8rem; } }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-weight: 700; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); transition: color 0.2s ease; }
.back-link:hover { color: var(--primary); }
.page-title-cart, .checkout-page-title { font-size: 2.25rem; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .page-title-cart, .checkout-page-title { font-size: 3rem; } }
.cart-count-text, .checkout-page-subtitle { margin-bottom: 2.5rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

.cart-empty-box, .checkout-empty-box {
	text-align: center;
	border: 1px solid var(--border);
	background: color-mix(in srgb, var(--muted) 30%, transparent);
	border-radius: var(--radius-lg);
	padding: 4rem 1.5rem;
}
.cart-empty-box svg, .checkout-empty-box svg { margin: 0 auto 1rem; color: color-mix(in srgb, var(--foreground) 50%, transparent); }
.cart-empty-box p, .checkout-empty-box p { margin-bottom: 1.5rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.btn-cart-shop, .btn-checkout-shop {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.85rem 1.75rem; border-radius: 999px;
	background: var(--gradient-sunset); color: #fff;
	font-weight: 800; box-shadow: var(--shadow-elevated);
}

.cart-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 2fr 1fr; } }
.cart-items-list { display: flex; flex-direction: column; gap: 1rem; }
.cart-line-item {
	display: grid; grid-template-columns: 5rem 1fr auto auto; align-items: center; gap: 1rem;
	border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--background);
	padding: 1rem; box-shadow: var(--shadow-soft);
}
@media (max-width: 639px) { .cart-line-item { grid-template-columns: 5rem 1fr; grid-template-areas: "img info" "img qty" "img totals"; } }
.cart-line-item__img { display: block; width: 5rem; height: 5rem; border-radius: var(--radius-md); overflow: hidden; background: var(--muted); }
.cart-line-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-item__name { font-family: var(--font-display); font-size: 1.125rem; }
.cart-line-item__name:hover { color: var(--primary); }
.cart-line-item__cat, .cart-line-item__unit { font-size: 0.8125rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); margin-top: 0.15rem; }
.cart-line-item__totals { display: flex; flex-direction: column; align-items: flex-end; gap: 0.4rem; }
.cart-line-item__subtotal { font-family: var(--font-display); font-size: 1.125rem; color: var(--primary); }
.cart-line-item__remove { display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 700; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.cart-line-item__remove:hover { color: #d74242; }
.cart-clear-btn { align-self: flex-start; font-size: 0.875rem; font-weight: 700; color: color-mix(in srgb, var(--foreground) 60%, transparent); text-underline-offset: 4px; }
.cart-clear-btn:hover { color: #d74242; text-decoration: underline; }

.cart-summary-box, .checkout-summary {
	position: sticky; top: 6rem;
	border: 1px solid var(--border); border-radius: var(--radius-lg);
	background: color-mix(in srgb, var(--muted) 40%, transparent);
	padding: 1.5rem;
	box-shadow: var(--shadow-soft);
}
.cart-summary-box h2, .checkout-summary h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.cart-summary-rows > div, .checkout-summary-totals > div { display: flex; justify-content: space-between; padding: 0.4rem 0; font-size: 0.875rem; }
.cart-summary-total, .checkout-summary-total { border-top: 1px solid var(--border); padding-top: 0.75rem; margin-top: 0.4rem; }
.cart-summary-total dt, .checkout-summary-total dt { font-family: var(--font-display); font-size: 1.125rem; }
.cart-summary-total dd, .checkout-summary-total dd { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.btn-cart-checkout, .btn-place-order {
	display: flex; align-items: center; justify-content: center; gap: 0.5rem;
	width: 100%; margin-top: 1.5rem;
	padding: 1rem 1.5rem; border-radius: 999px;
	background: var(--gradient-sunset); color: #fff;
	font-weight: 800; font-size: 1rem; box-shadow: var(--shadow-elevated);
	transition: transform 0.2s ease;
}
.btn-cart-checkout:hover, .btn-place-order:hover { transform: scale(1.02); }
.cart-summary-footnote, .checkout-footnote { margin-top: 0.75rem; font-size: 0.75rem; line-height: 1.5; color: color-mix(in srgb, var(--foreground) 60%, transparent); }

/* ==========================================================================
   Checkout page
   ========================================================================== */
.checkout-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 2fr 1fr; } }
.checkout-fields { display: flex; flex-direction: column; gap: 2rem; }
.checkout-card { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--background); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.checkout-card h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
.checkout-card__desc { margin-bottom: 1.25rem; font-size: 0.875rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.form-row-3 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .form-row-3 { grid-template-columns: repeat(2, 1fr); } }
.form-row-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.form-row-6 .form-field { grid-column: span 6; }
.form-row-6 .span-6 { grid-column: span 6; }
@media (min-width: 640px) {
	.form-row-6 .span-3 { grid-column: span 3; }
	.form-row-6 .span-2 { grid-column: span 2; }
	.form-row-6 .span-1 { grid-column: span 1; }
}
.checkout-fields input, .checkout-fields select, .checkout-fields textarea {
	width: 100%; border: 1px solid var(--border); border-radius: var(--radius-md);
	background: var(--background); padding: 0.75rem 1rem; font-size: 0.875rem;
	box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
.checkout-fields input:focus, .checkout-fields select:focus, .checkout-fields textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 20%, transparent); }
.checkout-fields label { display: block; margin-bottom: 0.4rem; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.payment-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .payment-options { grid-template-columns: repeat(4, 1fr); } }
.payment-option {
	display: flex; align-items: center; justify-content: center;
	border: 2px solid var(--border); border-radius: var(--radius-md);
	padding: 0.75rem 1rem; font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.02em;
	color: color-mix(in srgb, var(--foreground) 60%, transparent);
	cursor: pointer; transition: all 0.2s ease;
}
.payment-option.is-checked { border-color: var(--primary); background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary); }
.payment-option input { position: absolute; opacity: 0; pointer-events: none; }

.checkout-summary-items { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.25rem; max-height: 20rem; overflow-y: auto; padding-right: 0.25rem; }
.checkout-summary-items li { display: flex; align-items: center; gap: 0.75rem; }
.checkout-summary-item__img { flex-shrink: 0; width: 3.5rem; height: 3.5rem; border-radius: var(--radius-sm); overflow: hidden; background: var(--muted); }
.checkout-summary-item__img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary-item__info { flex: 1; min-width: 0; }
.checkout-summary-item__info p { font-size: 0.875rem; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.checkout-summary-item__info span { font-size: 0.75rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.checkout-summary-item__price { font-size: 0.875rem; font-weight: 700; }
.checkout-summary-totals { border-top: 1px solid var(--border); padding-top: 1rem; }

.checkout-success-box, .checkout-empty-box { max-width: 42rem; margin: 0 auto; text-align: center; }
.checkout-success-icon {
	margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
	width: 5rem; height: 5rem; border-radius: 50%;
	background: color-mix(in srgb, var(--primary) 10%, transparent); color: var(--primary);
}
.checkout-success-box h1 { font-size: 2.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .checkout-success-box h1 { font-size: 3rem; } }
.checkout-success-box p { margin-bottom: 2rem; color: color-mix(in srgb, var(--foreground) 60%, transparent); }
.checkout-success-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
@media (min-width: 640px) { .checkout-success-actions { flex-direction: row; } }
.btn-success-home, .btn-success-email {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.85rem 1.75rem; border-radius: 999px; font-weight: 800; font-size: 1rem;
}
.btn-success-home { background: var(--gradient-sunset); color: #fff; box-shadow: var(--shadow-elevated); }
.btn-success-email { border: 2px solid var(--primary); color: var(--primary); background: var(--background); }
.btn-success-email:hover { background: var(--primary); color: #fff; }

/* ==========================================================================
   404 page
   ========================================================================== */
.not-found-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1.5rem; background: var(--gradient-cool); color: #fff; }
.not-found-inner { text-align: center; }
.not-found-title { font-size: 4rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .not-found-title { font-size: 6rem; } }
.not-found-text { margin-bottom: 2rem; font-size: 1.125rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.btn-404-home {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 1rem 2rem; border-radius: 999px;
	background: #fff; color: var(--secondary);
	font-weight: 800; font-size: 1rem; box-shadow: var(--shadow-soft);
	transition: transform 0.2s ease;
}
.btn-404-home:hover { transform: scale(1.05); }

/* ==========================================================================
   Generic page fallback
   ========================================================================== */
.generic-page { padding: 8rem 0 5rem; }
.generic-page .page-title { font-size: 2.5rem; margin-bottom: 1.5rem; }
.generic-page .entry-content { line-height: 1.7; }
