/* ==========================================================================
   NovelArt Accessories — theme.css
   Theme by The Free Website Guys.
   ========================================================================== */

/* ---------- Base tokens (color values overridden by wp_add_inline_style) --- */
:root {
	--color-background: #f8f4ed;
	--color-foreground: #341d2d;
	--color-card: #f1eadf;
	--color-primary: #5b294b;
	--color-primary-foreground: #f9f6f0;
	--color-secondary: #eae2d7;
	--color-secondary-foreground: #3b2132;
	--color-muted: #d3ccc5;
	--color-muted-foreground: #6b5764;
	--color-accent: #e4a425;
	--color-accent-foreground: #2e1a27;
	--color-border: #d5ccc3;
	--color-rosa: #d77588;
	--color-marigold: #ecb13c;
	--color-teal: #548367;
	--color-lilac: #dd8899;
	--color-button-text: var(--color-primary-foreground);

	--font-display: 'Fraunces', serif;
	--font-body: 'Inter', sans-serif;

	--radius: 0.75rem;
	--card-radius: 1rem;

	--btn-radius: 999px;
	--btn-height: 3rem;
	--btn-padding: 0.9rem 2rem;
	--btn-font-size: 0.72rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.6rem;

	--header-height: 96px;
	--logo-height: 60px;

	--shadow-soft: 0 4px 20px -4px rgba(52, 29, 45, 0.1);
	--shadow-elevated: 0 8px 40px -8px rgba(52, 29, 45, 0.18);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------------------------------------------------- */
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: clip; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	-webkit-font-smoothing: antialiased;
	line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
img:not(.cover-img):not(.theme-hero__bg) { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.015em;
	margin: 0;
}
p { margin: 0; }
input, textarea, select { font-family: inherit; }

.site-main {
	padding-top: 80px;
}
@media (min-width: 768px) {
	.site-main { padding-top: 112px; }
}
body.home .site-main.front-page {
	padding-top: 0;
}

.cover-img,
video.cover-img,
.theme-hero__bg,
.theme-product-card__image,
#product-main-img,
.theme-product-thumb img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2rem; }
}

.theme-eyebrow {
	display: block;
	font-size: 12px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-primary);
	font-family: var(--font-body);
	margin-bottom: 0.75rem;
}
.theme-eyebrow--light { color: rgba(255, 255, 255, 0.85); }

.theme-link-underline {
	position: relative;
	display: inline-block;
}
.theme-link-underline::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%; height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--transition-smooth);
}
.theme-link-underline:hover::after { transform: scaleX(1); }

.dot { color: rgba(52, 29, 45, 0.4); margin: 0 0.5rem; }

/* ---------- Buttons --------------------------------------------------- */
.theme-btn-primary,
.theme-btn-accent,
.theme-btn-outline,
.theme-btn-outline-light,
.theme-btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: var(--btn-radius);
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.72rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.9rem 1.85rem;
	transition: all 0.25s ease;
	white-space: nowrap;
}
.theme-btn-primary { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-primary:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.theme-btn-accent { background: var(--color-accent); color: var(--color-accent-foreground); }
.theme-btn-accent:hover { background: color-mix(in srgb, var(--color-accent) 90%, black); }
.theme-btn-outline { border: 1px solid var(--color-primary); color: var(--color-primary); }
.theme-btn-outline:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn-outline-light { border: 1px solid rgba(255, 255, 255, 0.8); color: #fff; }
.theme-btn-outline-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.theme-btn-ghost { background: rgba(248, 244, 237, 0.7); color: var(--color-foreground); border: 1px solid rgba(52, 29, 45, 0.15); font-size: 0.85rem; text-transform: none; letter-spacing: normal; }
.theme-btn-ghost:hover { background: var(--color-background); }

.theme-icon { width: 18px; height: 18px; flex-shrink: 0; }
.theme-icon-sm { width: 15px; height: 15px; }
.theme-icon-lg { width: 40px; height: 40px; }
.theme-icon-fill { fill: currentColor; stroke-width: 0; }

/* ==========================================================================
   ANCHOR OFFSET (fixed header)
   ========================================================================== */
#about,
#services,
#collaborate,
#shop,
#customize,
#support,
#contact,
#featured,
#testimonials {
	scroll-margin-top: 6rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	width: 100%;
	background: var(--color-background);
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .site-header { top: 46px; }
}
.site-header.is-scrolled,
.site-header.is-mobile-open {
	background: color-mix(in srgb, var(--color-background) 95%, transparent);
	backdrop-filter: blur(10px);
	box-shadow: var(--shadow-soft);
}
.site-header__inner { border-bottom: 1px solid color-mix(in srgb, var(--color-border) 50%, transparent); }
.site-nav {
	display: flex;
	align-items: center;
	height: 80px;
	position: relative;
}
@media (min-width: 768px) { .site-nav { height: 112px; } }

.site-nav__side { display: none; align-items: center; gap: 3rem; flex: 1; }
.site-nav__side--left { justify-content: flex-start; }
.site-nav__side--right { justify-content: flex-end; gap: 2rem; }
@media (min-width: 1024px) { .site-nav__side { display: flex; } }

.theme-nav-list { display: flex; align-items: center; gap: 3rem; margin: 0; padding: 0; list-style: none; }
.site-nav__side--right .theme-nav-list { gap: 2rem; }
.theme-nav-link,
.theme-nav-list a {
	font-size: 15px;
	font-family: var(--font-body);
	font-weight: 500;
	letter-spacing: 0.01em;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	transition: color 0.2s ease;
}
.theme-nav-link:hover,
.theme-nav-list a:hover { color: var(--color-primary); }

.site-logo {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) { .site-logo { display: flex; } }
.site-logo-img { height: 3rem !important; width: auto !important; display: block; }
@media (min-width: 768px) {
	.site-logo-img { height: 5rem !important; }
}
.site-logo-text { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-primary); }

.theme-cart-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 30%, transparent);
	color: var(--color-foreground);
	transition: color 0.2s ease, border-color 0.2s ease;
}
.theme-cart-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-cart-icon { width: 16px; height: 16px; }
.theme-cart-count {
	position: absolute;
	top: -6px; right: -6px;
	min-width: 18px; height: 18px;
	display: flex; align-items: center; justify-content: center;
	padding: 0 4px;
	font-size: 10px; font-weight: 600;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
}
.theme-cart-count:empty { display: none; }

.theme-mobile-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px; height: 36px;
	color: var(--color-foreground);
}
@media (min-width: 1024px) { .theme-mobile-toggle { display: none; } }

