/* =========================================================================
   Brutalful Apparel — theme.css
   Author: The Free Website Guys
   ========================================================================= */

:root {
	--color-background: #eeeff1;
	--color-foreground: #0f0f0f;
	--color-primary: #f96f1f;
	--color-primary-foreground: #ffffff;
	--color-secondary: #dee0e3;
	--color-muted-foreground: #5d6065;
	--color-accent: #167df3; /* Fixed brand accent — matches original design palette */
	--color-border: #cdd0d5;
	--color-destructive: #da1b1b;
	--color-card: #ffffff;

	--font-display: 'Archivo Black', 'Inter', 'Helvetica Neue', sans-serif;
	--font-body: 'Inter', 'Helvetica Neue', sans-serif;

	--radius: 0.25rem;
	--shadow-soft: 0 6px 24px -8px rgba(0, 0, 0, 0.22);
	--shadow-elevated: 0 14px 40px -12px rgba(0, 0, 0, 0.38);
	--transition-smooth: cubic-bezier(0.25, 0.4, 0.25, 1);

	--header-height: 88px;
	--logo-height: 56px;

	--btn-radius: 0px;
	--btn-height: 3rem;
	--btn-padding: 0 2.5rem;
	--btn-font-size: 11px;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.32em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.5rem;

	--checkout-gap: 1.5rem;
	--checkout-max-width: 80rem;
	--card-radius: 8px;
	--section-padding: 2rem;
}

/* ---------------------------------------------------------------------
   RESET / BASE
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; max-width: 100%; }
body {
	margin: 0;
	background: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: -0.01em;
	margin: 0;
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
img.cover-img, img.hero-bg-img, img.product-card-img,
.theme-product-card__img, .cat-tile__img,
.theme-product-gallery__main-img, .theme-product-thumb img,
.contact-section__panel-img {
	max-width: none;
	height: 100%;
	width: 100%;
	object-fit: cover;
}
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
.theme-pre-line { white-space: pre-line; }

.container-wide {
	width: 100%;
	max-width: 90rem;
	margin: 0 auto;
	padding: 0 1.5rem;
}
@media (min-width: 1024px) {
	.container-wide { padding: 0 2.5rem; }
}

.label-eyebrow {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 600;
	color: var(--color-muted-foreground);
	font-family: var(--font-body);
}
.label-eyebrow--accent { color: var(--color-primary); }
.label-eyebrow--on-dark { color: rgba(255,255,255,0.6); }

.nav-link {
	font-size: 0.8125rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	font-family: var(--font-body);
}

.section-heading {
	color: var(--color-foreground);
	line-height: 1.15;
	text-transform: uppercase;
}
.about-section__heading, .founder-section__heading { font-size: 2.25rem; }
.quotes-section__heading, .faq-section__heading, .contact-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) {
	.about-section__heading, .founder-section__heading,
	.quotes-section__heading, .faq-section__heading, .contact-section__heading { font-size: 3rem; }
}

/* ---------------------------------------------------------------------
   NOISE OVERLAY + SCROLL PROGRESS
   --------------------------------------------------------------------- */
#theme-noise-overlay {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 9999;
	opacity: 0.03;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
	background-repeat: repeat;
	background-size: 128px 128px;
}
.theme-scroll-progress {
	position: fixed;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: var(--color-primary);
	transform-origin: 0 50%;
	transform: scaleX(0);
	z-index: 70;
	pointer-events: none;
	transition: background-color 0.3s ease;
}
body.admin-bar .theme-scroll-progress {
	top: var(--wp-admin--admin-bar--height, 46px);
}

/* ---------------------------------------------------------------------
   ANIMATIONS
   --------------------------------------------------------------------- */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes kenBurns { 0% { transform: scale(1); } 100% { transform: scale(1.08); } }

.reveal-item {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s var(--transition-smooth), transform 0.55s var(--transition-smooth);
	transition-delay: var(--reveal-delay, 0s);
}
.reveal-item[data-reveal="fade-up"] { transform: translateY(24px); }
.reveal-item[data-reveal="slide-up"] { transform: translateY(24px); }
.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; opacity: 1; transform: none; }
	.animate-ken-burns, .hero-section__video { animation: none !important; }
	.mobile-menu__panel, .mobile-menu__overlay, .mobile-menu__nav li,
	.mobile-menu__head, .mobile-menu__foot, .site-header__menu-btn .menu-icon__line { transition: none !important; }
	body.mobile-menu-open .mobile-menu__nav li { opacity: 1; transform: none; }
}

.animate-ken-burns { animation: kenBurns 18s ease-in-out infinite alternate; }

/* ---------------------------------------------------------------------
   BUTTONS
   --------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	height: var(--btn-height);
	padding: var(--btn-padding);
	font-family: var(--font-body);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	border-radius: var(--btn-radius);
	border: 1px solid transparent;
	transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
	white-space: nowrap;
}
.theme-btn--primary {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-color: var(--color-primary);
}
.theme-btn--primary:hover { background: var(--color-background); color: var(--color-foreground); }
.theme-btn--hero { height: 3rem; }
.theme-btn--dark {
	background: var(--color-foreground);
	color: var(--color-background);
	border-color: var(--color-foreground);
	height: 2.75rem;
	padding: 0 2rem;
}
.theme-btn--dark:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn--outline {
	background: transparent;
	color: var(--color-foreground);
	border-color: var(--color-foreground);
	height: 2.75rem;
	padding: 0 2rem;
}
.theme-btn--outline:hover { background: var(--color-foreground); color: var(--color-background); }
.theme-btn--light {
	background: var(--color-background);
	color: var(--color-foreground);
	border-color: var(--color-background);
	height: 2.75rem;
	padding: 0 2rem;
}
.theme-btn--light:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-btn.disabled, .theme-btn:disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; }

/* ---------------------------------------------------------------------
   HEADER
   --------------------------------------------------------------------- */
