/* ==========================================================================
   Central Texas Discount Hub — theme.css
   Theme by The Free Website Guys.
   ========================================================================== */

:root {
	--color-background: #0d0d0d;
	--color-foreground: #f5f5f5;
	--color-card: #171717;
	--color-primary: #f34316;
	--color-primary-foreground: #ffffff;
	--color-border: #2e2e2e;
	--color-muted-foreground: #adadad;
	--color-tackle-ink: #080808;
	--color-tackle-charcoal: #141414;
	--color-tackle-cream: #fafafa;

	--font-display: 'Oswald', 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', system-ui, sans-serif;

	--logo-height: 56px;
	--header-height: 64px;
	--radius: 0.25rem;

	--btn-radius: 0;
	--btn-height: 52px;
	--btn-padding: 0.9rem 1.6rem;
	--btn-font-size: 0.8rem;
	--btn-font-weight: 700;
	--btn-letter-spacing: 0.22em;
	--btn-text-transform: uppercase;
	--btn-icon-padding: 0.65rem;

	--checkout-gap: 2rem;
}

/* --------------------------------------------------------------------------
   RESET / BASE
   -------------------------------------------------------------------------- */

* { box-sizing: border-box; }

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

body {
	margin: 0;
	padding-top: var( --header-height );
	background-color: var( --color-background );
	color: var( --color-foreground );
	font-family: var( --font-body );
	-webkit-font-smoothing: antialiased;
}
@media ( min-width: 768px ) {
	:root { --header-height: 80px; }
	body { padding-top: var( --header-height ); }
}

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 { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, textarea, select { font-family: inherit; }

img:not( .cover-img ):not( .hero-bg-img ):not( .theme-product-card__image ):not( .theme-product-gallery__image ):not( .theme-product-thumb__image ):not( .about-contact-poster ) {
	max-width: 100%;
	height: auto;
	display: block;
}

.cover-img,
.hero-bg-img,
.theme-product-card__image,
.theme-product-gallery__image,
.theme-product-thumb__image,
.about-contact-poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

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

.icon-14 { width: 14px; height: 14px; }
.icon-16 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }
.icon-28 { width: 28px; height: 28px; }

.section-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var( --font-body );
	font-size: 0.6875rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	font-weight: 700;
	color: var( --color-primary );
}

.section-rule {
	display: block;
	margin-top: 1.25rem;
	height: 3px;
	width: 6rem;
	background: var( --color-primary );
}
.section-rule--sm { width: 5rem; }
.section-rule--xs { width: 3rem; margin-top: 0; }

.section-heading-wrap--center { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 3rem; }

.logo-title {
	color: #fff;
	background: linear-gradient( 180deg, #ffffff 0%, #f4f4f4 38%, #c9c9c9 72%, #8f8f8f 100% );
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px rgba( 255, 255, 255, 0.65 );
	filter: drop-shadow( 0 2px 0 #3a302c ) drop-shadow( 0 4px 0 rgba( 0, 0, 0, 0.55 ) );
}

/* --------------------------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------------------------- */

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee-scroll { 0% { transform: translateX( 0 ); } 100% { transform: translateX( -50% ); } }
@keyframes shimmer-sweep { 0% { transform: translateX( -100% ); } 100% { transform: translateX( 100% ); } }
@keyframes dot-pulse { 0%, 80%, 100% { transform: scale( 0.6 ); opacity: 0.4; } 40% { transform: scale( 1 ); opacity: 1; } }
@keyframes reveal-fade-up { from { opacity: 0; transform: translateY( 24px ); } to { opacity: 1; transform: translateY( 0 ); } }

.reveal-item,
.theme-product-card-wrap {
	opacity: 0;
	transform: translateY( 24px );
	transition: opacity 0.55s cubic-bezier( 0.25, 0.4, 0.25, 1 ), transform 0.55s cubic-bezier( 0.25, 0.4, 0.25, 1 );
	transition-delay: var( --reveal-delay, 0s );
}
.reveal-item.is-visible,
.theme-product-card-wrap.is-visible {
	opacity: 1;
	transform: translateY( 0 );
}

/* Customizer preview fallback (Section 2.1 #5) — never hide content in the editor. */
body.is-customizer .reveal-item,
body.is-customizer .theme-product-card-wrap {
	opacity: 1 !important;
	transform: none !important;
	transition: none !important;
}

@media ( prefers-reduced-motion: reduce ) {
	.reveal-item, .theme-product-card-wrap { transition: none !important; opacity: 1 !important; transform: none !important; }
	.marquee-track { animation: none !important; }
	.skeleton-shimmer::after { animation: none !important; }
}

.loading-dot {
	display: inline-block;
	width: 6px;
	height: 6px;
	margin: 0 2px;
	border-radius: 9999px;
	background: currentColor;
	animation: dot-pulse 1.2s ease-in-out infinite both;
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 40;
	background-color: var( --color-tackle-ink );
	border-bottom: 1px solid rgba( 250, 250, 250, 0.1 );
	color: var( --color-tackle-cream );
	transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}
.site-header.is-solid {
	background-color: color-mix( in srgb, var( --color-tackle-ink ) 95%, transparent );
	backdrop-filter: blur( 12px );
	border-bottom-color: color-mix( in srgb, var( --color-primary ) 40%, transparent );
}

.site-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	height: 64px;
}
@media ( min-width: 768px ) { .site-nav { height: 80px; } }

.site-brand { display: flex; align-items: center; gap: 0.75rem; min-width: 0; }
.site-logo-img { height: var( --logo-height ) !important; width: auto !important; display: block; object-fit: contain; }
.site-logo-img--footer { height: calc( var( --logo-height ) * 1.3 ) !important; }
.site-logo-text { font-family: var( --font-display ); font-weight: 700; text-transform: uppercase; font-size: 1.1rem; line-height: 1.2; display: block; color: var( --color-tackle-cream ); }
.site-brand-name { font-family: var( --font-body ); font-size: 0.8rem; letter-spacing: 0.05em; }

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

.theme-nav-list { display: flex; align-items: center; gap: 2.25rem; margin: 0; padding: 0; list-style: none; }
.theme-nav-link, .theme-nav-list a {
	font-family: var( --font-body );
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var( --color-tackle-cream );
	padding: 0.5rem 0;
	transition: color 0.2s ease;
}
.theme-nav-link:hover, .theme-nav-list a:hover { color: var( --color-primary ); }

.site-nav-actions { display: flex; align-items: center; gap: 0.5rem; }

.cart-toggle-btn { position: relative; padding: 0.5rem; color: var( --color-tackle-cream ); transition: color 0.2s ease; }
.cart-toggle-btn:hover { color: var( --color-primary ); }
.cart-toggle-icon { width: 20px; height: 20px; }
@media ( min-width: 768px ) { .cart-toggle-icon { width: 24px; height: 24px; } }

.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: 0.6875rem;
	font-weight: 600;
	background: var( --color-primary );
	color: var( --color-primary-foreground );
	border-radius: 9999px;
}
.theme-cart-count:empty { display: none; }

.mobile-menu-toggle { padding: 0.5rem; color: var( --color-tackle-cream ); }
.mobile-menu-toggle svg { width: 24px; height: 24px; }
.mobile-menu-icon-close { display: none; }
body.mobile-menu-open .mobile-menu-icon-open { display: none; }
body.mobile-menu-open .mobile-menu-icon-close { display: inline-flex; }
@media ( min-width: 1024px ) { .mobile-menu-toggle { display: none; } }