.site-nav__side--right { position: relative; }
@media (max-width: 1023px) {
	.site-nav { justify-content: space-between; }
	.site-nav__side--left { display: none; }
	.site-nav__side--right { display: flex !important; gap: 0.75rem; flex: 0 0 auto; }
	.site-nav__side--right .theme-nav-list { display: none; }
	.site-logo { display: flex; padding: 0; }
}

.theme-mobile-menu {
	display: none;
	border-top: 1px solid var(--color-border);
	padding: 1rem 0;
}
.theme-mobile-menu .theme-nav-list { flex-direction: column; align-items: stretch; gap: 0; }
.theme-mobile-menu .theme-nav-link,
.theme-mobile-menu a {
	display: block;
	padding: 0.85rem 0;
	border-bottom: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent);
	font-size: 14px;
}
.site-header.is-mobile-open .theme-mobile-menu { display: block; animation: theme-fade-in 0.3s var(--transition-smooth); }

/* ==========================================================================
   HERO
   ========================================================================== */
.theme-hero {
	position: relative;
	width: 100%;
	min-height: 620px;
	height: 100vh;
	overflow: hidden;
	background: var(--color-primary);
}

.theme-hero__media { position: absolute; inset: 0; }
.theme-hero__bg { opacity: 0.85; }
.theme-hero__overlay { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 55%, transparent); }
.theme-hero__overlay-bottom { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, color-mix(in srgb, var(--color-primary) 45%, transparent) 100%); }

.theme-hero__content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 80px;
}
@media (min-width: 768px) { .theme-hero__content { padding-top: 112px; } }

.theme-hero__kicker {
	display: block;
	font-size: 12px;
	letter-spacing: 0.4em;
	text-transform: uppercase;
	color: #fff;
	font-weight: 600;
	margin-bottom: 1.5rem;
}
.theme-hero__title {
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	color: var(--color-primary-foreground);
	line-height: 0.98;
	letter-spacing: -0.015em;
	font-size: 2.75rem;
	max-width: 60rem;
}
@media (min-width: 640px) { .theme-hero__title { font-size: 4.2rem; } }
@media (min-width: 1024px) { .theme-hero__title { font-size: 6.5rem; } }

.theme-hero__subtitle {
	margin-top: 1.5rem;
	max-width: 36rem;
	color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent);
	font-size: 1rem;
}
@media (min-width: 768px) { .theme-hero__subtitle { font-size: 1.125rem; } }

.theme-hero__actions {
	margin-top: 2.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 640px) { .theme-hero__actions { flex-direction: row; } }
.theme-hero__actions .theme-btn-accent,
.theme-hero__actions .theme-btn-outline-light {
	padding: 1rem 2.5rem;
	font-size: 0.68rem;
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal-item,
.theme-product-card-wrap.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
}
.reveal-item.is-visible { opacity: 1; transform: translateY(0); }
body.is-customizer .reveal-item { opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
	*, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes theme-spin-clockwise { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes theme-pulse-soft { 0%, 100% { opacity: 0.85; transform: scale(1); } 50% { opacity: 1; transform: scale(1.08); } }
.theme-fade-in { animation: theme-fade-in 0.6s var(--transition-smooth) forwards; }
.theme-slide-up { animation: theme-slide-up 0.6s var(--transition-smooth) forwards; }

/* ==========================================================================
   SECTION HEADINGS (generic — overridden per-section below, Section 2.2)
   ========================================================================== */
.theme-section-heading { text-align: center; margin-bottom: 2.5rem; }
.section-heading { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .section-heading { font-size: 2.25rem; } }

/* ==========================================================================
   CATEGORY STRIP
   ========================================================================== */
.theme-category-strip { padding: 4rem 0; }
@media (min-width: 768px) { .theme-category-strip { padding: 5rem 0; } }
.theme-category-strip .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-category-strip .section-heading { font-size: 2.25rem; } }

.theme-category-tiles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-items: center;
	gap: 2rem 1rem;
	padding: 1.5rem 0 1rem;
}
@media (min-width: 768px) {
	.theme-category-tiles { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 40rem; margin: 0 auto; }
}
.theme-category-tile { display: flex; flex-direction: column; align-items: center; gap: 0.85rem; }
.theme-category-tile__icon {
	width: 7rem; height: 7rem;
	border-radius: 999px;
	display: flex; align-items: center; justify-content: center;
	background: var(--color-secondary);
	overflow: hidden;
	padding: 1.5rem;
	transition: transform 0.5s var(--transition-smooth), box-shadow 0.5s ease;
	color: var(--color-primary);
}
@media (min-width: 768px) { .theme-category-tile__icon { width: 8rem; height: 8rem; padding: 1.75rem; } }
.theme-category-tile:hover .theme-category-tile__icon { transform: scale(1.05); box-shadow: var(--shadow-elevated); }
.theme-category-tile__icon svg { width: 100%; height: 100%; transition: transform 0.7s var(--transition-smooth); }
.theme-category-tile:hover .theme-category-tile__icon svg { transform: scale(1.1); }
.theme-category-tile__label {
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
}
.theme-category-tile:hover .theme-category-tile__label { color: var(--color-foreground); }

/* ==========================================================================
   PRODUCT GRID / CARD
   ========================================================================== */
.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	align-items: stretch;
}
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
@media (min-width: 1024px) { .theme-product-grid { gap: 2.5rem; } }

.theme-product-grid--featured { grid-template-columns: 1fr; }
@media (min-width: 768px) { .theme-product-grid--featured { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.theme-product-card-wrap { display: flex; }
.theme-product-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	position: relative;
}
.theme-product-card > .theme-card-link {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: auto;
}
.theme-product-card *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card .add_to_cart_button { pointer-events: auto; }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-card);
	border-radius: var(--card-radius);
	overflow: hidden;
	margin-bottom: 1.25rem;
	transition: transform 0.25s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { transform: translateY(-3px); }
.theme-product-card__image { transition: transform 0.7s cubic-bezier(0.25, 0.4, 0.25, 1); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }

.theme-product-card__badge {
	position: absolute;
	top: 1rem; right: 1rem;
	z-index: 3;
	padding: 0.25rem 0.75rem;
	border-radius: 0.375rem;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.02em;
	background: var(--color-foreground);
	color: var(--color-background);
}

.theme-product-card__add-btn.add_to_cart_button {
	position: absolute;
	left: 1rem; right: 1rem; bottom: 1rem;
	z-index: 3;
	padding: 0.75rem 0;
	border-radius: 999px;
	background: var(--color-teal) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-teal) !important;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	text-align: center;
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease, color 0.2s ease;
	min-height: unset !important;
	display: block !important;
	width: auto !important;
}
.theme-product-card:hover .theme-product-card__add-btn { opacity: 1; transform: translateY(0); }
.theme-product-card__add-btn:hover { background: var(--color-background) !important; color: var(--color-teal) !important; }