.site-header {
	position: fixed;
	top: 0.75rem;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 0 0.75rem;
	pointer-events: none;
}
body.admin-bar .site-header {
	top: calc(var(--wp-admin--admin-bar--height, 46px) + 0.75rem);
}
@media (min-width: 768px) {
	.site-header { top: 1.25rem; padding: 0 1.5rem; }
	body.admin-bar .site-header {
		top: calc(var(--wp-admin--admin-bar--height, 32px) + 1.25rem);
	}
}
.site-header__pill {
	pointer-events: auto;
	margin: 0 auto;
	max-width: 90rem;
	background: rgba(15,15,15,0.85);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 10px;
	box-shadow: 0 10px 40px -12px rgba(0,0,0,0.3);
	color: #fff;
}
.site-header__row {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.2rem;
	padding: 0 1rem;
}
@media (min-width: 768px) { .site-header__row { padding: 0 1.5rem; } }
.site-header__left { display: flex; align-items: center; gap: 1.5rem; }
.site-header__menu-btn { padding: 0.5rem; margin-left: -0.5rem; color: #fff; transition: transform 0.35s var(--transition-smooth), opacity 0.3s ease; }
.site-header__menu-btn .menu-icon__line { transition: transform 0.35s var(--transition-smooth), opacity 0.25s ease; transform-origin: center; }
body.mobile-menu-open .site-header__menu-btn .menu-icon__line--top { transform: translateY(6px) rotate(45deg); }
body.mobile-menu-open .site-header__menu-btn .menu-icon__line--mid { opacity: 0; transform: scaleX(0); }
body.mobile-menu-open .site-header__menu-btn .menu-icon__line--bot { transform: translateY(-6px) rotate(-45deg); }
.site-header__nav { display: none; align-items: center; gap: 1.75rem; }
@media (min-width: 1024px) { .site-header__nav { display: flex; } .site-header__menu-btn { display: none; } }
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-list a, .theme-nav-list .theme-nav-link {
	font-size: 0.8125rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	transition: color 0.3s ease;
}
.theme-nav-list a:hover, .theme-nav-list .theme-nav-link:hover { color: var(--color-primary); }

.site-header__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	height: 3.4rem;
}
@media (min-width: 768px) { .site-header__logo { height: 3.8rem; } }
.site-header__logo .site-logo-img { height: var(--logo-height) !important; width: auto !important; max-height: 100%; }
.site-header__logo .site-logo-text { font-family: var(--font-display); font-size: 1.25rem; color: #fff; text-transform: uppercase; }
.site-logo-text--beside { margin-left: 0.75rem; }

.site-header__right { display: flex; align-items: center; gap: 0.125rem; }
.site-header__contact-link {
	display: none;
	font-size: 0.8125rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 500;
	color: #fff;
	padding: 0 0.75rem;
	transition: color 0.3s ease;
}
@media (min-width: 1024px) { .site-header__contact-link { display: inline-flex; } }
.site-header__contact-link:hover { color: var(--color-primary); }
.site-header__icon-btn {
	position: relative;
	width: 2.75rem;
	height: 2.75rem;
	display: none;
	align-items: center;
	justify-content: center;
	color: #fff;
	transition: color 0.3s ease;
}
.site-header__search-btn { display: none; }
@media (min-width: 640px) { .site-header__search-btn { display: inline-flex; } }
.site-header__cart-btn { display: inline-flex; }
.site-header__icon-btn:hover { color: var(--color-primary); }
.theme-cart-count {
	position: absolute;
	top: -0.05rem;
	right: -0.05rem;
	width: 1.15rem;
	height: 1.15rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.6875rem;
	font-weight: 500;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 50%;
}
.theme-cart-count:empty { display: none; }

/* ---------------------------------------------------------------------
   MOBILE MENU
   --------------------------------------------------------------------- */
.mobile-menu { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; }
.mobile-menu__overlay {
	position: absolute; inset: 0;
	background: rgba(0,0,0,0.8);
	backdrop-filter: blur(4px);
	opacity: 0;
	transition: opacity 0.45s var(--transition-smooth);
}
.mobile-menu__panel {
	position: absolute; top: 0; left: 0; height: 100%;
	width: 88vw; max-width: 24rem;
	background: var(--color-foreground);
	color: var(--color-background);
	display: flex; flex-direction: column;
	border-right: 1px solid rgba(255,255,255,0.1);
	box-shadow: 14px 0 40px -12px rgba(0,0,0,0.45);
	transform: translateX(-105%);
	opacity: 0;
	transition: transform 0.55s var(--transition-smooth), opacity 0.4s ease;
	will-change: transform, opacity;
}
body.mobile-menu-open { overflow: hidden; }
body.mobile-menu-open .mobile-menu { visibility: visible; pointer-events: auto; }
body.mobile-menu-open .mobile-menu__overlay { opacity: 1; }
body.mobile-menu-open .mobile-menu__panel { transform: translateX(0); opacity: 1; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; padding: 0 1.25rem; height: 4.8rem; border-bottom: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; opacity: 0; transform: translateY(-12px); transition: opacity 0.4s var(--transition-smooth) 0.12s, transform 0.45s var(--transition-smooth) 0.12s; }
body.mobile-menu-open .mobile-menu__head { opacity: 1; transform: translateY(0); }
.mobile-menu__logo { display: inline-flex; align-items: center; height: 3.4rem; }
.mobile-menu__logo .site-logo-img { height: var(--logo-height) !important; width: auto !important; max-height: 100%; }
.mobile-menu__close { padding: 0.25rem; color: #fff; transition: transform 0.3s ease, color 0.3s ease; }
.mobile-menu__close:hover { color: var(--color-primary); transform: rotate(90deg); }
.mobile-menu__nav { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }
.mobile-menu__nav ul { display: flex; flex-direction: column; }
.mobile-menu__nav li {
	border-bottom: 1px solid rgba(255,255,255,0.08);
	opacity: 0;
	transform: translateX(-18px);
	transition: opacity 0.45s var(--transition-smooth), transform 0.45s var(--transition-smooth);
}
body.mobile-menu-open .mobile-menu__nav li { opacity: 1; transform: translateX(0); }
body.mobile-menu-open .mobile-menu__nav li:nth-child(1) { transition-delay: 0.16s; }
body.mobile-menu-open .mobile-menu__nav li:nth-child(2) { transition-delay: 0.22s; }
body.mobile-menu-open .mobile-menu__nav li:nth-child(3) { transition-delay: 0.28s; }
body.mobile-menu-open .mobile-menu__nav li:nth-child(4) { transition-delay: 0.34s; }
body.mobile-menu-open .mobile-menu__nav li:nth-child(5) { transition-delay: 0.4s; }
.mobile-menu__nav a, .mobile-menu__contact-btn { display: block; width: 100%; text-align: left; padding: 1rem 0.75rem; font-size: 1rem; letter-spacing: 0.28em; text-transform: uppercase; transition: color 0.3s ease, padding-left 0.3s var(--transition-smooth); }
.mobile-menu__nav a:hover, .mobile-menu__contact-btn:hover { color: var(--color-primary); padding-left: 1.1rem; }
.mobile-menu__foot {
	border-top: 1px solid rgba(255,255,255,0.15);
	padding: 1rem 0.75rem;
	display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem;
	flex-shrink: 0;
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.45s var(--transition-smooth) 0.34s, transform 0.45s var(--transition-smooth) 0.34s;
}
body.mobile-menu-open .mobile-menu__foot { opacity: 1; transform: translateY(0); }
.mobile-menu__action { display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; border: 1px solid rgba(255,255,255,0.25); font-size: 0.875rem; letter-spacing: 0.24em; text-transform: uppercase; transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s var(--transition-smooth); }
.mobile-menu__action--primary { background: var(--color-background); color: var(--color-foreground); border-color: var(--color-background); }
.mobile-menu__action:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   SEARCH DIALOG
   --------------------------------------------------------------------- */
.theme-search-dialog { position: fixed; inset: 0; z-index: 80; visibility: hidden; opacity: 0; transition: opacity 0.3s ease; overflow-y: auto; overscroll-behavior: contain; }
body.search-open { overflow: hidden; }
body.search-open .theme-search-dialog { visibility: visible; opacity: 1; animation: fadeIn 0.8s var(--transition-smooth, ease) forwards; }
.theme-search-dialog__overlay { position: absolute; inset: 0; background: rgba(15,15,15,0.4); backdrop-filter: blur(4px); border: none; padding: 0; cursor: pointer; }
.theme-search-dialog__panel { position: relative; z-index: 1; background: var(--color-background); width: 100%; border-bottom: 1px solid var(--color-border); box-shadow: var(--shadow-elevated); overflow: visible; }
.theme-search-dialog__close { position: absolute; top: 1.25rem; right: 1.25rem; padding: 0.5rem; opacity: 0.7; z-index: 10; transition: opacity 0.3s ease; }
@media (min-width: 1024px) {
	.theme-search-dialog__close { top: 1.75rem; right: 2rem; }
}
.theme-search-dialog__close:hover { opacity: 1; }
.theme-search-dialog__container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
@media (min-width: 1024px) {
	.theme-search-dialog__container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
.theme-search-dialog__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) {
	.theme-search-dialog__grid { grid-template-columns: 260px 1fr; gap: 4rem; }
}
.theme-search-dialog__categories h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 1.5rem; }
.theme-search-dialog__categories ul { display: flex; flex-direction: column; gap: 0.875rem; }
.theme-search-dialog__cat-btn { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(15,15,15,0.85); transition: color 0.3s ease; text-align: left; }
.theme-search-dialog__cat-btn:hover { color: var(--color-primary); }
.theme-search-dialog__more-ways { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-border) 60%, transparent); }
.theme-search-dialog__more-ways-label { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(15,15,15,0.5); margin-bottom: 0.75rem; }
.theme-search-dialog__color-btn { display: inline-flex; align-items: center; gap: 0.75rem; text-align: left; }
.theme-search-dialog__color-swatch { width: 2.25rem; height: 2.25rem; border-radius: 50%; overflow: hidden; border: 1px solid rgba(15,15,15,0.15); flex-shrink: 0; background: conic-gradient(from 0deg, #c44569, #c9a24c, #9fae8c, #2a3a6b, #6b2c4a, #c44569); }
.theme-search-dialog__color-copy { display: block; }
.theme-search-dialog__color-title { display: block; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--color-foreground); transition: color 0.3s ease; }
.theme-search-dialog__color-btn:hover .theme-search-dialog__color-title { color: var(--color-primary); }
.theme-search-dialog__color-desc { display: block; margin-top: 0.125rem; font-size: 0.75rem; color: rgba(15,15,15,0.55); }
@media (min-width: 1024px) {
	.theme-search-dialog__results { padding-right: 4rem; }
}
.theme-search-dialog__input-row { display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid rgba(15,15,15,0.3); padding-bottom: 0.75rem; }
.theme-search-dialog__input-row svg { width: 1rem; height: 1rem; opacity: 0.6; flex-shrink: 0; }
.theme-search-dialog__input { flex: 1; background: transparent; border: none; outline: none; font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); }
.theme-search-dialog__input::placeholder { color: rgba(15,15,15,0.4); }
.theme-search-dialog__body { margin-top: 2.5rem; }
.theme-search-dialog__results-heading { font-family: var(--font-display); font-size: 1.5rem; color: var(--color-foreground); margin-bottom: 1.5rem; }
.theme-search-dialog__grid-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .theme-search-dialog__grid-results { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .theme-search-dialog__grid-results { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }
.theme-search-dialog__result { text-align: left; display: block; min-width: 0; }
.theme-search-dialog__result-image { display: block; position: relative; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--color-secondary); }
.theme-search-dialog__result-image img { display: block; width: 100%; height: 100%; max-width: none; object-fit: cover; transition: transform 0.7s ease; }
.theme-search-dialog__result:hover .theme-search-dialog__result-image img { transform: scale(1.05); }
.theme-search-dialog__result-label { display: block; margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; line-height: 1.375; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.theme-search-dialog__result-price { display: block; margin-top: 0.25rem; font-size: 0.75rem; opacity: 0.7; }
.theme-search-dialog__no-results { font-size: 0.875rem; opacity: 0.6; }
.theme-search-dialog__no-results em { font-family: var(--font-display); font-style: italic; }

/* ---------------------------------------------------------------------
   HERO
   --------------------------------------------------------------------- */
.hero-section { position: relative; width: 100%; }
.hero-section__media { position: relative; width: 100%; height: 100dvh; overflow: hidden; background: var(--color-secondary); }
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,15,15,0.8), rgba(15,15,15,0.4) 50%, transparent 100%); }
.hero-section__content-wrap { position: absolute; inset: 0; display: flex; align-items: flex-end; }
.hero-section__content { width: 100%; padding-bottom: 4rem; }
@media (min-width: 768px) { .hero-section__content { padding-bottom: 6rem; } }
@media (min-width: 1024px) { .hero-section__content { padding-bottom: 7rem; } }
.hero-section__eyebrow { display: block; font-size: 0.625rem; letter-spacing: 0.42em; text-transform: uppercase; color: rgba(238,239,241,0.8); margin-bottom: 1rem; font-weight: 600; }
@media (min-width: 768px) { .hero-section__eyebrow { font-size: 0.6875rem; } }
.hero-section__title {
	font-family: var(--font-display);
	color: var(--color-background);
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 1.5rem;
	max-width: 36rem;
	text-transform: uppercase;
}
@media (min-width: 768px) { .hero-section__title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-section__title { font-size: 6rem; } }
.hero-section__subtitle { font-size: 0.875rem; color: rgba(238,239,241,0.85); max-width: 28rem; margin-bottom: 2rem; line-height: 1.6; }
@media (min-width: 768px) { .hero-section__subtitle { font-size: 1rem; } }

