/* ===========================================================================
   Damac Educational Services — theme stylesheet
   Theme by The Free Website Guys.
   =========================================================================== */

/* ---------------------------------------------------------------------------
   1. TOKENS (fallback — live values are injected via wp_add_inline_style)
   ------------------------------------------------------------------------- */
:root {
	--color-background: #f6f7f9;
	--color-foreground: #151f32;
	--color-primary: #193057;
	--color-primary-foreground: #f9f6f1;
	--color-secondary: #e7ebef;
	--color-muted: #eaedf1;
	--color-muted-foreground: #576175;
	--color-gold: #e3a11c;
	--color-gold-foreground: #151f32;
	--color-destructive: #bd2828;
	--color-border: #d0d4dc;
	--color-bone: #dbe0e6;
	--color-button-text: #f9f6f1;
	--color-white: #ffffff;
	--logo-height: 20px;

	--font-body: 'Switzer', system-ui, -apple-system, sans-serif;
	--font-display: 'Newsreader', 'Instrument Serif', Georgia, serif;

	--radius: 0.5rem;
	--card-radius: 0.75rem;
	--header-height: 96px;

	--btn-radius: 9999px;
	--btn-height: 2.75rem;
	--btn-padding: 0 1.5rem;
	--btn-font-size: 0.875rem;
	--btn-font-weight: 500;
	--btn-letter-spacing: normal;
	--btn-text-transform: none;
	--btn-icon-padding: 0;

	--shadow-soft: 0 4px 20px -8px rgba(21, 31, 50, 0.14);
	--shadow-elevated: 0 20px 50px -18px rgba(21, 31, 50, 0.28);
}

/* ---------------------------------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: hidden; }
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 { max-width: 100%; height: auto; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card__image):not(.theme-product-gallery__main-img):not(.theme-product-thumb img):not(.theme-cart-item__image img):not(.competition-card__image):not(.owner-card__image) {
	max-width: 100%;
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card__image, .theme-product-gallery__main-img, .theme-product-thumb img, .competition-card__image, .owner-card__image {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	object-fit: cover;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; }
button, a, [role="button"], label[for], select, summary,
input[type="submit"], input[type="button"], input[type="reset"],
.shop-section__filter-btn, .theme-nav-link, .site-footer__link,
.site-footer__contact-link, .site-footer__social-link,
.theme-product-card__info-link, .theme-product-card__quick-view,
.theme-product-card__nav, .theme-product-thumb, .competition-card__cta,
.promo-banner__close, .theme-cart-drawer__close, .theme-cart-item__name,
.theme-cart-item__qty-btn, .theme-cart-item__remove, .site-header__toggle,
.site-header__cart-btn, [data-cart-open], [data-cart-close], [data-mobile-menu-toggle],
[data-section-anchor], [data-shop-link], [data-shop-view-more], [data-promo-close],
[data-card-image-prev], [data-card-image-next] {
	cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="search"],
input[type="url"], input[type="number"], input[type="password"], textarea {
	cursor: text;
}
button:disabled, a[aria-disabled="true"], [disabled] { cursor: not-allowed; }
ul, ol { margin: 0; padding: 0; list-style: none; }
p { margin: 0; }

h1, h2, h3, h4, h5, h6, .font-display {
	font-weight: inherit;
	font-size: inherit;
	font-family: var(--font-display);
	letter-spacing: -0.014em;
	margin: 0;
}
h1, h2, h3, h4, h5, h6 { font-weight: 500; }

section[id] { scroll-margin-top: 80px; }

.container-wide {
	width: 100%;
	max-width: 80rem;
	margin-inline: auto;
	padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-wide { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container-wide { padding-inline: 2.5rem; } }

.section-eyebrow {
	font-size: 0.75rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--color-gold);
	font-weight: 500;
	margin: 0 0 1rem;
}
.section-description {
	margin-top: 1.25rem;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	line-height: 1.7;
	max-width: 36rem;
}
@media (min-width: 768px) { .section-description { font-size: 0.9375rem; } }

/* ---------------------------------------------------------------------------
   3. ANIMATION UTILITIES (Section 2.1)
   ------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
	[data-reveal], .reveal-item {
		opacity: 0;
		transform: translateY(24px);
		transition: opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
			transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
		will-change: opacity, transform;
	}
	[data-reveal].is-revealed, .reveal-item.is-revealed {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (prefers-reduced-motion: reduce) {
	[data-reveal], .reveal-item { opacity: 1; transform: none; transition: none; }
}
/* Customizer preview fallback — never leave content invisible in the editor. */
body.is-customizer [data-reveal],
body.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@keyframes damac-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes damac-slide-in-bottom { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes damac-marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.3333%); } }

.animate-fade-in { animation: damac-fade-in 0.7s ease-out both; }
.animate-slide-in-bottom { animation: damac-slide-in-bottom 0.7s ease-out both; }

/* ---------------------------------------------------------------------------
   4. BUTTONS
   ------------------------------------------------------------------------- */
.theme-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	white-space: nowrap;
	border-radius: var(--btn-radius);
	font-size: var(--btn-font-size);
	font-weight: var(--btn-font-weight);
	font-family: var(--font-body);
	letter-spacing: var(--btn-letter-spacing);
	text-transform: var(--btn-text-transform);
	transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	border: 1px solid transparent;
	height: 2.75rem;
	padding: 0 1.5rem;
}
.theme-btn svg { pointer-events: none; flex-shrink: 0; }
.theme-btn--lg { height: 3rem; padding: 0 1.75rem; }
.theme-btn--sm { height: 2.25rem; padding: 0 1rem; font-size: 0.8125rem; }
.theme-btn--primary { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.theme-btn--primary:hover { opacity: 0.9; }
.theme-btn--outline { background: transparent; color: var(--color-foreground); border-color: color-mix(in srgb, var(--color-foreground) 25%, transparent); }
.theme-btn--outline:hover { border-color: var(--color-foreground); background: color-mix(in srgb, var(--color-foreground) 4%, transparent); }
.theme-btn--glass { background: color-mix(in srgb, var(--color-white) 10%, transparent); color: var(--color-white); border-color: color-mix(in srgb, var(--color-white) 40%, transparent); backdrop-filter: blur(8px); }
.theme-btn--glass:hover { background: color-mix(in srgb, var(--color-white) 20%, transparent); }
.theme-btn--gold { background: var(--color-gold); color: var(--color-gold-foreground); border-color: var(--color-gold); }
.theme-btn--gold:hover { opacity: 0.9; }
.theme-btn--ghost { background: transparent; color: var(--color-foreground); }
.theme-btn--ghost:hover { background: color-mix(in srgb, var(--color-foreground) 5%, transparent); }
.theme-btn:disabled { opacity: 0.6; pointer-events: none; }

/* ---------------------------------------------------------------------------
   5. HEADER
   ------------------------------------------------------------------------- */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; }

