/* =========================================================================
   JRUGG'S Custom Baits N' Coils — theme.css
   Design tokens ported 1:1 from the source design (src/index.css / tailwind.config.ts).
   ========================================================================= */

:root {
	/* Color tokens are re-emitted live via wp_add_inline_style (functions.php);
	   these are load-time fallbacks matching theme_default() exactly. */
	--color-primary: #c31d28;
	--color-primary-foreground: #faf8f4;
	--color-background: #f6f4ee;
	--color-foreground: #221d1b;
	--color-accent: #2f7444;
	--color-yellow: #f5c114;
	--color-charcoal: #1d1816;
	--color-cream: #f6f4ee;
	--color-border: #cfc8bf;
	--color-ink: #110f0d;
	--color-butter: #ece8df;
	--color-surface-deep: #1a1614;

	--color-button-text: var(--color-primary-foreground);
	--font-display: 'Oswald', 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', system-ui, sans-serif;

	--radius: 0.5rem;
	--card-radius: 0.5rem;
	--shadow-soft: 0 4px 20px -4px rgba(20, 15, 10, 0.12);
	--shadow-elevated: 0 12px 40px -8px rgba(20, 15, 10, 0.28);
	--transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);

	--logo-height: 60px;

	--btn-radius: 0px;
	--btn-height: 3.25rem;
	--btn-padding: 1rem 1.75rem;
	--btn-font-size: 0.75rem;
	--btn-font-weight: 600;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.75rem;
	--header-height: 84px;
	--checkout-gap: 2rem;
	--section-padding: 2rem;
}

/* -------------------------------------------------------------------------
   Base reset
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html, body { max-width: 100%; overflow-x: clip; }

body {
	margin: 0;
	background-color: var(--color-background);
	color: var(--color-foreground);
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.625;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
img:not(.cover-img):not(.hero-bg-img):not(.theme-product-card-img) {
	height: auto;
}
.cover-img, .hero-bg-img, .theme-product-card-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Heading font-weight reset (Tailwind preflight parity — Section 2.2). */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	font-weight: inherit;
	font-size: inherit;
	letter-spacing: 0.005em;
	text-transform: none;
	margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* Section inners always carry horizontal padding (mobile/tablet safe). */
.hero-section__inner,
.about-section__inner,
.shop-section__inner,
.services-section__inner,
.owner-section__inner,
.contact-section__inner,
.theme-product-layout-container,
.product-breadcrumb-bar__inner,
.theme-page-container,
.shop-archive__inner {
	padding-left: 1.25rem;
	padding-right: 1.25rem;
}
@media (min-width: 640px) {
	.hero-section__inner,
	.about-section__inner,
	.shop-section__inner,
	.services-section__inner,
	.owner-section__inner,
	.contact-section__inner,
	.theme-product-layout-container,
	.product-breadcrumb-bar__inner,
	.theme-page-container,
	.shop-archive__inner {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.hero-section__inner,
	.about-section__inner,
	.shop-section__inner,
	.services-section__inner,
	.owner-section__inner,
	.contact-section__inner,
	.theme-product-layout-container,
	.product-breadcrumb-bar__inner,
	.theme-page-container,
	.shop-archive__inner {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* -------------------------------------------------------------------------
   Reusable primitives
   ------------------------------------------------------------------------- */
.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 11px;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
}
.eyebrow__line { height: 1px; width: 2rem; background: currentColor; display: inline-block; }

.tackle-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.25rem 0.625rem;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
	border: 1px solid rgba(29, 24, 22, 0.4);
	color: var(--color-foreground);
	background: var(--color-cream);
}
.tackle-tag svg { width: 0.75rem; height: 0.75rem; }
.tackle-tag--primary {
	border-color: color-mix(in srgb, var(--color-primary) 50%, transparent);
	color: var(--color-primary);
	background: color-mix(in srgb, var(--color-primary) 5%, transparent);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 1rem 1.75rem;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}
.btn-icon { width: 1rem; height: 1rem; }
.btn-primary {
	background-color: var(--color-primary);
	color: var(--color-primary-foreground);
}
.btn-primary:hover { background-color: color-mix(in srgb, var(--color-primary) 90%, black); }
.btn-outline {
	background: transparent;
	border: 1px solid var(--color-border);
	color: var(--color-foreground);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); }

/* Section headings — Lovable display scale */
.section-heading {
	font-family: var(--font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	line-height: 0.95;
	color: var(--color-foreground);
}
.section-heading__accent { display: block; color: var(--color-primary); }

/* -------------------------------------------------------------------------
   Scroll reveal animations (Section 2.1)
   ------------------------------------------------------------------------- */
.reveal-item { opacity: 0; }
.reveal-item[data-reveal="fade-up"] { transform: translateY(28px); transition: opacity 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth); }
.reveal-item[data-reveal="zoom-in"] { transform: scale(0.85) rotate(-6deg); transition: opacity 0.9s var(--transition-smooth), transform 0.9s var(--transition-smooth); }
.reveal-item.is-visible { opacity: 1; transform: none; }

body.is-customizer .reveal-item,
.is-customizer .reveal-item {
	opacity: 1 !important;
	transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
	.reveal-item { transition: none !important; opacity: 1 !important; transform: none !important; }
}

@keyframes theme-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes theme-slide-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: theme-fade-in 0.6s var(--transition-smooth) forwards; }
.animate-slide-up { animation: theme-slide-up 0.6s var(--transition-smooth) forwards; }

@keyframes sunburst-drift {
	0% { transform: rotate(-3deg); opacity: 0.75; }
	50% { transform: rotate(3deg); opacity: 1; }
	100% { transform: rotate(-3deg); opacity: 0.75; }
}

/* =========================================================================
   ANNOUNCEMENT BAR
   ========================================================================= */
.announcement-bar {
	position: relative;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-bottom: 1px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent);
}
.announcement-bar::before,
.announcement-bar::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	opacity: 0.4;
	background-image: repeating-linear-gradient(90deg, var(--color-primary-foreground) 0 6px, transparent 6px 12px);
	pointer-events: none;
}
.announcement-bar::before { top: 0; }
.announcement-bar::after { bottom: 0; }
.announcement-bar__inner {
	padding: 0.625rem 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.375rem 1.5rem;
	text-align: center;
}
@media (min-width: 768px) { .announcement-bar__inner { padding: 0.75rem 1.5rem; } }
.announcement-bar__item {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
}
@media (min-width: 768px) { .announcement-bar__item { font-size: 12px; } }
.announcement-bar__icon { width: 0.875rem; height: 0.875rem; }
.announcement-bar__dot { opacity: 0.5; display: none; }
@media (min-width: 768px) { .announcement-bar__dot { display: inline; } }

/* =========================================================================
   HEADER
   ========================================================================= */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 40;
	background: var(--color-charcoal);
	color: var(--color-cream);
	border-bottom: 1px solid color-mix(in srgb, var(--color-cream) 10%, transparent);
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header:not(.is-solid) {
	backdrop-filter: none;
	box-shadow: none;
}
.site-header.is-solid {
	background: color-mix(in srgb, var(--color-charcoal) 95%, transparent);
	backdrop-filter: blur(8px);
	border-bottom-color: color-mix(in srgb, var(--color-yellow) 25%, transparent);
	box-shadow: 0 6px 20px -8px rgba(0, 0, 0, 0.6);
}
.site-header__nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 68px;
}
@media (min-width: 768px) { .site-header__nav { height: 84px; } }

.site-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
	color: var(--color-cream);
}
.site-logo-img {
	height: var(--logo-height);
	max-height: var(--logo-height);
	max-width: min(14rem, calc(var(--logo-height) * 3.5));
	width: auto !important;
	object-fit: contain;
	display: block;
	flex-shrink: 0;
}
@media (min-width: 768px) {
	.site-logo-img { max-width: min(16rem, calc(var(--logo-height) * 3.5)); }
}
.site-logo-img--footer {
	height: calc(var(--logo-height) * 1.15);
	max-height: calc(var(--logo-height) * 1.15);
	max-width: min(16rem, calc(var(--logo-height) * 4));
}
@media (min-width: 768px) {
	.site-logo-img--footer { max-width: min(18rem, calc(var(--logo-height) * 4)); }
}
.site-logo-text { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.25rem; }