/* ---------------------------------------------------------------------
   PRODUCT ROW / CATEGORY TILES
   --------------------------------------------------------------------- */
.product-row-section { background: var(--color-background); padding: 3.5rem 0; overflow: hidden; }
@media (min-width: 1024px) { .product-row-section { padding: 5rem 0; } }
.product-row-section .container-wide { overflow: visible; }
.product-row-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; gap: 1rem; }
.product-row-section__title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}
@media (min-width: 640px) { .product-row-section__title { font-size: 0.875rem; } }
.product-row-section__nav { display: flex; gap: 0.5rem; flex-shrink: 0; }
.theme-row-arrow {
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.theme-row-arrow:hover:not(:disabled) { background: var(--color-foreground); color: var(--color-background); }
.theme-row-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.product-row-section__scroller {
	display: flex;
	gap: 1.25rem;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 1rem;
	scrollbar-width: none;
	margin: 0 -1.5rem;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
}
.product-row-section__scroller::-webkit-scrollbar { display: none; }
@media (max-width: 639px) {
	.product-row-section__scroller {
		--product-row-card-width: calc(100vw - 5rem);
		padding-left: calc((100vw - var(--product-row-card-width)) / 2);
		padding-right: calc((100vw - var(--product-row-card-width)) / 2);
	}
}
@media (min-width: 1024px) {
	.product-row-section__scroller { gap: 1.5rem; margin: 0 -2.5rem; padding-left: 2.5rem; padding-right: 2.5rem; }
}
.product-row-card { flex: 0 0 auto; width: calc(100% - 2rem); scroll-snap-align: start; }
@media (max-width: 639px) {
	.product-row-card {
		width: var(--product-row-card-width, calc(100vw - 5rem));
		scroll-snap-align: center;
	}
}
@media (min-width: 640px) { .product-row-card { width: 40vw; max-width: 18rem; } }
@media (min-width: 768px) { .product-row-card { width: calc((100% - 1.25rem) / 2); max-width: none; } }
@media (min-width: 1024px) { .product-row-card { width: calc((100% - 4.5rem) / 4); } }

.cat-tiles-section { background: var(--color-background); padding-bottom: 4rem; }
@media (min-width: 768px) { .cat-tiles-section { padding-bottom: 6rem; } }
.cat-tiles-section__grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0.5rem; }
.cat-tile { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--color-secondary); display: block; }
.cat-tile__img { transition: transform 0.7s ease; }
.cat-tile:hover .cat-tile__img { transform: scale(1.05); }
.cat-tile__overlay { position: absolute; inset: 0; background: rgba(15,15,15,0.4); transition: background-color 0.3s ease; }
.cat-tile:hover .cat-tile__overlay { background: rgba(15,15,15,0.55); }
.cat-tile__label {
	position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
	font-family: var(--font-display); color: var(--color-background); font-size: 1.5rem;
	letter-spacing: -0.01em; text-transform: uppercase; text-align: center; padding: 0 1rem;
}
@media (min-width: 768px) { .cat-tile__label { font-size: 2.25rem; } }