/* WordPress admin bar — keep fixed header/cart below the toolbar */
body.admin-bar {
	--admin-bar-height: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar { --admin-bar-height: 46px; }
}
body.admin-bar .site-header { top: var(--admin-bar-height); }
body.admin-bar.theme-no-hero .site-main,
body.admin-bar .theme-page-main,
body.admin-bar .theme-generic-main,
body.admin-bar .theme-404-main,
body.admin-bar .single-product .site-main,
body.admin-bar .archive-product-main {
	padding-top: calc(var(--header-height) + var(--admin-bar-height));
}
body.admin-bar #theme-cart-drawer {
	top: var(--admin-bar-height);
	height: calc(100% - var(--admin-bar-height));
}
.announcement-bar {
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 0.5rem 1rem;
	text-align: center;
}
@media (min-width: 640px) { .announcement-bar { font-size: 0.75rem; } }
.announcement-bar__text { opacity: 0.9; }
.announcement-bar__code { color: var(--color-gold-foreground); background: var(--color-gold); padding: 0.125rem 0.375rem; border-radius: 0.125rem; margin: 0 0.25em; }

.site-header__bar { transition: background-color 0.5s ease, border-color 0.5s ease; background: transparent; border-bottom: 1px solid transparent; }
.site-header.is-solid .site-header__bar { background: color-mix(in srgb, var(--color-background) 90%, transparent); backdrop-filter: blur(20px); border-bottom-color: color-mix(in srgb, var(--color-foreground) 10%, transparent); }

.site-header__row { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) {
	.site-header__row { height: 5rem; display: grid; grid-template-columns: 1fr auto 1fr; }
}

.site-header__toggle { width: 2.5rem; height: 2.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 0.125rem; color: var(--color-white); transition: background-color 0.2s, color 0.2s; order: 1; }
.site-header.is-solid .site-header__toggle { color: var(--color-foreground); }
.site-header__toggle:hover { background: color-mix(in srgb, var(--color-white) 10%, transparent); }
.site-header.is-solid .site-header__toggle:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.site-header__toggle-icon--close { display: none; }
.site-header.is-menu-open .site-header__toggle-icon--open { display: none; }
.site-header.is-menu-open .site-header__toggle-icon--close { display: inline-flex; }
@media (min-width: 1024px) { .site-header__toggle { display: none; } }

.site-header__brand { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; order: 2; }
@media (min-width: 1024px) { .site-header__brand { order: 1; justify-self: start; } }
.site-logo-img { height: var(--logo-height) !important; width: auto !important; display: block; transition: opacity 0.3s ease; }
.site-logo-text { font-family: var(--font-display); font-size: 1.125rem; color: inherit; }
.site-header__brand-name { font-size: 0.875rem; font-weight: 500; color: var(--color-white); }
.site-header.is-solid .site-header__brand-name { color: var(--color-foreground); }

.site-header__nav { display: none; order: 3; }
@media (min-width: 1024px) {
	.site-header__nav { display: flex; align-items: center; gap: 1.75rem; justify-self: center; order: 2; }
}
.theme-nav-list { display: flex; align-items: center; gap: 1.75rem; }
.theme-nav-link {
	position: relative;
	font-size: 0.875rem;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-white) 85%, transparent);
	transition: color 0.3s ease;
	padding-bottom: 0.375rem;
}
.theme-nav-link::after {
	content: '';
	position: absolute; left: 0; right: 0; bottom: -0.375rem;
	height: 2px; border-radius: 9999px;
	background: var(--color-gold);
	opacity: 0; transform: scaleX(0);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.theme-nav-link:hover { color: var(--color-white); }
.theme-nav-link.is-active { color: var(--color-gold); }
.theme-nav-link.is-active::after { opacity: 1; transform: scaleX(1); }
.site-header.is-solid .theme-nav-link { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); }
.site-header.is-solid .theme-nav-link:hover { color: var(--color-primary); }
.site-header.is-solid .theme-nav-link.is-active { color: var(--color-primary); }
.site-header.is-solid .theme-nav-link.is-active::after { background: var(--color-primary); }

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; order: 3; justify-self: end; }
.site-header__cart-btn { position: relative; width: 2.5rem; height: 2.5rem; display: inline-flex; align-items: center; justify-content: center; border-radius: 0.125rem; color: var(--color-white); transition: background-color 0.2s, color 0.2s; }
.site-header.is-solid .site-header__cart-btn { color: var(--color-foreground); }
.site-header__cart-btn:hover { background: color-mix(in srgb, var(--color-white) 10%, transparent); }
.site-header.is-solid .site-header__cart-btn:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.theme-cart-count {
	position: absolute; top: -0.125rem; right: -0.125rem;
	background: var(--color-gold); color: var(--color-gold-foreground);
	font-size: 0.6875rem; font-weight: 500;
	min-width: 1.125rem; height: 1.125rem; padding: 0 0.25rem;
	border-radius: 9999px; display: flex; align-items: center; justify-content: center;
}
.theme-cart-count:empty { display: none; }

.site-header__mobile { display: none; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-background) 95%, transparent); backdrop-filter: blur(20px); }
.site-header__mobile.is-open { display: block; animation: damac-fade-in 0.3s ease-out both; }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }
.site-header__mobile-inner { padding: 1rem 0; }
.site-header__mobile .container-wide.site-header__mobile-inner {
	padding-inline: 1.5rem;
}
@media (min-width: 640px) {
	.site-header__mobile .container-wide.site-header__mobile-inner { padding-inline: 2rem; }
}
.site-header__mobile .theme-nav-list,
.theme-nav-list--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0;
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
}
.site-header__mobile .theme-nav-list > li,
.site-header__mobile .theme-nav-list .theme-nav-item,
.theme-nav-list--mobile .theme-nav-item {
	border-bottom: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.site-header__mobile .theme-nav-list > li:last-child,
.theme-nav-list--mobile .theme-nav-item:last-child {
	border-bottom: none;
}
.site-header__mobile .theme-nav-list a,
.site-header__mobile .theme-nav-list .theme-nav-link,
.theme-nav-list--mobile .theme-nav-link {
	display: block;
	padding: 0.75rem 0;
	font-size: 0.875rem;
	font-weight: 500;
	text-align: left;
	color: color-mix(in srgb, var(--color-foreground) 80%, transparent);
	transition: color 0.2s ease;
}
.site-header__mobile .theme-nav-list a::after,
.site-header__mobile .theme-nav-list .theme-nav-link::after,
.theme-nav-list--mobile .theme-nav-link::after { display: none; }
.site-header__mobile .theme-nav-list a:hover,
.site-header__mobile .theme-nav-list .theme-nav-link:hover,
.site-header__mobile .theme-nav-list .theme-nav-link.is-active,
.theme-nav-list--mobile .theme-nav-link:hover,
.theme-nav-list--mobile .theme-nav-link.is-active { color: var(--color-primary); }

/* ---------------------------------------------------------------------------
   6. HERO
   ------------------------------------------------------------------------- */
.hero-section { position: relative; min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; overflow: hidden; }
body:not(.theme-no-hero) .site-main { padding-top: 0; }
body.theme-no-hero .site-main,
.theme-page-main, .theme-generic-main, .theme-404-main, .single-product .site-main, .archive-product-main {
	padding-top: var(--header-height);
}
.hero-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%); }
.hero-section__content { position: relative; z-index: 10; text-align: center; color: #fff; padding-top: 10rem; padding-bottom: 6rem; }
@media (min-width: 1024px) { .hero-section__content { padding-top: 13rem; padding-bottom: 8rem; } }
.hero-section__badge-row { display: flex; justify-content: center; margin-bottom: 1.75rem; }
.hero-section__badge {
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 1rem; border-radius: 9999px;
	background: color-mix(in srgb, var(--color-white) 10%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-white) 30%, transparent);
	backdrop-filter: blur(10px);
	font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; color: #fff;
}
.hero-section__title {
	font-family: var(--font-display);
	color: #fff;
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin: 0 auto;
	max-width: 64rem;
	filter: drop-shadow(0 2px 30px rgba(0,0,0,0.55));
	font-size: clamp(2rem, 5.4vw, 4.4rem);
}
.hero-section__title-em { font-style: italic; color: var(--color-gold); }
.hero-section__subtitle { margin: 1.75rem auto 0; max-width: 42rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-white) 85%, transparent); line-height: 1.7; }
@media (min-width: 640px) { .hero-section__subtitle { font-size: 0.9375rem; } }
.hero-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .hero-section__actions { flex-direction: row; gap: 1rem; } }