.theme-product-card__info { padding: 0 0.25rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.theme-product-card__category { font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: var(--color-muted-foreground); min-height: 1.2em; }
.theme-product-card__title {
	font-size: 1rem;
	font-family: var(--font-display);
	font-weight: 500;
	line-height: 1.35;
	color: var(--color-foreground);
	transition: color 0.3s ease;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.125rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price del { opacity: 0.5; margin-right: 0.4em; }
.theme-product-card__price ins { text-decoration: none; }

/* ==========================================================================
   FEATURED / SHOP CTA SECTIONS
   ========================================================================== */
.theme-featured-products,
.theme-shop { padding: 4rem 0; }
@media (min-width: 768px) { .theme-featured-products { padding: 6rem 0; } }
.theme-featured-products .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .theme-featured-products .section-heading { font-size: 3rem; } }
.theme-featured-products__cta { text-align: center; margin-top: 3.5rem; }

/* ==========================================================================
   MEDIA BANNERS (Our Story / Collaborate / Customize)
   ========================================================================== */
.theme-media-banner--story {
	position: relative;
	width: 100%;
	overflow: hidden;
	height: 40vh;
}
@media (min-width: 768px) { .theme-media-banner--story { height: 55vh; } }
@media (min-width: 1024px) { .theme-media-banner--story { height: 65vh; } }
.theme-media-banner--story .theme-media-banner__tint { background: color-mix(in srgb, var(--color-primary) 40%, transparent); }

.theme-media-banner--cta {
	position: relative;
	width: 100%;
	height: 66.6667vh;
	overflow: hidden;
}
.theme-media-banner__tint {
	position: absolute; inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0.25) 60%, rgba(0,0,0,0.2));
}
.theme-media-banner__content {
	position: absolute; inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
}
.theme-media-banner__content--bottom { align-items: flex-end; }
@media (min-width: 768px) { .theme-media-banner__content--bottom { align-items: center; } }
.theme-media-banner__copy { max-width: 34rem; color: #fff; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-media-banner__copy { padding-bottom: 0; } }
.theme-media-banner__copy h2 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.2;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .theme-media-banner__copy h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-media-banner__copy h2 { font-size: 3.75rem; } }
.theme-media-banner__copy p { font-size: 1rem; margin-bottom: 2rem; color: rgba(255,255,255,0.85); }
@media (min-width: 768px) { .theme-media-banner__copy p { font-size: 1.125rem; } }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.theme-about { padding: 2.5rem 0 6rem; }
@media (min-width: 768px) { .theme-about { padding: 3.5rem 0 8rem; } }
.theme-about__inner { max-width: 48rem; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
@media (min-width: 768px) { .theme-about__inner { padding: 0 3.5rem; } }
@media (min-width: 1024px) { .theme-about__inner { padding: 0 5rem; } }
.theme-about__heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.25;
	margin-bottom: 2.5rem;
}
@media (min-width: 768px) { .theme-about__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .theme-about__heading { font-size: 2.5rem; } }
.theme-about__body { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; font-size: 1rem; }
@media (min-width: 768px) { .theme-about__body { font-size: 1.125rem; } }
.theme-about__inner .theme-link-underline {
	display: inline-block; margin-top: 2.5rem;
	font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 500;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.theme-services { background: var(--color-card); padding: 5rem 0; }
@media (min-width: 768px) { .theme-services { padding: 7rem 0; } }
.theme-services .section-heading { font-size: 2.25rem; }
@media (min-width: 768px) { .theme-services .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-services .section-heading { font-size: 3.75rem; } }

.theme-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	max-width: 72rem;
	margin: 0 auto;
}
@media (min-width: 640px) { .theme-services__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-services__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }

.theme-service-card {
	display: flex;
	flex-direction: column;
	text-align: center;
	background: var(--color-background);
	border-radius: 1rem;
	padding: 2rem;
	border: 1px solid var(--color-border);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elevated); }
.theme-service-card__icon { display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.theme-service-card__icon--primary { color: var(--color-primary); }
.theme-service-card__icon--accent { color: var(--color-accent); }
.theme-service-card__icon--rosa { color: var(--color-rosa); }
.theme-service-card__icon--teal { color: var(--color-teal); }
.theme-service-card__kicker { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.5rem; }
.theme-service-card__kicker--primary { color: var(--color-primary); }
.theme-service-card__kicker--accent { color: var(--color-accent); }
.theme-service-card__kicker--rosa { color: var(--color-rosa); }
.theme-service-card__kicker--teal { color: var(--color-teal); }
.theme-service-card__title { font-size: 1.125rem; font-family: var(--font-display); margin-bottom: 0.75rem; }
.theme-service-card__desc { font-size: 0.875rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1.5rem; }
.theme-service-card__cta {
	margin-top: auto;
	display: inline-block;
	font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
	font-weight: 600; color: var(--color-primary);
	transition: color 0.2s ease;
}
.theme-service-card__cta:hover { color: var(--color-accent); }

/* ==========================================================================
   SHOP SECTION (search, category filters, price range, grid)
   ========================================================================== */
.theme-shop__header { text-align: center; margin-bottom: 3rem; }
.shop-heading { font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }

.theme-shop__search { position: relative; max-width: 28rem; margin: 0 auto 2rem; }
.theme-shop__search-icon { position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--color-muted-foreground); }
.theme-shop__search input {
	width: 100%;
	padding: 0.6rem 0 0.6rem 1.75rem;
	background: transparent;
	border: none;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
	color: var(--color-foreground);
	outline: none;
	transition: border-color 0.2s ease;
}
.theme-shop__search input:focus { border-color: var(--color-foreground); }
.theme-shop__search input::placeholder { color: var(--color-muted-foreground); }