.mobile-menu-overlay {
	position: fixed;
	inset: 0;
	background: rgba( 0, 0, 0, 0.7 );
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}
body.mobile-menu-open .mobile-menu-overlay { opacity: 1; visibility: visible; }
@media ( min-width: 1024px ) { .mobile-menu-overlay { display: none; } }

.mobile-menu-panel {
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: 51;
	background: var( --color-tackle-ink );
	color: var( --color-tackle-cream );
	border-bottom: 2px solid var( --color-primary );
	box-shadow: var( --shadow-elevated, 0 12px 40px -8px rgba( 0, 0, 0, 0.6 ) );
	transform: translateY( -100% );
	opacity: 0;
	visibility: hidden;
	transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	padding-top: env( safe-area-inset-top );
}
body.mobile-menu-open .mobile-menu-panel { transform: translateY( 0 ); opacity: 1; visibility: visible; }
@media ( min-width: 1024px ) { .mobile-menu-panel { display: none; } }

.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.mobile-menu-close { padding: 0.5rem; color: var( --color-tackle-cream ); transition: color 0.2s ease; }
.mobile-menu-close:hover { color: var( --color-primary ); }
.mobile-menu-close svg { width: 24px; height: 24px; }
.mobile-menu-links { padding-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu-links .theme-nav-list,
.mobile-menu-links .theme-nav-list--mobile {
	display: flex !important;
	flex-direction: column !important;
	align-items: stretch !important;
	gap: 0.25rem !important;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mobile-menu-links .theme-nav-list li,
.mobile-menu-links .theme-nav-list--mobile li {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}
.mobile-menu-links .theme-nav-list a,
.mobile-menu-links .theme-nav-list--mobile a,
.mobile-menu-links .theme-nav-list .menu-item a {
	display: block;
	width: 100%;
	text-align: left;
	font-family: var( --font-display );
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 1rem 0;
	border-bottom: 1px solid rgba( 250, 250, 250, 0.1 );
	color: var( --color-tackle-cream );
	background: none;
	border-radius: 0;
	transition: color 0.2s ease;
}
.mobile-menu-links .theme-nav-list a:hover,
.mobile-menu-links .theme-nav-list--mobile a:hover,
.mobile-menu-links .theme-nav-list .menu-item a:hover {
	color: var( --color-primary );
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */

.hero-section {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var( --color-tackle-ink );
	color: var( --color-tackle-cream );
	overflow: hidden;
	isolation: isolate;
	min-height: calc( 100svh - 64px );
}
body.theme-no-hero .hero-section { display: none; }
main.home-main { padding-top: 0; }
body:not( .theme-no-hero ) .site-main { padding-top: 0; }
body.theme-no-hero .site-main { padding-top: 0; }

.hero-media { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.hero-video { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; }
.hero-overlay-dark { position: absolute; inset: 0; background: rgba( 0, 0, 0, 0.45 ); }
.hero-overlay-gradient {
	position: absolute;
	inset: 0;
	background-image: linear-gradient( 90deg, rgba( 0, 0, 0, 0.96 ) 0%, rgba( 0, 0, 0, 0.86 ) 30%, rgba( 0, 0, 0, 0.48 ) 55%, rgba( 0, 0, 0, 0.12 ) 78%, rgba( 0, 0, 0, 0.18 ) 100% );
}
.hero-line-accent {
	position: absolute;
	top: 33%;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient( 90deg, transparent, color-mix( in srgb, var( --color-primary ) 50%, transparent ), transparent );
	transform: rotate( -2deg );
}
.hero-corner-accent {
	position: absolute;
	bottom: -2.5rem;
	right: -4rem;
	height: 10rem;
	width: 6rem;
	background: color-mix( in srgb, var( --color-primary ) 8%, transparent );
	transform: rotate( -8deg );
	display: none;
}
@media ( min-width: 768px ) { .hero-corner-accent { display: block; } }

.hero-content-wrap { position: relative; z-index: 1; flex: 1; display: flex; align-items: center; padding-block: 3rem; }
@media ( min-width: 768px ) { .hero-content-wrap { padding-block: 4rem; } }
@media ( min-width: 1024px ) { .hero-content-wrap { padding-block: 5rem; } }

.hero-content { width: 100%; max-width: 42rem; }
@media ( min-width: 1024px ) { .hero-content { max-width: 48%; } }

.hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	border: 1px solid color-mix( in srgb, var( --color-primary ) 60%, transparent );
	background: color-mix( in srgb, var( --color-tackle-ink ) 60%, transparent );
	backdrop-filter: blur( 2px );
	padding: 0.375rem 0.75rem;
	font-size: 0.6875rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	font-weight: 700;
	color: var( --color-primary );
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 9999px; background: var( --color-primary ); }

.hero-title {
	margin-top: 1.5rem;
	font-family: var( --font-display );
	font-weight: 700;
	text-transform: uppercase;
	font-style: italic;
	line-height: 0.88;
	letter-spacing: -0.01em;
	font-size: 2.75rem;
	filter: drop-shadow( 0 2px 16px rgba( 0, 0, 0, 0.7 ) );
}
.hero-title span { display: block; white-space: nowrap; }
.hero-title-line2 { color: var( --color-primary ); }
@media ( min-width: 640px ) { .hero-title { font-size: 3.5rem; } }
@media ( min-width: 768px ) { .hero-title { font-size: 4rem; } }
@media ( min-width: 1024px ) { .hero-title { font-size: 5.25rem; } }
@media ( min-width: 1280px ) { .hero-title { font-size: 6.25rem; } }

.hero-subtitle {
	margin-top: 1.75rem;
	font-size: 1.125rem;
	line-height: 1.7;
	color: color-mix( in srgb, var( --color-tackle-cream ) 95%, transparent );
	max-width: 36rem;
	filter: drop-shadow( 0 1px 8px rgba( 0, 0, 0, 0.5 ) );
}
@media ( min-width: 768px ) { .hero-subtitle { font-size: 1.25rem; } }

.hero-ctas { margin-top: 2.25rem; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0.75rem; }
@media ( min-width: 640px ) { .hero-ctas { flex-direction: row; } }

.btn-hero-primary, .btn-hero-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 1rem 1.75rem;
	font-family: var( --font-display );
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-hero-primary { background: var( --color-primary ); color: var( --color-primary-foreground ); }
.btn-hero-primary:hover { background: color-mix( in srgb, var( --color-primary ) 90%, black ); }
.btn-hero-outline {
	border: 2px solid color-mix( in srgb, var( --color-tackle-cream ) 60%, transparent );
	background: color-mix( in srgb, var( --color-tackle-ink ) 40%, transparent );
	backdrop-filter: blur( 2px );
	color: var( --color-tackle-cream );
}
.btn-hero-outline:hover { border-color: var( --color-primary ); color: var( --color-primary ); }

.hero-marquee { position: relative; border-top: 2px solid color-mix( in srgb, var( --color-primary ) 70%, transparent ); border-bottom: 2px solid color-mix( in srgb, var( --color-primary ) 70%, transparent ); background: var( --color-tackle-ink ); margin-top: auto; z-index: 1; }
.marquee-viewport { overflow: hidden; padding: 1rem 0; }
.marquee-mask { -webkit-mask-image: linear-gradient( 90deg, transparent 0, #000 6%, #000 94%, transparent 100% ); mask-image: linear-gradient( 90deg, transparent 0, #000 6%, #000 94%, transparent 100% ); }
.marquee-track { display: flex; white-space: nowrap; will-change: transform; animation: marquee-scroll 32s linear infinite; }
.marquee-item { display: flex; align-items: center; flex-shrink: 0; }
.marquee-term { padding: 0 1.5rem; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; }
@media ( min-width: 768px ) { .marquee-term { padding: 0 2.5rem; font-size: 1rem; } }
.marquee-dot { width: 8px; height: 8px; border-radius: 9999px; background: var( --color-primary ); }

/* --------------------------------------------------------------------------
   SHOP / CURRENT FINDS + PRODUCT CARD
   -------------------------------------------------------------------------- */

.shop-section { padding: 5rem 0; background: var( --color-background ); }
@media ( min-width: 768px ) { .shop-section { padding: 7rem 0; } }

.shop-heading, .how-heading, .about-heading {
	margin-top: 1rem;
	font-weight: 700;
	text-transform: uppercase;
	font-style: italic;
	letter-spacing: -0.01em;
	line-height: 0.95;
	font-size: 2.25rem;
}
@media ( min-width: 768px ) { .shop-heading, .how-heading, .about-heading { font-size: 3rem; } }
@media ( min-width: 1024px ) { .shop-heading, .how-heading, .about-heading { font-size: 3.75rem; } }

.shop-empty-message { text-align: center; color: var( --color-muted-foreground ); padding: 3rem 0; }

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

.theme-product-card-wrap { display: flex; height: 100%; min-width: 0; }
.theme-product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: var( --color-card );
	border: 1px solid var( --color-border );
	overflow: hidden;
	transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.theme-product-card:hover {
	border-color: var( --color-primary );
	box-shadow: 0 18px 50px -18px color-mix( in srgb, var( --color-primary ) 55%, transparent );
	transform: translateY( -6px );
}

.theme-product-card__media-link { display: block; position: relative; }
.theme-product-card__title-link { color: inherit; transition: color 0.2s ease; }
.theme-product-card:hover .theme-product-card__title-link { color: var( --color-primary ); }

.theme-product-card__image-wrapper {
	position: relative;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-bottom: 2px solid var( --color-border );
	background: var( --color-tackle-cream );
	transition: border-color 0.3s ease;
}
.theme-product-card:hover .theme-product-card__image-wrapper { border-color: var( --color-primary ); }
.theme-product-card__image { object-fit: contain; padding: 1.25rem; transition: transform 0.6s cubic-bezier( 0.25, 0.4, 0.25, 1 ); background: var( --color-tackle-cream ); }
.theme-product-card:hover .theme-product-card__image { transform: scale( 1.05 ); }

.theme-product-card__corner { position: absolute; background: var( --color-primary ); transition: all 0.3s ease; }
.theme-product-card__corner--tl-h { top: 0; left: 0; height: 3px; width: 3.5rem; }
.theme-product-card__corner--tl-v { top: 0; left: 0; width: 3px; height: 3.5rem; }
.theme-product-card__corner--br-h { bottom: 0; right: 0; height: 3px; width: 3.5rem; }
.theme-product-card__corner--br-v { bottom: 0; right: 0; width: 3px; height: 3.5rem; }
.theme-product-card:hover .theme-product-card__corner--tl-h,
.theme-product-card:hover .theme-product-card__corner--br-h { width: 5rem; }
.theme-product-card:hover .theme-product-card__corner--tl-v,
.theme-product-card:hover .theme-product-card__corner--br-v { height: 5rem; }

.theme-product-card__badge {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	background: var( --color-tackle-ink );
	color: var( --color-primary );
	border: 1px solid color-mix( in srgb, var( --color-primary ) 70%, transparent );
	padding: 0.35rem 0.65rem;
	font-size: 0.625rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	font-weight: 700;
	z-index: 3;
}

.theme-product-card__info { flex: 1; display: flex; flex-direction: column; gap: 1rem; padding: 1.25rem; min-width: 0; }
@media ( min-width: 768px ) { .theme-product-card__info { padding: 1.5rem; } }

.theme-product-card__title {
	font-family: var( --font-display );
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.125rem;
	line-height: 1.2;
	letter-spacing: -0.01em;
	overflow-wrap: anywhere;
}
@media ( min-width: 768px ) { .theme-product-card__title { font-size: 1.25rem; } }

.theme-product-card__price-row { display: flex; align-items: baseline; gap: 0.5rem; }
.theme-product-card__price { font-family: var( --font-display ); font-weight: 700; font-size: 1.875rem; color: var( --color-primary ); line-height: 1; }
.theme-product-card__price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.theme-product-card__price del { opacity: 0.5; font-size: 0.7em; margin-right: 0.4em; }
@media ( min-width: 768px ) { .theme-product-card__price { font-size: 2.25rem; } }

.theme-product-card__actions { margin-top: auto; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.5rem; }
@media ( min-width: 480px ) { .theme-product-card__actions { flex-direction: row; align-items: stretch; } }

.theme-product-card__view-btn {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 2px solid var( --color-primary );
	color: var( --color-primary );
	padding: 0.75rem;
	font-family: var( --font-display );
	font-size: 0.75rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 700;
	transition: background-color 0.2s ease, color 0.2s ease;
	position: relative;
	z-index: 2;
}
.theme-product-card:hover .theme-product-card__view-btn,
.theme-product-card__view-btn:hover {
	background: var( --color-primary );
	color: var( --color-primary-foreground );
}

/* Overrides for the compact card add-to-cart variant (Section 11.4.1) */
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__add-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem !important;
	background-color: var( --color-primary ) !important;
	color: var( --color-primary-foreground ) !important;
	border: none !important;
	border-radius: 0 !important;
	padding: 0.75rem 1rem !important;
	font-family: var( --font-display ) !important;
	font-size: 0.75rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.18em !important;
	text-transform: uppercase !important;
	min-height: unset !important;
	cursor: pointer !important;
	position: relative !important;
	z-index: 2 !important;
	transition: background-color 0.2s ease, opacity 0.2s ease !important;
}
.theme-product-card .add_to_cart_button.ajax_add_to_cart.theme-product-card__add-btn:hover {
	background-color: color-mix( in srgb, var( --color-primary ) 90%, black ) !important;
	opacity: 1 !important;
}
.theme-product-card__add-btn--select {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background-color: var( --color-primary ); color: var( --color-primary-foreground );
	padding: 0.75rem 1rem; font-family: var( --font-display ); font-size: 0.75rem;
	font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	transition: background-color 0.2s ease;
}
.theme-product-card__add-btn--select:hover {
	background-color: color-mix( in srgb, var( --color-primary ) 90%, black );
}
.theme-product-card__add-btn--disabled {
	display: inline-flex; align-items: center; justify-content: center;
	background-color: var( --color-primary ); color: var( --color-primary-foreground );
	padding: 0.75rem 1rem; font-family: var( --font-display ); font-size: 0.75rem;
	font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
	opacity: 0.6; cursor: not-allowed;
}

/* --------------------------------------------------------------------------
   WOOCOMMERCE — GLOBAL BUTTON OVERRIDES (Section 11.4.1)
   -------------------------------------------------------------------------- */

.single_add_to_cart_button.button,
.add_to_cart_button.button,
a.single_add_to_cart_button,
a.add_to_cart_button {
	background-color: var( --color-primary ) !important;
	color: var( --color-primary-foreground ) !important;
	border: none !important;
	border-radius: var( --btn-radius ) !important;
	min-height: var( --btn-height ) !important;
	padding: var( --btn-padding ) !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0.5rem;
	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;
}
.single_add_to_cart_button.button:hover,
.add_to_cart_button.button:hover {
	opacity: 0.85 !important;
	background-color: var( --color-primary ) !important;
	color: var( --color-primary-foreground ) !important;
}
.single_add_to_cart_button.button:disabled,
.single_add_to_cart_button.button.disabled,
.add_to_cart_button.button:disabled,
.add_to_cart_button.button.disabled {
	cursor: not-allowed !important;
	opacity: 0.4 !important;
	pointer-events: none !important;
}
.single_add_to_cart_button.button:disabled:hover,
.single_add_to_cart_button.button.disabled:hover,
.add_to_cart_button.button:disabled:hover,
.add_to_cart_button.button.disabled:hover {
	opacity: 0.4 !important;
	background-color: var( --color-primary ) !important;
}

.ajax_add_to_cart.theme-btn-loading { opacity: 0.6 !important; pointer-events: none !important; cursor: wait !important; }
.single-product .single_add_to_cart_button.loading::after,
.ajax_add_to_cart.loading::after { display: none !important; }

.woocommerce-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; }

.single-product .single_add_to_cart_button,
.single-product .product-title,
.woocommerce .variations label { text-transform: none; }

/* Notices: scoped visibility (Section 14.1) */
.single-product .woocommerce-message,
.single-product .woocommerce-info { display: none; }
#theme-cart-drawer .woocommerce-message { display: none; }
.woocommerce-message, .woocommerce-error, .woocommerce-info {
	background: var( --color-card );
	border: 1px solid var( --color-border );
	color: var( --color-foreground );
	border-radius: 0;
	padding: 1rem 1.25rem;
	font-family: var( --font-body );
}
.woocommerce-error { border-color: var( --color-primary ); }

/* --------------------------------------------------------------------------
   HOW THE HUB WORKS
   -------------------------------------------------------------------------- */

.how-section { padding: 5rem 0; background: var( --color-card ); border-top: 1px solid var( --color-border ); border-bottom: 1px solid var( --color-border ); }
@media ( min-width: 768px ) { .how-section { padding: 6rem 0; } }

.how-layout { display: grid; gap: 2.5rem; align-items: start; }
@media ( min-width: 1024px ) { .how-layout { grid-template-columns: 4fr 8fr; gap: 3.5rem; } }

.how-heading { line-height: 0.95; }

.how-cards { display: grid; gap: 1.25rem; }
@media ( min-width: 640px ) { .how-cards { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); gap: 1.5rem; } }

.how-card { position: relative; background: var( --color-background ); border: 1px solid var( --color-border ); padding: 1.75rem 2rem; transition: border-color 0.2s ease; }
.how-card:hover { border-color: var( --color-primary ); }
.how-card-icon { display: block; width: 2.5rem; height: 2.5rem; color: var( --color-primary ); }
.how-card-title { margin-top: 1.5rem; font-weight: 700; text-transform: uppercase; font-size: 1.25rem; line-height: 1.2; }
@media ( min-width: 768px ) { .how-card-title { font-size: 1.5rem; } }
.how-card-body { margin-top: 0.75rem; font-size: 1rem; line-height: 1.7; color: color-mix( in srgb, var( --color-foreground ) 80%, transparent ); }

/* --------------------------------------------------------------------------
   SHOP ACROSS THE HUB
   -------------------------------------------------------------------------- */

.platforms-section { position: relative; padding: 4rem 0 5rem; background: var( --color-background ); overflow: hidden; }
@media ( min-width: 768px ) { .platforms-section { padding: 5rem 0; } }

.platforms-bg { position: absolute; inset: 0; pointer-events: none; }
.platforms-bg-grid {
	position: absolute; inset: 0; opacity: 0.06;
	background-image: linear-gradient( to right, var( --color-foreground ) 1px, transparent 1px ), linear-gradient( to bottom, var( --color-foreground ) 1px, transparent 1px );
	background-size: 56px 56px;
}
.platforms-bg-wedge { position: absolute; left: -6rem; top: 0; height: 100%; width: 55%; background: color-mix( in srgb, var( --color-card ) 40%, transparent ); clip-path: polygon( 0 0, 100% 0, 78% 100%, 0 100% ); }
.platforms-bg-rule { position: absolute; left: 0; right: 0; height: 1px; }
.platforms-bg-rule--top { top: 0; background: color-mix( in srgb, var( --color-primary ) 40%, transparent ); }
.platforms-bg-rule--bottom { bottom: 0; background: color-mix( in srgb, var( --color-primary ) 20%, transparent ); }

.platforms-content { position: relative; }
.platforms-heading-wrap { max-width: 48rem; margin-bottom: 2.5rem; }
@media ( min-width: 768px ) { .platforms-heading-wrap { margin-bottom: 3.5rem; } }
.platforms-heading { margin-top: 1rem; font-weight: 700; text-transform: uppercase; font-style: italic; line-height: 0.95; font-size: 2.25rem; }
@media ( min-width: 768px ) { .platforms-heading { font-size: 3rem; } }
@media ( min-width: 1024px ) { .platforms-heading { font-size: 3.75rem; } }
.platforms-subtitle { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: color-mix( in srgb, var( --color-foreground ) 80%, transparent ); }
@media ( min-width: 768px ) { .platforms-subtitle { font-size: 1.125rem; } }

.platforms-grid { display: grid; gap: 1rem; }
@media ( min-width: 1024px ) { .platforms-grid { grid-template-columns: 5fr 7fr; gap: 1.25rem; } }

.platform-primary {
	position: relative;
	background: var( --color-card );
	border: 1px solid color-mix( in srgb, var( --color-primary ) 50%, transparent );
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 280px;
	overflow: hidden;
	clip-path: polygon( 0 0, 100% 0, 100% calc( 100% - 14px ), calc( 100% - 14px ) 100%, 0 100% );
}
@media ( min-width: 768px ) { .platform-primary { padding: 2.5rem; min-height: 340px; } }

.platform-primary-rail { position: absolute; background: var( --color-primary ); }
.platform-primary-rail--top { top: 0; left: 0; height: 4px; width: 6rem; }
.platform-primary-rail--left { top: 0; left: 0; width: 4px; height: 6rem; }
.platform-primary-rail--bottom { bottom: 0; right: 0; height: 4px; width: 6rem; opacity: 0.7; }
.platform-primary-glow { position: absolute; right: -4rem; bottom: -4rem; width: 16rem; height: 16rem; border-radius: 9999px; background: color-mix( in srgb, var( --color-primary ) 10%, transparent ); filter: blur( 60px ); }

.platform-primary-badge {
	position: relative;
	display: inline-flex; align-items: center; gap: 0.5rem;
	border: 1px solid color-mix( in srgb, var( --color-primary ) 60%, transparent );
	background: color-mix( in srgb, var( --color-primary ) 10%, transparent );
	padding: 0.25rem 0.75rem;
	font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var( --color-primary );
}
.platform-primary-title { position: relative; margin-top: 1.25rem; font-weight: 900; text-transform: uppercase; font-style: italic; font-size: 2.75rem; line-height: 0.9; }
@media ( min-width: 768px ) { .platform-primary-title { font-size: 3.5rem; } }
.platform-primary-handle { position: relative; margin-top: 0.75rem; font-size: 1rem; overflow-wrap: anywhere; color: color-mix( in srgb, var( --color-foreground ) 70%, transparent ); }
.platform-primary-bottom { position: relative; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid color-mix( in srgb, var( --color-primary ) 25%, transparent ); }
.platform-primary-bottom p { font-size: 0.9375rem; line-height: 1.6; max-width: 28rem; color: color-mix( in srgb, var( --color-foreground ) 80%, transparent ); }

.platform-tiles { display: grid; grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); gap: 0.75rem; }
@media ( min-width: 768px ) { .platform-tiles { grid-template-columns: repeat( 3, minmax( 0, 1fr ) ); gap: 1rem; } }

.platform-tile {
	position: relative;
	display: block;
	height: 100%;
	min-height: 130px;
	background: var( --color-card );
	border: 1px solid var( --color-border );
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: border-color 0.2s ease;
}
@media ( min-width: 768px ) { .platform-tile { min-height: 150px; padding: 1.25rem; } }
.platform-tile--clickable:hover, .platform-tile--clickable:focus-within { border-color: var( --color-primary ); }

.platform-tile-rail { position: absolute; background: color-mix( in srgb, var( --color-foreground ) 25%, transparent ); }
.platform-tile-rail--h { top: 0; left: 0; height: 2px; width: 2rem; }
.platform-tile-rail--v { top: 0; left: 0; width: 2px; height: 2rem; }
.platform-tile--clickable .platform-tile-rail { background: var( --color-primary ); }

.platform-tile-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.5rem; }
.platform-tile-title { font-weight: 700; text-transform: uppercase; font-style: italic; font-size: 1.25rem; line-height: 1; overflow-wrap: anywhere; min-width: 0; }
@media ( min-width: 768px ) { .platform-tile-title { font-size: 1.5rem; } }
.platform-tile-external { color: var( --color-primary ); flex-shrink: 0; margin-top: 0.125rem; }
.platform-tile-dot { margin-top: 0.25rem; height: 6px; width: 6px; border-radius: 9999px; background: color-mix( in srgb, var( --color-foreground ) 25%, transparent ); flex-shrink: 0; }
.platform-tile-bottom { margin-top: 1rem; }
.platform-tile-handle { font-size: 0.875rem; line-height: 1.4; overflow-wrap: anywhere; word-break: break-word; color: color-mix( in srgb, var( --color-foreground ) 70%, transparent ); }
.platform-tile-channel { font-size: 0.75rem; letter-spacing: 0.24em; text-transform: uppercase; color: color-mix( in srgb, var( --color-foreground ) 40%, transparent ); }