.site-header__brand-text { display: none; flex-direction: column; line-height: 1; min-width: 0; }
@media (min-width: 640px) { .site-header__brand-text { display: flex; } }
.site-header__brand-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1rem; letter-spacing: -0.01em; white-space: nowrap; }
@media (min-width: 768px) { .site-header__brand-name { font-size: 1.125rem; } }
.site-header__brand-tagline { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-yellow); font-weight: 600; margin-top: 0.25rem; white-space: nowrap; }
@media (min-width: 768px) { .site-header__brand-tagline { font-size: 11px; } }

.site-header__links { display: none; }
@media (min-width: 1024px) { .site-header__links { display: flex; align-items: center; } }
.theme-nav-list { display: flex; align-items: center; gap: 2rem; }
.theme-nav-list .menu-item, .theme-nav-list li { position: relative; }
.theme-nav-list a {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-cream);
	transition: color 0.2s ease;
	position: relative;
	display: inline-block;
	padding-bottom: 0.375rem;
}
.site-header__links .theme-nav-list a,
.site-header__mobile .theme-nav-list a {
	color: color-mix(in srgb, var(--color-cream) 92%, transparent);
}
.theme-nav-list a:hover, .theme-nav-list a[aria-current="true"] { color: var(--color-yellow); }
.theme-nav-list a[aria-current="true"]::after,
.theme-nav-list a:hover::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 2px;
	background: var(--color-primary);
}

.site-header__actions { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .site-header__actions { gap: 0.75rem; } }
.btn-header-cta {
	display: none;
	padding: 0.625rem 1.25rem;
	font-family: var(--font-display);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}
@media (min-width: 1024px) { .btn-header-cta { display: inline-flex; } }

.cart-open-btn {
	position: relative;
	background: transparent;
	border: none;
	padding: 0.5rem;
	color: var(--color-cream);
	transition: color 0.2s ease;
}
.cart-open-btn:hover { color: var(--color-yellow); }
.cart-open-btn__icon { width: 1.25rem; height: 1.25rem; }
@media (min-width: 768px) { .cart-open-btn__icon { width: 1.5rem; height: 1.5rem; } }
.theme-cart-count {
	position: absolute;
	top: -2px; right: -2px;
	min-width: 20px; height: 20px;
	padding: 0 4px;
	display: flex; align-items: center; justify-content: center;
	font-size: 11px; font-weight: 600;
	background: var(--color-primary);
	color: var(--color-primary-foreground);
	border-radius: 999px;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle { display: flex; background: transparent; border: none; padding: 0.5rem; color: var(--color-cream); }
@media (min-width: 1024px) { .mobile-menu-toggle { display: none; } }
.icon-menu-open, .icon-menu-close { width: 1.5rem; height: 1.5rem; }
.icon-menu-close { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu-open { display: none; }
.mobile-menu-toggle[aria-expanded="true"] .icon-menu-close { display: block; }

.site-header__mobile {
	display: none;
	border-top: 1px solid color-mix(in srgb, var(--color-cream) 10%, transparent);
	padding: 1rem 0;
}
.site-header__mobile.is-open { display: block; }
@media (min-width: 1024px) { .site-header__mobile { display: none !important; } }
.site-header__mobile .theme-nav-list,
.site-header__mobile .theme-nav-list--mobile {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0 !important;
}
.theme-nav-list--mobile { flex-direction: column; align-items: stretch; gap: 0; }
.theme-nav-list--mobile a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 0.25rem;
	border-bottom: 1px solid color-mix(in srgb, var(--color-cream) 5%, transparent);
	font-size: 0.875rem;
	font-family: var(--font-display);
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: color-mix(in srgb, var(--color-cream) 90%, transparent);
}
.theme-nav-list--mobile a::before {
	content: '';
	width: 0.375rem;
	height: 0.375rem;
	border-radius: 999px;
	background: transparent;
	flex-shrink: 0;
	transition: background-color 0.2s ease;
}
.theme-nav-list--mobile a[aria-current="true"]::before { background: var(--color-primary); }
.theme-nav-list--mobile li:last-child a { border-bottom: none; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero-section {
	position: relative;
	background: var(--color-charcoal);
	color: var(--color-cream);
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	align-items: center;
}
.hero-section__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-rays {
	position: absolute; inset: 0;
	--burst-x: 50%; --burst-y: 80%;
	background: repeating-conic-gradient(from 0deg at var(--burst-x) var(--burst-y), color-mix(in srgb, var(--color-yellow) 13%, transparent) 0deg 5deg, transparent 5deg 14deg);
	-webkit-mask-image: radial-gradient(circle at var(--burst-x) var(--burst-y), #000 0%, #000 32%, rgba(0, 0, 0, 0.55) 58%, transparent 82%);
	mask-image: radial-gradient(circle at var(--burst-x) var(--burst-y), #000 0%, #000 32%, rgba(0, 0, 0, 0.55) 58%, transparent 82%);
	transform-origin: var(--burst-x) var(--burst-y);
	animation: sunburst-drift 12s ease-in-out infinite;
	opacity: 0.95;
}
@media (min-width: 640px) { .hero-rays { --burst-y: 76%; } }
@media (min-width: 768px) { .hero-rays { --burst-y: 75%; } }
@media (min-width: 1024px) { .hero-rays { --burst-x: 79%; --burst-y: 50%; } }
@media (min-width: 1280px) { .hero-rays { --burst-x: 81%; } }
@media (min-width: 1440px) { .hero-rays { --burst-x: 78%; } }
@media (min-width: 1536px) { .hero-rays { --burst-x: 76%; } }
@media (min-width: 1920px) { .hero-rays { --burst-x: 71%; } }
@media (prefers-reduced-motion: reduce) { .hero-rays { animation: none; } }
.hero-section__gradient { position: absolute; inset: 0; background: linear-gradient(to bottom, color-mix(in srgb, var(--color-charcoal) 50%, transparent), transparent, var(--color-charcoal)); }

.hero-section__inner {
	position: relative;
	z-index: 10;
	padding-top: 5rem;
	padding-bottom: 5rem;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}
@media (min-width: 768px) {
	.hero-section__inner { padding-top: 7rem; padding-bottom: 7rem; }
}
@media (min-width: 1024px) { .hero-section__inner { grid-template-columns: repeat(12, 1fr); } }
.hero-section__copy { grid-column: 1 / -1; }
@media (min-width: 1024px) { .hero-section__copy { grid-column: span 7; } }

.hero-eyebrow { color: var(--color-yellow); margin-bottom: 1.25rem; }
.hero-eyebrow .eyebrow__line { background: var(--color-yellow); }

.hero-title {
	font-weight: 700;
	text-transform: uppercase;
	font-size: 3rem;
	line-height: 0.95;
	letter-spacing: -0.02em;
}
@media (min-width: 640px) { .hero-title { font-size: 3.75rem; } }
@media (min-width: 768px) { .hero-title { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 5.5rem; } }
.hero-title__line1, .hero-title__line2 { display: block; }
.hero-title__line2 { color: var(--color-primary); }
.hero-title__line3 {
	display: block;
	color: color-mix(in srgb, var(--color-cream) 90%, transparent);
	font-size: 2.25rem;
	margin-top: 0.5rem;
}
@media (min-width: 640px) { .hero-title__line3 { font-size: 3rem; } }
@media (min-width: 768px) { .hero-title__line3 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero-title__line3 { font-size: 4.5rem; } }

.hero-paragraph {
	margin-top: 1.75rem;
	max-width: 36rem;
	font-size: 1rem;
	color: color-mix(in srgb, var(--color-cream) 80%, transparent);
	line-height: 1.7;
}
@media (min-width: 768px) { .hero-paragraph { font-size: 1.125rem; } }

.hero-ctas { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.btn-hero-primary, .btn-hero-outline { text-transform: uppercase; }
.btn-hero-outline { background: transparent; border: 1px solid color-mix(in srgb, var(--color-cream) 40%, transparent); color: var(--color-cream); }
.btn-hero-outline:hover { background: var(--color-cream); color: var(--color-charcoal); }

.hero-badges { margin-top: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-cream) 70%, transparent); }
.hero-badges__item { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-badges__icon { width: 0.875rem; height: 0.875rem; color: var(--color-yellow); }

.hero-section__emblem { grid-column: 1 / -1; display: flex; justify-content: center; position: relative; }
@media (min-width: 1024px) { .hero-section__emblem { grid-column: span 5; justify-content: flex-end; } }
.hero-logo-glow { position: absolute; inset: -2rem; border-radius: 999px; background: color-mix(in srgb, var(--color-yellow) 6%, transparent); filter: blur(48px); }
.hero-logo-sticker {
	position: relative;
	width: 16rem;
	border-radius: 999px;
	overflow: hidden;
	box-shadow: 0 20px 40px -10px rgba(29, 24, 22, 0.5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	will-change: transform;
}
@media (min-width: 640px) { .hero-logo-sticker { width: 20rem; } }
@media (min-width: 768px) { .hero-logo-sticker { width: 22rem; } }
@media (min-width: 1024px) { .hero-logo-sticker { width: 26rem; } }
.hero-logo-sticker__img { position: relative; width: 100%; height: auto; }
@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
	.hero-logo-sticker:hover { transform: scale(1.03) rotate(1deg); box-shadow: 0 28px 60px -12px rgba(29, 24, 22, 0.55); }
}

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-section { background: var(--color-background); position: relative; overflow: hidden; scroll-margin-top: 6rem; }
.about-section__inner { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 768px) { .about-section__inner { padding-top: 7rem; padding-bottom: 7rem; } }
.about-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .about-section__grid { grid-template-columns: repeat(12, 1fr); gap: 3.5rem; } }
.about-section__intro { grid-column: 1 / -1; }
@media (min-width: 1024px) { .about-section__intro { grid-column: span 5; } }
.about-eyebrow { color: var(--color-primary); margin-bottom: 1rem; }
.about-eyebrow .eyebrow__line { background: var(--color-primary); }
.about-section__heading { font-size: 2.25rem; }
@media (min-width: 768px) { .about-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .about-section__heading { font-size: 3.75rem; } }

.about-section__badge {
	margin-top: 2rem;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	border: 2px solid var(--color-charcoal);
	background: var(--color-cream);
	padding: 0.75rem 1.25rem;
	box-shadow: var(--shadow-soft);
	transform: rotate(-2deg);
}
.about-section__badge-year-wrap { display: flex; flex-direction: column; align-items: center; line-height: 1; border-right: 2px solid color-mix(in srgb, var(--color-charcoal) 70%, transparent); padding-right: 1rem; }
.about-section__badge-year { font-family: var(--font-display); font-weight: 700; font-size: 2.25rem; color: var(--color-primary); }
.about-section__badge-label { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-top: 0.25rem; }
.about-section__badge-text { display: flex; flex-direction: column; line-height: 1.2; }
.about-section__badge-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.02em; }
.about-section__badge-location { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); margin-top: 0.125rem; }

.about-section__body { grid-column: 1 / -1; position: relative; }
@media (min-width: 1024px) {
	.about-section__body { grid-column: span 7; padding-left: 2.5rem; }
	.about-section__body::before {
		content: '';
		position: absolute;
		left: 0;
		top: 0.5rem;
		bottom: 0.5rem;
		width: 1px;
		background: color-mix(in srgb, var(--color-charcoal) 20%, transparent);
	}
}
.about-section__paragraph { font-size: 1.125rem; color: color-mix(in srgb, var(--color-foreground) 85%, transparent); line-height: 1.7; margin-bottom: 1.25rem; }
@media (min-width: 768px) { .about-section__paragraph { font-size: 1.25rem; } }
.about-section__tags { display: flex; flex-wrap: wrap; align-items: center; gap: 0.625rem; margin-bottom: 2rem; }
.about-section__signoff { font-family: var(--font-display); font-style: italic; color: var(--color-accent); font-size: 1.25rem; }
@media (min-width: 768px) { .about-section__signoff { font-size: 1.5rem; } }

/* =========================================================================
   SHOP
   ========================================================================= */
.shop-section { background: var(--color-butter); scroll-margin-top: 6rem; position: relative; }
.shop-section__inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .shop-section__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.shop-section__header { text-align: center; max-width: 42rem; margin: 0 auto 2.5rem; }
.shop-eyebrow { justify-content: center; color: var(--color-primary); margin-bottom: 1rem; }
.shop-eyebrow .eyebrow__line { background: var(--color-primary); }
.shop-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .shop-heading { font-size: 2.25rem; } }
.shop-section__paragraph { margin-top: 1rem; font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 65%, transparent); }
.shop-section__empty { text-align: center; padding: 3rem 0; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }

.theme-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
}
.theme-product-grid--shop { max-width: 48rem; margin: 0 auto; }
@media (min-width: 768px) { .theme-product-grid--shop { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 640px) { .theme-product-grid--archive, .theme-product-grid--related { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--related { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .theme-product-grid--archive { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; } }

.theme-product-card-wrap {
	display: flex;
	height: 100%;
	transition: transform 0.35s var(--transition-smooth);
}
.theme-product-card-wrap:hover { transform: translateY(-4px); }
.theme-product-card-wrap:has(.theme-product-card--standard):hover { transform: translateY(-6px); }

.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: var(--color-cream);
	border: 1px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
	transition: box-shadow 0.3s ease;
}
.theme-product-card::before,
.theme-product-card::after {
	content: '';
	position: absolute;
	top: 0;
	width: 0.5rem;
	height: 0.5rem;
	z-index: 10;
	background: var(--color-background);
}
.theme-product-card::before {
	left: 0;
	border-right: 1px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent);
}
.theme-product-card::after {
	right: 0;
	border-left: 1px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent);
}
.theme-product-card:hover { box-shadow: var(--shadow-elevated); }

.theme-product-card__image-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.theme-product-card__title-link {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.theme-product-card:hover .theme-product-card__title-link { color: var(--color-primary); }
.theme-product-card__view-details {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
	min-width: 0;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-decoration: none;
	transition: color 0.2s ease;
}
.theme-product-card:hover .theme-product-card__view-details { color: var(--color-primary); }

.theme-product-card__image-wrapper { position: relative; overflow: hidden; background: color-mix(in srgb, var(--color-foreground) 6%, transparent); aspect-ratio: 1 / 1; }
.theme-product-card--compact .theme-product-card__image-wrapper { aspect-ratio: 4 / 3; }
.theme-product-card__image-wrapper img { transition: transform 0.6s var(--transition-smooth); }
.theme-product-card:hover .theme-product-card__image-wrapper img { transform: scale(1.05); }
.is-out-of-stock .theme-product-card__image-wrapper img { opacity: 0.6; }

.theme-product-card__category-badge,
.theme-product-card__soldout-badge {
	position: absolute;
	top: 0.625rem; left: 0.625rem;
	display: inline-flex; align-items: center;
	padding: 0.25rem 0.625rem;
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
	background: var(--color-charcoal); color: var(--color-cream);
	border: 1px solid var(--color-charcoal);
	z-index: 1;
}
.theme-product-card__soldout-badge { left: auto; right: 0.625rem; background: var(--color-cream); color: var(--color-charcoal); border-color: var(--color-cream); }

.theme-product-card__body { display: flex; flex-direction: column; gap: 0.5rem; padding: 1.25rem; border-top: 4px solid var(--color-primary); flex: 1; position: relative; }
.theme-product-card__body::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	right: 0;
	height: 4px;
	background-image: radial-gradient(circle at 3px 2px, var(--color-background) 1px, transparent 1.5px);
	background-size: 8px 4px;
	background-repeat: repeat-x;
	pointer-events: none;
}
.theme-product-card--standard .theme-product-card__body { padding: 1.5rem; border-top-width: 6px; gap: 0.75rem; }
.theme-product-card--standard .theme-product-card__body::before {
	top: -6px;
	height: 6px;
	background-image: radial-gradient(circle at 4px 3px, var(--color-background) 1.5px, transparent 2px);
	background-size: 10px 6px;
}