/* ---------------------------------------------------------------------------
   7. COMPETITIONS
   ------------------------------------------------------------------------- */
.competitions-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .competitions-section { padding: 8rem 0; } }
.competitions-section__intro { max-width: 48rem; margin-bottom: 3.5rem; }
.competitions-section__heading, .about-section .section-heading, .offerings-section .section-heading {
	font-size: 2.25rem; line-height: 1.05; color: var(--color-primary);
}
@media (min-width: 768px) { .competitions-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .competitions-section__heading { font-size: 3.2rem; } }

.competitions-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 768px) { .competitions-section__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }

.competition-card {
	position: relative; overflow: hidden; border-radius: var(--radius);
	box-shadow: var(--shadow-soft); aspect-ratio: 16 / 11; cursor: pointer;
}
.competition-card__image { transition: transform 0.7s ease-out; }
.competition-card:hover .competition-card__image { transform: scale(1.05); }
.competition-card__overlay-base {
	position: absolute; inset: 0;
	background: linear-gradient(to top, color-mix(in srgb, var(--color-primary) 85%, transparent), color-mix(in srgb, var(--color-primary) 25%, transparent), transparent);
	transition: opacity 0.5s ease;
}
.competition-card:hover .competition-card__overlay-base { opacity: 0; }
.competition-card__overlay-hover { position: absolute; inset: 0; background: color-mix(in srgb, var(--color-primary) 80%, transparent); opacity: 0; transition: opacity 0.5s ease; }
.competition-card:hover .competition-card__overlay-hover { opacity: 1; }
.competition-card__badge {
	position: absolute; top: 1rem; left: 1rem; z-index: 2;
	display: inline-flex; align-items: center; gap: 0.5rem;
	padding: 0.375rem 0.75rem; border-radius: 0.125rem;
	background: var(--color-gold); color: var(--color-gold-foreground);
	font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500;
}
.competition-card__content { position: absolute; inset-inline: 0; bottom: 0; padding: 1.5rem; color: #fff; z-index: 2; }
@media (min-width: 768px) { .competition-card__content { padding: 2rem; } }
.competition-card__title { font-size: 1.5rem; line-height: 1.2; }
@media (min-width: 768px) { .competition-card__title { font-size: 1.875rem; } }
.competition-card__reveal { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.5s ease-out; }
.competition-card:hover .competition-card__reveal { grid-template-rows: 1fr; }
.competition-card__reveal-inner { overflow: hidden; }
.competition-card__body { margin-top: 1rem; font-size: 0.875rem; line-height: 1.6; color: color-mix(in srgb, #fff 90%, transparent); }
.competition-card__cta {
	margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem;
	font-size: 0.875rem; font-weight: 500; color: var(--color-gold);
	border-bottom: 1px solid color-mix(in srgb, var(--color-gold) 60%, transparent);
	padding-bottom: 0.125rem;
	transition: border-color 0.2s ease;
}
.competition-card__cta:hover { border-color: var(--color-gold); }

/* ---------------------------------------------------------------------------
   8. SEMINARY
   ------------------------------------------------------------------------- */
.seminary-section { position: relative; background: var(--color-primary); color: var(--color-primary-foreground); padding: 6rem 0; overflow: hidden; }
@media (min-width: 768px) { .seminary-section { padding: 8rem 0; } }
.seminary-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.seminary-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 100%), linear-gradient(180deg, color-mix(in srgb, var(--color-primary) 25%, transparent) 0%, color-mix(in srgb, var(--color-primary) 35%, transparent) 100%); }
.seminary-section__glow { position: absolute; width: 520px; height: 520px; border-radius: 9999px; filter: blur(60px); pointer-events: none; }
.seminary-section__glow--top { top: -10rem; right: -10rem; background: radial-gradient(circle, color-mix(in srgb, var(--color-gold) 35%, transparent), transparent 70%); }
.seminary-section__glow--bottom { bottom: -10rem; left: -10rem; background: radial-gradient(circle, color-mix(in srgb, var(--color-primary-foreground) 8%, transparent), transparent 70%); }
.seminary-section__inner { position: relative; }
.seminary-section__intro { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
@media (min-width: 1024px) { .seminary-section__intro { grid-template-columns: 7fr 5fr; gap: 3.5rem; } }
.seminary-section__heading { font-size: 2.25rem; line-height: 1.05; }
@media (min-width: 768px) { .seminary-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .seminary-section__heading { font-size: 3.4rem; } }
.seminary-section__heading-em { font-style: italic; color: var(--color-gold); }
.seminary-section__intro-desc p { font-size: 0.875rem; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); line-height: 1.7; }
@media (min-width: 768px) { .seminary-section__intro-desc p { font-size: 0.9375rem; } }

.seminary-section__grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 1024px) { .seminary-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }

.pathway-card {
	position: relative; overflow: hidden; border-radius: var(--card-radius);
	border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent);
	background: linear-gradient(to bottom, color-mix(in srgb, var(--color-primary-foreground) 7%, transparent), color-mix(in srgb, var(--color-primary-foreground) 2%, transparent));
	backdrop-filter: blur(4px);
	padding: 1.75rem; display: flex; flex-direction: column;
	transition: border-color 0.2s ease;
}
@media (min-width: 768px) { .pathway-card { padding: 2rem; } }
.pathway-card:hover { border-color: color-mix(in srgb, var(--color-gold) 40%, transparent); }
.pathway-card__corner { position: absolute; top: 0; right: 0; width: 6rem; height: 6rem; background: color-mix(in srgb, var(--color-gold) 10%, transparent); filter: blur(24px); border-radius: 9999px; }
.pathway-card__tag-row { position: relative; display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.pathway-card__tag { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--color-gold); font-weight: 500; }
.pathway-card__tag-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 9999px; background: color-mix(in srgb, var(--color-gold) 15%, transparent); border: 1px solid color-mix(in srgb, var(--color-gold) 30%, transparent); color: var(--color-gold); }
.pathway-card__title { position: relative; font-size: 1.5rem; line-height: 1.3; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .pathway-card__title { font-size: 1.7rem; } }
.pathway-card__duration { position: relative; font-size: 0.6875rem; letter-spacing: 0.18em; text-transform: uppercase; color: color-mix(in srgb, var(--color-primary-foreground) 55%, transparent); margin-bottom: 1.25rem; display: block; }
.pathway-card__body { position: relative; font-size: 0.875rem; line-height: 1.7; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); margin-bottom: 1.5rem; }
.pathway-card__divider { position: relative; height: 1px; background: linear-gradient(to right, transparent, color-mix(in srgb, var(--color-primary-foreground) 15%, transparent), transparent); margin-bottom: 1.25rem; }
.pathway-card__modules { position: relative; display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
.pathway-card__module { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-primary-foreground) 85%, transparent); }
.pathway-card__module-icon { flex-shrink: 0; margin-top: 0.125rem; color: var(--color-gold); }
.pathway-card__cta-wrap { position: relative; margin-top: auto; }