/* --------------------------------------------------------------------------
   ABOUT + CONTACT
   -------------------------------------------------------------------------- */

.about-contact-section {
	position: relative;
	overflow: hidden;
	background: var( --color-tackle-ink );
	color: var( --color-tackle-cream );
	border-top: 2px solid color-mix( in srgb, var( --color-primary ) 40%, transparent );
	border-bottom: 2px solid color-mix( in srgb, var( --color-primary ) 40%, transparent );
	isolation: isolate;
}
.about-contact-video, .about-contact-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-contact-poster { display: none; }
@media ( prefers-reduced-motion: reduce ) {
	.about-contact-video { display: none; }
	.about-contact-poster { display: block; }
}
.about-contact-overlay-dark { position: absolute; inset: 0; background: color-mix( in srgb, var( --color-tackle-ink ) 85%, transparent ); }
.about-contact-overlay-gradient { position: absolute; inset: 0; background: linear-gradient( 90deg, rgba( 13, 13, 13, 0.95 ) 0%, rgba( 13, 13, 13, 0.78 ) 45%, rgba( 13, 13, 13, 0.88 ) 100% ); }
.about-contact-edge { position: absolute; inset-block: 0; width: 3px; background: color-mix( in srgb, var( --color-primary ) 70%, transparent ); }
.about-contact-edge--left { left: 0; }
.about-contact-edge--right { right: 0; }