.theme-product-card__title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; min-width: 0; }
.theme-product-card__title { font-weight: 700; text-transform: uppercase; font-size: 1.125rem; line-height: 1.2; color: var(--color-foreground); min-width: 0; overflow: hidden; }
.theme-product-card--standard .theme-product-card__title { font-size: 1.25rem; }
@media (min-width: 768px) { .theme-product-card--standard .theme-product-card__title { font-size: 1.5rem; } }
.theme-product-card:hover .theme-product-card__title { color: var(--color-primary); }
.theme-product-card__price { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--color-primary); flex-shrink: 0; line-height: 1; }
.theme-product-card--standard .theme-product-card__price { font-size: 1.5rem; }
.theme-product-card__price .woocommerce-Price-amount { font-family: var(--font-display); }
.theme-product-card__price del { opacity: 0.5; font-size: 0.75em; margin-right: 0.35em; }

.theme-product-card__excerpt { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5rem; }
.theme-product-card--standard .theme-product-card__excerpt { -webkit-line-clamp: 3; font-size: 0.9375rem; min-height: auto; }
.theme-product-card__badges { display: flex; flex-wrap: wrap; gap: 0.25rem; min-height: 1.5rem; list-style: none; margin: 0; padding: 0; }
.theme-product-card--standard .theme-product-card__badges { gap: 0.375rem; padding-top: 0.25rem; }
.theme-product-card__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.125rem 0.5rem;
	font-size: 9px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
	color: var(--color-accent);
	background: color-mix(in srgb, var(--color-accent) 5%, transparent);
}
.theme-product-card--standard .theme-product-card__badge { padding: 0.25rem 0.625rem; font-size: 10px; }

.theme-product-card__footer { margin-top: auto; display: flex; align-items: baseline; justify-content: space-between; gap: 0.75rem; padding-top: 0.625rem; border-top: 1px dashed color-mix(in srgb, var(--color-charcoal) 25%, transparent); min-width: 0; }
.theme-product-card--standard .theme-product-card__footer { padding-top: 0.75rem; }

.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.375rem !important;
	background-color: var(--color-charcoal) !important;
	color: var(--color-cream) !important;
	border: none !important;
	border-radius: 0 !important;
	min-height: unset !important;
	padding: 0.5rem 0.75rem !important;
	font-family: var(--font-display) !important;
	font-size: 10px !important;
	font-weight: 600 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	white-space: nowrap;
	flex-shrink: 0;
}
.theme-product-card__add-btn.add_to_cart_button.ajax_add_to_cart:hover { background-color: var(--color-primary) !important; color: var(--color-cream) !important; }
.theme-product-card__add-icon { width: 0.75rem; height: 0.75rem; }

/* =========================================================================
   SERVICES / TACKLE WALL
   ========================================================================= */
.services-section { background: var(--color-charcoal); color: var(--color-cream); scroll-margin-top: 6rem; position: relative; overflow: hidden; }
.services-section__shadow {
	position: absolute;
	inset-inline: 0;
	top: 0;
	height: 6rem;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), transparent);
	pointer-events: none;
	z-index: 1;
}
.services-section__inner { padding-top: 4rem; padding-bottom: 4rem; position: relative; z-index: 2; }
@media (min-width: 768px) { .services-section__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.services-section__panel { position: relative; border: 2px solid color-mix(in srgb, var(--color-cream) 10%, transparent); background: var(--color-charcoal); overflow: hidden; }

.services-section__header { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.5rem; border-bottom: 1px solid color-mix(in srgb, var(--color-cream) 10%, transparent); flex-wrap: wrap; }
@media (min-width: 768px) { .services-section__header { padding: 2rem; } }
.services-eyebrow { color: var(--color-yellow); margin-bottom: 0.75rem; }
.services-eyebrow .eyebrow__line { background: var(--color-yellow); }
.services-section__heading { font-size: 1.875rem; color: var(--color-cream); }
@media (min-width: 768px) { .services-section__heading { font-size: 2.25rem; } }
@media (min-width: 1024px) { .services-section__heading { font-size: 3rem; } }
.services-section__subheading { margin-top: 0.75rem; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-yellow) 90%, transparent); }
.services-section__stamp {
	display: none;
	width: 5rem; height: 5rem;
	border: 2px solid color-mix(in srgb, var(--color-primary) 60%, transparent);
	color: var(--color-primary);
	border-radius: 999px;
	flex-direction: column; align-items: center; justify-content: center;
	font-size: 9px; line-height: 1.2; text-align: center; text-transform: uppercase;
	font-family: var(--font-display); font-weight: 700; letter-spacing: 0.15em;
	transform: rotate(12deg);
	opacity: 0.9;
}
@media (min-width: 768px) { .services-section__stamp { display: flex; } }
.services-section__stamp-line { width: 2.5rem; height: 1px; background: color-mix(in srgb, var(--color-primary) 70%, transparent); margin: 0.25rem 0; }

.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: color-mix(in srgb, var(--color-cream) 10%, transparent); }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.services-grid__item {
	display: flex; align-items: center;
	background: var(--color-charcoal);
	padding: 1rem 1.25rem;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.services-grid__item:hover { background: color-mix(in srgb, var(--color-cream) 4%, transparent); box-shadow: inset 4px 0 0 0 var(--color-primary); transform: translateY(-1px); }
.services-grid__index { font-family: monospace; font-size: 10px; letter-spacing: 0.05em; color: color-mix(in srgb, var(--color-accent) 80%, transparent); margin-right: 1rem; flex-shrink: 0; }
.services-grid__name { flex: 1; font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--color-cream); }
@media (min-width: 768px) { .services-grid__name { font-size: 1rem; } }
.services-grid__icon { margin-left: 0.75rem; flex-shrink: 0; color: var(--color-yellow); opacity: 0; transition: opacity 0.2s ease; }
.services-grid__item:hover .services-grid__icon { opacity: 1; }
.services-grid__icon-svg { width: 1rem; height: 1rem; }

.services-section__cta { position: relative; background: var(--color-primary); padding: 0.25rem; }
.services-section__cta-btn {
	width: 100%; display: flex; align-items: center; justify-content: space-between;
	padding: 1rem 1.25rem;
	background: var(--color-primary);
	border: 1px solid color-mix(in srgb, var(--color-cream) 20%, transparent);
	color: var(--color-primary-foreground);
	transition: background-color 0.2s ease;
}
@media (min-width: 768px) { .services-section__cta-btn { padding: 1rem 1.5rem; } }
.services-section__cta-btn:hover { background: color-mix(in srgb, var(--color-primary) 90%, black); }
.services-section__cta-icon { display: none; align-items: center; justify-content: center; height: 2rem; width: 2rem; border: 1px solid color-mix(in srgb, var(--color-cream) 30%, transparent); }
.services-section__cta-icon svg { width: 1rem; height: 1rem; }
@media (min-width: 640px) { .services-section__cta-icon { display: inline-flex; } }
.services-section__cta-text { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.875rem; margin: 0 0.75rem; }
@media (min-width: 768px) { .services-section__cta-text { font-size: 1rem; } }
.services-section__cta-arrow { width: 1.25rem; height: 1.25rem; color: var(--color-yellow); transition: transform 0.2s ease; margin-left: auto; }
.services-section__cta-btn:hover .services-section__cta-arrow { transform: translateX(4px); }

/* =========================================================================
   OWNER
   ========================================================================= */
.owner-section { background: var(--color-butter); scroll-margin-top: 6rem; padding-top: 3rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .owner-section { padding-top: 4rem; padding-bottom: 4rem; } }
@media (min-width: 1024px) { .owner-section { padding-top: 5rem; padding-bottom: 5rem; } }
.owner-section__grid { display: grid; grid-template-columns: 1fr; align-items: stretch; border: 2px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); box-shadow: var(--shadow-elevated); overflow: hidden; }
@media (min-width: 1024px) { .owner-section__grid { grid-template-columns: repeat(2, 1fr); } }