.theme-shop__categories {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}
.theme-shop__cat-btn {
	padding: 0.5rem 1.25rem;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
	background: transparent;
	transition: all 0.2s ease;
}
.theme-shop__cat-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-shop__cat-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-shop__price-filter { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.theme-shop__price-toggle {
	display: flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
	color: var(--color-muted-foreground);
	transition: color 0.2s ease;
}
.theme-shop__price-toggle:hover { color: var(--color-foreground); }
.theme-shop__price-toggle svg { transition: transform 0.3s ease; }
.theme-shop__price-toggle.is-open svg { transform: rotate(180deg); }
.theme-shop__price-panel {
	width: 100%; max-width: 22rem;
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: max-height 0.3s var(--transition-smooth), opacity 0.3s var(--transition-smooth);
}
.theme-shop__price-panel.is-open { max-height: 6rem; opacity: 1; padding: 0; }

.theme-price-range-inner { padding: 0.5rem 0; }
.theme-price-range-wrapper { position: relative; height: 1.25rem; margin-bottom: 0.75rem; }
.range-track-bg, .range-track-fill {
	position: absolute; height: 8px; top: 50%;
	transform: translateY(-50%); pointer-events: none; border-radius: 999px;
}
.range-track-bg { left: 0; right: 0; background: var(--color-secondary); }
.range-track-fill { background: var(--color-primary); }
.range-input {
	position: absolute; left: 0; top: 0;
	width: 100%; height: 100%; margin: 0;
	-webkit-appearance: none; appearance: none;
	background: transparent;
	pointer-events: none;
}
.range-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	pointer-events: auto;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	cursor: pointer;
	margin-top: -6px;
}
.range-input::-moz-range-thumb {
	pointer-events: auto;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: var(--color-background);
	border: 2px solid var(--color-primary);
	box-shadow: 0 1px 4px rgba(0,0,0,0.15);
	cursor: pointer;
}
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }
.theme-price-range-labels { display: flex; justify-content: space-between; font-size: 0.875rem; color: var(--color-muted-foreground); }

.theme-shop__empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }
.theme-shop__show-more { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.theme-faq { padding: 5rem 0 7rem; }
.theme-faq__heading { max-width: 34rem; margin: 0 auto 2.5rem; text-align: center; }
.theme-faq__heading h2 { font-size: 1.875rem; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .theme-faq__heading h2 { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-faq__heading h2 { font-size: 3.75rem; } }
.theme-faq__heading p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; }
@media (min-width: 768px) { .theme-faq__heading p { font-size: 1.125rem; } }

.theme-faq__tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .theme-faq__tabs { gap: 0.65rem; margin-bottom: 2.5rem; } }
@media (max-width: 767px) {
	.theme-faq__tab { padding: 0.5rem 0.9rem; font-size: 10px; letter-spacing: 0.18em; }
}
.theme-faq__tab {
	padding: 0.6rem 1.25rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
	background: transparent; color: var(--color-foreground);
	transition: all 0.2s ease;
}
.theme-faq__tab--rosa { border-color: var(--color-rosa); }
.theme-faq__tab--rosa.is-active { background: var(--color-rosa); border-color: var(--color-rosa); }
.theme-faq__tab--lilac { border-color: var(--color-lilac); }
.theme-faq__tab--lilac.is-active { background: var(--color-lilac); border-color: var(--color-lilac); }
.theme-faq__tab--marigold { border-color: var(--color-marigold); }
.theme-faq__tab--marigold.is-active { background: var(--color-marigold); border-color: var(--color-marigold); }
.theme-faq__tab--teal { border-color: var(--color-teal); color: var(--color-teal); }
.theme-faq__tab--teal.is-active { background: var(--color-teal); border-color: var(--color-teal); color: var(--color-background); }
.theme-faq__tab--nopal, .theme-faq__tab--accent { border-color: var(--color-primary); color: var(--color-primary); }
.theme-faq__tab--nopal.is-active, .theme-faq__tab--accent.is-active { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-primary-foreground); }

.theme-faq__panels { max-width: 48rem; margin: 0 auto; }
.theme-faq__panel { display: none; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-faq__panel.is-active { display: block; animation: theme-fade-in 0.25s ease; }

.theme-faq__item { border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); }
.theme-faq__question {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
	padding: 1.25rem 0;
	text-align: left;
	font-family: var(--font-display);
	font-size: 1.125rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .theme-faq__question { font-size: 1.25rem; padding: 1.5rem 0; } }