/* ---------------------------------------------------------------------------
   9. SHOP
   ------------------------------------------------------------------------- */
.shop-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .shop-section { padding: 8rem 0; } }
.shop-section__header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
@media (min-width: 1024px) { .shop-section__header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.shop-section__intro { max-width: 42rem; }
.shop-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-primary); }
@media (min-width: 768px) { .shop-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .shop-heading { font-size: 3.2rem; } }
.shop-section__search { position: relative; width: 100%; }
@media (min-width: 1024px) { .shop-section__search { width: 20rem; } }
.shop-section__search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.shop-section__search-input {
	width: 100%; height: 2.75rem; padding: 0 1rem 0 2.75rem;
	border-radius: var(--radius); background: var(--color-white);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	font-size: 0.875rem; font-family: var(--font-body);
	transition: border-color 0.2s ease;
}
.shop-section__search-input::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.shop-section__search-input:focus { outline: none; border-color: var(--color-primary); }

.shop-section__filters { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2.5rem; }
.shop-section__filter-btn {
	padding: 0 1.25rem; height: 2.5rem; border-radius: 9999px;
	font-size: 0.875rem; font-weight: 500;
	background: var(--color-white); color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.shop-section__filter-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.shop-section__filter-btn.is-active { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }

.theme-product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	align-items: stretch;
	gap: 1.5rem 1.5rem;
}
.shop-section__grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .shop-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .shop-section__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.archive-product-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .archive-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .archive-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.related-products-section__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem 1.5rem; }
@media (min-width: 1024px) { .related-products-section__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.shop-section__empty, .archive-product-empty { text-align: center; padding: 5rem 0; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.shop-section__more { margin-top: 3rem; display: flex; justify-content: center; }

/* Product card (Section 31.3 Pattern A + 31.9 equal height + 31.13 shared wrap) */
.theme-product-card-wrap { display: flex; flex-direction: column; height: 100%; }
.theme-product-card { display: flex; flex-direction: column; height: 100%; }
.theme-product-card__image-wrapper {
	position: relative; aspect-ratio: 1 / 1; background: var(--color-muted);
	border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem;
}
.theme-product-card > .theme-card-link,
.theme-product-card__image-wrapper > .theme-card-link { position: absolute; inset: 0; z-index: 2; pointer-events: auto; }
.theme-product-card__image-wrapper *:not(.theme-card-link) { pointer-events: none; }
.theme-product-card__image { transition: transform 1.4s cubic-bezier(0.22,0.61,0.36,1); }
.theme-product-card:hover .theme-product-card__image { transform: scale(1.04); }
.theme-product-card__badge {
	position: absolute; top: 0.75rem; left: 0.75rem; z-index: 3;
	background: var(--color-foreground); color: var(--color-background);
	font-size: 0.6875rem; font-weight: 500; padding: 0.25rem 0.625rem; border-radius: 9999px;
}
.theme-product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
	width: 2rem; height: 2rem; border-radius: 9999px;
	background: color-mix(in srgb, var(--color-background) 85%, transparent);
	backdrop-filter: blur(4px);
	display: inline-flex; align-items: center; justify-content: center;
	color: var(--color-foreground); opacity: 0; transition: opacity 0.3s ease, background-color 0.3s ease, color 0.3s ease;
	pointer-events: auto;
}
.theme-product-card:hover .theme-product-card__nav { opacity: 1; }
.theme-product-card__nav:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__nav--prev { left: 0.5rem; }
.theme-product-card__nav--next { right: 0.5rem; }
.theme-product-card__dots { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 3; display: flex; gap: 0.25rem; pointer-events: none; }
.theme-product-card__dot { height: 0.25rem; width: 0.25rem; border-radius: 9999px; background: color-mix(in srgb, var(--color-background) 60%, transparent); transition: all 0.2s ease; }
.theme-product-card__dot.is-active { width: 1rem; background: var(--color-background); }
.theme-product-card__actions {
	position: absolute; inset-inline: 0.75rem; bottom: 0.75rem; z-index: 4;
	display: flex; align-items: center; gap: 0.5rem;
	opacity: 0; transition: opacity 0.5s ease;
}
.theme-product-card:hover .theme-product-card__actions { opacity: 1; }
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	flex: 1 1 auto; min-height: unset !important; height: 2.5rem !important; padding: 0 1rem !important;
	border-radius: 9999px !important; display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 0.5rem !important;
	background: color-mix(in srgb, var(--color-background) 95%, transparent) !important; color: var(--color-foreground) !important;
	font-size: 0.875rem !important; font-weight: 500 !important; letter-spacing: normal !important; text-transform: none !important;
	backdrop-filter: blur(4px); box-shadow: var(--shadow-soft); pointer-events: auto;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover { background: var(--color-primary) !important; color: var(--color-primary-foreground) !important; }
.theme-product-card__quick-view {
	width: 2.5rem; height: 2.5rem; border-radius: 9999px; flex-shrink: 0;
	display: inline-flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--color-background) 95%, transparent); color: var(--color-foreground);
	box-shadow: var(--shadow-soft); transition: background-color 0.3s ease, color 0.3s ease; pointer-events: auto;
}
.theme-product-card__quick-view:hover { background: var(--color-primary); color: var(--color-primary-foreground); }
.theme-product-card__info-link { display: block; padding-inline: 0.125rem; }
.theme-product-card__category { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary) 90%, transparent); margin-bottom: 0.375rem; font-weight: 500; }
.theme-product-card__title { font-size: 1.15rem; line-height: 1.35; color: var(--color-foreground); transition: color 0.3s ease; }
@media (min-width: 768px) { .theme-product-card__title { font-size: 1.3rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { margin-top: 0.375rem; font-size: 0.875rem; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); }
.theme-product-card__price ins { text-decoration: none; }
.theme-product-card__price del { opacity: 0.55; margin-right: 0.375rem; }

/* ---------------------------------------------------------------------------
   10. MARQUEE
   ------------------------------------------------------------------------- */
.marquee-strip { background: var(--color-gold); padding: 1.25rem 0; overflow: hidden; }
.marquee-strip__track { display: flex; white-space: nowrap; animation: damac-marquee 22s linear infinite; width: max-content; }
.marquee-strip__item { display: flex; align-items: center; flex-shrink: 0; color: var(--color-gold-foreground); font-family: var(--font-display); font-size: 1.125rem; letter-spacing: 0.02em; }
@media (min-width: 768px) { .marquee-strip__item { font-size: 1.25rem; } }
.marquee-strip__text { margin-inline: 1.5rem; }
@media (min-width: 768px) { .marquee-strip__text { margin-inline: 2rem; } }
.marquee-strip__dot { color: color-mix(in srgb, var(--color-gold-foreground) 60%, transparent); font-size: 0.875rem; }
@media (prefers-reduced-motion: reduce) { .marquee-strip__track { animation: none; } }

/* ---------------------------------------------------------------------------
   11. ABOUT
   ------------------------------------------------------------------------- */
.about-section { background: var(--color-muted); padding: 6rem 0; }
@media (min-width: 768px) { .about-section { padding: 8rem 0; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.about-section .section-heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-primary); }
@media (min-width: 768px) { .about-section .section-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section .section-heading { font-size: 3.4rem; } }
.about-section__quote {
	margin-top: 2rem; font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	border-left: 2px solid var(--color-gold); padding-left: 1.25rem;
}
@media (min-width: 768px) { .about-section__quote { font-size: 1.5rem; } }
.about-section__body { display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.9375rem; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
@media (min-width: 1024px) { .about-section__body { padding-left: 1.5rem; } }

.about-section__pillars { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .about-section__pillars { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.pillar-card { border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-white); padding: 1.75rem; }
@media (min-width: 768px) { .pillar-card { padding: 2rem; } }
.pillar-card__icon-wrap {
	display: inline-flex; align-items: center; justify-content: center;
	width: 3.5rem; height: 3.5rem; border-radius: 9999px;
	background: var(--color-primary); color: var(--color-primary-foreground);
	margin-bottom: 1.25rem; box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-gold) 15%, transparent);
}
.pillar-card__title { font-size: 1.25rem; color: var(--color-primary); margin-bottom: 0.625rem; }
@media (min-width: 768px) { .pillar-card__title { font-size: 1.35rem; } }
.pillar-card__body { font-size: 0.875rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }

/* ---------------------------------------------------------------------------
   12. OWNER / FOUNDER
   ------------------------------------------------------------------------- */
.owner-section { background: var(--color-background); padding: 6rem 0; }
@media (min-width: 768px) { .owner-section { padding: 8rem 0; } }
.owner-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: 5fr 7fr; gap: 4rem; } }
.owner-card { width: 100%; border-radius: var(--radius); background: var(--color-primary); color: var(--color-primary-foreground); overflow: hidden; display: flex; flex-direction: column; }
.owner-card__image-wrap { position: relative; aspect-ratio: 4 / 5; width: 100%; overflow: hidden; }
.owner-card__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--color-primary) 85%, transparent) 100%); }
.owner-card__badge { position: absolute; top: 1.25rem; left: 1.25rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0.75rem; border-radius: 0.125rem; background: var(--color-gold); color: var(--color-gold-foreground); font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; }
.owner-card__name-block { position: absolute; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; }
.owner-card__name { font-family: var(--font-display); font-size: 2.25rem; line-height: 0.95; color: #fff; }
@media (min-width: 768px) { .owner-card__name { font-size: 3rem; } }
.owner-card__name em { font-style: italic; color: var(--color-gold); }
.owner-card__title { margin-top: 0.75rem; font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, #fff 80%, transparent); }
.owner-card__stats { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 20%, transparent); }
@media (min-width: 768px) { .owner-card__stats { padding: 2rem; } }
.owner-card__stat { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.owner-card__stat svg { color: var(--color-gold); }
.owner-card__stat p { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em; color: color-mix(in srgb, var(--color-primary-foreground) 70%, transparent); line-height: 1.3; }

.owner-section__heading { font-size: 2.25rem; line-height: 1.05; color: var(--color-primary); }
@media (min-width: 768px) { .owner-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section__heading { font-size: 3.4rem; } }
.owner-section__quote-block { position: relative; margin-top: 2rem; border-left: 2px solid var(--color-gold); padding-left: 1.25rem; }
.owner-section__quote-mark { position: absolute; left: -1rem; top: -1rem; font-family: var(--font-display); font-size: 3.75rem; line-height: 1; color: var(--color-gold); user-select: none; }
.owner-section__quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); }
@media (min-width: 768px) { .owner-section__quote { font-size: 1.5rem; } }
.owner-section__body { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 0.9375rem; line-height: 1.75; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); max-width: 65ch; }
@media (min-width: 1024px) { .owner-section__text-col { padding-left: 1.5rem; } }