.owner-section__photo-col { position: relative; background: var(--color-surface-deep); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem 1.5rem; overflow: hidden; }
.owner-section__rays {
	pointer-events: none;
	position: absolute;
	inset: 0;
	opacity: 0.06;
	overflow: hidden;
}
.owner-section__rays svg {
	position: absolute;
	bottom: -8rem;
	left: -6rem;
	width: 520px;
	height: 520px;
	color: var(--color-cream);
}
.owner-section__photo-accent {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--color-primary);
	z-index: 10;
}
@media (min-width: 768px) { .owner-section__photo-col { padding: 3.5rem 2.5rem; } }
.owner-section__photo-wrap { position: relative; width: 100%; max-width: 26rem; }
.owner-section__photo-badge {
	position: absolute; top: -0.75rem; left: 1rem; z-index: 10;
	display: inline-flex; align-items: center; gap: 0.375rem;
	padding: 0.25rem 0.625rem;
	font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
	border: 1px solid var(--color-yellow); color: var(--color-yellow); background: var(--color-charcoal);
}
.owner-section__photo-badge svg { width: 0.75rem; height: 0.75rem; }
.owner-section__photo-frame { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-cream) 30%, transparent); box-shadow: 0 18px 50px -14px rgba(0, 0, 0, 0.55); }
.owner-section__photo-tag { position: absolute; bottom: 0.75rem; right: 0.75rem; z-index: 10; display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; border: 1px solid color-mix(in srgb, var(--color-cream) 60%, transparent); color: var(--color-cream); background: color-mix(in srgb, var(--color-charcoal) 80%, transparent); backdrop-filter: blur(4px); }

.owner-section__text-col { display: flex; align-items: center; background: var(--color-cream); padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .owner-section__text-col { padding: 3.5rem 3rem; } }
@media (min-width: 1280px) { .owner-section__text-col { padding: 3.5rem 5rem; } }
.owner-section__text-inner { max-width: 36rem; }
.owner-eyebrow { color: var(--color-primary); margin-bottom: 1rem; }
.owner-eyebrow .eyebrow__line { background: var(--color-primary); }
.owner-section__heading { font-size: 2.25rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .owner-section__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .owner-section__heading { font-size: 3.75rem; } }
.owner-section__role { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--color-accent); margin-bottom: 1.5rem; }
.owner-section__badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.75rem; }
.owner-section__paragraph { color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.7; margin-bottom: 1.25rem; font-size: 1rem; }
@media (min-width: 768px) { .owner-section__paragraph { font-size: 1.125rem; } }
.owner-section__quote { color: color-mix(in srgb, var(--color-foreground) 75%, transparent); font-style: italic; border-left: 2px solid var(--color-primary); padding-left: 1rem; font-size: 1rem; }
@media (min-width: 768px) { .owner-section__quote { font-size: 1.125rem; } }
.owner-section__cta { margin-top: 2rem; }
.btn-owner-cta { background: var(--color-charcoal); color: var(--color-cream); padding: 0.875rem 1.5rem; }
.btn-owner-cta:hover { background: var(--color-primary); }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-section { position: relative; background: var(--color-surface-deep); color: var(--color-cream); scroll-margin-top: 6rem; overflow: hidden; }
.contact-section__accent-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, color-mix(in srgb, var(--color-yellow) 40%, transparent), transparent); z-index: 2; }
.contact-section__radial {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: radial-gradient(ellipse at 50% 0%, rgba(0, 0, 0, 0.35), transparent 60%);
	z-index: 1;
}
.contact-section__waves {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	color: color-mix(in srgb, var(--color-accent) 15%, transparent);
	pointer-events: none;
	z-index: 1;
}
.contact-section__inner { position: relative; padding-top: 5rem; padding-bottom: 5rem; z-index: 2; }
@media (min-width: 768px) { .contact-section__inner { padding-top: 6rem; padding-bottom: 6rem; } }
.contact-section__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .contact-section__grid { grid-template-columns: repeat(12, 1fr); gap: 3.5rem; } }
.contact-section__info { grid-column: 1 / -1; }
@media (min-width: 1024px) { .contact-section__info { grid-column: span 5; } }
.contact-eyebrow { color: var(--color-yellow); margin-bottom: 1rem; }
.contact-eyebrow .eyebrow__line { background: var(--color-yellow); }
.contact-title { font-size: 2.25rem; margin-bottom: 1.5rem; color: var(--color-cream); }
@media (min-width: 768px) { .contact-title { font-size: 3rem; } }
@media (min-width: 1024px) { .contact-title { font-size: 3.75rem; } }
.contact-section__paragraph { color: color-mix(in srgb, var(--color-cream) 75%, transparent); line-height: 1.7; margin-bottom: 2rem; max-width: 28rem; }

.contact-section__list { display: flex; flex-direction: column; gap: 1rem; }
.contact-section__link, .contact-section__item { display: flex; align-items: center; gap: 1rem; }
.contact-section__icon-box { display: flex; align-items: center; justify-content: center; height: 2.75rem; width: 2.75rem; border: 1px solid color-mix(in srgb, var(--color-cream) 25%, transparent); color: var(--color-yellow); flex-shrink: 0; transition: border-color 0.2s ease, color 0.2s ease; }
.contact-section__icon-box svg { width: 1rem; height: 1rem; }
.contact-section__link:hover .contact-section__icon-box { border-color: var(--color-primary); color: var(--color-primary); }
.contact-section__link-label { display: block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-cream) 50%, transparent); }
.contact-section__link-value { font-size: 1rem; }
@media (min-width: 768px) { .contact-section__link-value { font-size: 1.125rem; } }

.contact-section__follow { margin-top: 2.5rem; }
.contact-section__follow-label { display: block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix(in srgb, var(--color-cream) 50%, transparent); margin-bottom: 0.75rem; }
.contact-section__follow-links { display: flex; align-items: center; gap: 0.75rem; }
.contact-section__follow-link { display: flex; align-items: center; justify-content: center; height: 2.75rem; width: 2.75rem; border: 1px solid color-mix(in srgb, var(--color-cream) 25%, transparent); color: var(--color-cream); transition: border-color 0.2s ease, color 0.2s ease; }
.contact-section__follow-link svg { width: 1rem; height: 1rem; }
.contact-section__follow-link:hover { border-color: var(--color-primary); color: var(--color-primary); }

.contact-section__form-col { grid-column: 1 / -1; }
@media (min-width: 1024px) { .contact-section__form-col { grid-column: span 7; } }

.contact-form { position: relative; background: var(--color-cream); color: var(--color-charcoal); padding: 1.5rem; border: 2px solid var(--color-charcoal); box-shadow: var(--shadow-elevated); }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form__ribbon { position: absolute; top: -1rem; left: 1.5rem; display: inline-flex; align-items: center; background: var(--color-primary); color: var(--color-primary-foreground); padding: 0.5rem 1rem; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; }
@media (min-width: 768px) { .contact-form__ribbon { left: 2.5rem; } }
.contact-form__title { font-size: 1.5rem; text-transform: uppercase; font-weight: 700; margin-top: 0.5rem; margin-bottom: 0.25rem; }
@media (min-width: 768px) { .contact-form__title { font-size: 1.875rem; } }
.contact-form__subtitle { font-size: 0.875rem; color: color-mix(in srgb, var(--color-charcoal) 70%, transparent); margin-bottom: 1.75rem; }
@media (min-width: 768px) { .contact-form__subtitle { font-size: 1rem; } }

.contact-form__status { font-size: 0.875rem; color: var(--color-primary); margin-bottom: 0.5rem; min-height: 1px; }
.contact-form__status.is-error { font-weight: 600; }

.contact-form__fields { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 480px) { .contact-form__fields { grid-template-columns: repeat(2, 1fr); } }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__label { display: block; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 0.5rem; color: var(--color-charcoal); }
.contact-form__input {
	width: 100%;
	padding: 0.875rem 1rem;
	background: var(--color-background);
	border: 2px solid color-mix(in srgb, var(--color-charcoal) 25%, transparent);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--color-foreground);
	transition: border-color 0.2s ease;
}
.contact-form__input::placeholder { color: color-mix(in srgb, var(--color-foreground) 40%, transparent); }
.contact-form__input:focus { outline: none; border-color: var(--color-primary); }
.contact-form__textarea { resize: none; }
.contact-form__field--actions { display: flex; flex-direction: column; gap: 0.75rem; padding-top: 0.25rem; }
@media (min-width: 640px) { .contact-form__field--actions { flex-direction: row; align-items: center; justify-content: space-between; } }
.contact-form__or-email { font-size: 0.75rem; color: color-mix(in srgb, var(--color-charcoal) 60%, transparent); margin: 0; }
@media (min-width: 768px) { .contact-form__or-email { font-size: 0.875rem; } }
.contact-form__or-email a { text-decoration: underline; font-weight: 600; }
.contact-form__or-email a:hover { color: var(--color-primary); }
.contact-form__submit { flex-shrink: 0; }
.contact-form__submit:disabled { opacity: 0.6; cursor: not-allowed; }