/* ---------------------------------------------------------------------
   PRODUCT CARD (shared partial)
   --------------------------------------------------------------------- */
.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: block; flex: 1; display: flex; flex-direction: column; }
.theme-product-card__image-wrapper { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: color-mix(in srgb, var(--color-secondary) 60%, transparent); }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2;
	font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600;
	background: color-mix(in srgb, var(--color-background) 90%, transparent);
	backdrop-filter: blur(4px);
	color: var(--color-foreground);
	padding: 0.375rem 0.75rem;
}
.theme-product-card__img { transition: opacity 0.5s ease, transform 0.5s ease; }
.theme-product-card:hover .theme-product-card__img { opacity: 0.9; transform: scale(1.05); }
.theme-product-card__img.is-sold-out { opacity: 0.6; }
.theme-product-card__info { padding-top: 1rem; text-align: center; flex: 1; }
.theme-product-card__title { font-family: var(--font-body); font-size: 0.8125rem; font-weight: 400; color: var(--color-foreground); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.3s ease; }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__category { font-family: var(--font-body); font-size: 0.6875rem; color: var(--color-muted-foreground); margin-top: 0.25rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-product-card__price { font-family: var(--font-body); font-size: 0.75rem; color: var(--color-foreground); margin-top: 0.25rem; }
.theme-product-card__price .woocommerce-Price-amount { font-size: inherit; }

.theme-product-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.25rem 1.25rem; }
@media (min-width: 768px) { .theme-product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1024px) { .theme-product-grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.25rem 2.5rem; } }

/* ---------------------------------------------------------------------
   SHOP SECTION
   --------------------------------------------------------------------- */
.shop-section { background: var(--color-foreground); color: var(--color-background); padding: 3.5rem 0; }
@media (min-width: 1024px) { .shop-section { padding: 5rem 0; } }
.shop-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.shop-section__title { font-family: var(--font-body); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; }
@media (min-width: 640px) { .shop-section__title { font-size: 0.875rem; } }
.shop-section__count { font-size: 0.75rem; color: rgba(238,239,241,0.6); }

.shop-section__controls { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; align-items: end; }
@media (min-width: 1024px) { .shop-section__controls { grid-template-columns: 1fr auto; gap: 2.5rem; } }
.shop-section__search { position: relative; max-width: 28rem; width: 100%; }
.shop-section__search svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); color: rgba(238,239,241,0.6); }
.shop-section__search input {
	width: 100%; height: 2.75rem; padding: 0 0.75rem 0 2.5rem;
	background: var(--color-foreground); border: 1px solid rgba(238,239,241,0.2); color: var(--color-background);
	font-size: 0.875rem; border-radius: 0;
}
.shop-section__search input::placeholder { color: rgba(238,239,241,0.5); }
.shop-section__search input:focus { outline: none; border-color: var(--color-background); }

.shop-section__price-filter { width: 100%; }
@media (min-width: 1024px) { .shop-section__price-filter { width: 18rem; } }
.shop-section__price-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.shop-section__price-head .label-eyebrow { color: rgba(238,239,241,0.6); }
.shop-section__price-values { font-size: 0.75rem; color: var(--color-background); }

.price-range-wrapper { position: relative; height: 1.5rem; }
.range-track-bg, .range-track-fill { position: absolute; height: 4px; top: 50%; transform: translateY(-50%); pointer-events: none; border-radius: 2px; }
.range-track-bg { left: 0; right: 0; background: rgba(238,239,241,0.2); }
.range-track-fill { background: var(--color-primary); }
.range-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; margin: 0; appearance: none; -webkit-appearance: none; background: transparent; pointer-events: none; }
.range-input::-webkit-slider-thumb { -webkit-appearance: none; pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-thumb { pointer-events: auto; width: 18px; height: 18px; border-radius: 50%; background: var(--color-background); border: 2px solid var(--color-primary); cursor: pointer; }
.range-input::-moz-range-track { background: transparent; }
.range-input--max { z-index: 3; }
.range-input--min { z-index: 4; }

.shop-section__chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.shop-chip {
	padding: 0 1rem; height: 2.25rem; display: inline-flex; align-items: center;
	font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
	border: 1px solid rgba(238,239,241,0.2); background: transparent; color: var(--color-background);
	transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.shop-chip:hover { border-color: var(--color-background); }
.shop-chip.is-active { background: var(--color-background); color: var(--color-foreground); border-color: var(--color-background); }

.shop-section__empty { padding: 4rem 0; text-align: center; color: rgba(238,239,241,0.6); font-size: 0.875rem; }
.shop-section .theme-product-card__title,
.shop-section .theme-product-card__category,
.shop-section .theme-product-card__price { color: var(--color-background); }
.shop-section .theme-product-card__category { color: rgba(238,239,241,0.6); }
.shop-section .theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }

/* ---------------------------------------------------------------------
   ABOUT / FOUNDER
   --------------------------------------------------------------------- */
.about-section { background: color-mix(in srgb, var(--color-secondary) 50%, transparent); padding: 5rem 0; }
@media (min-width: 1024px) { .about-section { padding: 7rem 0; } }
.about-section__grid, .founder-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-section__grid, .founder-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-section__image, .founder-section__image { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.about-section__image .cover-img { object-position: top; }
.about-section__copy p, .founder-section__copy p { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.7; margin-bottom: 1rem; }
.founder-section__copy p { color: color-mix(in srgb, var(--color-background) 85%, transparent); }
.about-section__heading, .founder-section__heading { margin-top: 1rem; margin-bottom: 1.5rem; }
.about-section__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; }

.founder-section { background: var(--color-foreground); color: var(--color-background); padding: 5rem 0; }
.founder-section__heading { color: var(--color-background); }
.founder-section__image { order: -1; }
@media (min-width: 1024px) { .founder-section { padding: 7rem 0; } }
@media (min-width: 1024px) { .founder-section__image { order: 1; } .founder-section__copy { order: 0; } }
.founder-section__linkedin { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); transition: color 0.3s ease; }
.founder-section__linkedin:hover { color: var(--color-background); }