/* ---------------------------------------------------------------------------
   13. PRE-CONTACT CTA
   ------------------------------------------------------------------------- */
.precta-section { position: relative; overflow: hidden; color: var(--color-primary-foreground); }
.precta-section__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.precta-section__scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.75) 100%); }
.precta-section__content { position: relative; z-index: 10; padding: 6rem 0; text-align: center; }
@media (max-width: 639px) {
	.precta-section .container-wide.precta-section__content { padding-inline: 1.5rem; }
}
@media (min-width: 768px) { .precta-section__content { padding: 8rem 0; } }
.precta-section__eyebrow { display: inline-flex; align-items: center; justify-content: center; gap: 0.75rem; font-size: 0.75rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 1.5rem; font-weight: 500; }
.precta-section__eyebrow-line { display: inline-block; height: 1px; width: 2rem; background: color-mix(in srgb, var(--color-gold) 70%, transparent); }
.precta-section__heading { font-family: var(--font-display); line-height: 1.05; letter-spacing: -0.02em; margin-inline: auto; max-width: 56rem; font-size: clamp(2rem, 5.4vw, 4rem); }
.precta-section__heading em { font-style: italic; color: var(--color-gold); }
.precta-section__desc { margin: 1.75rem auto 0; max-width: 36rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent); line-height: 1.7; }
.precta-section__actions { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; justify-content: center; }
@media (min-width: 640px) { .precta-section__actions { flex-direction: row; } }

/* ---------------------------------------------------------------------------
   14. CONTACT
   ------------------------------------------------------------------------- */