.contact-form__success { padding: 2.5rem 0; text-align: center; }
.contact-form__success-title { font-family: var(--font-display); text-transform: uppercase; font-size: 1.5rem; color: var(--color-primary); margin-bottom: 0.5rem; }
.contact-form__success-text { font-size: 0.875rem; color: color-mix(in srgb, var(--color-charcoal) 70%, transparent); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--color-ink); color: var(--color-cream); border-top: 4px solid var(--color-primary); }
.site-footer__stripe { height: 4px; width: 100%; background-image: repeating-linear-gradient(90deg, var(--color-yellow) 0 12px, transparent 12px 24px); opacity: 0.5; }
.site-footer__inner { padding-top: 4rem; padding-bottom: 4rem; }
@media (min-width: 1024px) { .site-footer__inner { padding-top: 5rem; padding-bottom: 5rem; } }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(12, 1fr); gap: 3rem; } }
.site-footer__brand-col { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__brand-col { grid-column: span 5; } }
.site-footer__brand { display: flex; align-items: center; gap: 1rem; background: transparent; border: none; color: var(--color-cream); text-align: left; }
.site-footer__brand-text { display: flex; flex-direction: column; line-height: 1; }
.site-footer__brand-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.25rem; }
@media (min-width: 768px) { .site-footer__brand-name { font-size: 1.5rem; } }
.site-footer__brand-tagline { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-yellow); font-weight: 600; margin-top: 0.375rem; }
.site-footer__description { margin-top: 1.5rem; font-size: 0.9375rem; color: color-mix(in srgb, var(--color-cream) 85%, transparent); line-height: 1.7; max-width: 24rem; }
.site-footer__socials { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.625rem; }
.site-footer__social-link { display: flex; align-items: center; justify-content: center; height: 2.75rem; width: 2.75rem; border: 1px solid color-mix(in srgb, var(--color-cream) 30%, transparent); color: var(--color-cream); transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.site-footer__social-link svg { width: 18px; height: 18px; }
.site-footer__social-link:hover { color: var(--color-charcoal); background: var(--color-yellow); border-color: var(--color-yellow); }

.site-footer__nav-col, .site-footer__contact-col { grid-column: 1 / -1; }
@media (min-width: 768px) { .site-footer__nav-col { grid-column: span 3; } .site-footer__contact-col { grid-column: span 4; } }
.site-footer__col-heading { display: block; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--color-yellow); font-weight: 700; margin-bottom: 1.25rem; }
.site-footer__nav-list { display: flex; flex-direction: column; gap: 0.625rem; }
.site-footer__nav-list a { font-size: 15px; color: color-mix(in srgb, var(--color-cream) 90%, transparent); transition: color 0.2s ease; }
.site-footer__nav-list a:hover { color: var(--color-yellow); }
.site-footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.site-footer__contact-link, .site-footer__contact-item { display: inline-flex; align-items: flex-start; gap: 0.625rem; font-size: 15px; color: color-mix(in srgb, var(--color-cream) 90%, transparent); word-break: break-word; }
.site-footer__contact-link:hover { color: var(--color-yellow); }
.site-footer__contact-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }

.site-footer__bottom { margin-top: 3.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--color-cream) 10%, transparent); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; }
@media (min-width: 640px) { .site-footer__bottom { flex-direction: row; } }
.site-footer__copyright, .site-footer__credit { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: color-mix(in srgb, var(--color-cream) 55%, transparent); margin: 0; }
.site-footer__credit a { color: var(--color-yellow); font-weight: 600; }
.site-footer__credit a:hover { color: var(--color-primary); }

/* =========================================================================
   CART DRAWER + OVERLAY
   ========================================================================= */
#theme-cart-overlay { position: fixed; inset: 0; background: color-mix(in srgb, var(--color-charcoal) 60%, transparent); backdrop-filter: blur(2px); z-index: 50; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
body.cart-open #theme-cart-overlay { opacity: 1; pointer-events: auto; }

#theme-cart-drawer {
	position: fixed; right: 0; top: 0; height: 100%; width: 100%; max-width: 28rem;
	background: var(--color-cream); color: var(--color-charcoal);
	z-index: 51;
	box-shadow: var(--shadow-elevated);
	display: flex; flex-direction: column;
	border-left: 2px solid var(--color-charcoal);
	transform: translateX(100%);
	transition: transform 0.35s var(--transition-smooth);
}
body.cart-open #theme-cart-drawer { transform: translateX(0); }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.theme-cart-drawer__header { background: var(--color-charcoal); color: var(--color-cream); padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 4px solid var(--color-primary); }
.theme-cart-drawer__kicker { display: block; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 600; color: var(--color-yellow); margin-bottom: 0.25rem; }
.theme-cart-drawer__title { font-size: 1.25rem; text-transform: uppercase; font-weight: 700; line-height: 1; }
.theme-cart-drawer__close { background: transparent; border: none; color: var(--color-cream); padding: 0.5rem; }
.theme-cart-drawer__close:hover { color: var(--color-yellow); }
.theme-cart-drawer__close svg { width: 1.25rem; height: 1.25rem; }

.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-icon { width: 4rem; height: 4rem; border: 2px solid color-mix(in srgb, var(--color-charcoal) 30%, transparent); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.theme-cart-drawer__empty-icon svg { width: 1.75rem; height: 1.75rem; opacity: 0.5; }
.theme-cart-drawer__empty-title { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 1.125rem; margin-bottom: 0.5rem; }
.theme-cart-drawer__empty-text { font-size: 0.875rem; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1.5rem; }

.theme-cart-drawer__items { flex: 1; overflow-y: auto; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__item { display: flex; gap: 1rem; background: var(--color-background); border: 1px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); padding: 0.75rem; }
.theme-cart-drawer__item-image { width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border: 1px solid color-mix(in srgb, var(--color-charcoal) 10%, transparent); 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; }
.theme-cart-drawer__item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.theme-cart-drawer__item-name { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.875rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.theme-cart-drawer__item-name:hover { color: var(--color-primary); }
.theme-cart-drawer__item-price { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: var(--color-primary); flex-shrink: 0; }
.theme-cart-drawer__item-variation, .theme-cart-drawer__item-unit { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); margin-top: 0.125rem; }
.theme-cart-drawer__item-controls { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; }
.theme-cart-drawer__qty { display: inline-flex; align-items: center; border: 1px solid color-mix(in srgb, var(--color-charcoal) 30%, transparent); background: var(--color-background); }
.theme-cart-drawer__qty-btn { background: transparent; border: none; padding: 0.375rem 0.5rem; color: var(--color-charcoal); transition: background-color 0.2s ease, color 0.2s ease; }
.theme-cart-drawer__qty-btn:hover { background: var(--color-charcoal); color: var(--color-cream); }
.theme-cart-drawer__qty-btn svg { width: 0.75rem; height: 0.75rem; }
.theme-cart-drawer__qty-value { padding: 0 0.75rem; font-size: 0.875rem; font-weight: 700; min-width: 28px; text-align: center; }
.theme-cart-drawer__remove { margin-left: auto; display: inline-flex; align-items: center; gap: 0.25rem; background: transparent; border: none; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__remove:hover { color: var(--color-primary); }
.theme-cart-drawer__remove svg { width: 0.875rem; height: 0.875rem; }

.theme-cart-drawer__footer { background: var(--color-background); border-top: 2px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.theme-cart-drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; }
.theme-cart-drawer__subtotal-label { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-cart-drawer__subtotal-value { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--color-primary); }
.theme-cart-drawer__checkout-btn, .theme-cart-drawer__empty-btn { width: 100%; }
.theme-cart-drawer__empty-btn { font-size: 10px; padding: 0.625rem 1rem; gap: 0.5rem; }
.theme-cart-drawer__empty-btn svg { width: 0.875rem; height: 0.875rem; }
.theme-cart-drawer__trust { padding-top: 0.75rem; border-top: 1px dashed color-mix(in srgb, var(--color-charcoal) 25%, transparent); display: flex; flex-wrap: wrap; gap: 0.375rem 1rem; font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 60%, transparent); }
.theme-cart-drawer__trust span { display: inline-flex; align-items: center; gap: 0.375rem; }
.theme-cart-drawer__trust svg { width: 0.75rem; height: 0.75rem; color: var(--color-primary); }

/* Hide "View cart" injected after AJAX add (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; }

/* Notices — scoped visibility (Section 14.1). */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }

/* =========================================================================
   SINGLE PRODUCT PAGE
   ========================================================================= */
.product-breadcrumb-bar { background: var(--color-charcoal); color: var(--color-cream); border-bottom: 1px solid color-mix(in srgb, var(--color-yellow) 25%, transparent); }
.product-breadcrumb-bar__inner { padding-top: 1rem; padding-bottom: 1rem; }
.product-breadcrumb { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; display: flex; flex-wrap: wrap; align-items: center; gap: 0.375rem 0.5rem; }
.product-breadcrumb__link { display: inline-flex; align-items: center; gap: 0.375rem; color: color-mix(in srgb, var(--color-cream) 70%, transparent); transition: color 0.2s ease; }
.product-breadcrumb__link:hover { color: var(--color-yellow); }
.product-breadcrumb__icon { width: 0.875rem; height: 0.875rem; }
.product-breadcrumb__sep { color: color-mix(in srgb, var(--color-cream) 30%, transparent); }
.product-breadcrumb__current { color: var(--color-yellow); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 60vw; }

.theme-product-layout-container { padding-top: 2.5rem; padding-bottom: 4rem; }
@media (min-width: 768px) { .theme-product-layout-container { padding-top: 3.5rem; padding-bottom: 4rem; } }
.theme-product-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; min-width: 0; padding-bottom: 4rem; }
@media (min-width: 1024px) { .theme-product-layout { grid-template-columns: repeat(12, 1fr); gap: 3.5rem; } }

.theme-product-gallery { grid-column: 1 / -1; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-gallery { grid-column: span 7; } }
.theme-product-gallery__main { position: relative; background: var(--color-cream); border: 2px solid var(--color-charcoal); box-shadow: var(--shadow-soft); overflow: hidden; aspect-ratio: 1 / 1; }
.theme-product-gallery__category, .theme-product-gallery__soldout { position: absolute; top: 1rem; left: 1rem; display: inline-flex; align-items: center; padding: 0.25rem 0.625rem; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; background: var(--color-charcoal); color: var(--color-cream); border: 1px solid var(--color-charcoal); z-index: 2; }
.theme-product-gallery__soldout { left: auto; right: 1rem; background: var(--color-cream); color: var(--color-charcoal); border-color: var(--color-cream); }

.theme-product-thumbnails { display: flex; gap: 0.75rem; margin-top: 1rem; flex-wrap: wrap; max-width: 100%; padding-bottom: 0.25rem; }
.theme-product-thumbnails__btn { position: relative; width: 5rem; height: 5rem; flex-shrink: 0; overflow: hidden; border: 2px solid color-mix(in srgb, var(--color-charcoal) 20%, transparent); background: none; padding: 0; transition: border-color 0.2s ease; }
@media (min-width: 768px) { .theme-product-thumbnails__btn { width: 6rem; height: 6rem; } }
.theme-product-thumbnails__btn.is-active { border-color: var(--color-primary); }
.theme-product-thumbnails__btn:hover { border-color: color-mix(in srgb, var(--color-charcoal) 50%, transparent); }
.theme-product-thumbnails__img { width: 100%; height: 100%; object-fit: cover; }

.theme-product-info { grid-column: 1 / -1; min-width: 0; max-width: 100%; }
@media (min-width: 1024px) { .theme-product-info { grid-column: span 5; position: sticky; top: 7rem; align-self: start; } }
.theme-product-info__panel { position: relative; background: var(--color-cream); border: 2px solid var(--color-charcoal); padding: 1.5rem; box-shadow: var(--shadow-soft); }
.theme-product-info__panel::before {
	content: '';
	position: absolute;
	top: -4px;
	left: 0;
	right: 0;
	height: 4px;
	background-image: repeating-linear-gradient(90deg, var(--color-primary) 0 10px, transparent 10px 18px);
	pointer-events: none;
}
@media (min-width: 768px) { .theme-product-info__panel { padding: 2rem; } }
.theme-product-info__usd {
	font-size: 10px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 600;
	color: color-mix(in srgb, var(--color-foreground) 60%, transparent);
}
.theme-product-info__badges { display: flex; flex-wrap: wrap; gap: 0.375rem; margin-top: 1.5rem; list-style: none; padding: 0; }
.theme-product-info__badge {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.625rem;
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 600;
	border: 1px solid color-mix(in srgb, var(--color-accent) 50%, transparent);
	color: var(--color-accent);
	background: color-mix(in srgb, var(--color-accent) 5%, transparent);
}
.theme-product-info__eyebrow { color: var(--color-primary); margin-bottom: 0.75rem; }
.theme-product-info__eyebrow .eyebrow__line { background: var(--color-primary); }
.product-title.theme-product-info__title { font-weight: 700; text-transform: uppercase; font-size: 1.875rem; line-height: 0.95; }
@media (min-width: 768px) { .product-title.theme-product-info__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .product-title.theme-product-info__title { font-size: 3rem; } }
.theme-product-info__price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 1.25rem; margin-bottom: 1.5rem; }
.theme-product-info__price { font-family: var(--font-display); font-weight: 700; font-size: 2.25rem; color: var(--color-primary); line-height: 1; }
@media (min-width: 768px) { .theme-product-info__price { font-size: 3rem; } }
.theme-product-info__stock.is-out-of-stock { display: inline-block; margin-bottom: 1rem; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--color-primary); }
.theme-product-info__excerpt { font-size: 1rem; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
@media (min-width: 768px) { .theme-product-info__excerpt { font-size: 1.0625rem; } }
.theme-product-info__divider { margin: 1.75rem 0; border-top: 1px dashed color-mix(in srgb, var(--color-charcoal) 30%, transparent); }

.theme-quantity-wrapper { display: inline-flex; align-items: stretch; border: 2px solid var(--color-charcoal); background: var(--color-background); flex-shrink: 0; }
.theme-qty-minus, .theme-qty-plus { background: transparent; border: none; padding: 0.75rem 0.875rem; color: var(--color-foreground); transition: background-color 0.2s ease, color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var(--color-charcoal); color: var(--color-cream); }
.theme-qty-minus svg, .theme-qty-plus svg { width: 1rem; height: 1rem; }
.theme-qty-input { width: 3.25rem; border: none; background: transparent; text-align: center; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; -moz-appearance: textfield; }
.theme-qty-input::-webkit-outer-spin-button, .theme-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.theme-qty-input:focus { outline: none; }

.theme-add-to-cart-area { display: flex; align-items: stretch; flex-wrap: wrap; gap: 0.75rem; }
.theme-add-to-cart-area .single_add_to_cart_button { flex: 1 1 auto; min-width: 160px; }

.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-display) !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;
	gap: 0.5rem;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 1 !important;
	background-color: var(--color-charcoal) !important;
	color: var(--color-cream) !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;
}
.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

/* Card compact button override — placed after the global rules (Section 11.4.1). */
.theme-product-card .add_to_cart_button.ajax_add_to_cart {
	min-height: unset !important;
	padding: 0.5rem 0.75rem !important;
}

.theme-product-info__trust { margin-top: 1.75rem; padding-top: 1.25rem; border-top: 1px dashed color-mix(in srgb, var(--color-charcoal) 30%, transparent); display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix(in srgb, var(--color-foreground) 70%, transparent); }
.theme-product-info__trust span { display: inline-flex; align-items: center; gap: 0.375rem; }
.theme-product-info__trust svg { width: 0.875rem; height: 0.875rem; color: var(--color-primary); }