.about-contact-inner { position: relative; z-index: 1; padding-block: 5rem; }
@media ( min-width: 768px ) { .about-contact-inner { padding-block: 7rem; } }

.about-contact-eyebrow-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 3rem; }
@media ( min-width: 768px ) { .about-contact-eyebrow-row { margin-bottom: 4rem; } }

.about-contact-grid { display: grid; gap: 3rem; }
@media ( min-width: 1024px ) { .about-contact-grid { grid-template-columns: repeat( 2, minmax( 0, 1fr ) ); gap: 5rem; } }

.scroll-mt { scroll-margin-top: 6rem; }

.about-heading { margin-top: 1rem; font-weight: 700; text-transform: uppercase; font-style: italic; line-height: 0.95; font-size: 2.25rem; }
@media ( min-width: 768px ) { .about-heading { font-size: 3rem; } }
@media ( min-width: 1024px ) { .about-heading { font-size: 3.75rem; } }

.about-copy { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; font-size: 1rem; line-height: 1.7; color: color-mix( in srgb, var( --color-tackle-cream ) 90%, transparent ); }
@media ( min-width: 768px ) { .about-copy { font-size: 1.125rem; } }

.contact-panel { position: relative; }
@media ( min-width: 1024px ) { .contact-panel { border-left: 1px solid rgba( 250, 250, 250, 0.15 ); padding-left: 3rem; } }
@media ( min-width: 1280px ) { .contact-panel { padding-left: 4rem; } }