.contact-section { background: var(--color-muted); padding-top: 6rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .contact-section { padding-top: 8rem; padding-bottom: 4rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: stretch; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.contact-section__info { display: flex; flex-direction: column; height: 100%; }
.contact-title { font-size: 2.25rem; line-height: 1.05; color: var(--color-primary); }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.4rem; } }
.contact-section__desc { margin-top: 1.5rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.7; max-width: 28rem; }
.contact-section__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-section__item { display: inline-flex; align-items: center; gap: 1rem; color: var(--color-foreground); transition: color 0.2s ease; }
.contact-section__item:hover { color: var(--color-primary); }
.contact-section__item-icon { width: 2.75rem; height: 2.75rem; border-radius: 9999px; background: var(--color-white); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); display: inline-flex; align-items: center; justify-content: center; transition: border-color 0.2s ease; flex-shrink: 0; }
.contact-section__item:hover .contact-section__item-icon { border-color: var(--color-primary); }
.contact-section__item-text { display: flex; flex-direction: column; text-align: left; min-width: 0; }
.contact-section__item-label { font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__item-value { font-size: 0.9375rem; font-weight: 500; overflow-wrap: break-word; word-break: break-word; }
.contact-section__social { display: flex; flex-wrap: wrap; gap: 0.75rem; padding-top: 0.5rem; }
.contact-section__social-link { display: inline-flex; align-items: center; gap: 0.5rem; height: 2.75rem; padding: 0 1rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent); background: var(--color-white); color: var(--color-foreground); font-size: 0.875rem; font-weight: 500; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.contact-section__social-link:hover { background: var(--color-primary); color: var(--color-primary-foreground); border-color: var(--color-primary); }
.contact-section__note-wrap { margin-top: auto; padding-top: 2.5rem; }
.contact-section__note { position: relative; border-radius: var(--radius); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: var(--color-white); padding: 1.5rem 1.75rem; }
.contact-section__note-badge { position: absolute; top: -0.75rem; left: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.25rem 0.75rem; border-radius: 0.125rem; background: var(--color-gold); color: var(--color-gold-foreground); font-size: 0.6875rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500; }
.contact-section__note-quote { font-family: var(--font-display); font-style: italic; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); font-size: 1.125rem; line-height: 1.4; border-left: 2px solid var(--color-gold); padding-left: 1.25rem; }
@media (min-width: 768px) { .contact-section__note-quote { font-size: 1.25rem; } }
.contact-section__note-footer { margin-top: 0.75rem; padding-left: 1.25rem; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); letter-spacing: 0.01em; }

.contact-section__form { background: var(--color-white); border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; box-shadow: var(--shadow-soft); height: 100%; }
@media (min-width: 768px) { .contact-section__form { padding: 2rem; } }
.contact-section__form-fields { flex: 1; display: flex; flex-direction: column; gap: 1rem; }
.contact-section__field label { display: block; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 0.5rem; }
.contact-section__field input, .contact-section__field select, .contact-section__field textarea {
	width: 100%; height: 3rem; padding: 0 1rem;
	background: var(--color-white); border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius); font-size: 0.875rem; color: var(--color-foreground); font-family: var(--font-body);
	transition: border-color 0.2s ease;
}
.contact-section__field textarea { height: auto; padding-top: 0.75rem; padding-bottom: 0.75rem; resize: none; }
.contact-section__field input::placeholder, .contact-section__field textarea::placeholder { color: color-mix(in srgb, var(--color-foreground) 45%, transparent); }
.contact-section__field input:focus, .contact-section__field select:focus, .contact-section__field textarea:focus { outline: none; border-color: var(--color-primary); }
.contact-section__field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .contact-section__field-row { grid-template-columns: 1fr 1fr; } }
.contact-section__select-wrap { position: relative; }
.contact-section__select-wrap select { appearance: none; padding-right: 2.5rem; }
.contact-section__select-icon { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); pointer-events: none; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.contact-section__form-footer { padding-top: 0.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-section__submit { width: 100%; }
.contact-section__form-note { font-size: 0.75rem; text-align: center; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }

/* ---------------------------------------------------------------------------
   15. FOOTER
   ------------------------------------------------------------------------- */
.site-footer { background: var(--color-primary); color: var(--color-primary-foreground); }
.site-footer .container-wide.site-footer__inner {
	padding-inline: 1.5rem;
}
@media (min-width: 640px) {
	.site-footer .container-wide.site-footer__inner { padding-inline: 2rem; }
}
@media (min-width: 1024px) {
	.site-footer .container-wide.site-footer__inner { padding-inline: 2.5rem; }
}
.site-footer__inner { padding-block: 3.5rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-block: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 640px) { .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 3rem; } }
.site-footer__brand { display: inline-flex; align-items: center; }
.site-footer__description { margin-top: 1rem; font-size: 0.875rem; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); line-height: 1.7; max-width: 20rem; }
.site-footer__social { margin-top: 1.25rem; display: flex; align-items: center; gap: 0.75rem; }
.site-footer__social-link { width: 2.5rem; height: 2.5rem; border-radius: 9999px; border: 1px solid color-mix(in srgb, var(--color-primary-foreground) 25%, transparent); color: var(--color-primary-foreground); display: inline-flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.site-footer__social-link:hover { background: var(--color-gold); color: var(--color-gold-foreground); border-color: var(--color-gold); }
.site-footer__col-title { font-family: var(--font-display); font-size: 1.125rem; color: var(--color-gold); margin-bottom: 1rem; }
.site-footer__links, .site-footer__contact { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__link, .site-footer__contact-link { font-size: 0.875rem; color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); transition: color 0.2s ease; text-align: left; }
.site-footer__link:hover, .site-footer__contact-link:hover { color: var(--color-gold); }
.site-footer__contact-row {
	display: inline-flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: color-mix(in srgb, var(--color-primary-foreground) 80%, transparent);
}
.site-footer__contact-row--center { align-items: center; }
.site-footer__contact-icon { flex-shrink: 0; margin-top: 0.125rem; }
.site-footer__contact-row--center .site-footer__contact-icon { margin-top: 0; }
.site-footer__contact-link.site-footer__contact-row:hover { color: var(--color-gold); }
.site-footer__contact-address { color: color-mix(in srgb, var(--color-primary-foreground) 75%, transparent); }
.site-footer__bottom { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-primary-foreground) 15%, transparent); text-align: center; font-size: 0.75rem; color: color-mix(in srgb, var(--color-primary-foreground) 60%, transparent); }

/* ---------------------------------------------------------------------------
   16. PROMO BANNER
   ------------------------------------------------------------------------- */
.promo-banner {
	position: fixed; bottom: 1.5rem; left: 1rem; right: 1rem; z-index: 55;
	background: var(--color-primary); color: var(--color-primary-foreground);
	border-radius: var(--radius); box-shadow: var(--shadow-elevated);
	padding: 1rem 1.25rem; display: none; align-items: flex-start; gap: 0.75rem;
	opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease;
}
.promo-banner.is-visible { display: flex; opacity: 1; transform: translateY(0); }
@media (min-width: 640px) { .promo-banner { left: auto; right: 1.5rem; max-width: 26rem; } }
.promo-banner__text { font-size: 0.8125rem; line-height: 1.6; flex: 1; }
@media (min-width: 640px) { .promo-banner__text { font-size: 0.9375rem; } }
.promo-banner__code { font-weight: 600; color: var(--color-gold-foreground); background: var(--color-gold); padding: 0.125rem 0.375rem; border-radius: 0.125rem; margin-inline: 0.25em; }
.promo-banner__close { flex-shrink: 0; margin-top: 0.125rem; padding: 0.375rem; border-radius: 0.125rem; color: var(--color-primary-foreground); transition: background-color 0.2s ease; }
.promo-banner__close:hover { background: color-mix(in srgb, var(--color-white) 10%, transparent); }

/* ---------------------------------------------------------------------------
   17. SIDE CART DRAWER (Section 12, 22.5, 31.6)
   ------------------------------------------------------------------------- */
#theme-cart-overlay {
	position: fixed; inset: 0; background: color-mix(in srgb, var(--color-foreground) 30%, transparent);
	z-index: 60; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 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: 28rem;
	background: var(--color-background); z-index: 61; box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-cart-drawer__title { font-size: 1.5rem; color: var(--color-foreground); }