.theme-faq__question-icon {
	flex-shrink: 0;
	width: 2.25rem; height: 2.25rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s ease;
}
.theme-faq__question-icon svg { transition: transform 0.3s ease; }
.theme-faq__item.is-open .theme-faq__question-icon svg { transform: rotate(180deg); }
.theme-faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--transition-smooth); }
.theme-faq__item.is-open .theme-faq__answer { max-height: 30rem; }
.theme-faq__answer p { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 3rem; font-size: 1rem; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.theme-testimonials { background: var(--color-card); padding: 4rem 0; }
@media (min-width: 768px) { .theme-testimonials { padding: 6rem 0; } }
.theme-testimonials__heading { text-align: center; font-size: 1.875rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .theme-testimonials__heading { font-size: 3rem; margin-bottom: 3.5rem; } }
.theme-testimonials__carousel { position: relative; max-width: 56rem; margin: 0 auto; }
.theme-testimonials__quote-mark { position: absolute; width: 6rem; height: 6rem; opacity: 0.2; color: var(--color-marigold); pointer-events: none; display: none; }
@media (min-width: 768px) { .theme-testimonials__quote-mark { display: block; } }
.theme-testimonials__quote-mark--top { top: -1.5rem; left: -1.5rem; }
.theme-testimonials__quote-mark--bottom { bottom: -1.5rem; right: -1.5rem; width: 5rem; height: 5rem; opacity: 0.15; transform: rotate(45deg); }
.theme-testimonials__track-outer { overflow: hidden; }
.theme-testimonials__track { display: flex; transition: transform 0.7s ease-out; }
.theme-testimonials__slide { min-width: 100%; padding: 0 1rem; text-align: center; }
@media (min-width: 768px) { .theme-testimonials__slide { padding: 0 2.5rem; } }
.theme-testimonials__stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; color: var(--color-marigold); }
.theme-testimonials__slide blockquote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-testimonials__slide blockquote { font-size: 1.875rem; } }
.theme-testimonials__slide figcaption { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-testimonials__name { font-weight: 600; color: var(--color-foreground); }
.theme-testimonials__controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.theme-testimonials__arrow {
	width: 2.5rem; height: 2.5rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	display: flex; align-items: center; justify-content: center;
	transition: all 0.2s ease;
}
.theme-testimonials__arrow:hover { border-color: var(--color-primary); color: var(--color-primary); }
.theme-testimonials__dots { display: flex; gap: 0.5rem; }
.theme-testimonials__dots button { width: 8px; height: 8px; border-radius: 999px; background: color-mix(in srgb, var(--color-foreground) 25%, transparent); transition: all 0.2s ease; }
.theme-testimonials__dots button.is-active { background: var(--color-primary); transform: scale(1.25); }
.theme-testimonials__dots button:hover { background: color-mix(in srgb, var(--color-foreground) 50%, transparent); }

/* ==========================================================================
   FINAL CTA / CONTACT
   ========================================================================== */
.theme-final-cta { position: relative; min-height: 85vh; width: 100%; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem; overflow: hidden; }
.theme-final-cta__tint { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.theme-final-cta__card {
	position: relative; z-index: 2;
	width: 100%; max-width: 56rem;
	border-radius: 2rem;
	overflow: hidden;
	box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
	backdrop-filter: blur(10px);
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-background) 96%, transparent) 0%, color-mix(in srgb, var(--color-secondary) 90%, transparent) 55%, color-mix(in srgb, var(--color-accent) 50%, transparent) 100%);
	padding: 3.5rem 2rem;
	text-align: center;
}
@media (min-width: 768px) { .theme-final-cta__card { padding: 5rem 4rem; } }
.theme-final-cta__intro { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-primary) 80%, transparent); font-size: 1.125rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .theme-final-cta__intro { font-size: 1.25rem; } }
.theme-final-cta__heading { font-size: 2.25rem; line-height: 1.05; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .theme-final-cta__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .theme-final-cta__heading { font-size: 3.75rem; } }
.theme-final-cta__body { max-width: 34rem; margin: 0 auto 2.5rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-size: 1rem; line-height: 1.6; }
@media (min-width: 768px) { .theme-final-cta__body { font-size: 1.125rem; } }
.theme-final-cta__actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2rem; }
@media (min-width: 640px) { .theme-final-cta__actions { flex-direction: row; } }
.theme-final-cta__social { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.4rem 1rem; font-size: 0.85rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-final-cta__social a { display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s ease; }
.theme-final-cta__social a:hover { color: var(--color-primary); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { border-top: 1px solid var(--color-border); background: var(--color-card); }
.site-footer__inner { padding: 4rem 0; }
@media (max-width: 1023px) { .site-footer__inner { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .site-footer__inner { padding: 5rem 0; } }
.site-footer__top {
	display: flex; flex-direction: column; gap: 1.5rem;
	margin-bottom: 3rem; padding-bottom: 2.5rem;
	border-bottom: 1px solid var(--color-border);
}
@media (min-width: 640px) { .site-footer__top { flex-direction: row; align-items: center; justify-content: space-between; } }
.site-footer__logo .site-logo-img { height: var(--logo-height); }
.site-footer__logo .site-logo-text { font-size: 1.75rem; }
.site-footer__intro { max-width: 34rem; }
@media (min-width: 640px) { .site-footer__intro { text-align: right; } }
.site-footer__intro p { font-size: 0.9rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.6; }
.site-footer__contact-line { margin-top: 0.75rem; }
.site-footer__contact-line a:hover { color: var(--color-foreground); }

.site-footer__columns { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
@media (min-width: 768px) { .site-footer__columns { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
.site-footer__col--connect { grid-column: span 2; }
@media (min-width: 768px) { .site-footer__col--connect { grid-column: span 1; } }
.site-footer__col h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col a { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); transition: color 0.2s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.site-footer__col .theme-footer-link { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
.site-footer__col a:hover { color: var(--color-foreground); }

.site-footer__bottom {
	margin-top: 3.5rem; padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem;
	text-align: center;
}
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; text-align: left; } }
.site-footer__tagline { font-size: 12px; color: var(--color-primary); font-family: var(--font-display); font-style: italic; letter-spacing: 0.02em; }
.site-footer__copyright { font-size: 12px; color: var(--color-muted-foreground); letter-spacing: 0.02em; }

/* ==========================================================================
   CART DRAWER + OVERLAY
   ========================================================================== */
#theme-cart-overlay {
	position: fixed; inset: 0;
	background: color-mix(in srgb, var(--color-foreground) 20%, transparent);
	z-index: 90;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed;
	right: 0; top: 0;
	height: 100%;
	width: 100%;
	max-width: 26rem;
	background: var(--color-background);
	z-index: 91;
	box-shadow: var(--shadow-elevated);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-size: 1.125rem; font-weight: 700; }
.theme-cart-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.25rem;
	color: var(--color-foreground);
	transition: opacity 0.2s ease;
	flex-shrink: 0;
}
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__close-icon {
	width: 1.25rem;
	height: 1.25rem;
	display: block;
	flex-shrink: 0;
}

.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem; text-align: center; gap: 1rem; }
.theme-cart-drawer__empty-icon { width: 3rem; height: 3rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; }
.theme-cart-drawer__item-image { position: relative; width: 5rem; height: 6rem; flex-shrink: 0; background: var(--color-secondary); overflow: hidden; }
.theme-cart-drawer__item-image img,
.theme-cart-drawer__item-image .cover-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.theme-cart-drawer__item-info { flex: 1; min-width: 0; }
.theme-cart-drawer__item-name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-price,
.theme-cart-drawer__item-variation { font-size: 0.85rem; color: var(--color-muted-foreground); margin-top: 0.15rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty-btn { width: 1.75rem; height: 1.75rem; display: flex; align-items: center; justify-content: center; border-radius: 0.35rem; transition: background 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty-value { font-size: 0.875rem; width: 1.5rem; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; font-size: 0.85rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }

.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.9rem; }
.theme-cart-drawer__subtotal span:first-child { color: var(--color-muted-foreground); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__shipping-note { font-size: 0.85rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout { width: 100%; }
.theme-cart-drawer__empty-btn {
	width: 100%;
	min-height: 2.25rem;
	height: 2.25rem;
	padding: 0 1.25rem !important;
	font-size: 11px !important;
	letter-spacing: 0.22em;
	font-weight: 600;
	border: 1px solid color-mix(in srgb, var(--color-foreground) 40%, transparent) !important;
	color: var(--color-foreground) !important;
	background: transparent !important;
	border-radius: 999px;
}
.theme-cart-drawer__empty-btn:hover {
	border-color: var(--color-foreground) !important;
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
}
.theme-cart-drawer__empty-btn svg {
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

/* ==========================================================================
   CONTACT MODAL
   ========================================================================== */
.theme-modal { position: fixed; inset: 0; z-index: 95; display: none; }
.theme-modal.is-open { display: block; }
.theme-modal__overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); animation: theme-fade-in 0.2s ease; }
.theme-modal__panel {
	position: relative;
	z-index: 2;
	max-width: 32rem;
	max-height: 90vh;
	overflow-y: auto;
	margin: 5vh auto;
	background: var(--color-background);
	border-radius: 1rem;
	padding: 1.75rem;
	box-shadow: var(--shadow-elevated);
	animation: theme-slide-up 0.25s var(--transition-smooth);
}
@media (min-width: 640px) { .theme-modal__panel { padding: 2rem; } }
.theme-modal__close { position: absolute; top: 1rem; right: 1rem; color: var(--color-muted-foreground); transition: color 0.2s ease; }
.theme-modal__close:hover { color: var(--color-foreground); }
.theme-modal__title { font-size: 1.5rem; margin-bottom: 0.5rem; padding-right: 2rem; }
.theme-modal__desc { color: var(--color-muted-foreground); margin-bottom: 1.25rem; font-size: 0.9rem; }
.theme-modal__contact-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.875rem; color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-modal__contact-item { display: inline-flex; align-items: center; gap: 0.5rem; }
.theme-modal__contact-row a:hover { color: var(--color-foreground); }

/* ==========================================================================
   PAGE LOADER
   ========================================================================== */
.theme-page-loader {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-background);
	transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.theme-page-loader.is-hidden {
	opacity: 0;
	pointer-events: none;
}
.theme-page-loader__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.5rem;
}
.theme-page-loader__spinner {
	position: relative;
	width: 4rem;
	height: 4rem;
}
.theme-page-loader__ring {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 2px solid color-mix(in srgb, var(--color-primary) 15%, transparent);
}
.theme-page-loader__arc {
	position: absolute;
	inset: 0;
	border-radius: 999px;
	border: 2px solid transparent;
	border-top-color: var(--color-accent);
	border-right-color: var(--color-primary);
	animation: theme-spin-clockwise 1s linear infinite;
}
.theme-page-loader__core {
	position: absolute;
	inset: 0.75rem;
	border-radius: 999px;
	background: linear-gradient(to bottom right, var(--color-accent), var(--color-rosa));
	animation: theme-pulse-soft 2s ease-in-out infinite;
}
.theme-page-loader__label {
	font-family: var(--font-display);
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-primary) 70%, transparent);
	margin: 0;
}

.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field { margin-bottom: 1rem; }
.theme-contact-form__field label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.4rem; }
.theme-contact-form__field input,
.theme-contact-form__field select,
.theme-contact-form__field textarea {
	width: 100%;
	padding: 0.65rem 0.75rem;
	background: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	font-size: 1rem;
	color: var(--color-foreground);
	transition: box-shadow 0.2s ease;
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__field input:focus,
.theme-contact-form__field select:focus,
.theme-contact-form__field textarea:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__status { font-size: 0.85rem; margin-top: 0.75rem; min-height: 1em; }
.theme-contact-form__status.is-error { color: #bd2828; }
.theme-contact-form__status.is-success { color: var(--color-teal); }

.theme-modal__success { text-align: center; padding: 2rem 0; }
.theme-modal__success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-modal__success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-modal__success p { color: var(--color-muted-foreground); font-size: 0.9rem; }

/* ==========================================================================
   404 / GENERIC PAGE
   ========================================================================== */
.theme-404 { min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 5rem 0; }
.theme-404__code { font-size: 2.5rem; margin-bottom: 1rem; }
.theme-404__text { font-size: 1.25rem; color: var(--color-muted-foreground); margin-bottom: 1rem; }
.theme-page { min-height: 40vh; }
.site-main.theme-page,
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.theme-thankyou-page .site-main {
	padding-top: calc(var(--header-height) + 1.5rem);
	padding-bottom: 4rem;
}
@media (min-width: 1024px) {
	.site-main.theme-page,
	body.woocommerce-checkout .site-main,
	body.woocommerce-cart .site-main,
	body.woocommerce-account .site-main,
	body.theme-thankyou-page .site-main {
		padding-top: calc(var(--header-height) + 2rem);
	}
}
body.admin-bar .site-main.theme-page,
body.admin-bar.woocommerce-checkout .site-main,
body.admin-bar.woocommerce-cart .site-main,
body.admin-bar.woocommerce-account .site-main,
body.admin-bar.theme-thankyou-page .site-main {
	padding-top: calc(var(--header-height) + 1.5rem + 32px);
}
@media (min-width: 783px) {
	body.admin-bar .site-main.theme-page,
	body.admin-bar.woocommerce-checkout .site-main,
	body.admin-bar.woocommerce-cart .site-main,
	body.admin-bar.woocommerce-account .site-main,
	body.admin-bar.theme-thankyou-page .site-main {
		padding-top: calc(var(--header-height) + 2rem + 32px);
	}
}
.page-title { font-size: 2rem; margin-bottom: 1.5rem; }

/* ==========================================================================
   WOOCOMMERCE: SHOP ARCHIVE
   ========================================================================== */
.theme-shop-archive { padding: 3rem 0 5rem; }
.theme-shop-archive__header { text-align: center; margin-bottom: 3rem; }
.theme-shop-archive__title { font-size: 2rem; margin-top: 0.5rem; }
.theme-shop-empty { text-align: center; padding: 4rem 0; color: var(--color-muted-foreground); }
.theme-shop-archive__pagination { margin-top: 3rem; text-align: center; }
.theme-shop-archive__pagination .page-numbers { display: inline-flex; gap: 0.5rem; }
.theme-shop-archive__pagination .page-numbers li { list-style: none; }
.theme-shop-archive__pagination a, .theme-shop-archive__pagination span.current {
	display: inline-flex; align-items: center; justify-content: center;
	width: 2.25rem; height: 2.25rem; border-radius: 999px;
	border: 1px solid var(--color-border); font-size: 0.85rem;
}
.theme-shop-archive__pagination span.current { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.woocommerce-breadcrumb { display: none; }

/* ==========================================================================
   WOOCOMMERCE: SINGLE PRODUCT
   ========================================================================== */
.single-product-page.site-main {
	padding-top: calc(var(--header-height) + 1.5rem);
}
@media (min-width: 1024px) {
	.single-product-page.site-main { padding-top: calc(var(--header-height) + 2rem); }
}

.theme-breadcrumb { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-muted-foreground); padding: 0.75rem 0; }
.theme-breadcrumb a:hover { color: var(--color-foreground); }
.theme-breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.theme-breadcrumb__current { color: var(--color-foreground); }

.single-product-page .theme-product-layout,
body.single-product .theme-product-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding: 1rem 0 6rem;
	align-items: start;
	min-width: 0;
}
@media (min-width: 1024px) {
	.single-product-page .theme-product-layout,
	body.single-product .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.single-product-page .theme-product-gallery,
.single-product-page .theme-product-info,
body.single-product .theme-product-gallery,
body.single-product .theme-product-info { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.single-product-page .theme-product-info,
	body.single-product .theme-product-info {
		position: sticky;
		top: 7rem;
		align-self: start;
		padding-left: 1rem;
	}
}

/* Gallery: mobile = hero + thumbs; desktop = stacked images */
.theme-product-gallery__mobile { display: block; }
.theme-product-gallery__desktop { display: none; }
@media (min-width: 1024px) {
	.theme-product-gallery__mobile { display: none; }
	.theme-product-gallery__desktop {
		display: flex;
		flex-direction: column;
		gap: 1rem;
	}
}

.theme-product-gallery__main,
.theme-product-gallery__stack-item {
	position: relative;
	aspect-ratio: 1 / 1;
	background: var(--color-secondary);
	overflow: hidden;
}
.theme-product-thumbnails {
	display: flex;
	gap: 0.75rem;
	margin-top: 1rem;
	flex-wrap: nowrap;
	max-width: 100%;
	overflow-x: auto;
	padding-bottom: 0.25rem;
}
.theme-product-thumb {
	position: relative;
	width: 5rem;
	height: 5rem;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-secondary);
	border: none;
	padding: 0;
	cursor: pointer;
}
.theme-product-thumb img { opacity: 0.6; transition: opacity 0.2s ease; }
.theme-product-thumb.is-active img,
.theme-product-thumb:hover img { opacity: 1; }
.theme-product-thumb__indicator {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: var(--color-foreground);
	opacity: 0;
	transition: opacity 0.2s ease;
}
.theme-product-thumb.is-active .theme-product-thumb__indicator { opacity: 1; }

.theme-product-info__category { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--color-muted-foreground); }
.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.1;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
}
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.75rem; } }
.theme-product-info__price { font-size: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__price del { opacity: 0.5; margin-right: 0.5em; }
.theme-product-info__price ins { text-decoration: none; }
.theme-product-info__stock { display: inline-block; margin-bottom: 1rem; font-size: 0.85rem; font-weight: 600; }
.theme-product-info__stock.is-out-of-stock { color: #bd2828; }
.theme-product-info__teaser { color: var(--color-muted-foreground); line-height: 1.625; margin-bottom: 2rem; font-size: 1rem; }

.theme-attr-select-hidden { display: none !important; }
.theme-product-variations { margin-bottom: 1.5rem; }
.theme-attr-group { margin-bottom: 1.5rem; }
.theme-attr-group__label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.theme-attr-group__options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-attr-pill {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.5rem 1rem;
	font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	font-family: var(--font-body);
	transition: all 0.2s ease;
}
.theme-attr-pill:hover { border-color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-attr-group--color .theme-attr-pill.is-selected {
	border-color: var(--color-foreground);
	background: color-mix(in srgb, var(--color-foreground) 5%, transparent);
}
.theme-attr-group--size .theme-attr-pill.is-selected {
	border-color: var(--color-foreground);
	background: var(--color-foreground);
	color: var(--color-background);
}
.theme-attr-pill__swatch {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	flex-shrink: 0;
}

.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations { display: none; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }

.theme-product-purchase { margin-bottom: 0; }
.theme-quantity-block { margin-bottom: 1rem; }
.theme-quantity-block__label {
	font-size: 13px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-muted-foreground);
	margin-bottom: 0.75rem;
	font-weight: 400;
}
.theme-quantity-wrapper {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--color-border);
	border-radius: 0;
}
.theme-quantity-wrapper--hidden-native { display: none; }
.theme-qty-minus, .theme-qty-plus {
	width: 2.75rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	line-height: 1;
	transition: background 0.2s ease;
}
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-secondary); }
.theme-qty-display {
	min-width: 2.75rem;
	padding: 0.5rem 1rem;
	text-align: center;
	font-size: 0.875rem;
	font-family: var(--font-body);
}
.theme-qty-input { display: none; }
.theme-qty-input:not([hidden]) {
	display: block;
	width: 2.75rem;
	text-align: center;
	border: none;
	background: transparent;
	font-size: 0.875rem;
	-moz-appearance: textfield;
}
.theme-qty-input:not([hidden])::-webkit-outer-spin-button,
.theme-qty-input:not([hidden])::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area,
.theme-add-to-cart-area {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 0;
}
.single-product .single_variation_wrap .woocommerce-variation-price { display: none; }
.single-product .single_variation_wrap .woocommerce-variation-availability { display: none; }