.contact-list { margin-top: 1.75rem; display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: color-mix( in srgb, var( --color-tackle-ink ) 60%, transparent );
	backdrop-filter: blur( 4px );
	border: 1px solid rgba( 250, 250, 250, 0.25 );
	padding: 1.25rem;
	transition: border-color 0.2s ease;
}
a.contact-item:hover { border-color: var( --color-primary ); }
a.contact-item:hover .contact-item-value { color: var( --color-primary ); }
.contact-item-icon { width: 24px; height: 24px; color: var( --color-primary ); flex-shrink: 0; margin-top: 0.125rem; }
.contact-item-body { min-width: 0; }
.contact-item-label { font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: color-mix( in srgb, var( --color-tackle-cream ) 70%, transparent ); }
.contact-item-value { margin-top: 0.25rem; font-size: 1rem; overflow-wrap: anywhere; transition: color 0.2s ease; }
@media ( min-width: 768px ) { .contact-item-value { font-size: 1.125rem; } }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */

.site-footer { background: var( --color-tackle-ink ); color: var( --color-tackle-cream ); border-top: 2px solid var( --color-primary ); }
.site-footer-top { padding-block: 3rem 3.5rem; display: grid; gap: 2.5rem; }
@media ( min-width: 768px ) { .site-footer-top { grid-template-columns: repeat( 12, 1fr ); padding-block: 3.5rem; } }
.site-footer-brand { grid-column: span 6; }
.site-footer-contact { grid-column: span 6; }
@media ( max-width: 767px ) { .site-footer-brand, .site-footer-contact { grid-column: 1 / -1; } }