/* ---------------------------------------------------------------------
   QUOTES
   --------------------------------------------------------------------- */
.quotes-section { background: var(--color-background); padding: 5rem 0; }
@media (min-width: 1024px) { .quotes-section { padding: 7rem 0; } }
.quotes-section__head { text-align: center; margin-bottom: 3rem; }
@media (min-width: 1024px) { .quotes-section__head { margin-bottom: 4rem; } }
.quotes-section__heading { margin-top: 0.75rem; }
.quotes-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
@media (min-width: 768px) { .quotes-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .quotes-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }
.quote-card {
	margin: 0;
	background: var(--color-secondary);
	border: 1px solid var(--color-border);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 0;
	transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth);
}
@media (min-width: 768px) { .quote-card { padding: 1.75rem; } }
@media (min-width: 1024px) { .quote-card { padding: 2.5rem; } }
.quote-card:hover { transform: translateY(-0.5rem); box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.quote-card__quote {
	margin: 0 0 1.5rem;
	padding: 0;
	border: 0;
	quotes: none;
	font-family: var(--font-display);
	font-size: 1.125rem;
	font-weight: inherit;
	font-style: normal;
	color: var(--color-foreground);
	text-transform: uppercase;
	line-height: 1.375;
	overflow-wrap: anywhere;
	hyphens: auto;
}
.quote-card__quote::before,
.quote-card__quote::after { content: none; }
@media (min-width: 768px) { .quote-card__quote { font-size: 1.25rem; } }
@media (min-width: 1024px) { .quote-card__quote { font-size: 1.5rem; } }
.quote-card__caption { margin: 0; margin-top: auto; padding: 0; }
.quote-card__label {
	margin: 0;
	font-family: var(--font-body);
	font-size: 0.75rem;
	color: var(--color-primary);
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

/* ---------------------------------------------------------------------
   FAQ
   --------------------------------------------------------------------- */
.faq-section { position: relative; padding: 5rem 0; border-top: 1px solid var(--color-border); overflow: hidden; }
@media (min-width: 1024px) { .faq-section { padding: 7rem 0; } }
.faq-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.faq-section__scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-background) 40%, transparent); }
.faq-section__grid { position: relative; display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .faq-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.faq-section__intro { align-self: flex-start; }
@media (min-width: 1024px) { .faq-section__intro { position: sticky; top: 8rem; } }
.faq-section__intro p { margin-top: 1.5rem; max-width: 28rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.7; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__question { width: 100%; display: flex; align-items: center; justify-content: space-between; text-align: left; padding: 1.25rem 0; gap: 1.5rem; }
.faq-item__question span:first-child { font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; color: var(--color-foreground); transition: color 0.3s ease; }
.faq-item__question:hover span:first-child { color: var(--color-primary); }
.faq-item__icon { flex-shrink: 0; display: inline-flex; }
.faq-item__icon-minus { display: none; }
.faq-item.is-open .faq-item__icon-plus { display: none; }
.faq-item.is-open .faq-item__icon-minus { display: inline-flex; }
.faq-item__answer { overflow: hidden; max-height: 0; transition: max-height 0.35s var(--transition-smooth); }
.faq-item__answer p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); line-height: 1.7; padding-bottom: 1.5rem; padding-right: 2.5rem; }
.faq-item.is-open .faq-item__answer { max-height: 40rem; }

/* ---------------------------------------------------------------------
   CONTACT SECTION
   --------------------------------------------------------------------- */
.contact-section { background: var(--color-background); padding: 5rem 0; border-top: 1px solid var(--color-border); }
@media (min-width: 1024px) { .contact-section { padding: 7rem 0; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__copy p { margin: 1rem 0 2rem; max-width: 28rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.7; }
.contact-section__details { display: flex; flex-direction: column; gap: 1rem; }
.contact-section__detail { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--color-foreground); transition: color 0.3s ease; overflow-wrap: anywhere; }
.contact-section__detail svg { flex-shrink: 0; margin-top: 0.1rem; }
a.contact-section__detail:hover { color: var(--color-primary); }
.contact-section__panel { position: relative; overflow: hidden; padding: 2rem; display: flex; flex-direction: column; justify-content: center; min-height: 22rem; }
@media (min-width: 1024px) { .contact-section__panel { padding: 3rem; } }
.contact-section__panel-img { position: absolute; inset: 0; animation: kenBurns 18s ease-in-out infinite alternate; }
.contact-section__panel-scrim { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.contact-section__panel-content { position: relative; z-index: 1; }
.contact-section__panel-content h3 { font-family: var(--font-display); color: var(--color-background); font-size: 1.5rem; text-transform: uppercase; line-height: 1.3; margin: 0.75rem 0 1.5rem; }
@media (min-width: 768px) { .contact-section__panel-content h3 { font-size: 1.875rem; } }
.contact-section__panel-content p { color: color-mix(in srgb, var(--color-background) 85%, transparent); font-size: 0.875rem; line-height: 1.7; margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   FOOTER
   --------------------------------------------------------------------- */
.site-footer { background: var(--color-foreground); color: var(--color-background); }
.site-footer__inner { padding-top: 4rem; padding-bottom: 1rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 1.25rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0,1fr)); gap: 3rem; } }
.site-footer__logo { display: inline-flex; height: 3.4rem; }
.site-footer__logo .site-logo-img { height: var(--logo-height) !important; width: auto !important; max-height: 100%; }
.site-footer__tagline { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(238,239,241,0.7); max-width: 20rem; line-height: 1.7; }
.site-footer__col h4 { font-size: 0.6875rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 600; color: var(--color-primary); margin-bottom: 1.25rem; }
.site-footer__col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__col ul a, .site-footer__col ul button { font-size: 0.875rem; color: rgba(238,239,241,0.7); transition: color 0.3s ease; text-align: left; }
.site-footer__col ul a:hover, .site-footer__col ul button:hover { color: var(--color-primary); }
.site-footer__contact-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: rgba(238,239,241,0.7); }
.site-footer__contact-list svg { flex-shrink: 0; margin-top: 0.2rem; }
.site-footer__bottom { margin-top: 1rem; padding-top: 1.25rem; border-top: 1px solid rgba(238,239,241,0.15); display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.site-footer__bottom p { font-size: 0.625rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(238,239,241,0.6); }
.site-footer__bottom a { text-decoration: underline; text-decoration-color: currentColor; text-underline-offset: 4px; transition: color 0.3s ease; }
.site-footer__bottom a:hover { color: var(--color-primary); }

/* ---------------------------------------------------------------------
   CART DRAWER + OVERLAY
   --------------------------------------------------------------------- */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent); z-index: 50; 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: 32rem;
	background: var(--color-background); z-index: 51; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.4s 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: 2rem 2rem 1.25rem; border-bottom: 1px solid var(--color-border); }