.theme-product-accordions { border-top: 1px solid var(--color-border); margin-top: 2.5rem; }
.theme-accordion { border-bottom: 1px solid var(--color-border); }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; text-align: left; }
.theme-accordion__trigger span { font-size: 13px; letter-spacing: 0.25em; text-transform: uppercase; }
.theme-accordion__chevron { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.theme-accordion.is-open .theme-accordion__chevron { transform: rotate(180deg); }
.theme-accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.theme-accordion.is-open .theme-accordion__panel { max-height: 60rem; }
.theme-accordion__panel { padding-bottom: 0; }
.theme-accordion.is-open .theme-accordion__panel { padding-bottom: 1.5rem; }
.theme-accordion__panel--features .theme-product-info__description {
	font-size: 15px;
	color: var(--color-muted-foreground);
	line-height: 1.625;
	margin: 0 0 1rem;
	white-space: pre-line;
}
.theme-product-info__details { display: flex; flex-direction: column; gap: 0.5rem; margin: 0; }
.theme-product-info__details li { font-size: 15px; color: var(--color-muted-foreground); display: flex; align-items: flex-start; }
.theme-product-info__details li::before { content: ''; width: 4px; height: 4px; border-radius: 999px; background: var(--color-foreground); margin: 0.5em 0.75em 0 0; flex-shrink: 0; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); }
.theme-related__heading { text-align: center; margin-bottom: 3rem; }
.theme-related__kicker { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--color-muted-foreground); margin-bottom: 0.5rem; }
.theme-related__heading h2 { font-size: 1.875rem; font-weight: 400; }
@media (min-width: 768px) { .theme-related__heading h2 { font-size: 2.25rem; } }

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in,
.single-product .product_meta,
.single-product .sku_wrapper { display: none !important; }
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-page a.added_to_cart.wc-forward,
.single-product a.added_to_cart.wc-forward,
body a.added_to_cart.wc-forward { display: none !important; }