.footer-blurb { margin-top: 1.25rem; max-width: 28rem; font-size: 1rem; line-height: 1.7; color: color-mix( in srgb, var( --color-tackle-cream ) 80%, transparent ); }
.footer-nav { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-nav-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.footer-nav-list a {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	padding: 0.6rem 1rem;
	border: 1px solid rgba( 250, 250, 250, 0.25 );
	min-height: 44px;
	line-height: 44px;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-nav-list a:hover { border-color: var( --color-primary ); color: var( --color-primary ); }

.footer-heading { font-weight: 700; text-transform: uppercase; font-size: 0.875rem; letter-spacing: 0.24em; color: var( --color-primary ); margin-bottom: 1.25rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; font-size: 1rem; }
.footer-contact-link, .footer-contact-static { display: inline-flex; align-items: flex-start; gap: 0.75rem; transition: color 0.2s ease; }
.footer-contact-link:hover { color: var( --color-primary ); }
.footer-contact-icon { width: 20px; height: 20px; color: var( --color-primary ); flex-shrink: 0; margin-top: 0.125rem; }

.site-footer-bottom { border-top: 1px solid rgba( 250, 250, 250, 0.1 ); }
.site-footer-bottom-inner {
	padding-block: 1.25rem;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-weight: 600;
	color: color-mix( in srgb, var( --color-tackle-cream ) 60%, transparent );
	text-align: center;
}
.footer-built-by a { color: color-mix( in srgb, var( --color-tackle-cream ) 80%, transparent ); }
.footer-built-by a:hover, .footer-built-by a:focus-visible { color: var( --color-primary ); }

/* --------------------------------------------------------------------------
   CART DRAWER + OVERLAY
   -------------------------------------------------------------------------- */

#theme-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba( 0, 0, 0, 0.7 );
	backdrop-filter: blur( 3px );
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease;
}
body.cart-open #theme-cart-overlay { opacity: 1; visibility: visible; }

#theme-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	max-width: 100%;
	z-index: 71;
	background: var( --color-tackle-ink );
	color: var( --color-tackle-cream );
	border-left: 1px solid rgba( 250, 250, 250, 0.1 );
	box-shadow: 0 0 60px rgba( 0, 0, 0, 0.6 );
	display: flex;
	flex-direction: column;
	transform: translateX( 100% );
	transition: transform 0.35s cubic-bezier( 0.25, 0.4, 0.25, 1 );
	visibility: hidden;
}
@media ( min-width: 480px ) { #theme-cart-drawer { width: 420px; } }
@media ( min-width: 768px ) { #theme-cart-drawer { width: 460px; } }

body.cart-open #theme-cart-drawer { transform: translateX( 0 ); visibility: visible; }
#theme-cart-drawer.is-updating { opacity: 0.6; pointer-events: none; }

.cart-drawer__header { position: relative; padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba( 250, 250, 250, 0.1 ); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer__accent { position: absolute; left: 0; top: 0; height: 100%; width: 3px; background: var( --color-primary ); }
.cart-drawer__brand { display: block; font-size: 0.625rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; color: var( --color-primary ); margin-bottom: 0.375rem; }
.cart-drawer__title { font-weight: 700; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1; }
.cart-drawer__close { padding: 0.5rem; color: color-mix( in srgb, var( --color-tackle-cream ) 70%, transparent ); transition: color 0.2s ease; }
.cart-drawer__close:hover { color: var( --color-primary ); }

.cart-drawer__empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; text-align: center; }
.cart-drawer__empty-icon { width: 64px; height: 64px; border: 1px solid rgba( 250, 250, 250, 0.25 ); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: color-mix( in srgb, var( --color-tackle-cream ) 50%, transparent ); }
.cart-drawer__empty-title { font-weight: 700; text-transform: uppercase; font-size: 1.125rem; margin-bottom: 0.5rem; }
.cart-drawer__empty-body { font-size: 0.875rem; color: color-mix( in srgb, var( --color-tackle-cream ) 65%, transparent ); margin-bottom: 1.75rem; max-width: 260px; }

.cart-drawer__continue-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
	background: var( --color-primary ); color: var( --color-primary-foreground );
	padding: 0.875rem 1.5rem; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase;
	transition: background-color 0.2s ease;
}
.cart-drawer__continue-btn:hover { background: color-mix( in srgb, var( --color-primary ) 90%, black ); }
.cart-drawer__continue-btn--outline { width: 100%; background: transparent; border: 1px solid rgba( 250, 250, 250, 0.25 ); color: color-mix( in srgb, var( --color-tackle-cream ) 80%, transparent ); padding: 0.75rem 1rem; font-size: 0.6875rem; }
.cart-drawer__continue-btn--outline:hover { border-color: var( --color-primary ); color: var( --color-primary ); background: transparent; }

.cart-drawer__items { flex: 1; overflow-y: auto; overflow-x: hidden; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-drawer__item { display: flex; gap: 1rem; border: 1px solid rgba( 250, 250, 250, 0.1 ); background: color-mix( in srgb, var( --color-tackle-charcoal ) 60%, transparent ); padding: 0.75rem; }
.cart-drawer__item-thumb { width: 80px; height: 80px; background: color-mix( in srgb, var( --color-tackle-cream ) 95%, transparent ); overflow: hidden; flex-shrink: 0; border: 1px solid rgba( 250, 250, 250, 0.15 ); display: flex; align-items: center; justify-content: center; }
.cart-drawer__item-thumb img { width: 100%; height: 100% !important; object-fit: contain; padding: 0.5rem; }
.cart-drawer__item-body { flex: 1; min-width: 0; }
.cart-drawer__item-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 0.75rem; }
.cart-drawer__item-name { font-weight: 600; text-transform: uppercase; font-size: 0.875rem; line-height: 1.3; overflow-wrap: anywhere; transition: color 0.2s ease; }
.cart-drawer__item-name:hover { color: var( --color-primary ); }
.cart-drawer__item-total { font-family: var( --font-display ); font-weight: 700; font-size: 0.875rem; color: var( --color-primary ); flex-shrink: 0; }
.cart-drawer__item-variation, .cart-drawer__item-unit { font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix( in srgb, var( --color-tackle-cream ) 55%, transparent ); margin-top: 0.25rem; }
.cart-drawer__item-controls { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.75rem; }
.cart-drawer__item-qty { display: inline-flex; align-items: center; border: 1px solid rgba( 250, 250, 250, 0.2 ); background: var( --color-tackle-ink ); }
.cart-drawer__item-qty button { padding: 0.5rem; transition: background-color 0.2s ease, color 0.2s ease; }
.cart-drawer__item-qty button:hover { background: var( --color-primary ); color: var( --color-primary-foreground ); }
.cart-drawer__item-qty-value { padding: 0 0.75rem; font-weight: 700; min-width: 32px; text-align: center; }
.cart-drawer__item-remove { margin-left: auto; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.625rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; color: color-mix( in srgb, var( --color-tackle-cream ) 60%, transparent ); transition: color 0.2s ease; }
.cart-drawer__item-remove:hover { color: var( --color-primary ); }

.cart-drawer__footer { border-top: 1px solid rgba( 250, 250, 250, 0.1 ); padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-drawer__subtotal-row { display: flex; justify-content: space-between; align-items: baseline; }
.cart-drawer__subtotal-label { font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: color-mix( in srgb, var( --color-tackle-cream ) 70%, transparent ); }
.cart-drawer__subtotal-value { font-family: var( --font-display ); font-weight: 700; font-size: 1.625rem; color: var( --color-primary ); }
.cart-drawer__subtotal-value .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.cart-drawer__checkout-btn { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; background: var( --color-primary ); color: var( --color-primary-foreground ); padding: 1rem 1.5rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; transition: background-color 0.2s ease; }
.cart-drawer__checkout-btn:hover { background: color-mix( in srgb, var( --color-primary ) 90%, black ); }

/* --------------------------------------------------------------------------
   SINGLE PRODUCT PAGE
   -------------------------------------------------------------------------- */

.breadcrumb-strip { border-bottom: 1px solid rgba( 250, 250, 250, 0.1 ); background: var( --color-tackle-ink ); }
.breadcrumb-nav { padding-block: 1rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.375rem; font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600; color: color-mix( in srgb, var( --color-tackle-cream ) 60%, transparent ); }
.breadcrumb-home, .breadcrumb-shop { display: inline-flex; align-items: center; gap: 0.375rem; transition: color 0.2s ease; }
.breadcrumb-home:hover, .breadcrumb-shop:hover { color: var( --color-primary ); }
.breadcrumb-sep { color: color-mix( in srgb, var( --color-tackle-cream ) 25%, transparent ); }
.breadcrumb-current { color: var( --color-primary ); overflow-wrap: anywhere; max-width: 60vw; }

.single-product .theme-product-layout { min-width: 0; display: grid; gap: 2rem; align-items: start; }
@media ( min-width: 1024px ) { .single-product .theme-product-layout { grid-template-columns: 7fr 5fr; gap: 3.5rem; } }

.single-product .theme-product-gallery,
.single-product .theme-product-info { min-width: 0; max-width: 100%; }

.single-product-inner { padding-block: 2.5rem 3.5rem; }
@media ( min-width: 768px ) { .single-product-inner { padding-block: 3.5rem; } }
@media ( min-width: 1024px ) { .single-product-inner { padding-block: 4rem; } }

.theme-product-gallery__main { position: relative; background: var( --color-tackle-cream ); border: 1px solid rgba( 250, 250, 250, 0.15 ); overflow: hidden; aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; }
.theme-product-gallery__image { object-fit: contain; padding: 2rem; }
@media ( min-width: 768px ) { .theme-product-gallery__image { padding: 2.5rem; } }
.theme-product-gallery__corner { position: absolute; background: var( --color-primary ); }
.theme-product-gallery__corner--tl-h { top: 0; left: 0; height: 3px; width: 3.5rem; }
.theme-product-gallery__corner--tl-v { top: 0; left: 0; width: 3px; height: 3.5rem; }
.theme-product-gallery__corner--br-h { bottom: 0; right: 0; height: 3px; width: 3.5rem; }
.theme-product-gallery__corner--br-v { bottom: 0; right: 0; width: 3px; height: 3.5rem; }
.theme-product-gallery__badge {
	position: absolute; top: 1rem; right: 1rem;
	background: var( --color-tackle-ink ); color: var( --color-primary );
	border: 1px solid color-mix( in srgb, var( --color-primary ) 70%, transparent );
	padding: 0.4rem 0.75rem; font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
}

.theme-product-thumbnails { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1rem; max-width: 100%; overflow-x: auto; padding-bottom: 0.25rem; }
.theme-product-thumb {
	position: relative; width: 80px; height: 80px; flex-shrink: 0; overflow: hidden;
	border: 2px solid rgba( 250, 250, 250, 0.2 ); background: var( --color-tackle-cream ); transition: border-color 0.2s ease;
}
@media ( min-width: 768px ) { .theme-product-thumb { width: 96px; height: 96px; } }
.theme-product-thumb.is-active { border-color: var( --color-primary ); }
.theme-product-thumb:hover { border-color: rgba( 250, 250, 250, 0.5 ); }
.theme-product-thumb__image { object-fit: contain; padding: 0.375rem; }

.theme-product-info { position: relative; }
@media ( min-width: 1024px ) { .theme-product-info { position: sticky; top: 6rem; align-self: start; } }

.theme-product-purchase-panel {
	position: relative;
	background: color-mix( in srgb, var( --color-tackle-charcoal ) 70%, transparent );
	border: 1px solid rgba( 250, 250, 250, 0.12 );
	padding: 1.5rem;
}
@media ( min-width: 768px ) { .theme-product-purchase-panel { padding: 2rem; } }
.theme-product-purchase-panel::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: var( --color-primary );
}

.theme-product-info__eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var( --font-body ); font-size: 0.625rem; letter-spacing: 0.32em; text-transform: uppercase; font-weight: 700; color: var( --color-primary ); margin-bottom: 1rem; }
.theme-product-info__eyebrow-rule { display: block; width: 1.5rem; height: 1px; background: var( --color-primary ); }
.theme-product-info__categories.posted_in { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: color-mix( in srgb, var( --color-foreground ) 60%, transparent ); margin-bottom: 0.5rem; overflow-wrap: break-word; word-break: break-word; }
.theme-product-info__categories a { color: var( --color-primary ); }
.theme-product-info__title {
	font-family: var( --font-display );
	font-weight: 700;
	text-transform: uppercase;
	line-height: 0.98;
	letter-spacing: -0.01em;
	font-size: 1.875rem;
	overflow-wrap: anywhere;
}
@media ( min-width: 768px ) { .theme-product-info__title { font-size: 2.25rem; } }
@media ( min-width: 1024px ) { .theme-product-info__title { font-size: 2.75rem; } }