.theme-cart-drawer__close { padding: 0.375rem; border-radius: 9999px; transition: background-color 0.2s ease; }
.theme-cart-drawer__close:hover { background: color-mix(in srgb, var(--color-foreground) 6%, transparent); }
.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 { color: color-mix(in srgb, var(--color-foreground) 30%, transparent); }
.theme-cart-drawer__empty p { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); font-size: 0.875rem; }
.theme-cart-drawer__items { flex: 1; overflow: auto; padding: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.theme-cart-item { display: flex; gap: 1rem; }
.theme-cart-item__image {
	position: relative;
	width: 5rem;
	height: 6rem;
	background: var(--color-bone);
	border-radius: 0.375rem;
	overflow: hidden;
	flex-shrink: 0;
	display: block;
}
.theme-cart-item__image img,
.theme-cart-item__image .theme-cart-item__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}
.theme-cart-item__info { flex: 1; min-width: 0; }
.theme-cart-item__name { font-size: 0.875rem; font-weight: 500; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; transition: color 0.2s ease; }
.theme-cart-item__name:hover { color: var(--color-primary); }
.theme-cart-item__price { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-item__variation { font-size: 0.75rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-top: 0.25rem; }
.theme-cart-item__controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.theme-cart-item__qty-btn { padding: 0.25rem; border-radius: 0.25rem; transition: background-color 0.2s ease; }
.theme-cart-item__qty-btn:hover { background: var(--color-bone); }
.theme-cart-item__qty { font-size: 0.8125rem; width: 1.5rem; text-align: center; }
.theme-cart-item__remove { margin-left: auto; font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); transition: color 0.2s ease; }
.theme-cart-item__remove:hover { color: var(--color-destructive); }
.theme-cart-drawer__footer { padding: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); background: color-mix(in srgb, var(--color-muted) 40%, transparent); display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 0.875rem; }
.theme-cart-drawer__subtotal span:first-child { color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.theme-cart-drawer__subtotal span:last-child { font-weight: 500; }
.theme-cart-drawer__note { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.theme-cart-drawer__checkout-btn { width: 100%; }
.theme-cart-drawer__empty-btn { width: 100%; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

/* Hide "View cart" injected by WooCommerce after AJAX add-to-cart (Section 11.4.2) */
.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; }

/* ---------------------------------------------------------------------------
   18. WOOCOMMERCE NOTICES (Section 14.1)
   ------------------------------------------------------------------------- */
.single-product .woocommerce-message,
.single-product .woocommerce-info,
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.875rem; margin-bottom: 1.5rem;
	background: var(--color-white); border: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent); list-style: none;
}
.woocommerce-error { border-color: color-mix(in srgb, var(--color-destructive) 40%, transparent); color: var(--color-destructive); }

/* ---------------------------------------------------------------------------
   19. WOOCOMMERCE — ADD TO CART BUTTON 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-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;
}
/* Card compact button override — placed after global rules (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
}
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }

/* ---------------------------------------------------------------------------
   20. SINGLE PRODUCT PAGE (Section 11, 11.13)
   ------------------------------------------------------------------------- */
body.single-product .theme-product-layout,
.single-product .theme-product-layout,
.theme-product-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
	padding-bottom: 5rem;
	min-width: 0;
	align-items: start;
	width: 100%;
	float: none;
	clear: both;
}
body.single-product .theme-product-layout::before,
body.single-product .theme-product-layout::after,
.single-product .theme-product-layout::before,
.single-product .theme-product-layout::after {
	display: none;
	content: none;
}
@media (min-width: 1024px) {
	body.single-product .theme-product-layout,
	.single-product .theme-product-layout,
	.theme-product-layout {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 4rem;
	}
	body.single-product .theme-product-gallery,
	.single-product .theme-product-gallery,
	.theme-product-gallery {
		grid-column: 1;
	}
	body.single-product .theme-product-info,
	.single-product .theme-product-info,
	.theme-product-info {
		grid-column: 2;
	}
}
body.woocommerce.single-product div.product.theme-product-layout {
	float: none !important;
	width: 100% !important;
	max-width: 100% !important;
}
body.single-product .theme-product-layout > .theme-product-gallery,
body.single-product .theme-product-layout > .theme-product-info {
	float: none !important;
	width: auto !important;
	max-width: 100%;
}
.breadcrumb-trail { padding: 1.5rem 0; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); }
.breadcrumb-trail a { transition: color 0.2s ease; }
.breadcrumb-trail a:hover { color: var(--color-primary); }
.breadcrumb-trail__sep { margin-inline: 0.5rem; opacity: 0.5; }
.breadcrumb-trail__current { color: var(--color-foreground); }

.single-product .theme-product-gallery, .theme-product-gallery { min-width: 0; max-width: 100%; }
@media (min-width: 1024px) {
	.single-product .theme-product-gallery, .theme-product-gallery {
		position: sticky;
		top: 7rem;
		align-self: start;
	}
}
.theme-product-gallery__main { position: relative; aspect-ratio: 1 / 1; width: 100%; background: var(--color-muted); border-radius: 0.75rem; overflow: hidden; margin-bottom: 1rem; isolation: isolate; }
.theme-product-gallery__main-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}
.single-product .theme-product-thumbnails, .theme-product-thumbnails { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.625rem; flex-wrap: wrap; max-width: 100%; }
.theme-product-thumb { position: relative; aspect-ratio: 1 / 1; background: var(--color-muted); border-radius: 0.5rem; overflow: hidden; border: 2px solid transparent; transition: border-color 0.2s ease; }
.theme-product-thumb.is-active { border-color: var(--color-primary); }
.theme-product-thumb:not(.is-active):hover { border-color: color-mix(in srgb, var(--color-foreground) 20%, transparent); }
.theme-product-thumb img { position: static; width: 100%; height: 100%; object-fit: cover; }

.single-product .theme-product-info, .theme-product-info { min-width: 0; max-width: 100%; }
.theme-product-info__category { font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-primary); margin-bottom: 0.75rem; font-weight: 500; }
.theme-product-info__category a { color: inherit; }
.product-title, h1.product-title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	line-height: 1.05;
	color: var(--color-foreground);
	margin-bottom: 1rem;
}
@media (min-width: 768px) { .product-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title { font-size: 2.6rem; } }
.theme-product-info__price { font-size: 1.25rem; font-weight: 500; color: color-mix(in srgb, var(--color-foreground) 90%, transparent); margin-bottom: 1.75rem; }
.theme-product-info__stock--out { font-size: 0.875rem; font-weight: 500; color: var(--color-destructive); margin-bottom: 1.5rem; }
.theme-product-info__description { font-size: 0.9375rem; line-height: 1.625; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); margin-bottom: 2rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__description p { margin-bottom: 1em; }

.theme-product-purchase { margin-bottom: 0; }
.theme-product-quantity-block { margin-bottom: 1.5rem; }
.theme-product-quantity-label {
	font-size: 0.75rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
	margin-bottom: 0.625rem;
}
.theme-product-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}
.theme-product-actions .theme-btn { width: 100%; }
@media (min-width: 640px) {
	.theme-product-actions { flex-direction: row; }
	.theme-product-actions .theme-btn { flex: 1 1 0; width: auto; }
}