.theme-cart-drawer__header h2 { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; }
.theme-cart-drawer__close { padding: 0.25rem; transition: opacity 0.2s ease; }
.theme-cart-drawer__close:hover { opacity: 0.6; }
.theme-cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.theme-cart-drawer__empty svg { color: var(--color-muted-foreground); margin-bottom: 1.25rem; }
.theme-cart-drawer__empty p { color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-cart-drawer__body { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__items { display: flex; flex-direction: column; gap: 2rem; }
.theme-cart-drawer__item { display: flex; gap: 1.25rem; }
.theme-cart-drawer__item-image { width: 6rem; height: 8rem; background: var(--color-secondary); overflow: hidden; flex-shrink: 0; display: block; }
.theme-cart-drawer__item-image img { width: 100%; height: 100%; object-fit: cover; }
.theme-cart-drawer__item-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.theme-cart-drawer__item-name { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-foreground); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: opacity 0.2s ease; }
.theme-cart-drawer__item-name:hover { opacity: 0.7; }
.theme-cart-drawer__item-variation { font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.375rem; font-style: italic; }
.theme-cart-drawer__item-price { font-size: 0.875rem; margin-top: 0.375rem; }
.theme-cart-drawer__item-price .woocommerce-Price-amount { font-size: inherit; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; }
.theme-cart-drawer__qty { display: flex; align-items: center; border: 1px solid var(--color-border); }
.theme-cart-drawer__qty button { padding: 0.375rem 0.625rem; transition: background-color 0.2s ease; }
.theme-cart-drawer__qty button:hover { background: var(--color-secondary); }
.theme-cart-drawer__qty span { padding: 0 0.75rem; font-size: 0.875rem; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { font-size: 0.75rem; color: var(--color-muted-foreground); text-decoration: underline; text-underline-offset: 4px; transition: color 0.2s ease; }
.theme-cart-drawer__remove:hover { color: var(--color-foreground); }
.theme-cart-drawer__pairwith { padding-top: 1rem; border-top: 1px solid var(--color-border); flex-shrink: 0; }
.theme-cart-drawer__pairwith-title { font-family: var(--font-display); font-style: italic; font-size: 1.125rem; margin: 0 0 1rem; }
.theme-cart-drawer__pairwith-row { display: flex; flex-wrap: nowrap; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; margin-inline: -0.25rem; padding-inline: 0.25rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.theme-cart-drawer__pairwith-item { flex: 0 0 8rem; width: 8rem; max-width: 8rem; text-align: left; color: inherit; text-decoration: none; display: block; }
.theme-cart-drawer__pairwith-image { display: block; width: 100%; aspect-ratio: 3 / 4; background: var(--color-secondary); overflow: hidden; margin-bottom: 0.5rem; }
.theme-cart-drawer__pairwith-image img,
.theme-cart-drawer__pairwith-image .cover-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.theme-cart-drawer__pairwith-item:hover .theme-cart-drawer__pairwith-image img { transform: scale(1.05); }
.theme-cart-drawer__pairwith-name { display: block; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; line-height: 1.35; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.theme-cart-drawer__pairwith-price { display: block; font-family: var(--font-body); font-size: 0.75rem; color: var(--color-muted-foreground); margin-top: 0.125rem; }
.theme-cart-drawer__pairwith-price .woocommerce-Price-amount { font-size: inherit; color: inherit; }
.theme-cart-drawer__pairwith .screen-reader-text { display: none !important; }
.theme-cart-drawer__footer { padding: 1.5rem 2rem; border-top: 1px solid var(--color-border); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal-row { display: flex; align-items: baseline; justify-content: space-between; font-family: var(--font-display); font-size: 1.25rem; }
.theme-cart-drawer__note { font-size: 0.75rem; color: var(--color-muted-foreground); }
.theme-cart-drawer__checkout-btn { width: 100%; }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart. */
.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; }

/* ---------------------------------------------------------------------
   CONTACT MODAL
   --------------------------------------------------------------------- */
.theme-contact-modal { position: fixed; inset: 0; z-index: 85; visibility: hidden; opacity: 0; transition: opacity 0.3s ease; }
body.contact-modal-open .theme-contact-modal { visibility: visible; opacity: 1; }
.theme-contact-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); border: none; padding: 0; }
.theme-contact-modal__panel {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -48%) scale(0.96);
	width: calc(100% - 2rem); max-width: 32rem; max-height: 90vh; overflow-y: auto;
	background: var(--color-background); border: 1px solid var(--color-border);
	padding: 1.5rem; border-radius: 8px; box-shadow: var(--shadow-elevated);
	opacity: 0; transition: opacity 0.25s ease, transform 0.25s ease;
}
body.contact-modal-open .theme-contact-modal__panel { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.theme-contact-modal__close { position: absolute; right: 1rem; top: 1rem; padding: 0.25rem; opacity: 0.7; }
.theme-contact-modal__close:hover { opacity: 1; }
.theme-contact-modal__title { font-family: var(--font-display); font-size: 1.5rem; margin: 0.5rem 0 0.5rem; line-height: 1.3; }
.theme-contact-modal__desc { font-size: 0.9375rem; color: var(--color-muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.theme-contact-modal__quicklinks { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; color: var(--color-muted-foreground); border-top: 1px solid var(--color-border); padding-top: 1rem; margin-bottom: 0.5rem; }
.theme-contact-modal__quicklinks a { display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; overflow-wrap: anywhere; }
.theme-contact-modal__quicklinks a:hover { color: var(--color-foreground); }
.theme-contact-form { margin-top: 1rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .theme-contact-form__row { grid-template-columns: 1fr 1fr; } }
.theme-contact-form__field label { margin-bottom: 0.375rem; }
.theme-contact-form__field input, .theme-contact-form__field textarea {
	width: 100%; padding: 0.625rem 0.75rem; background: var(--color-background);
	border: 1px solid var(--color-border); font-size: 0.875rem; color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.theme-contact-form__field textarea { resize: none; }
.theme-contact-form__field input::placeholder, .theme-contact-form__field textarea::placeholder { color: var(--color-muted-foreground); }
.theme-contact-form__field input:focus, .theme-contact-form__field textarea:focus { outline: none; border-color: var(--color-primary); }
.theme-contact-form__actions { display: flex; justify-content: flex-end; }
.theme-contact-form__actions .theme-btn { height: 2.75rem; padding: 0 1.5rem; }
.theme-contact-form__status { font-size: 0.8125rem; text-align: right; }
.theme-contact-form__status.is-error { color: var(--color-destructive); }
.theme-contact-modal__success { text-align: center; padding: 2rem 0; }
.theme-contact-modal__success-icon { width: 3.5rem; height: 3.5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.theme-contact-modal__success h3 { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 0.5rem; }
.theme-contact-modal__success p { font-size: 0.875rem; color: var(--color-muted-foreground); }

/* ---------------------------------------------------------------------
   404
   --------------------------------------------------------------------- */
.theme-404 { min-height: 60vh; display: flex; align-items: center; padding-top: calc(var(--header-height) + 2rem); }
.theme-404__inner { text-align: center; padding: 4rem 0; }
.theme-404__title { font-family: var(--font-display); font-size: 2.5rem; margin-bottom: 1rem; text-transform: uppercase; }
.theme-404__text { color: var(--color-muted-foreground); margin-bottom: 2rem; }

/* ---------------------------------------------------------------------
   GENERIC PAGE (page.php)
   --------------------------------------------------------------------- */
.theme-generic-page { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; min-height: 50vh; }
body.theme-no-hero .site-main:not(.single-product-page):not(.theme-shop-archive) { padding-top: calc(var(--header-height) + 1rem); }
.page-title { font-family: var(--font-display); font-size: 2rem; text-transform: uppercase; margin-bottom: 1.5rem; }

/* =========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================= */
.single-product-page { padding-top: calc(var(--header-height) - 0.5rem); }
.single-product-page .theme-product-layout { display: grid; grid-template-columns: 1fr; min-width: 0; }
@media (min-width: 1024px) { .single-product-page .theme-product-layout { grid-template-columns: 1fr 440px; align-items: start; } }
@media (min-width: 1280px) { .single-product-page .theme-product-layout { grid-template-columns: 1fr 500px; } }

.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.theme-product-gallery { position: relative; }
@media (min-width: 1024px) { .theme-product-gallery { position: sticky; top: calc(var(--header-height) - 0.5rem); align-self: flex-start; } }
.theme-product-gallery__row { display: flex; }
.theme-product-thumbnails { flex-wrap: wrap; max-width: 100%; }
.theme-product-thumbnails--desktop { display: none; flex-direction: column; gap: 0.75rem; padding: 1rem 0.75rem; flex-shrink: 0; }
@media (min-width: 768px) { .theme-product-thumbnails--desktop { display: flex; } }
.theme-product-thumbnails--mobile { display: flex; gap: 0.5rem; padding: 1rem; overflow-x: auto; }
@media (min-width: 768px) { .theme-product-thumbnails--mobile { display: none; } }
.theme-product-thumb { width: 3.5rem; height: 3.5rem; flex-shrink: 0; overflow: hidden; border: 1px solid transparent; border-radius: 6px; opacity: 0.6; transition: opacity 0.2s ease, border-color 0.2s ease; }
@media (min-width: 1024px) { .theme-product-thumb { width: 4rem; height: 4rem; } }
.theme-product-thumb:hover { opacity: 1; }
.theme-product-thumb.is-active { opacity: 1; border-color: var(--color-foreground); }
.theme-product-gallery__main { flex: 1; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
@media (min-width: 768px) { .theme-product-gallery__main { min-height: 78vh; } }
@media (min-width: 1024px) { .theme-product-gallery__main { min-height: 88vh; } }
.theme-product-gallery__main-img { width: 100%; height: 100%; max-height: 88vh; object-fit: contain; }

.theme-product-info { padding: 2.5rem 1.5rem; }
@media (min-width: 768px) { .theme-product-info { padding: 2.5rem 2.5rem; } }
@media (min-width: 1024px) { .theme-product-info { padding: 4rem 3rem; } }
.theme-product-breadcrumb { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 1.5rem; }
.theme-product-breadcrumb a { transition: color 0.2s ease; }
.theme-product-breadcrumb a:hover { color: var(--color-foreground); }
.theme-product-breadcrumb span { margin: 0 0.5rem; }
.theme-product-info__title {
	font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; letter-spacing: 0.22em;
	text-transform: uppercase; line-height: 1.5; color: var(--color-foreground); overflow-wrap: break-word;
}
@media (min-width: 768px) { .theme-product-info__title { font-size: 1rem; } }
.theme-product-info__sku { margin-top: 0.75rem; font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); }
.theme-product-info__divider { height: 1px; background: var(--color-border); margin: 1.75rem 0; }
.theme-product-info__price { font-size: 1.125rem; color: var(--color-foreground); }
.theme-product-info__price .woocommerce-Price-amount { font-size: inherit; }
.theme-product-info__stock { margin-top: 0.75rem; font-size: 0.8125rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.theme-product-info__stock.is-out-of-stock { color: var(--color-destructive); }
.theme-product-info__note {
	margin-top: 1.75rem; background: color-mix(in srgb, var(--color-secondary) 70%, transparent);
	padding: 1rem 1.25rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent);
	line-height: 1.6; border-radius: 6px;
}
.theme-size-selector { margin-top: 1.75rem; }
.theme-attribute-swatches + .theme-attribute-swatches { margin-top: 1.25rem; }
.theme-size-selector__label { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted-foreground); margin-bottom: 0.75rem; font-weight: 400; }
.theme-size-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-size-pill {
	min-width: 56px; padding: 0.625rem 1rem; font-size: 0.75rem; letter-spacing: 0.05em;
	border: 1px solid var(--color-border); border-radius: 6px; transition: all 0.2s ease;
	background: transparent; color: var(--color-foreground);
}
.theme-size-pill:hover { border-color: var(--color-foreground); }
.theme-size-pill.is-selected { background: var(--color-foreground); color: var(--color-background); border-color: var(--color-foreground); }

/* WooCommerce variations table reflow (label above control, then hide native select visually) */
.single-product .variations.shop_attributes tbody,
.single-product .variations tbody tr,
.single-product .variations tbody td { display: block; width: 100%; }
.single-product .variations tbody td.label { padding-bottom: 0.25rem; }
.single-product .variations tbody td.value { padding-top: 0; }
.single-product .variations { margin-bottom: 0; }
.single-product table.variations { display: none; } /* pills replace the native table visually; select stays in DOM via theme-attr-select-hidden */
.theme-attr-select-hidden { display: none !important; }

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid var(--color-border); height: var(--btn-height); }
.theme-quantity-wrapper button { width: 2.75rem; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 1.125rem; transition: background-color 0.2s ease; }
.theme-quantity-wrapper button:hover { background: var(--color-secondary); }
.theme-quantity-wrapper input.qty { width: 3rem; height: 100%; text-align: center; border: none; border-left: 1px solid var(--color-border); border-right: 1px solid var(--color-border); background: transparent; -moz-appearance: textfield; }
.theme-quantity-wrapper input.qty::-webkit-outer-spin-button,
.theme-quantity-wrapper input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.75rem;
}
.single-product .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.theme-product-details { margin-top: 3rem; }
.theme-product-details__heading { font-size: 0.75rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-foreground); margin-bottom: 1.25rem; font-weight: 400; }
.theme-product-details__description,
.theme-product-details__short {
	font-family: var(--font-display); font-size: 1.1875rem; line-height: 1.55; color: color-mix(in srgb, var(--color-foreground) 90%, transparent);
}
.theme-product-details__short ul { margin-top: 1.5rem; padding-left: 1.25rem; }
.theme-product-details__short li {
	list-style: disc; font-family: var(--font-body); font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	line-height: 1.7; margin-bottom: 0.625rem;
}
.theme-product-details__short li::marker { color: var(--color-primary); }
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-variation-description,
.single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section { padding: 5rem 0; border-top: 1px solid var(--color-border); margin-top: 2rem; }
.related-products-section__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__title { font-family: var(--font-display); font-size: 1.75rem; line-height: 1.2; text-transform: uppercase; }
@media (min-width: 768px) { .related-products-section__title { font-size: 2.25rem; } }
.related-products-section__title .is-accent { font-style: italic; color: var(--color-primary); text-transform: none; }
.related-products-section__grid { grid-template-columns: repeat(1, minmax(0,1fr)); gap: 2rem 2rem; }
@media (min-width: 640px) { .related-products-section__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 3rem 2rem; } }

/* =========================================================================
   ADD TO CART BUTTON: GLOBAL STYLE OVERRIDE (Section 11.4.1)
   ========================================================================= */
.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-primary-foreground) !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-primary-foreground) !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 .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Pair-with mini add-to-cart items in the cart drawer are plain links, not buttons — exclude them from the global button skin. */