/* ==========================================================================
   WOOCOMMERCE: ADD TO CART BUTTON OVERRIDE (global)
   ========================================================================== */
.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
	border: none !important;
	border-radius: var(--btn-radius) !important;
	min-height: var(--btn-height) !important;
	padding: var(--btn-padding) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	font-family: var(--font-body) !important;
	font-size: var(--btn-font-size) !important;
	font-weight: var(--btn-font-weight) !important;
	letter-spacing: var(--btn-letter-spacing) !important;
	text-transform: var(--btn-text-transform) !important;
	cursor: pointer !important;
	transition: opacity 0.2s ease !important;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var(--color-primary) !important;
	color: var(--color-button-text) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var(--color-primary) !important;
}

/* Single product page — Lovable full-width CTA */
.single-product-page .theme-btn-product-cart,
.single-product-page .theme-product-purchase .single_add_to_cart_button,
body.single-product .theme-btn-product-cart,
body.single-product .theme-product-purchase .single_add_to_cart_button {
	width: 100% !important;
	background: var(--color-foreground) !important;
	color: var(--color-background) !important;
	border: none !important;
	border-radius: 999px !important;
	padding: 1rem 2rem !important;
	min-height: unset !important;
	font-size: 12px !important;
	font-weight: 500 !important;
	letter-spacing: 0.25em !important;
	text-transform: uppercase !important;
	transition: background 0.2s ease, opacity 0.2s ease !important;
}
.single-product-page .theme-btn-product-cart:hover,
.single-product-page .theme-product-purchase .single_add_to_cart_button:hover,
body.single-product .theme-btn-product-cart:hover,
body.single-product .theme-product-purchase .single_add_to_cart_button:hover {
	background: color-mix(in srgb, var(--color-foreground) 90%, transparent) !important;
	color: var(--color-background) !important;
	opacity: 1 !important;
}
.single-product-page .theme-btn-product-cart:disabled,
.single-product-page .theme-btn-product-cart.disabled,
.single-product-page .theme-product-purchase .single_add_to_cart_button:disabled,
.single-product-page .theme-product-purchase .single_add_to_cart_button.disabled,
body.single-product .theme-btn-product-cart:disabled,
body.single-product .theme-btn-product-cart.disabled,
body.single-product .theme-product-purchase .single_add_to_cart_button:disabled,
body.single-product .theme-product-purchase .single_add_to_cart_button.disabled {
	opacity: 0.6 !important;
	cursor: not-allowed !important;
	pointer-events: none !important;
}
.single-product-page .theme-btn-product-cart:disabled:hover,
.single-product-page .theme-btn-product-cart.disabled:hover,
.single-product-page .theme-product-purchase .single_add_to_cart_button:disabled:hover,
.single-product-page .theme-product-purchase .single_add_to_cart_button.disabled:hover,
body.single-product .theme-btn-product-cart:disabled:hover,
body.single-product .theme-btn-product-cart.disabled:hover,
body.single-product .theme-product-purchase .single_add_to_cart_button:disabled:hover,
body.single-product .theme-product-purchase .single_add_to_cart_button.disabled:hover {
	background: var(--color-foreground) !important;
	opacity: 0.6 !important;
}