.theme-product-accordions { margin-top: 1.5rem; border-top: 2px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); border-bottom: 2px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); }
.theme-accordion { border-top: 1px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent); }
.theme-accordion:first-child { border-top: none; }
.theme-accordion__trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; background: none; border: none; text-align: left; }
.theme-accordion__trigger span { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; color: var(--color-foreground); }
.theme-accordion__chevron { width: 1rem; height: 1rem; transition: transform 0.2s ease; }
.theme-accordion.is-open .theme-accordion__chevron { transform: rotate(180deg); }
.theme-accordion__panel { display: none; padding-bottom: 1.5rem; font-size: 15px; color: color-mix(in srgb, var(--color-foreground) 80%, transparent); line-height: 1.6; overflow-wrap: break-word; word-break: break-word; }
.theme-accordion.is-open .theme-accordion__panel { display: block; }
.theme-accordion__panel ul { list-style: none; }
.theme-accordion__panel li { position: relative; padding-left: 1.25rem; margin-bottom: 0.625rem; }
.theme-accordion__panel li::before { content: ''; position: absolute; left: 0; top: 0.5rem; width: 0.375rem; height: 0.375rem; border-radius: 999px; background: var(--color-primary); }
.theme-accordion__panel a { color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.theme-product-care__email { color: var(--color-primary); font-weight: 600; }

.woocommerce-product-details__short-description,
.woocommerce-variation-description,
.posted_in { overflow-wrap: break-word; word-break: break-word; }

.related-products-section {
	padding-top: 4rem;
	padding-bottom: 4rem;
	border-top: 1px solid color-mix(in srgb, var(--color-charcoal) 15%, transparent);
}
.contact-form__submit:hover { background-color: var(--color-charcoal) !important; color: var(--color-cream) !important; }
.related-products-section__header { text-align: center; margin-bottom: 2.5rem; }
.related-products-section__header .eyebrow { justify-content: center; color: var(--color-primary); margin-bottom: 0.75rem; }
.related-products-section__header .eyebrow__line { background: var(--color-primary); }
.related-products-section__header .section-heading { font-size: 1.875rem; }
@media (min-width: 768px) { .related-products-section__header .section-heading { font-size: 2.25rem; } }

/* =========================================================================
   404 / GENERIC PAGES
   ========================================================================= */
.theme-404-page, .theme-generic-page { padding: 5rem 0; min-height: 50vh; }
.theme-404__inner { text-align: center; max-width: 32rem; margin: 0 auto; }
.theme-404__title { font-size: 2.25rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.theme-404__text { color: color-mix(in srgb, var(--color-foreground) 70%, transparent); margin-bottom: 1.5rem; }
.page-title { font-size: 2rem; text-transform: uppercase; font-weight: 700; margin-bottom: 1.5rem; }

/* =========================================================================
   WOOCOMMERCE SHOP ARCHIVE
   ========================================================================= */
.shop-archive__inner { padding-top: 3rem; padding-bottom: 5rem; }
.shop-archive__header { text-align: center; margin-bottom: 2.5rem; }
.shop-archive__empty { text-align: center; padding: 3rem 0; }

/* =========================================================================
   THANK YOU PAGE
   ========================================================================= */
body.theme-thankyou-page { overflow-x: hidden; background: var(--color-charcoal); color: var(--color-cream); }
body.theme-thankyou-page .site-main { padding: 4rem 0; }
.theme-thankyou { max-width: 42rem; margin: 0 auto; text-align: center; padding: 2rem 0; }
.theme-thankyou__badge { width: 5rem; height: 5rem; background: var(--color-primary); color: var(--color-primary-foreground); border-radius: 999px; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; }
.theme-thankyou__badge svg { width: 2.5rem; height: 2.5rem; }
.theme-thankyou__eyebrow { justify-content: center; color: var(--color-yellow); margin-bottom: 1rem; }
.theme-thankyou__eyebrow .eyebrow__line { background: var(--color-yellow); }
.theme-thankyou__cta { margin-top: 2rem; }
body.theme-thankyou-page .woocommerce-order-overview { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin: 2rem 0; }
body.theme-thankyou-page .woocommerce-order-overview li { background: color-mix(in srgb, var(--color-cream) 8%, transparent); padding: 0.75rem 1.25rem; font-size: 0.875rem; }
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title { text-align: left; font-size: 1.5rem; text-transform: uppercase; font-weight: 700; padding: 2rem 0 1rem; }
body.theme-thankyou-page .woocommerce-order-details table { width: 100%; table-layout: fixed; color: var(--color-charcoal); background: var(--color-cream); }
body.theme-thankyou-page .woocommerce-order-details__title { color: var(--color-cream); }
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; text-align: left; margin-top: 2rem; }
@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; }
}
body.theme-thankyou-page .woocommerce-customer-details address { background: color-mix(in srgb, var(--color-cream) 8%, transparent); padding: 1.25rem; overflow-wrap: break-word; }

/* =========================================================================
   WOOCOMMERCE CHECKOUT BLOCK
   ========================================================================= */
body.woocommerce-checkout .site-main { padding-top: 2rem; padding-bottom: 4rem; }
body.woocommerce-checkout .theme-page-container { max-width: 80rem; }

body.woocommerce-checkout .entry-content > .wc-block-checkout,
body.woocommerce-checkout .wp-block-woocommerce-checkout,
body.woocommerce-checkout .wc-block-checkout {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: grid !important;
	grid-template-columns: 1fr !important;
	gap: 2rem !important;
	align-items: start !important;
	width: 100% !important;
	max-width: none !important;
}

@media (min-width: 1024px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: 1fr 1fr !important;
		gap: 2.5rem !important;
	}
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar,
body.woocommerce-checkout .wc-block-components-main {
	display: block !important;
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;
	grid-column: auto !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: var(--color-cream);
	border-radius: var(--card-radius);
	padding: var(--section-padding);
}

/* Checkout inputs — Lovable Checkout.tsx parity (padding left to WC defaults). */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-block-components-text-input input[type="number"],
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.woocommerce-checkout .wc-block-components-combobox-control input,
body.woocommerce-checkout select {
	width: 100% !important;
	max-width: none !important;
	font-family: var(--font-body) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	line-height: 1.5 !important;
	color: var(--color-foreground) !important;
	background-color: var(--color-background) !important;
	border: 2px solid color-mix(in srgb, var(--color-charcoal) 25%, transparent) !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	outline: none !important;
	transition: border-color 0.2s ease !important;
	appearance: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-combobox-control input::placeholder {
	color: color-mix(in srgb, var(--color-foreground) 40%, transparent) !important;
	opacity: 1 !important;
}

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-combobox-control input:focus,
body.woocommerce-checkout select:focus {
	border-color: var(--color-primary) !important;
	outline: none !important;
	box-shadow: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label {
	font-family: var(--font-body) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: 0.24em !important;
	text-transform: uppercase !important;
	color: var(--color-charcoal) !important;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
	background-color: var(--color-primary) !important;
	color: var(--color-primary-foreground) !important;
	border-radius: 0 !important;
	font-family: var(--font-display) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.2em !important;
	font-size: 0.75rem !important;
	font-weight: 600 !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background-color: var(--color-cream) !important;
	color: var(--color-charcoal) !important;
	opacity: 1 !important;
}
body.woocommerce-checkout .wc-block-components-notice-banner { border-radius: 0; }

/* Variable product pills */
.theme-variations { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 0.5rem; }
.theme-variation-label {
	font-size: 11px;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-foreground);
	margin-bottom: 0.75rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	padding: 0.625rem 1rem;
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	font-family: var(--font-body);
	font-weight: 600;
	border: 2px solid color-mix(in srgb, var(--color-charcoal) 25%, transparent);
	background: transparent;
	color: var(--color-foreground);
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.theme-variation-pill:hover { border-color: var(--color-charcoal); }
.theme-variation-pill.is-selected {
	background: var(--color-charcoal);
	color: var(--color-cream);
	border-color: var(--color-charcoal);
}
.theme-variation-select-wrap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }
.variations_form table.variations { display: none !important; }

body.woocommerce-account .site-main,
body.woocommerce-cart .site-main { padding: 3rem 0 4rem; }