/* =========================================================================
   WOOCOMMERCE NOTICES (scoped visibility, Section 14.1)
   ========================================================================= */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	max-width: 90rem; margin: 1rem auto; padding: 1rem 1.5rem; border-radius: 6px;
	font-family: var(--font-body); font-size: 0.875rem; list-style: none;
	background: var(--color-secondary); color: var(--color-foreground); border-top: 3px solid var(--color-primary);
}
.woocommerce-error { border-top-color: var(--color-destructive); }

/* =========================================================================
   WOOCOMMERCE CART PAGE / MY ACCOUNT — width & alignment parity (13.7)
   ========================================================================= */
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

/* =========================================================================
   CHECKOUT BLOCK (Section 13)
   ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: calc(var(--header-height) + 2rem); padding-bottom: 4rem; }

/* Parent shells must not compress the checkout block. */
body.woocommerce-checkout #page-content,
body.woocommerce-checkout .site-main,
body.woocommerce-checkout article,
body.woocommerce-checkout .entry-content {
	max-width: none;
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .theme-checkout-shell {
	max-width: var(--checkout-max-width);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

body.woocommerce-checkout .theme-checkout-shell .page-title {
	width: 100%;
}

body.woocommerce-checkout .entry-content .wp-block-woocommerce-checkout,
body.woocommerce-checkout .entry-content .wc-block-checkout {
	max-width: var(--checkout-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout.alignwide {
	max-width: var(--checkout-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

/* Notices: same width/alignment as checkout content (.wc-block-components-notices). */
body.woocommerce-checkout .wc-block-components-notices {
	width: 100%;
	box-sizing: border-box;
}
body.woocommerce-checkout .entry-content > .wc-block-components-notices,
body.woocommerce-checkout .wp-block-woocommerce-checkout > .wc-block-components-notices {
	max-width: var(--checkout-max-width);
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 968px) {
	/* Hydrated layout: grid on sidebar-layout (not the outer checkout wrapper). */
	body.woocommerce-checkout .wc-block-components-sidebar-layout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		display: grid !important;
		flex-wrap: unset !important;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		margin-left: 0;
		margin-right: 0;
	}

	/* SSR / editor: fields + totals as direct children before hydration. */
	body.woocommerce-checkout .wp-block-woocommerce-checkout.wc-block-checkout:has(> .wp-block-woocommerce-checkout-fields-block) {
		display: grid;
		grid-template-columns: 1fr minmax(360px, 400px);
		gap: var(--checkout-gap);
		align-items: start;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout > .wc-block-components-notices,
	body.woocommerce-checkout .wp-block-woocommerce-checkout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-checkout > .wc-block-components-notices,
	body.woocommerce-checkout .wc-block-components-form > .wc-block-components-notices {
		grid-column: 1 / -1;
		order: 1;
		width: 100%;
		max-width: 100%;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	body.woocommerce-checkout .wp-block-woocommerce-checkout > .wp-block-woocommerce-checkout-fields-block {
		order: 2;
		min-width: 0;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	body.woocommerce-checkout .wp-block-woocommerce-checkout > .wp-block-woocommerce-checkout-totals-block {
		order: 3;
		min-width: 360px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main,
	body.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main,
body.woocommerce-checkout .wc-block-components-sidebar {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}

body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	width: 100%;
	box-sizing: border-box;
	background-color: color-mix(in srgb, var(--color-secondary) 100%, transparent);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: transparent;
	padding: 0;
}

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,
body.woocommerce-checkout .woocommerce-checkout .form-row .input-text,
body.woocommerce-checkout .woocommerce-checkout .form-row select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body);
	font-size: 0.9375rem;
	color: var(--color-foreground);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	background-color: var(--color-background);
}
body.woocommerce-checkout .wc-block-components-text-input input { padding: revert; }
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-textarea textarea:focus {
	outline: none;
	border-color: var(--color-primary);
}
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-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: var(--btn-radius) !important;
	text-transform: var(--btn-text-transform);
	letter-spacing: var(--btn-letter-spacing);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	height: var(--btn-height) !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.85; }

body.woocommerce-checkout h2,
body.woocommerce-checkout .wc-block-components-title { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -0.01em; }

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 6px; font-family: var(--font-body); border-top: 3px solid var(--color-primary);
}

/* =========================================================================
   THANK YOU PAGE (Section 22.8)
   ========================================================================= */
body.theme-thankyou-page { overflow-x: hidden; padding-top: calc(var(--header-height) + 2rem); }
body.theme-thankyou-page .woocommerce-order { max-width: 56rem; margin: 0 auto; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; padding: 0 0 1rem 0; margin-top: 2rem;
}
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: 1px solid var(--color-border); padding-right: 1.5rem; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order-overview li:last-child { border-right: none; }
body.theme-thankyou-page .woocommerce-order-overview li strong { display: block; font-family: var(--font-display); margin-top: 0.25rem; }
body.theme-thankyou-page .woocommerce-order-details table,
body.theme-thankyou-page .woocommerce-table { width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.5rem 0; }
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); text-align: left; overflow-wrap: break-word; }
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; margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-customer-details address { max-width: 30rem; overflow-wrap: break-word; border: 1px solid var(--color-border); padding: 1.25rem; border-radius: 6px; font-style: normal; }

/* =========================================================================
   MISC UTILITIES
   ========================================================================= */
.theme-mailto-link, .theme-tel-link { overflow-wrap: anywhere; }