.theme-quantity-wrapper { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-foreground) 20%, transparent); border-radius: 9999px; height: var(--btn-height); }
.theme-qty-minus, .theme-qty-plus { padding: 0 1rem; height: 100%; display: inline-flex; align-items: center; transition: color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { color: var(--color-primary); }
.theme-qty-input {
	width: 3rem; text-align: center; border: none; background: transparent; font-size: 0.875rem; font-weight: 500;
	-moz-appearance: textfield; appearance: textfield; padding: 0;
}
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.single-product .theme-add-to-cart-area, .theme-add-to-cart-area {
	display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem;
}
.single-product .single_add_to_cart_button, .theme-add-to-cart-area .single_add_to_cart_button, .theme-add-to-cart-area .add_to_cart_button,
.theme-product-actions .single_add_to_cart_button, .theme-product-actions .add_to_cart_button {
	flex: 1 1 auto; min-width: 160px;
}

.theme-product-info__details { margin-top: 2rem; padding-top: 2rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__details-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 55%, transparent); margin-bottom: 1rem; }
.theme-product-details-list ul { list-style: none; padding: 0; margin: 0; }
.theme-product-details-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
	color: color-mix(in srgb, var(--color-foreground) 75%, transparent);
	margin-bottom: 0.625rem;
}
.theme-product-details-list li:last-child { margin-bottom: 0; }
.theme-product-details-list li::before {
	content: '';
	flex-shrink: 0;
	width: 0.25rem;
	height: 0.25rem;
	margin-top: 0.625rem;
	border-radius: 50%;
	background: var(--color-primary);
}
.woocommerce-product-details__short-description { font-size: 0.875rem; line-height: 1.7; color: color-mix(in srgb, var(--color-foreground) 75%, transparent); overflow-wrap: break-word; word-break: break-word; }
.woocommerce-product-details__short-description ul { padding-left: 1.25rem; list-style: disc; }

.theme-product-info__trust { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.theme-product-info__trust-item { text-align: center; }
.theme-product-info__trust-item svg { margin-inline: auto; color: var(--color-primary); margin-bottom: 0.5rem; }
.theme-product-info__trust-item p { font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.related-products-section { padding: 5rem 0; border-top: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); }
.related-products-section__header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
.related-products-section__heading {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: 1.875rem;
	color: var(--color-foreground);
}
@media (min-width: 768px) { .related-products-section__heading { font-size: 2.25rem; } }
.related-products-section__view-all {
	display: none;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: color-mix(in srgb, var(--color-foreground) 70%, transparent);
	transition: color 0.2s ease;
}
.related-products-section__view-all:hover { color: var(--color-primary); }
@media (min-width: 640px) { .related-products-section__view-all { display: inline-flex; } }

/* Variations table layout (Section 11.5.1) */
.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; font-weight: 600; font-family: var(--font-body); }
.single-product .variations tbody td.value { padding-top: 0; margin-bottom: 1rem; }
.variations label, .single-product .variations label { font-family: var(--font-body); font-weight: 600; font-style: normal; }
.theme-attr-select-hidden { display: none !important; }

.posted_in, .single-product .posted_in { overflow-wrap: break-word; word-break: break-word; }

/* ---------------------------------------------------------------------------
   21. SHOP ARCHIVE
   ------------------------------------------------------------------------- */
.archive-product-header { padding: 3rem 0 2rem; }
.archive-product-header .page-title { font-size: 2.25rem; color: var(--color-primary); font-family: var(--font-display); }
.woocommerce-breadcrumb { font-size: 0.8125rem; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-bottom: 1rem; }

/* ---------------------------------------------------------------------------
   22. CHECKOUT (Section 13)
   ------------------------------------------------------------------------- */
body.woocommerce-checkout .site-main,
body.woocommerce-cart .site-main,
body.woocommerce-account .site-main {
	padding-top: var(--header-height);
	padding-bottom: 4rem;
}
body.woocommerce-checkout .page-title,
body.woocommerce-cart .page-title,
body.woocommerce-account .page-title {
	font-size: 2.25rem; color: var(--color-primary); font-family: var(--font-display); margin-bottom: 2rem;
}
body.woocommerce-checkout .entry-content,
body.woocommerce-cart .entry-content,
body.woocommerce-account .entry-content { max-width: 100%; }

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,
	body.woocommerce-checkout .wc-block-checkout__main-and-sidebar {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		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-checkout__sidebar {
	background-color: var(--color-muted);
	border-radius: var(--card-radius);
	padding: 2rem;
}
body.woocommerce-checkout .wc-block-components-notice-banner { grid-column: 1 / -1; }

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-cart .wc-block-components-text-input input {
	font-family: var(--font-body);
	border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
	border-radius: var(--radius);
	background: var(--color-white);
	color: var(--color-foreground);
	width: 100% !important;
	max-width: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus {
	border-color: var(--color-primary);
}
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;
	font-family: var(--font-body) !important;
	text-transform: none !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { opacity: 0.9; }

/* ---------------------------------------------------------------------------
   23. WOOCOMMERCE THANK YOU (Section 22.8)
   ------------------------------------------------------------------------- */
body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .site-main { padding-top: var(--header-height); padding-bottom: 4rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-size: 1.5rem; color: var(--color-primary); padding: 0 0 1rem 0; font-family: var(--font-display);
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1.5rem; list-style: none; padding: 0; margin-bottom: 2rem;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	background: var(--color-muted); border-radius: var(--radius); padding: 1rem 1.25rem; font-size: 0.8125rem;
}
body.theme-thankyou-page .woocommerce-customer-details { display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
@media (min-width: 768px) {
	body.theme-thankyou-page .woocommerce-customer-details {
		display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start;
	}
}
body.theme-thankyou-page .woocommerce-customer-details address { min-width: 0; overflow-wrap: break-word; border: 1px solid color-mix(in srgb, var(--color-foreground) 10%, transparent); border-radius: var(--radius); padding: 1.25rem; font-style: normal; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; border-collapse: collapse; margin-top: 1.5rem; }
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 color-mix(in srgb, var(--color-foreground) 10%, transparent); text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot th { text-align: left; }
body.theme-thankyou-page .woocommerce-order-details tfoot td { text-align: right; }

/* ---------------------------------------------------------------------------
   24. 404
   ------------------------------------------------------------------------- */
.theme-404-main { min-height: 70vh; display: flex; align-items: center; justify-content: center; }
.theme-404__inner { text-align: center; padding: 4rem 1.5rem; }
.theme-404__title { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; font-family: var(--font-display); }
.theme-404__message { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); margin-bottom: 1.5rem; }
.theme-404__link { color: var(--color-primary); text-decoration: underline; text-underline-offset: 3px; }
.theme-404__link:hover { color: color-mix(in srgb, var(--color-primary) 90%, transparent); }

/* ---------------------------------------------------------------------------
   25. GENERIC PAGE TEMPLATE
   ------------------------------------------------------------------------- */
.theme-page-main, .theme-generic-main { padding-bottom: 4rem; }
.page-title { font-size: 2.25rem; color: var(--color-primary); font-family: var(--font-display); margin: 2rem 0 1.5rem; }