.theme-product-info__price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-top: 1.5rem; margin-bottom: 1.5rem; }
.theme-product-info__price { font-family: var( --font-display ); font-weight: 700; font-size: 2.5rem; color: var( --color-primary ); line-height: 1; }
.theme-product-info__price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
@media ( min-width: 768px ) { .theme-product-info__price { font-size: 3rem; } }

.theme-product-info__stock { font-size: 0.8125rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.theme-product-info__stock--out { color: var( --color-primary ); }
.theme-product-info__divider { height: 1px; width: 100%; background: rgba( 250, 250, 250, 0.1 ); margin-bottom: 1.5rem; }

.theme-variations { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }
.theme-variation-row__label {
	display: block;
	font-family: var( --font-body );
	font-size: 0.6875rem;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	font-weight: 700;
	color: var( --color-tackle-cream );
	margin-bottom: 0.5rem;
}
.theme-variation-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.theme-variation-pill {
	border: 1px solid rgba( 250, 250, 250, 0.25 );
	background: var( --color-tackle-ink );
	color: var( --color-tackle-cream );
	padding: 0.5rem 0.875rem;
	font-family: var( --font-body );
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.theme-variation-pill:hover { border-color: var( --color-primary ); color: var( --color-primary ); }
.theme-variation-pill.is-selected {
	border-color: var( --color-primary );
	background: color-mix( in srgb, var( --color-primary ) 15%, transparent );
	color: var( --color-primary );
}
.theme-variation-select { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect( 0, 0, 0, 0 ); border: 0; }
.variations_form .screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect( 0, 0, 0, 0 );
	white-space: nowrap;
	border: 0;
}
.single-product .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button {
	opacity: 0.4;
	pointer-events: none;
}
.single-product .woocommerce-variation-price { margin-bottom: 1rem; }
.single-product .woocommerce-variation-price .price {
	font-family: var( --font-display );
	font-weight: 700;
	font-size: 2rem;
	color: var( --color-primary );
}

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

.theme-quantity-wrapper { display: inline-flex; align-items: stretch; border: 1px solid rgba( 250, 250, 250, 0.25 ); background: var( --color-tackle-ink ); }
.theme-qty-minus, .theme-qty-plus { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; transition: background-color 0.2s ease, color 0.2s ease; }
.theme-qty-minus:hover, .theme-qty-plus:hover { background: var( --color-primary ); color: var( --color-primary-foreground ); }
.theme-qty-input {
	width: 56px; text-align: center; background: transparent; border: none; color: var( --color-tackle-cream );
	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-product-panel { margin-top: 1.5rem; border: 1px solid rgba( 250, 250, 250, 0.1 ); background: color-mix( in srgb, var( --color-tackle-charcoal ) 40%, transparent ); padding: 1.5rem; }
@media ( min-width: 768px ) { .theme-product-panel { padding: 2rem; } }
.theme-product-panel__title { font-size: 0.6875rem; letter-spacing: 0.28em; text-transform: uppercase; font-weight: 700; color: var( --color-primary ); margin-bottom: 1rem; }
.theme-product-panel__body,
.woocommerce-product-details__short-description {
	font-size: 0.9375rem; line-height: 1.7; color: color-mix( in srgb, var( --color-tackle-cream ) 85%, transparent );
	overflow-wrap: break-word; word-break: break-word;
}
.theme-product-panel__body p { margin-bottom: 1em; }
.theme-product-panel__body p:last-child { margin-bottom: 0; }

.related-products-section { margin-top: 5rem; padding-top: 3.5rem; border-top: 1px solid rgba( 250, 250, 250, 0.1 ); }
@media ( min-width: 768px ) { .related-products-section { margin-top: 6rem; } }
.related-products-heading-row { margin-bottom: 2.5rem; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem; }
.related-products-title { margin-top: 0.75rem; font-weight: 700; text-transform: uppercase; line-height: 0.95; letter-spacing: -0.01em; font-size: 1.875rem; }
@media ( min-width: 768px ) { .related-products-title { font-size: 2.25rem; } }
@media ( min-width: 1024px ) { .related-products-title { font-size: 2.75rem; } }
.related-products-viewall { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.6875rem; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; color: color-mix( in srgb, var( --color-tackle-cream ) 70%, transparent ); transition: color 0.2s ease; }
.related-products-viewall:hover { color: var( --color-primary ); }

/* --------------------------------------------------------------------------
   SHOP ARCHIVE
   -------------------------------------------------------------------------- */

.shop-archive-main { padding: 3rem 0 5rem; }
.shop-archive-header { text-align: center; margin-bottom: 3rem; }

/* --------------------------------------------------------------------------
   404
   -------------------------------------------------------------------------- */

.not-found-main { min-height: 60vh; display: flex; align-items: center; }
.not-found-wrap { text-align: center; padding: 4rem 0; }
.not-found-code { font-family: var( --font-display ); font-weight: 700; font-size: 4rem; margin-bottom: 1rem; }
.not-found-message { font-size: 1.25rem; color: color-mix( in srgb, var( --color-foreground ) 70%, transparent ); margin-bottom: 1rem; }
.not-found-link { color: var( --color-primary ); text-decoration: underline; }

/* --------------------------------------------------------------------------
   GENERIC PAGE
   -------------------------------------------------------------------------- */

.page-content-wrap { padding-block: 3.5rem 5rem; }
body.woocommerce-checkout .page-content-wrap { padding-block: 1.25rem 3rem; }
body.woocommerce-checkout .page-title { max-width: 80rem; margin-inline: auto; margin-bottom: 1.25rem; }
.page-title { font-weight: 700; text-transform: uppercase; font-size: 2rem; margin-bottom: 2rem; }
.entry-content { font-size: 1rem; line-height: 1.7; }
.entry-content p { margin-bottom: 1em; }

/* --------------------------------------------------------------------------
   THANK YOU PAGE
   -------------------------------------------------------------------------- */

body.theme-thankyou-page { overflow-x: hidden; }
body.theme-thankyou-page .woocommerce-order,
body.theme-thankyou-page .woocommerce-order-overview,
body.theme-thankyou-page .woocommerce-customer-details,
body.theme-thankyou-page .woocommerce-order-details {
	font-family: var( --font-body );
	color: var( --color-foreground );
}
body.theme-thankyou-page .woocommerce-order h2,
body.theme-thankyou-page .woocommerce-order-details__title {
	font-family: var( --font-display );
	font-weight: 700;
	text-transform: uppercase;
	font-size: 1.5rem;
	padding: 0 0 1rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview {
	display: flex; flex-wrap: wrap; gap: 1rem; padding: 0; margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-overview li {
	background: var( --color-card ); border: 1px solid var( --color-border );
	padding: 0.75rem 1.25rem; list-style: none;
}
body.theme-thankyou-page .woocommerce-order-details table {
	width: 100%; table-layout: fixed; border-collapse: collapse; margin: 1.5rem 0;
}
body.theme-thankyou-page .woocommerce-order-details table th,
body.theme-thankyou-page .woocommerce-order-details table td {
	border: 1px solid var( --color-border ); padding: 0.75rem; 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; }

@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; }

/* --------------------------------------------------------------------------
   WOOCOMMERCE CHECKOUT BLOCK
   -------------------------------------------------------------------------- */

body.woocommerce-checkout .site-main { padding-top: 0; padding-bottom: 4rem; }

body.woocommerce-checkout .wc-block-checkout {
	display: block;
	font-family: var( --font-body );
	color: var( --color-foreground );
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-medium {
	display: grid !important;
	grid-template-columns: minmax( 0, 1fr ) !important;
	gap: var( --checkout-gap ) !important;
	align-items: start !important;
}

@media ( min-width: 1024px ) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large,
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-medium {
		grid-template-columns: minmax( 0, 7fr ) minmax( 0, 5fr ) !important;
		gap: 3rem !important;
	}
}

body.woocommerce-checkout .wc-block-checkout__main {
	order: 1 !important;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	order: 2 !important;
}

body.woocommerce-checkout .wc-block-checkout__main,
body.woocommerce-checkout .wc-block-checkout__sidebar {
	min-width: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input textarea,
body.woocommerce-checkout .wc-block-components-combobox input,
body.woocommerce-checkout .wc-block-components-select select,
body.woocommerce-checkout .wc-block-components-country-input select,
body.woocommerce-checkout .wc-block-components-state-input select {
	width: 100% !important;
	max-width: none !important;
	font-family: var( --font-body ) !important;
	font-size: 1rem !important;
	font-weight: 400 !important;
	font-style: normal !important;
	background-color: var( --color-tackle-ink ) !important;
	border: 1px solid rgba( 250, 250, 250, 0.2 ) !important;
	color: var( --color-tackle-cream ) !important;
	border-radius: 0 !important;
	min-height: 48px !important;
	box-shadow: none !important;
	-webkit-appearance: none !important;
	appearance: none !important;
}
body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-text-input textarea:focus,
body.woocommerce-checkout .wc-block-components-combobox input:focus,
body.woocommerce-checkout .wc-block-components-select select:focus,
body.woocommerce-checkout .wc-block-components-country-input select:focus,
body.woocommerce-checkout .wc-block-components-state-input select:focus,
body.woocommerce-checkout .wc-block-components-text-input input:focus-visible,
body.woocommerce-checkout .wc-block-components-text-input textarea:focus-visible,
body.woocommerce-checkout .wc-block-components-combobox input:focus-visible,
body.woocommerce-checkout .wc-block-components-select select:focus-visible {
	outline: none !important;
	border-color: var( --color-primary ) !important;
	box-shadow: 0 0 0 2px color-mix( in srgb, var( --color-primary ) 30%, transparent ) !important;
}
body.woocommerce-checkout .wc-block-components-text-input input::placeholder,
body.woocommerce-checkout .wc-block-components-text-input textarea::placeholder,
body.woocommerce-checkout .wc-block-components-combobox input::placeholder {
	color: color-mix( in srgb, var( --color-tackle-cream ) 35%, transparent ) !important;
	font-family: var( --font-body ) !important;
}
body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-block-components-select label,
body.woocommerce-checkout .wc-block-components-combobox label {
	font-family: var( --font-body ) !important;
	font-size: 0.6875rem !important;
	font-weight: 700 !important;
	letter-spacing: 0.26em !important;
	text-transform: uppercase !important;
	color: var( --color-tackle-cream ) !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;
	font-weight: 700 !important;
	letter-spacing: 0.24em !important;
	text-transform: uppercase !important;
	min-height: 56px !important;
}
body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
	background-color: color-mix( in srgb, var( --color-primary ) 90%, black ) !important;
	opacity: 1 !important;
}

body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 0; font-family: var( --font-body );
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	background-color: color-mix( in srgb, var( --color-tackle-charcoal ) 70%, transparent ) !important;
	border: 1px solid rgba( 250, 250, 250, 0.12 ) !important;
	border-radius: 0 !important;
	padding: 2rem !important;
	position: relative !important;
}
body.woocommerce-checkout .wc-block-checkout__sidebar::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 3px;
	background: var( --color-primary );
}
body.woocommerce-checkout .wc-block-cart-items { font-family: var( --font-body ); }