/* Card compact button — overrides global rules (Section 11.4.1) */
.theme-product-card .add_to_cart_button {
	min-height: unset !important;
	padding: 0.75rem 0 !important;
	background: var(--color-teal) !important;
	color: var(--color-background) !important;
	border: 1px solid var(--color-teal) !important;
	border-radius: 999px !important;
	font-size: 11px !important;
	letter-spacing: 0.22em !important;
}
.theme-product-card .add_to_cart_button:hover {
	background: var(--color-background) !important;
	color: var(--color-teal) !important;
	opacity: 1 !important;
}

.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* ==========================================================================
   WOOCOMMERCE: CHECKOUT BLOCK
   ========================================================================== */
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title { max-width: 80rem; margin: 0 auto 2rem; padding: 0 1.5rem; font-size: 2rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .page-title, body.woocommerce-cart .page-title, body.woocommerce-account .page-title { padding: 0 2rem; } }

body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { body.woocommerce-checkout .entry-content, body.woocommerce-cart .entry-content, body.woocommerce-account .entry-content { padding: 0 2rem; } }

body.woocommerce-checkout .wc-block-checkout { display: block; }
@media (min-width: 768px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 3rem;
		align-items: start;
	}
}
body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar { min-width: 0; width: 100%; max-width: none; }

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-textarea textarea {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	background: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus { outline: none; box-shadow: 0 0 0 2px color-mix(in srgb, var(--color-primary) 50%, transparent); }
body.woocommerce-checkout .wc-block-components-text-input input::placeholder { color: var(--color-muted-foreground); }

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	font-family: var(--font-body) !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0.5rem;
	font-family: var(--font-body);
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-card);
	border-radius: var(--card-radius);
	padding: 2rem;
}

body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }

.woocommerce-checkout .form-row .input-text,
.woocommerce-checkout .form-row select {
	font-family: var(--font-body);
	border: 1px solid var(--color-border);
	border-radius: 0.5rem;
	background: var(--color-background);
}

/* ==========================================================================
   WOOCOMMERCE: CART / ACCOUNT PAGES
   ========================================================================== */
body.woocommerce-cart .wc-block-cart,
body.woocommerce-cart .wc-block-cart-items { font-family: var(--font-body); }
body.woocommerce-cart .wc-block-components-sidebar-layout {
	display: block;
}
@media (min-width: 768px) {
	body.woocommerce-cart .wc-block-components-sidebar-layout.wc-block-cart.is-large { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}

/* ==========================================================================
   WOOCOMMERCE: THANK YOU PAGE
   ========================================================================== */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-details,
body.theme-thankyou-page .woocommerce-customer-details { font-family: var(--font-body); }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display);
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin: 1.5rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { border-right: none; padding: 0.75rem 1.25rem; background: var(--color-card); border-radius: 0.5rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-bottom: 2rem; }
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td { padding: 0.75rem; border-bottom: 1px solid var(--color-border); }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 768px) { body.theme-thankyou-page .woocommerce-customer-details { flex-direction: row; } }
body.theme-thankyou-page .woocommerce-customer-details address { flex: 1; min-width: 0; max-width: 480px; overflow-wrap: break-word; border: 1px solid var(--color-border); border-radius: 0.5rem; padding: 1.25rem; }

/* ==========================================================================
   GLOBAL IMAGE COVER EXCLUSIONS
   ========================================================================== */
img:not(.cover-img):not(.theme-hero__bg):not(.theme-product-card__image):not(#product-main-img):not(.theme-product-thumb img):not(.theme-cart-drawer__item-image img) {
	max-width: 100%;
	height: auto;
}

/* ==========================================================================
   RESPONSIVE OVERFLOW SAFETY
   ========================================================================== */
.theme-hero__title, .theme-final-cta__heading, .section-heading { overflow-wrap: break-word; }
