/*
Theme Name: Farmhouse Pet Supply
Theme URI: https://farmhousepetsupply.com
Author: Farmhouse Pet Supply
Author URI: https://farmhousepetsupply.com
Description: Premium custom theme for Farmhouse Pet Supply - Family tested, dog approved.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: farmhouse-pet-supply
*/

/* ==========================================================================
   CSS Custom Properties - Design System
   ========================================================================== */

:root {
    /* Colors */
    --color-background: #FAF9F6;
    --color-text-primary: #2C2E30;
    --color-brand-green: #2D5530;
    --color-brand-amber: #D4A373;
    --color-brand-amber-hover: #C4935F;
    --color-muted-grey: #6B6B6B; /* WCAG AA compliant - 4.5:1 contrast ratio */
    --color-accent-light: #F5F1EB;
    --color-white: #FFFFFF;
    --color-black: #000000;

    /* Glassmorphism */
    --glass-bg: rgba(249, 247, 242, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-blur: 15px;

    /* Typography - Premium Editorial */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Lora', Georgia, 'Times New Roman', serif;

    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;

    --line-height-base: 1.8;
    --line-height-tight: 1.15;
    --line-height-relaxed: 1.9;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 800px;

    /* Borders & Shadows */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --border-radius-xl: 16px;
    --border-radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

* {
    margin: 0;
    padding: 0;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: var(--line-height-base);
    color: var(--color-text-primary);
    background-color: var(--color-background);
}

/* Accessibility: Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-brand-green);
    color: var(--color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    z-index: 10000;
    text-decoration: none;
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--color-brand-amber);
    outline-offset: 2px;
}

/* Screen Reader Only Text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
}

.screen-reader-text:focus {
    clip: auto;
    clip-path: none;
    height: auto;
    width: auto;
    margin: 0;
    overflow: visible;
}

/* Enhanced Focus Styles for Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--color-brand-green);
    outline-offset: 2px;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: var(--line-height-tight);
    letter-spacing: -0.01em;
}

h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 600;
    line-height: var(--line-height-tight);
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-lg);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

@media (min-width: 768px) {
    h1 {
        font-size: var(--font-size-5xl);
    }

    h2 {
        font-size: var(--font-size-4xl);
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: var(--font-size-6xl);
    }
}

p {
    margin-bottom: var(--spacing-md);
}

p:last-child {
    margin-bottom: 0;
}

strong, b {
    font-weight: 600;
}

/* ==========================================================================
   Layout Utilities
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

@media (min-width: 768px) {
    .container {
        padding-left: var(--spacing-xl);
        padding-right: var(--spacing-xl);
    }
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding-top: var(--spacing-3xl);
    padding-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
    .section {
        padding-top: var(--spacing-4xl);
        padding-bottom: var(--spacing-4xl);
    }
}

.section--cream {
    background-color: var(--color-accent-light);
}

.text-center {
    text-align: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--primary {
    background-color: var(--color-brand-amber);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-brand-amber-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--secondary {
    background-color: var(--color-brand-green);
    color: var(--color-white);
}

.btn--secondary:hover {
    background-color: #234426;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline {
    background-color: transparent;
    color: var(--color-brand-green);
    border: 2px solid var(--color-brand-green);
}

.btn--outline:hover {
    background-color: var(--color-brand-green);
    color: var(--color-white);
}

.btn--large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background: var(--color-background);
    border-bottom: 1px solid #E5E2DB;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition-base);
}

.site-header.is-scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Dynamic logo shrink on scroll - 15% smaller */
.site-header.is-scrolled .logo img {
    height: 59.5px; /* 70px * 0.85 = 59.5px */
    transition: height var(--transition-base);
}

@media (max-width: 768px) {
    .site-header.is-scrolled .logo img {
        height: 42.5px; /* 50px * 0.85 = 42.5px */
    }
}

/* Smooth transition for logo */
.logo img {
    transition: height var(--transition-base);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

/* Logo */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
    }
}

/* Main Navigation */
.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: block;
        flex-grow: 1;
        padding-left: 2rem;
    }
}

.main-nav ul {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.main-nav a {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-fast);
    position: relative;
}

.main-nav a:hover {
    color: var(--color-brand-green);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-brand-green);
    transition: width var(--transition-base);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Header Actions (Cart + CTA) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Cart Icon */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: var(--color-text-primary, #2C2E30);
    text-decoration: none;
    transition: color var(--transition-fast, 0.15s ease);
    border-radius: 50%;
}

.cart-icon:hover {
    color: var(--color-brand-green, #2D5530);
    background: rgba(45, 85, 48, 0.08);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--color-brand-green, #2D5530);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: 10px;
    line-height: 1;
}

@media (max-width: 768px) {
    .header-actions .cta-button {
        display: none;
    }
    
    .cart-icon {
        width: 40px;
        height: 40px;
    }
}

/* Mobile cart link in mobile nav */
.mobile-cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-primary, #2C2E30);
    text-decoration: none;
    font-weight: 500;
}

.mobile-cart-link svg {
    flex-shrink: 0;
}

.mobile-cart-link .cart-count {
    position: static;
    display: inline;
    min-width: auto;
    height: auto;
    padding: 0;
    background: none;
    color: var(--color-brand-green, #2D5530);
    font-size: inherit;
    font-weight: 600;
}

/* CTA Button */
.cta-button {
    display: none;
    background: var(--color-brand-amber);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .cta-button {
        display: inline-block;
    }
}

.cta-button:hover {
    background: #C49366;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text-primary);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-background);
    border-bottom: 1px solid #E5E2DB;
    padding: 1.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.mobile-nav.is-open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid #E5E2DB;
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
}

.mobile-nav a:hover {
    color: var(--color-brand-green);
}

.mobile-nav .mobile-cta {
    display: inline-block;
    background: var(--color-brand-amber);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 0.5rem;
    text-align: center;
}

.mobile-nav .mobile-cta:hover {
    background: #C49366;
    color: #fff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: var(--spacing-2xl) 0;
}

/* Glassmorphism Trust Box */
.trust-box {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    max-width: 600px;
}

@media (min-width: 768px) {
    .trust-box {
        padding: var(--spacing-2xl);
    }
}

.trust-box__tagline {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .trust-box__tagline {
        font-size: var(--font-size-3xl);
    }
}

.trust-box__description {
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-lg);
}

/* ==========================================================================
   Meet the Family Section
   ========================================================================== */

.family-section {
    background-color: var(--color-accent-light);
}

.family-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.family-section__title {
    margin-bottom: var(--spacing-md);
}

.family-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.family-card {
    flex: 1 1 250px;
    max-width: 280px;
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.family-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.family-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    border-radius: var(--border-radius-full);
    overflow: hidden;
    background-color: var(--color-accent-light);
}

.family-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-card__name {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-xs);
}

.family-card__role {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Product Showcase Section
   ========================================================================== */

.products-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.product-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image {
    aspect-ratio: 1 / 1;
    background-color: var(--color-accent-light);
    overflow: hidden;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: var(--spacing-lg);
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

.product-card__tagline {
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
}

/* ==========================================================================
   Trust Signals Bar
   ========================================================================== */

.trust-bar {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-bar__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl) 0;
}

@media (min-width: 768px) {
    .trust-bar__inner {
        gap: var(--spacing-2xl);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.trust-item__icon {
    width: 24px;
    height: 24px;
    color: var(--color-brand-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand__logo {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
}

.footer-brand__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
}

.footer-brand__location {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.footer-brand__location svg {
    width: 16px;
    height: 16px;
}

.footer-column__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
}

.newsletter-form__input {
    flex: 1;
    padding: var(--spacing-md);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-md);
    color: var(--color-white);
}

.newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form__input:focus {
    outline: none;
    border-color: var(--color-brand-amber);
}

.newsletter-form__btn {
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-brand-amber);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.newsletter-form__btn:hover {
    background-color: var(--color-brand-amber-hover);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--font-size-sm);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background-color: var(--color-brand-amber);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Product Landing Page
   ========================================================================== */

.product-hero {
    position: relative;
    padding: var(--spacing-3xl) 0;
}

.product-hero__grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .product-hero__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.product-hero__content {
    order: 2;
}

@media (min-width: 1024px) {
    .product-hero__content {
        order: 1;
    }
}

.product-hero__tagline {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 500;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-md);
}

.product-hero__title {
    margin-bottom: var(--spacing-md);
}

.product-hero__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-xl);
}

.product-hero__media {
    order: 1;
}

@media (min-width: 1024px) {
    .product-hero__media {
        order: 2;
    }
}

.product-hero__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Specs Preview Box (Glassmorphism) */
.specs-preview {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.specs-preview__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-md);
}

.specs-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .specs-preview__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-item {
    text-align: center;
}

.spec-item__value {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-brand-green);
}

.spec-item__label {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Image Gallery
   ========================================================================== */

.gallery-section {
    background-color: var(--color-accent-light);
}

.gallery-grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-md);
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    aspect-ratio: 1 / 1;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Spec Showdown Comparison Module
   ========================================================================== */

.spec-showdown {
    padding: var(--spacing-3xl) 0;
}

.spec-showdown__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.spec-showdown__title {
    margin-bottom: var(--spacing-sm);
}

.spec-showdown__subtitle {
    color: var(--color-muted-grey);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-text-primary);
}

.comparison-header__item {
    padding: var(--spacing-lg);
    text-align: center;
    font-weight: 600;
    color: var(--color-white);
}

.comparison-header__item--ours {
    background-color: var(--color-brand-green);
}

.comparison-header__item--theirs {
    background-color: var(--color-muted-grey);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-accent-light);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: var(--spacing-lg);
    text-align: center;
}

.comparison-cell__label {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
    margin-bottom: var(--spacing-xs);
}

.comparison-cell__value {
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.comparison-cell--ours .comparison-cell__value {
    color: var(--color-brand-green);
    font-size: var(--font-size-2xl);
}

.comparison-cell--theirs .comparison-cell__value {
    color: var(--color-muted-grey);
}

/* ==========================================================================
   Video Section
   ========================================================================== */

.video-section {
    background-color: var(--color-accent-light);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--color-text-primary);
    cursor: pointer;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-text-primary);
}

.video-placeholder__play {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-brand-amber);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.video-placeholder__play:hover {
    transform: scale(1.1);
    background-color: var(--color-brand-amber-hover);
}

.video-placeholder__play svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    margin-left: 4px;
}

.video-caption {
    text-align: center;
    margin-top: var(--spacing-md);
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   Why Farmhouse Section
   ========================================================================== */

.features-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.features-grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    border-radius: var(--border-radius-full);
    color: var(--color-brand-green);
}

.feature-card__icon svg {
    width: 32px;
    height: 32px;
}

.feature-card__title {
    margin-bottom: var(--spacing-sm);
}

.feature-card__description {
    color: var(--color-muted-grey);
    font-size: var(--font-size-sm);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta-section {
    background-color: var(--color-accent-light);
    text-align: center;
}

.cta-section__price {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.cta-section__price span {
    font-size: var(--font-size-lg);
    font-weight: 400;
    color: var(--color-muted-grey);
}

.cta-section__button {
    margin-bottom: var(--spacing-lg);
}

.cta-section__guarantee {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-brand-green);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.cta-section__guarantee svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.reviews-grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.review-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
}

.review-card__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--spacing-md);
    color: var(--color-brand-amber);
}

.review-card__stars svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.review-card__text {
    margin-bottom: var(--spacing-md);
    font-style: italic;
    color: var(--color-text-primary);
}

.review-card__author {
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.review-card__date {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

/* ==========================================================================
   About Page
   ========================================================================== */

.about-hero-section {
    padding: var(--spacing-3xl) 0 var(--spacing-2xl);
}

.about-hero-content {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.about-hero-content h1 {
    margin-bottom: var(--spacing-md);
}

.about-hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--color-muted-grey);
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-image-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-story {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.about-story__lead {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xl);
}

.about-story p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
    .about-hero-subtitle {
        font-size: var(--font-size-2xl);
    }

    .about-story__lead {
        font-size: var(--font-size-3xl);
    }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-md);
    background-color: var(--color-white);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-brand-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent-light);
    border-radius: var(--border-radius-full);
    color: var(--color-brand-green);
    flex-shrink: 0;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   Lightbox
   ========================================================================== */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    padding: var(--spacing-xl);
}

.lightbox.is-open {
    display: flex;
}

.lightbox__content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox__content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    font-size: var(--font-size-2xl);
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-green {
    color: var(--color-brand-green);
}

.text-amber {
    color: var(--color-brand-amber);
}

.text-grey {
    color: var(--color-muted-grey);
}

.bg-cream {
    background-color: var(--color-accent-light);
}

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }
.mb-2xl { margin-bottom: var(--spacing-2xl); }

/* ==========================================================================
   Premium Authority Overhaul - v2.0
   ========================================================================== */

/* Enhanced Hero Section */
.hero--premium {
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero--premium .trust-box {
    max-width: 680px;
    padding: var(--spacing-2xl) var(--spacing-xl);
}

@media (min-width: 768px) {
    .hero--premium .trust-box {
        padding: var(--spacing-3xl);
    }
}

.trust-box__tagline--premium {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .trust-box__tagline--premium {
        font-size: var(--font-size-5xl);
    }
}

@media (min-width: 1024px) {
    .trust-box__tagline--premium {
        font-size: var(--font-size-6xl);
    }
}

.trust-box__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    opacity: 0.85;
    margin-bottom: var(--spacing-xl);
    line-height: var(--line-height-relaxed);
}

/* Spec Showdown Module */
.spec-showdown-home {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-accent-light) 100%);
}

.spec-showdown-home__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.spec-showdown-home__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-lg);
}

.spec-showdown-home__title {
    margin-bottom: var(--spacing-md);
}

.spec-showdown-home__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
}

/* Comparison Box */
.comparison-box {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .comparison-box {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xl);
    }
}

.comparison-box__side {
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.comparison-box__side--ours {
    background-color: var(--color-white);
    border: 3px solid var(--color-brand-green);
    box-shadow: var(--shadow-lg);
}

.comparison-box__side--theirs {
    background-color: var(--color-white);
    border: 2px solid var(--color-muted-grey);
    opacity: 0.8;
}

.comparison-box__label {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
}

.comparison-box__side--ours .comparison-box__label {
    color: var(--color-brand-green);
}

.comparison-box__side--theirs .comparison-box__label {
    color: var(--color-muted-grey);
}

.comparison-box__value {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
    .comparison-box__value {
        font-size: var(--font-size-5xl);
    }
}

.comparison-box__side--ours .comparison-box__value {
    color: var(--color-brand-green);
}

.comparison-box__side--theirs .comparison-box__value {
    color: var(--color-muted-grey);
}

.comparison-box__desc {
    font-size: var(--font-size-sm);
    color: var(--color-muted-grey);
}

.comparison-box__bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: var(--spacing-md);
}

.comparison-box__stat {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-brand-green);
    margin-bottom: var(--spacing-sm);
}

.comparison-box__stat span {
    font-size: var(--font-size-4xl);
}

/* Technical Authority Block */
.technical-block {
    padding: var(--spacing-4xl) 0;
    background-color: var(--color-text-primary);
    color: var(--color-white);
}

.technical-block__grid {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .technical-block__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.technical-block__content {
    order: 2;
}

@media (min-width: 1024px) {
    .technical-block__content {
        order: 1;
    }
}

.technical-block__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--border-radius-full);
    margin-bottom: var(--spacing-lg);
}

.technical-block__title {
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
}

.technical-block__text {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

.technical-block__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.technical-block__feature {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.technical-block__feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    flex-shrink: 0;
    color: var(--color-brand-green);
}

.technical-block__feature-icon svg {
    width: 24px;
    height: 24px;
}

.technical-block__feature-title {
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.technical-block__feature-desc {
    font-size: var(--font-size-sm);
    opacity: 0.7;
}

.technical-block__visual {
    order: 1;
}

@media (min-width: 1024px) {
    .technical-block__visual {
        order: 2;
    }
}

.technical-block__image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

/* Wisconsin Trust Badge */
.wisconsin-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--color-white);
    border: 2px solid var(--color-brand-green);
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-brand-green);
    margin-top: var(--spacing-xl);
}

.wisconsin-badge svg {
    width: 20px;
    height: 20px;
}

/* Enhanced Family Section */
.family-section--premium {
    position: relative;
}

.family-section--premium .family-section__header {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.family-section__tagline {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    font-style: italic;
    margin-top: var(--spacing-md);
}

/* Sticky Header Enhancement */
.site-header--premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
}

.site-header--premium.is-scrolled {
    box-shadow: var(--shadow-md);
}

.site-header--premium .site-header__inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: var(--spacing-lg);
}

.site-header--premium .site-logo {
    justify-self: center;
    grid-column: 2;
}

.site-header--premium .main-nav {
    justify-self: start;
    grid-column: 1;
}

.site-header--premium .header-cta {
    justify-self: end;
    grid-column: 3;
}

.header-cta__button {
    display: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    background-color: var(--color-brand-green);
    color: var(--color-white);
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all var(--transition-fast);
}

@media (min-width: 768px) {
    .header-cta__button {
        display: inline-flex;
        align-items: center;
        gap: var(--spacing-sm);
    }
}

.header-cta__button:hover {
    background-color: #234426;
    transform: translateY(-1px);
}

/* Body padding for fixed header */
body.has-premium-header {
    padding-top: 80px;
}

/* Footer Technical Specs Menu */
.footer-specs {
    margin-top: var(--spacing-lg);
}

.footer-specs__title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer-specs__list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-specs__link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-specs__link:hover {
    color: var(--color-white);
}

.footer-specs__link svg {
    width: 14px;
    height: 14px;
    color: var(--color-brand-green);
}

/* Premium Section Headers */
.section-header--premium {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header--premium h2 {
    margin-bottom: var(--spacing-md);
}

.section-header--premium p {
    font-size: var(--font-size-lg);
    color: var(--color-muted-grey);
    line-height: var(--line-height-relaxed);
}

/* ==========================================================================
   Premium Footer - 4 Column Layout
   ========================================================================== */

.site-footer--premium {
    background-color: var(--color-text-primary);
    color: var(--color-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-grid--premium {
    display: grid;
    flex-direction: column;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

@media (min-width: 768px) {
    .footer-grid--premium {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.site-footer--premium .footer-brand__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.7;
}

.site-footer--premium .footer-brand__location {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer--premium .footer-column__title {
    color: var(--color-white);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.site-footer--premium .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    padding: var(--spacing-xs) 0;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.site-footer--premium .footer-links a:hover {
    color: var(--color-white);
}

.site-footer--premium .newsletter-form__input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.site-footer--premium .newsletter-form__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer--premium .newsletter-form__btn {
    background-color: var(--color-brand-amber);
    color: var(--color-white);
}

.site-footer--premium .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
}

.site-footer--premium .footer-bottom__copyright {
    color: rgba(255, 255, 255, 0.5);
}

.site-footer--premium .social-links a {
    color: rgba(255, 255, 255, 0.6);
}

.site-footer--premium .social-links a:hover {
    color: var(--color-white);
}

/* ==========================================================================
   Premium Editorial Components - $200K Brand Transformation
   ========================================================================== */

/* Premium Hero Section */
.hero-premium {
    padding: var(--space-16, 7rem) 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-premium__inner {
    display: grid;
    flex-direction: column;
    gap: var(--space-8, 3rem);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-premium__inner {
        grid-template-columns: 1.1fr 0.9fr;
        gap: var(--space-12, 5rem);
    }
}

.hero-premium__content {
    max-width: 650px;
}

.hero-premium__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4, 1rem);
}

.hero-premium__image-frame {
    padding: var(--space-4, 1rem);
    border-radius: var(--radius-xl, 24px);
}

.hero-premium__image-frame img {
    width: 100%;
    border-radius: var(--radius-lg, 16px);
}

/* Products Grid Premium */
.products-grid-premium {
    display: grid;
    flex-direction: column;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .products-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card-premium {
    overflow: hidden;
    transition: transform var(--duration-base, 300ms) var(--ease-out, ease-out),
                box-shadow var(--duration-base, 300ms) var(--ease-out, ease-out);
}

.product-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl, 0 24px 60px rgba(0, 0, 0, 0.12));
}

.product-card-premium__image {
    aspect-ratio: 4/3;
    overflow: hidden;
    max-height: 450px; /* Constrain billboard-sized images */
}

.product-card-premium__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain uniform aspect ratio */
    transition: transform var(--duration-slow, 500ms) var(--ease-out, ease-out);
}

.product-card-premium:hover .product-card-premium__image img {
    transform: scale(1.05);
}

.product-card-premium__content {
    padding: var(--space-6, 2rem);
}

.product-card-premium__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-xl, 1.25rem);
    font-weight: 700;
    margin-bottom: var(--space-2, 0.5rem);
}

.product-card-premium__tagline {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-muted, #6B7280);
    margin-bottom: var(--space-4, 1rem);
}

.product-card-premium__price {
    font-weight: 600;
    color: var(--color-forest, #2D5530);
    margin-bottom: var(--space-5, 1.5rem);
}

/* Pack Grid */
.pack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6, 2rem);
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pack-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Trust Bar Premium */
.trust-bar-premium {
    background: var(--color-canvas, #FAF9F6);
    border-top: 1px solid var(--color-light-grey, #E5E2DB);
    border-bottom: 1px solid var(--color-light-grey, #E5E2DB);
    padding: var(--space-8, 3rem) 0;
}

.trust-bar-premium__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .trust-bar-premium__inner {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3, 0.75rem);
    text-align: center;
}

.trust-item-premium__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-full, 9999px);
}

.trust-item-premium__icon svg {
    width: 24px;
    height: 24px;
}

.trust-item-premium__text {
    font-size: var(--text-sm, 0.875rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2E30);
}

/* About Hero Premium */
.about-hero-premium {
    padding: var(--space-20, 9rem) 0 var(--space-12, 5rem);
    text-align: center;
}

.about-hero-premium__content {
    max-width: 900px;
    margin: 0 auto;
}

/* Founders Section */
.founders-image-frame {
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-xl, 0 24px 60px rgba(0, 0, 0, 0.12));
}

.founders-image {
    width: 100%;
    height: auto;
    display: block;
}

.founders-letter {
    padding: var(--space-6, 2rem) 0;
}

@media (min-width: 1024px) {
    .founders-letter {
        padding: var(--space-8, 3rem);
    }
}

.founders-letter__content p {
    margin-bottom: var(--space-5, 1.5rem);
}

.founders-signature {
    display: flex;
    flex-direction: column;
    gap: var(--space-1, 0.25rem);
}

/* Testers Grid */
.testers-grid {
    display: grid;
    flex-direction: column;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .testers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.tester-card {
    overflow: hidden;
    transition: transform var(--duration-base, 300ms) var(--ease-out, ease-out);
}

.tester-card:hover {
    transform: translateY(-4px);
}

.tester-card__image {
    aspect-ratio: 1;
    overflow: hidden;
}

.tester-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tester-card__content {
    padding: var(--space-6, 2rem);
}

.tester-card__name {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-2xl, 1.5rem);
    font-weight: 700;
    margin-bottom: var(--space-1, 0.25rem);
}

.tester-card__role {
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-forest, #2D5530);
    font-weight: 600;
    margin-bottom: var(--space-5, 1.5rem);
}

.tester-card__specs {
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 0.75rem);
    padding-top: var(--space-4, 1rem);
    border-top: 1px solid var(--color-light-grey, #E5E2DB);
}

.tester-card__spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    position: relative;
}

.tester-card__spec::before {
    content: attr(data-spec);
    position: absolute;
    left: 0;
    top: -14px;
    font-family: var(--font-mono, monospace);
    font-size: 8px;
    letter-spacing: 0.1em;
    color: var(--color-forest, #2D5530);
    opacity: 0.5;
}

.tester-card__spec-value {
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.tester-card__spec-label {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-muted, #6B7280);
}

/* Values Grid */
.values-grid {
    display: grid;
    flex-direction: column;
    gap: var(--space-6, 2rem);
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    text-align: center;
    padding: var(--space-8, 3rem) var(--space-6, 2rem);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-5, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-lg, 16px);
}

.value-card__icon svg {
    width: 32px;
    height: 32px;
}

.value-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: var(--text-xl, 1.25rem);
    font-weight: 700;
    margin-bottom: var(--space-4, 1rem);
}

.value-card__text {
    font-size: var(--text-base, 1rem);
    color: var(--color-muted, #6B7280);
    line-height: 1.7;
}

/* Location Card */
.location-card {
    padding: var(--space-8, 3rem);
    text-align: center;
}

.location-card__map {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4, 1rem);
    padding-bottom: var(--space-6, 2rem);
    border-bottom: 1px solid var(--color-light-grey, #E5E2DB);
    margin-bottom: var(--space-6, 2rem);
}

.location-card__pin {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-forest, #2D5530);
    color: white;
    border-radius: var(--radius-full, 9999px);
}

.location-card__pin svg {
    width: 28px;
    height: 28px;
}

.location-card__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3, 0.75rem);
}

.location-card__stat-value {
    font-family: var(--font-mono, monospace);
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-charcoal, #2C2E30);
}

/* ==========================================================================
   HIGH-END EDITORIAL OVERHAUL - "Modern Farmhouse Luxury"
   ========================================================================== */

/* 1. GLOBAL CSS REFINEMENT
   ========================================================================== */

/* Rich off-white/cream background */
html {
    background-color: #FAF9F6;
}

/* Typography: Headlines (Lora) */
h1, .display-hero {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: var(--color-text-primary);
}

/* Typography: Body (Inter) */
body {
    font-family: var(--font-body);
    line-height: 1.8;
    letter-spacing: 0.01em;
    background-color: #FAF9F6;
}

/* Glassmorphism Panel */
.glass-panel {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(250, 249, 246, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-xl);
}

/* HERO GLASS OVERRIDE - Clear as window */
.home-hero-cinematic .glass-panel,
.home-hero-cinematic__card.glass-panel,
section.home-hero-cinematic .home-hero-cinematic__card {
    background: rgba(255, 255, 255, 0.01) !important;
    background-color: transparent !important;
    backdrop-filter: blur(50px) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
}

/* 2. HOMEPAGE CINEMATIC HERO - Full-Width with Glass Card
   ========================================================================== */

.home-hero-cinematic {
    position: relative;
    height: auto;
    min-height: 115vh !important;
    display: flex;
    align-items: center;
    /* KILL SPACING - section gap handled by next element only */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Full-width background container */
.home-hero-cinematic__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero-cinematic__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* EXPOSE THE PRODUCT - full dog bed visible as page anchor */
    object-position: center bottom !important;
}

/* Light gradient overlay - subtle, lets image shine through */
.home-hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* Content container - Grid-based for right-side card positioning */
.home-hero-cinematic__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    flex-wrap: nowrap;
    gap: 1.25rem;
    padding: 0 clamp(24px, 5vw, 60px);
}

/* CLEAR AS WINDOW - 99% TRANSPARENT */
/* Dog 100% visible through blur-only separation */
.home-hero-cinematic__card,
.home-hero-cinematic__card.glass-panel {
    grid-column: 7 / 13;
    background: rgba(255, 255, 255, 0.01) !important;
    background-color: rgba(255, 255, 255, 0.01) !important;
    backdrop-filter: blur(50px) !important;
    -webkit-backdrop-filter: blur(50px) !important;
    /* SHARP RIM - clear glass edge */
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px;
    /* Push content down within card */
    padding: calc(12vh - 95px) clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3.5rem);
    max-width: 620px;
    box-shadow: none !important;
}

/* Location tagline - Pure white with floating shadow for clear glass */
.home-hero-cinematic__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.home-hero-cinematic__tagline svg {
    width: 14px;
    height: 14px;
    color: var(--color-amber, #D4A373);
}

/* Headline - HEAVY DROP SHADOW for clear glass legibility */
.home-hero-cinematic__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #FFFFFF !important;
    margin: 0 0 1.25rem;
    /* MAXIMUM CONTRAST - full black shadow */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1) !important;
}

.home-hero-cinematic__headline .accent {
    color: var(--color-amber, #D4A373);
}

/* Subtitle - Pure white with floating shadow for clear glass */
.home-hero-cinematic__subtitle {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.7;
    color: #FFFFFF;
    margin: 0 0 2rem;
    max-width: 480px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

/* CTA Buttons */
.home-hero-cinematic__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Primary button inside hero - WHITE text with 700 weight + glow */
.home-hero-cinematic__cta .btn-premium--primary {
    color: #FFFFFF !important;
    font-weight: 700;
    /* Subtle glow for clear glass background */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.home-hero-cinematic__cta .btn-premium--primary:hover {
    color: #FFFFFF !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Light outline button variant for dark backgrounds */
.btn-premium--light {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
}

.btn-premium--light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Desktop: Full bed reveal */
@media (min-width: 1024px) {
    .home-hero-cinematic {
        height: auto;
        min-height: 115vh !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .home-hero-cinematic__card {
        grid-column: 7 / 13;
    }
}

/* Tablet adjustments */
@media (max-width: 1023px) {
    .home-hero-cinematic {
        height: auto;
        min-height: 115vh !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .home-hero-cinematic__container {
        display: block;
    }

    .home-hero-cinematic__card {
        max-width: 520px;
        margin-left: auto;
        padding-top: 8vh;
        /* CLEAR AS WINDOW - 99% transparent */
        background: rgba(255, 255, 255, 0.01) !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
    }

    .home-hero-cinematic__img {
        /* EXPOSE PRODUCT - full bed visible */
        object-position: center bottom !important;
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .home-hero-cinematic {
        height: auto;
        min-height: 100vh;
        align-items: flex-end;
        padding-bottom: 2rem;
        margin-bottom: 0 !important;
    }

    .home-hero-cinematic__container {
        display: block;
    }

    .home-hero-cinematic__img {
        /* EXPOSE PRODUCT - full bed visible */
        object-position: center bottom !important;
    }

    /* MOBILE: Card centered with 12px padding */
    .home-hero-cinematic__container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        max-width: 100% !important;
    width: 100% !important;
        padding: 0 !important;
        grid-column: 1 / -1 !important;
    }

    .home-hero-cinematic__card {
        width: auto !important;
        max-width: 90% !important;
        padding: 12px !important;
        border-radius: 8px;
        text-align: center !important;
        margin: 0 auto !important;
    }

    /* MOBILE: Hide tagline and subtitle - keep headline and buttons */
    .home-hero-cinematic__tagline,
    .home-hero-cinematic__subtitle {
        display: none !important;
    }

    /* MOBILE: Tight headline with no margins */
    .home-hero-cinematic__headline {
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.1 !important;
    }

    /* MOBILE: Tight button spacing */
    .home-hero-cinematic__cta {
        flex-direction: column;
        margin-top: 2px !important;
        gap: 5px !important;
    }

    .home-hero-cinematic__cta .btn-premium {
        width: 100%;
        justify-content: center;
    }

    /* MOBILE: Make "Our Story" button text black */
    .home-hero-cinematic__cta .btn-premium--outline.btn-premium--light {
        color: #000000 !important;
    }
}

/* Legacy hero-cinematic (kept for compatibility)
   ========================================================================== */

.hero-cinematic {
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    padding: 0 clamp(24px, 5vw, 80px);
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FAF9F6 0%, #F0EDE6 50%, #FAF9F6 100%);
}

.hero-cinematic__content {
    grid-column: 2 / 6;
    z-index: 2;
}

.hero-cinematic__glass {
    padding: clamp(2rem, 5vw, 4rem);
}

.hero-cinematic__tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1.5rem;
}

.hero-cinematic__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-cinematic__headline .accent {
    color: var(--color-brand-green);
    font-weight: 800;
}

.hero-cinematic__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: rgba(44, 46, 48, 0.75);
    margin-bottom: 2rem;
    max-width: 480px;
}

.hero-cinematic__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-cinematic__visual {
    grid-column: 7 / 13;
    position: relative;
    z-index: 1;
}

.hero-cinematic__image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.hero-cinematic__image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1024px) {
    .hero-cinematic {
        flex-direction: column;
        min-height: auto;
        padding: 6rem 24px;
    }

    .hero-cinematic__content {
        grid-column: 1;
        order: 2;
    }

    .hero-cinematic__visual {
        grid-column: 1;
        order: 1;
        margin-bottom: 2rem;
    }
}

/* 3. TECHNICAL BLUEPRINT SECTION
   ========================================================================== */

.blueprint-section {
    background: var(--color-text-primary);
    padding: clamp(4rem, 10vh, 8rem) 0;
    position: relative;
    overflow: hidden;
}

.blueprint-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(45, 85, 48, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(45, 85, 48, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.blueprint-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    position: relative;
}

.blueprint-grid__header {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 4rem;
}

.blueprint-grid__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-amber);
    margin-bottom: 1rem;
}

.blueprint-grid__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 1rem;
}

.blueprint-grid__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

.blueprint-grid__image {
    grid-column: 1 / 8;
    position: relative;
}

.blueprint-grid__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blueprint-grid__card {
    grid-column: 6 / 11;
    grid-row: 2;
    position: relative;
    z-index: 2;
    margin-top: -120px;
}

.blueprint-card {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.blueprint-card__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1rem;
}

.blueprint-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.blueprint-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.blueprint-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(45, 85, 48, 0.05);
    border-radius: 12px;
    position: relative;
}

.blueprint-stat--hero {
    background: var(--color-brand-green);
    color: white;
}

.blueprint-stat__value {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.blueprint-stat--hero .blueprint-stat__value {
    color: white;
}

.blueprint-stat__label {
    font-size: 0.8rem;
    color: rgba(44, 46, 48, 0.6);
    font-weight: 500;
}

.blueprint-stat--hero .blueprint-stat__label {
    color: rgba(255, 255, 255, 0.8);
}

/* Callout Leaders */
.callout-leader {
    position: absolute;
    border-left: 1px solid var(--color-text-primary);
    border-bottom: 1px solid var(--color-text-primary);
    pointer-events: none;
}

.callout-leader::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--color-brand-green);
    border-radius: 50%;
}

.callout-leader__text {
    position: absolute;
    bottom: -8px;
    left: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-primary);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .blueprint-grid__image {
        grid-column: 1 / -1;
    }

    .blueprint-grid__card {
        grid-column: 1 / -1;
        margin-top: -60px;
    }
}

/* 4. WISCONSIN PACK - BROKEN GRID
   ========================================================================== */

.pack-section {
    position: relative;
    padding: clamp(4rem, 10vh, 8rem) 0;
    overflow: hidden;
}

/* Topographical Map Watermark */
.pack-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 200 Q100 150 150 200 T250 200 T350 200'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 180 Q120 130 180 180 T280 180 T380 180'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M30 220 Q80 270 140 220 T240 220 T340 220'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M60 160 Q130 110 190 160 T290 160 T390 160'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M40 240 Q90 290 150 240 T250 240 T350 240'/%3E%3Ccircle cx='200' cy='200' r='40' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 600px 600px;
    opacity: 0.03;
    pointer-events: none;
}

.pack-section__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pack-section__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 1rem;
}

.pack-section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.pack-section__subtitle {
    font-size: 1.125rem;
    color: var(--color-muted-grey);
    max-width: 500px;
    margin: 0 auto;
}

/* Broken Grid Layout */
.broken-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(6, 80px);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    position: relative;
    z-index: 1;
}

.broken-grid__item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.broken-grid__item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.broken-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mike - Large, left offset */
.broken-grid__item--mike {
    grid-column: 1 / 5;
    grid-row: 1 / 4;
}

/* Melissa - Medium, overlaps Mike */
.broken-grid__item--melissa {
    grid-column: 4 / 7;
    grid-row: 2 / 5;
    z-index: 2;
}

/* Riley - Large, right side */
.broken-grid__item--riley {
    grid-column: 7 / 11;
    grid-row: 1 / 4;
}

/* Lexy - Small, bottom overlap */
.broken-grid__item--lexy {
    grid-column: 10 / 13;
    grid-row: 2 / 5;
    z-index: 3;
}

/* Pandora - Medium, bottom center */
.broken-grid__item--pandora {
    grid-column: 5 / 9;
    grid-row: 4 / 7;
    z-index: 4;
}

.broken-grid__item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.broken-grid__item-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.broken-grid__item-role {
    font-size: 0.75rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .broken-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(5, 200px);
    }

    .broken-grid__item--mike {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .broken-grid__item--melissa {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .broken-grid__item--riley {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .broken-grid__item--lexy {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .broken-grid__item--pandora {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
}

/* 5. GLOBAL MOTION - REVEAL ANIMATIONS
   Progressive Enhancement: Content visible by default
   ========================================================================== */

/* Default state: VISIBLE (content always accessible) */
.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Only hide elements when JS is ready to animate */
.reveal-ready .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Visible state after intersection */
.reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Direction variants - only apply when JS ready */
.reveal-ready .reveal--left {
    transform: translateX(-30px);
}

.reveal-ready .reveal--left.is-visible {
    transform: translateX(0);
}

.reveal-ready .reveal--right {
    transform: translateX(30px);
}

.reveal-ready .reveal--right.is-visible {
    transform: translateX(0);
}

.reveal-ready .reveal--scale {
    transform: scale(0.95);
}

.reveal-ready .reveal--scale.is-visible {
    transform: scale(1);
}

/* Staggered delays */
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* Glass Card Enhancement */
.glass-card {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.glass-card--elevated {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

/* Premium Button Styles */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-premium--primary {
    background: var(--color-brand-amber);
    color: white;
}

.btn-premium--primary:hover {
    background: #C49366;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 163, 115, 0.3);
}

.btn-premium--outline {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-primary);
}

.btn-premium--outline:hover {
    background: var(--color-text-primary);
    color: white;
}

.btn-premium--lg {
    padding: 1.25rem 2.5rem;
    font-size: 1rem;
}

/* Section Premium Spacing */
.section-premium {
    padding: clamp(4rem, 8vh, 6rem) 0; /* Tightened vertical rhythm */
}

/* Container Premium */
.container-premium {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Container for text-only sections */
.container-text {
    max-width: 720px;
}

/* Split Screen Layout */
.split-screen {
    display: grid;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-screen {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }

    .split-screen--asymmetric {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

/* Spec Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .spec-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.spec-cell {
    padding: 2rem 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.spec-cell--highlight {
    background: var(--color-brand-green);
}

.spec-cell__value {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.spec-cell__label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Profile Cards */
.profile-card {
    text-align: center;
}

.profile-card__image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.profile-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card__name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.profile-card__role {
    font-size: 0.8rem;
    color: var(--color-brand-green);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.profile-card__stats {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-card__stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    padding: 0.25rem 0;
}

.profile-card__stat-value {
    font-weight: 600;
}

.profile-card__stat-label {
    color: var(--color-muted-grey);
}

/* Wisconsin Badge Premium */
.wisconsin-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: white;
    border: 2px solid var(--color-brand-green);
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-brand-green);
}

.wisconsin-badge-premium svg {
    width: 20px;
    height: 20px;
}

/* Wisconsin Anchor Pattern */
.wisconsin-anchor {
    position: relative;
}

.wisconsin-anchor::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--color-brand-green);
    border-radius: 2px;
}

/* Text Utilities */
.text-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
}

.text-lead {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    line-height: 1.7;
    color: rgba(44, 46, 48, 0.75);
}

.text-body-lg {
    font-size: 1.125rem;
    line-height: 1.8;
}

.text-spec {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-muted-grey);
}

.display-1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

.display-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.display-3 {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

/* Spacing utilities */
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ==========================================================================
   HOMEPAGE COHERENCE & VERTICAL RHYTHM OVERHAUL
   Editorial Narrative Flow
   ========================================================================== */

/* 1. TIGHTENED VERTICAL RHYTHM
   ========================================================================== */

/* Reduce section spacing from 10vh to 5vh */
.section-premium {
    padding: clamp(3rem, 5vh, 5rem) 0;
}

/* Section overlap utility */
.section-overlap-up {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

/* Hero extends slightly for overlap effect */
.hero-cinematic {
    padding-bottom: 120px;
    margin-bottom: -80px;
}

/* 2. "COMPARISON ENGINE" - Math of Superiority
   12-column layout with floating glass panel
   ========================================================================== */

.comparison-engine {
    position: relative;
    /* FORCED 30px - yanks section up to where it belongs */
    margin-top: 30px !important;
    z-index: 10;
    padding: 0 clamp(24px, 5vw, 80px);
}

/* Mobile: Same 30px gap for consistency */
@media (max-width: 767px) {
    .comparison-engine {
        margin-top: 30px !important;
    }
}

.comparison-engine__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.comparison-engine__image {
    grid-column: 1 / 7;
    grid-row: 1;
    position: relative;
}

.comparison-engine__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
    min-height: 500px;
}

.comparison-engine__panel {
    grid-column: 5 / 12;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.comparison-engine__glass {
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    width: 100%;
}

.comparison-engine__header {
    margin-bottom: 2rem;
}

.comparison-engine__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-green);
    margin-bottom: 0.75rem;
}

.comparison-engine__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* High-contrast comparison display */
.comparison-display {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.comparison-display__side {
    flex: 1;
    padding: 2rem 1.5rem;
    text-align: center;
}

.comparison-display__side--ours {
    background: var(--color-brand-green);
    border-radius: 12px 0 0 12px;
    color: white;
}

.comparison-display__side--theirs {
    background: rgba(0, 0, 0, 0.04);
    border-radius: 0 12px 12px 0;
}

/* Vertical divider line */
.comparison-display__divider {
    width: 2px;
    background: var(--color-brand-green);
    position: relative;
}

.comparison-display__divider::before {
    content: 'VS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-brand-green);
    border-radius: 4px;
    border: 2px solid var(--color-brand-green);
}

.comparison-display__value {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.comparison-display__side--ours .comparison-display__value {
    color: white;
}

.comparison-display__side--theirs .comparison-display__value {
    color: var(--color-muted-grey);
}

.comparison-display__unit {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.comparison-display__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* Bottom stats row */
.comparison-engine__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.comparison-engine__stat {
    text-align: center;
}

.comparison-engine__stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-brand-green);
}

.comparison-engine__stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted-grey);
    margin-top: 0.25rem;
}

@media (max-width: 1024px) {
    .comparison-engine__image {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .comparison-engine__image img {
        border-radius: 20px 20px 0 0;
        min-height: 300px;
    }

    .comparison-engine__panel {
        grid-column: 1 / -1;
        grid-row: 2;
        padding: 0;
        margin-top: -40px;
    }
}

/* 3. TECHNICAL BLUEPRINT - 45D Foam Section
   Light charcoal background with white leader lines
   ========================================================================== */

.blueprint-beds {
    background: #333;
    padding: clamp(4rem, 8vh, 7rem) 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern */
.blueprint-beds::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.blueprint-beds__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
    position: relative;
}

.blueprint-beds__content {
    grid-column: 1 / 6;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blueprint-beds__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-amber);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blueprint-beds__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.blueprint-beds__text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.blueprint-beds__specs {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

.blueprint-beds__spec {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    min-width: 120px;
}

.blueprint-beds__spec-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-brand-green);
    margin-bottom: 0.25rem;
}

.blueprint-beds__spec-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
}

/* Product visual with leader lines */
.blueprint-beds__visual {
    grid-column: 6 / 13;
    position: relative;
}

.blueprint-beds__image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blueprint-beds__image-container img {
    width: 100%;
    border-radius: 12px;
}

/* Bed Section - Feature Row */
.blueprint-beds__features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 0.5rem;
}

.blueprint-beds__feature {
    flex: 0 1 calc(33.333% - 1rem);
    min-width: 200px;
    max-width: 280px;
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.blueprint-beds__feature:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.blueprint-beds__feature-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 0.875rem;
    color: var(--color-brand-amber, #C8A47E);
}

.blueprint-beds__feature-icon svg {
    width: 100%;
    height: 100%;
}

.blueprint-beds__feature-title {
    font-family: 'Lora', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #FAF9F6;
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.blueprint-beds__feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Mobile responsiveness for bed features */
@media (max-width: 768px) {
    .blueprint-beds__features {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .blueprint-beds__feature {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
        flex: 0 0 100%;
        max-width: 100%;
        min-width: auto;
    }

    .blueprint-beds__feature-icon {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        margin: 0;
    }

    .blueprint-beds__feature-content {
        flex: 1;
    }

    .blueprint-beds__feature-title {
        margin-bottom: 0.25rem;
    }
}

/* ==========================================================================
   BLUEPRINT PADS - Premium Pee Pad Section
   ========================================================================== */

.blueprint-pads {
    background: #FDFBF7;
    padding: clamp(4rem, 8vh, 7rem) 0;
    position: relative;
}

.blueprint-pads__inner {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
}

.blueprint-pads__content {
    grid-column: 1 / 6;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blueprint-pads__label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-amber, #C8A47E);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blueprint-pads__label svg {
    width: 16px;
    height: 16px;
}

.blueprint-pads__title {
    font-family: 'Lora', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #333333;
    margin-bottom: 1.5rem;
}

.blueprint-pads__text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 2rem;
}

/* Stat Boxes */
.blueprint-pads__specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.blueprint-pads__spec {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    flex: 1;
}

.blueprint-pads__spec-icon {
    width: 40px;
    height: 40px;
    color: var(--color-brand-amber, #C8A47E);
    flex-shrink: 0;
}

.blueprint-pads__spec-icon svg {
    width: 100%;
    height: 100%;
}

.blueprint-pads__spec-value {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333;
}

.blueprint-pads__spec-label {
    font-size: 0.8rem;
    color: #777777;
    margin-top: 0.25rem;
}

/* Amber CTA Button */
.btn-premium--amber {
    background: var(--color-brand-amber, #C8A47E);
    color: white;
    border: none;
}

.btn-premium--amber:hover {
    background: #B8946E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(200, 164, 126, 0.3);
}

/* Visual Column */
.blueprint-pads__visual {
    grid-column: 6 / 13;
    position: relative;
}

.blueprint-pads__image-container {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.blueprint-pads__image-container img {
    aspect-ratio: 37 / 54;
    object-fit: cover;
    width: 100%;
    border-radius: 0;
}

/* Annotations */
.pads-annotation {
    position: absolute;
    display: flex;
    align-items: center;
    pointer-events: none;
}

/* Indicator Dots with Pulse Animation */
.pads-annotation__dot {
    width: 14px;
    height: 14px;
    background: var(--color-brand-amber, #C8A47E);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(200, 164, 126, 0.6);
    flex-shrink: 0;
    position: relative;
}

/* Pulse Effect */
.pads-annotation__dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--color-brand-amber, #C8A47E);
    animation: annotation-pulse 2.5s ease-out infinite;
}

/* Inner highlight for depth */
.pads-annotation__dot::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

@keyframes annotation-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Stagger pulse animations */
.pads-annotation--top .pads-annotation__dot::before {
    animation-delay: 0s;
}
.pads-annotation--middle .pads-annotation__dot::before {
    animation-delay: 0.5s;
}
.pads-annotation--bottom .pads-annotation__dot::before {
    animation-delay: 1s;
}
.pads-annotation--side .pads-annotation__dot::before {
    animation-delay: 1.5s;
}

/* Connecting Lines - Amber gradient */
.pads-annotation__line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-brand-amber, #C8A47E) 0%, rgba(200, 164, 126, 0.4) 100%);
}

.pads-annotation--top .pads-annotation__line,
.pads-annotation--middle .pads-annotation__line,
.pads-annotation--bottom .pads-annotation__line {
    background: linear-gradient(90deg, rgba(200, 164, 126, 0.4) 0%, var(--color-brand-amber, #C8A47E) 100%);
}

/* Label Tags - Glassmorphism */
.pads-annotation__label {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 164, 126, 0.3);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 3px rgba(0, 0, 0, 0.04);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pads-annotation__label:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.1),
        0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Primary Feature Labels: All-caps sans-serif */
.pads-annotation__label-primary {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D2A26;
    line-height: 1.3;
}

/* Supporting Detail Text: Lora italic, smaller */
.pads-annotation__label-detail {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.65rem;
    color: #6B6560;
    line-height: 1.4;
}

/* Legacy support - if single text node in label */
.pads-annotation__label:not(:has(.pads-annotation__label-primary)) {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2D2A26;
}

.pads-annotation--top {
    top: 22%;
    right: calc(8% + 150px);
    flex-direction: row-reverse;
}

.pads-annotation--top .pads-annotation__line {
    margin-right: 8px;
}

.pads-annotation--middle {
    top: calc(48% - 50px);
    right: calc(8% + 50px);
    flex-direction: row-reverse;
}

.pads-annotation--middle .pads-annotation__line {
    width: 80px;
    margin-right: 8px;
}

.pads-annotation--bottom {
    bottom: calc(26% - 50px);
    right: 8%;
    flex-direction: row-reverse;
}

.pads-annotation--bottom .pads-annotation__line {
    width: 50px;
    margin-right: 8px;
}

.pads-annotation--side {
    top: calc(50% + 75px);
    left: 8%;
    transform: translateY(-50%);
}

.pads-annotation--side .pads-annotation__line {
    width: 40px;
    margin-left: 8px;
}

/* Features Row */
.blueprint-pads__features-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem clamp(24px, 5vw, 80px) 0;
}

.blueprint-pads__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    gap: 1.25rem;
}

.blueprint-pads__feature {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.blueprint-pads__feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-brand-amber, #C8A47E);
}

.blueprint-pads__feature-icon svg {
    width: 100%;
    height: 100%;
}

.blueprint-pads__feature-title {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 1rem;
}

.blueprint-pads__feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

/* Comparison Feature */
.blueprint-pads__comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #FDFBF7;
    border-radius: 12px;
}

.blueprint-pads__comparison-item {
    text-align: center;
}

.blueprint-pads__comparison-item--ours .blueprint-pads__comparison-value {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand-amber, #C8A47E);
}

.blueprint-pads__comparison-item--theirs .blueprint-pads__comparison-value {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #999999;
}

.blueprint-pads__comparison-unit {
    font-size: 0.75rem;
    color: #777777;
    display: block;
}

.blueprint-pads__comparison-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888888;
    margin-top: 0.25rem;
    display: block;
}

.blueprint-pads__comparison-vs {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .blueprint-pads__inner {
        gap: 32px;
    }
    
    .blueprint-pads__content {
        grid-column: 1 / 7;
    }
    
    .blueprint-pads__visual {
        grid-column: 7 / 13;
    }
}

@media (max-width: 768px) {
    .blueprint-pads__inner {
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
    gap: 1.25rem;
    }
    
    .blueprint-pads__title {
        font-size: 1.75rem;
    }
    
    .blueprint-pads__specs {
        flex-direction: column;
    }
    
    .blueprint-pads__features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pads-annotation {
        display: none;
    }
    
    .blueprint-pads__comparison {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blueprint-pads__comparison-vs {
        padding: 0.5rem 0;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .pads-annotation__dot::before {
        animation: none;
    }

    .pads-annotation__label {
        transition: none;
    }
}



/* White Leader Lines */
.leader-line {
    position: absolute;
    pointer-events: none;
}

.leader-line__line {
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    fill: none;
}

.leader-line__dot {
    width: 8px;
    height: 8px;
    background: var(--color-brand-green);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px var(--color-brand-green);
}

.leader-line__label {
    position: absolute;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: white;
    background: rgba(45, 85, 48, 0.9);
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    white-space: nowrap;
}

/* Positioned leader lines */
.leader-line--density {
    top: 15%;
    right: 0;
}

.leader-line--density .leader-line__dot {
    right: 100px;
    top: 0;
}

.leader-line--density .leader-line__label {
    right: -20px;
    top: -10px;
}

.leader-line--support {
    top: 38%;
    right: 0;
}

.leader-line--support .leader-line__dot {
    right: 80px;
    top: 0;
}


.leader-line--support .leader-line__label {
    right: -20px;
    top: -10px;
}

.leader-line--base {
    top: 61%;
    right: 0;
}

.leader-line--base .leader-line__dot {
    right: 90px;
    top: 0;
}

.leader-line--base .leader-line__label {
    right: -20px;
    top: -10px;
}

.leader-line--fourth {
    top: 84%;
    right: 0;
}

.leader-line--fourth .leader-line__dot {
    right: 85px;
    top: 0;
}

.leader-line--fourth .leader-line__label {
    right: -20px;
    top: -10px;
}

@media (max-width: 1024px) {
    .blueprint-beds__content {
        grid-column: 1 / -1;
        text-align: center;
    }

    .blueprint-beds__specs {
        justify-content: center;
    }

    .blueprint-beds__visual {
        grid-column: 1 / -1;
    }

    .leader-line {
        display: none;
    }
}

/* 4. "THE PACK" - Asymmetrical Scatter
   Different z-index, overlapping photos, parallax
   ========================================================================== */

.pack-scatter {
    position: relative;
    padding: 8vh 0; /* Tightened vertical rhythm */
    overflow: hidden;
}

/* Topographical watermark */
.pack-scatter::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 200 Q100 150 150 200 T250 200 T350 200'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M50 180 Q120 130 180 180 T280 180 T380 180'/%3E%3Cpath fill='none' stroke='%232D5530' stroke-width='0.5' d='M30 220 Q80 270 140 220 T240 220 T340 220'/%3E%3Ccircle cx='200' cy='200' r='60' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%232D5530' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 500px 500px;
    opacity: 0.025;
    pointer-events: none;
}

.pack-scatter__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pack-scatter__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    position: relative;
    height: 600px;
}

/* Scattered photo items with parallax data attribute */
.scatter-item {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scatter-item:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.2);
}

.scatter-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scatter-item__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
    color: white;
}

.scatter-item__name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
}

.scatter-item__role {
    font-size: 0.7rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Positioned items with different z-indexes for overlap */
.scatter-item--mike {
    width: 220px;
    height: 280px;
    left: 5%;
    top: 10%;
    z-index: 2;
    transform: rotate(-3deg);
}

.scatter-item--melissa {
    width: 200px;
    height: 260px;
    left: 20%;
    top: 35%;
    z-index: 3;
    transform: rotate(2deg);
}

.scatter-item--riley {
    width: 280px;
    height: 320px;
    left: 38%;
    top: 5%;
    z-index: 6;
    transform: rotate(1deg);
}

.scatter-item--lexy {
    width: 240px;
    height: 300px;
    right: 18%;
    top: 12%;
    z-index: 5;
    transform: rotate(-2deg);
}

.scatter-item--pandora {
    width: 180px;
    height: 220px;
    right: 2%;
    bottom: 8%;
    z-index: 3; /* Lower than Lexy (5) to prevent text overlap */
    transform: rotate(4deg) translateX(40px); /* Push right to clear Lexy's text */
}

/* Z-Index Audit: Ensure no card shadow overlaps adjacent text */
.scatter-item--mike { z-index: 2; }
.scatter-item--melissa { z-index: 3; }
.scatter-item--riley { z-index: 6; }
.scatter-item--lexy { z-index: 5; }
.scatter-item--pandora { z-index: 2; } /* Below Lexy */

/* Prevent Riley/Lexy overlap at tablet widths */
@media (min-width: 769px) and (max-width: 1024px) {
    .scatter-item--riley {
        width: 200px;
        height: 240px;
        left: 32%;
        top: 8%;
    }

    .scatter-item--lexy {
        width: 180px;
        height: 230px;
        right: 8%;
        top: 10%;
    }

    .scatter-item--mike {
        width: 180px;
        height: 230px;
    }

    .scatter-item--melissa {
        width: 160px;
        height: 210px;
    }

    .scatter-item--pandora {
        width: 150px;
        height: 190px;
        right: 0%;
        bottom: 5%;
        transform: rotate(4deg) translateX(30px);
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .scatter-item--riley {
        width: 240px;
        height: 280px;
        left: 35%;
    }

    .scatter-item--lexy {
        width: 210px;
        height: 260px;
        right: 16%;
        top: 10%;
    }

    .scatter-item--pandora {
        right: 0%;
        bottom: 5%;
        transform: rotate(4deg) translateX(50px);
    }
}

@media (min-width: 1201px) and (max-width: 1400px) {
    .scatter-item--riley {
        width: 260px;
        height: 300px;
        left: 36%;
    }

    .scatter-item--lexy {
        width: 220px;
        height: 280px;
        right: 15%;
    }

    .scatter-item--pandora {
        right: 1%;
        transform: rotate(4deg) translateX(45px);
    }
}

@media (max-width: 768px) {
    .pack-scatter__container {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px; /* Increased from 1rem for proper spacing */
    }

    .scatter-item {
        position: relative;
        max-width: 100% !important;
    width: 100% !important;
        height: 200px !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        z-index: 1 !important; /* Reset z-index on mobile to prevent shadow overlap */
    }

    .scatter-item--riley {
        grid-column: 1 / -1;
        height: 250px !important;
    }
}

/* 5. GLOBAL REFINEMENT
   ========================================================================== */

/* Progressive blur on sticky header */
.site-header {
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* Bold h2 headings with intentional scale */
h2, .display-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Tighter section transitions */
.section-tight {
    padding: clamp(2.5rem, 4vh, 4rem) 0;
}

/* Remove harsh section borders */
.section-premium + .section-premium {
    border-top: none;
}

/* Flowing section backgrounds */
.section-flow {
    position: relative;
}

.section-flow::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 80px;
    background: inherit;
    transform: skewY(-1deg);
    z-index: -1;
}

/* ==========================================================================
   6. WOOCOMMERCE PRODUCT TEMPLATE - Technical Blueprint Edition
   ========================================================================== */

/* Product Hero Premium */
.product-hero-premium {
    padding: clamp(6rem, 12vh, 10rem) 0 clamp(3rem, 6vh, 5rem);
}

.product-hero-premium__grid {
    display: grid;
    flex-direction: column;
    gap: var(--space-8, 3rem);
    align-items: start;
}

@media (min-width: 1024px) {
    .product-hero-premium__grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: var(--space-12, 5rem);
    }
}

/* Product Media */
.product-hero-premium__media {
    position: relative;
}

.product-hero-premium__image-frame {
    position: relative;
    border-radius: var(--radius-xl, 24px);
    overflow: hidden;
    background: var(--color-white, #fff);
}

.product-hero-premium__badge {
    position: absolute;
    top: var(--space-4, 1rem);
    left: var(--space-4, 1rem);
    background: var(--color-forest, #2D5530);
    color: white;
    padding: var(--space-2, 0.5rem) var(--space-4, 1rem);
    font-family: var(--font-mono, monospace);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
    z-index: 10;
}

.product-hero-premium__image {
    width: 100%;
    height: auto;
    display: block;
}

.product-hero-premium__thumbnails {
    display: flex;
    gap: var(--space-3, 0.75rem);
    margin-top: var(--space-4, 1rem);
}

.product-hero-premium__thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md, 8px);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.product-hero-premium__thumbnail:hover,
.product-hero-premium__thumbnail.is-active {
    opacity: 1;
}

.product-hero-premium__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Content */
.product-hero-premium__content {
    position: sticky;
    top: 120px;
}

.product-hero-premium__header {
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__price {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-forest, #2D5530);
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__price del {
    color: var(--color-muted, #6B7280);
    font-weight: 400;
    font-size: 0.75em;
}

.product-hero-premium__price ins {
    text-decoration: none;
}

.product-hero-premium__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-4, 1rem);
    margin-bottom: var(--space-6, 2rem);
}

.product-hero-premium__actions .cart {
    display: none; /* Hide default WooCommerce cart form, we use custom button */
}

/* Quick Specs */
.product-hero-premium__specs {
    padding: var(--space-6, 2rem);
    margin-bottom: var(--space-6, 2rem);
}

.specs-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4, 1rem);
}

.specs-mini-grid__item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1, 0.25rem);
}

.specs-mini-grid__value {
    font-family: var(--font-mono, monospace);
    font-size: var(--text-lg, 1.125rem);
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.specs-mini-grid__label {
    font-size: var(--text-xs, 0.75rem);
    color: var(--color-muted, #6B7280);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trust Badges */
.product-hero-premium__trust {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4, 1rem);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    font-size: var(--text-sm, 0.875rem);
    color: var(--color-muted, #6B7280);
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    color: var(--color-forest, #2D5530);
}

/* Product Description */
.product-description {
    color: var(--color-charcoal, #2C2E30);
}

.product-description p {
    margin-bottom: var(--space-5, 1.5rem);
}

.product-description ul,
.product-description ol {
    margin-bottom: var(--space-5, 1.5rem);
    padding-left: var(--space-6, 2rem);
}

.product-description li {
    margin-bottom: var(--space-2, 0.5rem);
}

/* Product Gallery Grid */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4, 1rem);
}

@media (min-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6, 2rem);
    }
}

.product-gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
}

.product-gallery-item__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-item:hover .product-gallery-item__image {
    transform: scale(1.05);
}

/* WooCommerce Price HTML Styling */
.product-card-premium__price .woocommerce-Price-amount {
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

.product-card-premium__price del .woocommerce-Price-amount {
    color: var(--color-muted, #6B7280);
    font-weight: 400;
}

.product-card-premium__price ins {
    text-decoration: none;
}

/* Product Card Badge */
.product-card-premium__badge {
    position: absolute;
    top: var(--space-3, 0.75rem);
    left: var(--space-3, 0.75rem);
    background: var(--color-forest, #2D5530);
    color: white;
    padding: var(--space-1, 0.25rem) var(--space-3, 0.75rem);
    font-family: var(--font-mono, monospace);
    font-size: var(--text-xs, 0.75rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--radius-sm, 4px);
    z-index: 5;
}

.product-card-premium {
    position: relative;
}

/* ==========================================================================
   7. GENERIC PAGE TEMPLATE STYLES
   ========================================================================== */

/* Page Hero - Simple (no background image) */
.page-hero--simple {
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(3rem, 6vh, 5rem);
    text-align: center;
}

.page-hero--simple .page-hero__content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Hero - With Image */
.page-hero--with-image {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: clamp(8rem, 15vh, 12rem) 0 clamp(4rem, 8vh, 6rem);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.page-hero--with-image .page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* Page Content Section */
.page-content {
    padding: clamp(3rem, 6vh, 5rem) 0 clamp(4rem, 8vh, 6rem);
}

.page-content h2 {
    margin-top: var(--space-8, 3rem);
    margin-bottom: var(--space-4, 1rem);
}

.page-content h3 {
    margin-top: var(--space-6, 2rem);
    margin-bottom: var(--space-3, 0.75rem);
}

.page-content p {
    margin-bottom: var(--space-5, 1.5rem);
}

.page-content ul,
.page-content ol {
    margin-bottom: var(--space-5, 1.5rem);
    padding-left: var(--space-6, 2rem);
}

.page-content li {
    margin-bottom: var(--space-2, 0.5rem);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md, 8px);
    margin: var(--space-6, 2rem) 0;
}

.page-content blockquote {
    border-left: 4px solid var(--color-forest, #2D5530);
    padding-left: var(--space-6, 2rem);
    margin: var(--space-6, 2rem) 0;
    font-style: italic;
    color: var(--color-muted, #6B7280);
}

/* Contact Form Styling (for Contact page) */
.page-content .wpcf7-form {
    max-width: 600px;
}

.page-content .wpcf7-form input[type="text"],
.page-content .wpcf7-form input[type="email"],
.page-content .wpcf7-form input[type="tel"],
.page-content .wpcf7-form textarea {
    width: 100%;
    padding: var(--space-4, 1rem);
    border: 1px solid var(--color-border, #E5E2DB);
    border-radius: var(--radius-md, 8px);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: var(--space-4, 1rem);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-content .wpcf7-form input:focus,
.page-content .wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--color-forest, #2D5530);
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.1);
}

.page-content .wpcf7-form input[type="submit"] {
    background: var(--color-forest, #2D5530);
    color: white;
    border: none;
    padding: var(--space-4, 1rem) var(--space-8, 3rem);
    border-radius: var(--radius-md, 8px);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

.page-content .wpcf7-form input[type="submit"]:hover {
    background: var(--color-forest-dark, #1E3A21);
}

/* ==========================================================================
   EDITORIAL STORYTELLING STYLES - About Page
   World-class narrative layout with fluid typography
   ========================================================================== */

/* -----------------------------
   CINEMATIC HERO - Full-Width Editorial
   Full-bleed background with glassmorphism card
   ----------------------------- */
.about-hero-cinematic {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: flex-end; /* Anchor content to bottom */
    overflow: hidden;
}

/* Full-width background container */
.about-hero-cinematic__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-cinematic__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Focus on subjects */
}

/* Dark gradient overlay for text contrast */
.about-hero-cinematic__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

/* Content container */
.about-hero-cinematic__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    padding-bottom: clamp(3rem, 8vh, 6rem);
}

/* Glassmorphism Card - mirrors "Ready to Upgrade" styling */
.about-hero-cinematic__card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 3rem);
    max-width: 580px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Location tag */
.about-hero-cinematic__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.about-hero-cinematic__location svg {
    width: 14px;
    height: 14px;
    color: var(--color-amber, #D4A373);
}

/* Headline - Lora Serif, 800 weight, italicized */
.about-hero-cinematic__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.15;
    color: white;
    margin: 0 0 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Subheadline */
.about-hero-cinematic__subheadline {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 1.5rem;
    max-width: 400px;
}

/* Digital signature */
.about-hero-cinematic__signature {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.about-hero-cinematic__signature-text {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Scroll indicator */
.about-hero-cinematic__scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    animation: about-hero-bounce 2s ease-in-out infinite;
}

.about-hero-cinematic__scroll svg {
    opacity: 0.7;
}

@keyframes about-hero-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* Desktop: Center the card with slight offset */
@media (min-width: 1024px) {
    .about-hero-cinematic {
        min-height: 85vh;
        align-items: center; /* Center vertically on desktop */
    }

    .about-hero-cinematic__container {
        padding-bottom: 0;
    }

    .about-hero-cinematic__card {
        margin-left: 5%; /* Slight left offset */
    }
}

/* Tablet adjustments */
@media (max-width: 1023px) {
    .about-hero-cinematic {
        min-height: 70vh;
    }

    .about-hero-cinematic__img {
        object-position: center center; /* Center on subjects */
    }
}

/* Mobile optimizations */
@media (max-width: 767px) {
    .about-hero-cinematic {
        min-height: 85vh; /* Taller on mobile for card space */
    }

    .about-hero-cinematic__img {
        object-position: 50% 25%; /* Keep subjects visible */
    }

    .about-hero-cinematic__container {
        padding-bottom: 2rem;
    }

    .about-hero-cinematic__card {
        width: 90%; /* Stack at 90% width */
        max-width: none;
        margin: 0 auto;
        padding: 1.5rem;
    }

    .about-hero-cinematic__headline {
        font-size: 1.75rem;
    }

    .about-hero-cinematic__subheadline {
        font-size: 0.9375rem;
    }

    .about-hero-cinematic__signature-text {
        font-size: 1.5rem;
    }
}

/* -----------------------------
   Section 1: The Hook (Legacy - kept for compatibility)
   Large editorial headline
   ----------------------------- */
.editorial-hook {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-canvas, #FAF9F6) 0%, #F5F1EB 100%);
    position: relative;
    padding: 8vh var(--space-6, 1.5rem); /* Reduced from 15vh to 8vh */
}

.editorial-hook__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Magazine-style editorial entry point */
.editorial-hook--magazine .editorial-hook__inner--left {
    text-align: left;
    max-width: 1000px;
    margin-left: 10%; /* 10% left-margin offset for editorial entry point */
}

.editorial-hook__headline--magazine {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .editorial-hook--magazine .editorial-hook__inner--left {
        margin-left: 5%;
        text-align: left;
    }
}

.editorial-hook__location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 2rem;
}

.editorial-hook__location svg {
    width: 16px;
    height: 16px;
}

.editorial-hook__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 1.5rem;
}

.editorial-hook__headline em {
    color: var(--color-forest, #2D5530);
    font-style: italic;
}

.editorial-hook__subtext {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--color-muted, #6B7280);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.editorial-hook__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-muted, #9A9A9A);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: editorial-bounce 2s ease-in-out infinite;
}

.editorial-hook__scroll svg {
    opacity: 0.5;
}

@keyframes editorial-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* -----------------------------
   Section 2: The Story
   Asymmetrical offset grid
   ----------------------------- */
.editorial-story {
    padding: 0;
    background: var(--color-white, #fff);
}

.editorial-story__grid {
    display: grid;
    flex-direction: column;
    min-height: 80vh;
}

@media (min-width: 1024px) {
    .editorial-story__grid {
        grid-template-columns: 55% 45%;
    }
}

/* Editorial Story Hero - Full-width family portrait */
.editorial-story__hero {
    position: relative;
    background-color: #FAF9F6;
}

.editorial-story__image-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #FAF9F6;
}

.editorial-story__img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    object-position: center center;
    background-color: #FAF9F6;
}

/* Subtle gradient blend into editorial bridge */
.editorial-story__image-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, #FAF9F6 100%);
    pointer-events: none;
    z-index: 1;
}

.editorial-story__content {
    padding: var(--space-12, 4rem) var(--space-8, 3rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-white, #fff);
}

@media (min-width: 1024px) {
    .editorial-story__content {
        padding: var(--space-16, 6rem) var(--space-12, 5rem);
    }
}

.editorial-story__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 1rem;
}

.editorial-story__intro {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-style: italic;
    color: var(--color-forest, #2D5530);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.editorial-story__text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-muted, #4B5563);
}

.editorial-story__text p {
    margin-bottom: 1.25rem;
}

.editorial-story__text p:last-child {
    margin-bottom: 0;
}

/* Editorial Story Hero - Responsive: Tablet */
@media (max-width: 1023px) {
    .editorial-story__img {
        max-height: 70vh;
    }

    .editorial-story__image-frame::after {
        height: 120px;
    }
}

/* Editorial Story Hero - Responsive: Mobile */
@media (max-width: 767px) {
    .editorial-story__img {
        max-height: 60vh;
    }

    .editorial-story__image-frame::after {
        height: 80px;
    }
}

/* -----------------------------
   Editorial Bridge: Cutline & Spacer
   Connects hero to narrative
   ----------------------------- */
.editorial-bridge {
    position: relative;
    background: #FAF9F6;
    padding-top: var(--space-6, 2rem);
    padding-bottom: var(--space-4, 1.5rem);
    z-index: 15;
}

.hero-cutline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.1rem;
    font-style: italic;
    color: #555;
    text-align: center;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-bridge__rule {
    display: block;
    width: 33.333%;
    max-width: 200px;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    border: none;
    margin: 40px auto 0;
}

/* Editorial Bridge - Responsive */
@media (max-width: 767px) {
    .editorial-bridge {
        padding-top: 20px;
        padding-bottom: var(--space-3, 1rem);
    }

    .hero-cutline {
        font-size: 1rem;
        padding: 0 var(--space-4, 1rem);
    }

    .editorial-bridge__rule {
        margin-top: 24px;
        width: 25%;
    }
}

/* -----------------------------
   Section 2B: Editorial Text Wrap
   Magazine-style 60/40 split grid
   ----------------------------- */
.editorial-wrap {
    position: relative;
    padding-top: 2vh;
    padding-bottom: 8vh; /* Reduced from 15vh */
    background: #FAF9F6;
    z-index: 20;
}

/* Founders Letter variant */
.editorial-wrap--founders {
    margin-top: 0;
    padding-top: 8vh;
    padding-bottom: 8vh;
}

.editorial-wrap__header {
    text-align: center;
    margin-bottom: 3rem;
}

.editorial-wrap__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin: 0.5rem 0 1rem;
}

.editorial-wrap__intro {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-style: italic;
    color: var(--color-forest, #2D5530);
    max-width: 600px;
    margin: 0 auto;
}

/* 60/40 Founders Grid */
.editorial-wrap__founders-grid {
    display: grid;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .editorial-wrap__founders-grid {
        grid-template-columns: 60% 40%;
        gap: 4rem;
        align-items: start;
    }
}

/* Left column: Story text */
.editorial-wrap__story {
    position: relative;
}

.editorial-wrap__text--dropcap {
    font-size: 1.0625rem;
    line-height: 1.7; /* Tightened from 1.9 */
    color: var(--color-muted, #4B5563);
}

.editorial-wrap__text--dropcap p {
    margin-bottom: 1.5rem;
}

.editorial-wrap__text--dropcap p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 5rem;
    font-weight: 700;
    line-height: 0.75;
    margin-right: 1rem;
    margin-top: 0.15rem;
    color: var(--color-forest, #2D5530);
}

/* Formal signature with script font */
.editorial-wrap__signature {
    position: relative;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.editorial-wrap__signature-watermark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    opacity: 0.06;
    pointer-events: none;
}

.editorial-wrap__signature-logo {
    width: 120px;
    height: auto;
}

.editorial-wrap__signature-text {
    font-family: 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    position: relative;
    z-index: 2;
}

/* Right column: Technical Sidebar */
.editorial-wrap__sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .editorial-wrap__sidebar {
        position: sticky;
        top: 120px;
    }
}

.editorial-wrap__tech-card {
    background: var(--color-charcoal, #1C1917);
    border-radius: 12px;
    padding: 2rem;
    color: white;
}

.editorial-wrap__tech-sketch {
    width: 100%;
    margin-bottom: 1.5rem;
}

.editorial-wrap__tech-sketch svg {
    width: 100%;
    height: auto;
    color: var(--color-amber, #D4A373);
}

.editorial-wrap__tech-caption {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-wrap__tech-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.editorial-wrap__tech-spec {
    text-align: center;
}

.editorial-wrap__tech-value {
    display: block;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-amber, #D4A373);
    line-height: 1;
}

.editorial-wrap__tech-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Mobile adjustments */
@media (max-width: 1023px) {
    .editorial-wrap--founders {
        margin-top: 0;
        padding-top: 6vh;
    }

    .editorial-wrap__signature-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .editorial-wrap--founders {
        margin-top: 0;
        padding-top: var(--space-6, 2rem);
    }

    .editorial-wrap__text--dropcap p:first-of-type::first-letter {
        font-size: 4rem;
        margin-right: 0.75rem;
    }

    .editorial-wrap__tech-card {
        padding: 1.5rem;
    }

    .editorial-wrap__tech-value {
        font-size: 1.5rem;
    }
}

/* Blueprint watermark */
.editorial-wrap__watermark {
    position: absolute;
    bottom: 2rem;
    right: 5%;
    width: 320px;
    height: 240px;
    opacity: 0.06;
    color: var(--color-charcoal, #1C1917);
    pointer-events: none;
    z-index: 1;
}

.editorial-wrap__watermark svg {
    width: 100%;
    height: 100%;
}

/* 12-column editorial grid */
.editorial-wrap__grid {
    display: grid;
    flex-direction: column;
    gap: var(--space-8, 3rem);
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .editorial-wrap__grid {
        grid-template-columns: repeat(12, 1fr);
        gap: var(--space-6, 2rem);
        align-items: start;
    }
}

/* Lead-in column (spans 1-4) */
.editorial-wrap__lead {
    position: relative;
}

@media (min-width: 1024px) {
    .editorial-wrap__lead {
        grid-column: 1 / 5;
        position: sticky;
        top: 120px;
    }
}

.editorial-wrap__lead-inner {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: var(--space-6, 2rem);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.editorial-wrap__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.editorial-wrap__intro {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-style: italic;
    color: var(--color-forest, #2D5530);
    margin: 0;
    line-height: 1.5;
}

/* Body copy column (spans 5-12) */
.editorial-wrap__body {
    position: relative;
}

@media (min-width: 1024px) {
    .editorial-wrap__body {
        grid-column: 5 / 13;
    }
}

.editorial-wrap__text {
    max-width: 700px;
    font-size: 1.0625rem;
    line-height: 1.7; /* Tightened from 1.9 for intimate narrative feel */
    color: var(--color-muted, #4B5563);
}

.editorial-wrap__text p {
    margin-bottom: 1.5rem;
}

.editorial-wrap__text p:last-child {
    margin-bottom: 0;
}

/* Drop cap for first letter - newspaper aesthetic */
.editorial-wrap__text p:first-of-type::first-letter {
    float: left;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 0.8;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    color: var(--color-forest, #2D5530);
}

/* Editorial Wrap - Responsive: Tablet */
@media (max-width: 1023px) {
    .editorial-wrap {
        padding-top: var(--space-6, 2rem);
    }

    .editorial-wrap__watermark {
        width: 240px;
        height: 180px;
        opacity: 0.04;
    }

    .editorial-wrap__lead-inner {
        text-align: center;
    }
}

/* Editorial Wrap - Responsive: Mobile */
@media (max-width: 767px) {
    .editorial-wrap {
        padding-top: var(--space-4, 1.5rem);
        padding-bottom: var(--space-10, 4rem);
    }

    .editorial-wrap__watermark {
        display: none;
    }

    .editorial-wrap__lead-inner {
        padding: var(--space-5, 1.5rem);
        border-radius: 8px;
    }

    .editorial-wrap__headline {
        font-size: 1.5rem;
    }

    .editorial-wrap__text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .editorial-wrap__text p:first-of-type::first-letter {
        font-size: 3.5rem;
        margin-right: 0.5rem;
    }
}

/* -----------------------------
   Section 3: The Problem
   High-contrast charcoal block
   ----------------------------- */
.editorial-problem {
    background: var(--color-charcoal, #1C1C1C);
    color: white;
    position: relative;
    overflow: hidden;
}

.editorial-problem__inner {
    padding: 8vh 0; /* Reduced for tighter vertical rhythm */
}

.editorial-problem__grid {
    display: grid;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .editorial-problem__grid {
        grid-template-columns: 200px 1fr;
        gap: 4rem;
    }
}

.editorial-problem__stat {
    text-align: center;
}

@media (min-width: 768px) {
    .editorial-problem__stat {
        text-align: left;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding-right: 3rem;
    }
}

.editorial-problem__stat-value {
    display: block;
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 500;
    line-height: 1;
    color: var(--color-amber, #D4A373);
}

.editorial-problem__stat-label {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    margin-top: 0.75rem;
}

.editorial-problem__content {
    max-width: 650px;
}

.text-label--amber {
    color: var(--color-amber, #D4A373) !important;
}

.editorial-problem__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    margin: 0.5rem 0 1.5rem;
    color: white;
}

.editorial-problem__text {
    font-size: 1.0625rem;
    line-height: 1.7; /* Tightened for intimate feel */
    color: rgba(255,255,255,0.8);
}

.editorial-problem__text p {
    margin-bottom: 1.25rem;
}

.editorial-problem__text strong {
    color: white;
    font-weight: 600;
}

/* -----------------------------
   Section 4: The Solution
   Clean narrative with specs
   ----------------------------- */
.editorial-solution {
    background: var(--color-canvas, #FAF9F6);
    padding: 8vh var(--space-6, 1.5rem); /* Reduced for tighter rhythm */
}

.editorial-solution__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.editorial-solution__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 2rem;
}

.editorial-solution__content {
    text-align: left;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--color-muted, #4B5563);
    margin-bottom: 3rem;
}

.editorial-solution__content p {
    margin-bottom: 1.25rem;
}

.editorial-solution__content strong {
    color: var(--color-forest, #2D5530);
    font-weight: 600;
}

.editorial-solution__specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}

@media (max-width: 640px) {
    .editorial-solution__specs {
        flex-direction: column;
        text-align: center;
    }
}

.editorial-solution__spec {
    text-align: center;
}

.editorial-solution__spec-value {
    display: block;
    font-family: var(--font-mono, 'IBM Plex Mono', monospace);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

.editorial-solution__spec-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted, #9A9A9A);
    margin-top: 0.25rem;
}

/* -----------------------------
   Section 5: The Pack / Testers
   Editorial card grid
   ----------------------------- */
.editorial-testers {
    background: var(--color-white, #fff);
    padding: 8vh var(--space-6, 1.5rem); /* Reduced for tighter rhythm */
}

.editorial-testers__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.editorial-testers__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin: 0.5rem 0 1rem;
}

.editorial-testers__subtitle {
    font-size: 1.0625rem;
    color: var(--color-muted, #6B7280);
    line-height: 1.7;
}

.editorial-testers__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    flex-wrap: nowrap;
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.tester-card-editorial {
    background: var(--color-canvas, #FAF9F6);
    border-radius: var(--radius-lg, 12px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tester-card-editorial:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.tester-card-editorial__image {
    aspect-ratio: 4/5;
    overflow: hidden;
}

.tester-card-editorial__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.tester-card-editorial:hover .tester-card-editorial__image img {
    transform: scale(1.05);
}

.tester-card-editorial__content {
    padding: 1.5rem;
}

.tester-card-editorial__name {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.25rem;
}

.tester-card-editorial__role {
    font-size: 0.875rem;
    color: var(--color-forest, #2D5530);
    font-weight: 500;
    margin-bottom: 1rem;
}

.tester-card-editorial__specs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tester-card-editorial__spec {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tester-card-editorial__spec:last-child {
    border-bottom: none;
}

.tester-card-editorial__spec dt {
    color: var(--color-muted, #9A9A9A);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.6875rem;
}

.tester-card-editorial__spec dd {
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

/* -----------------------------
   Section 6: The Promise
   Full-width cinematic background
   ----------------------------- */
.editorial-promise {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.editorial-promise__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.editorial-promise__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-promise__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.4) 0%,
        rgba(28, 28, 28, 0.85) 100%
    );
}

.editorial-promise__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-16, 6rem) var(--space-6, 1.5rem);
    max-width: 800px;
}

.editorial-promise__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: white;
    margin-bottom: 1.5rem;
}

.editorial-promise__text {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.editorial-promise__signature {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--color-amber, #D4A373);
}

/* -----------------------------
   CTA Section
   ----------------------------- */
.editorial-cta {
    background: var(--color-forest, #2D5530);
    padding: 8vh var(--space-6, 1.5rem); /* Reduced for tighter rhythm */
}

.editorial-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.editorial-cta__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.editorial-cta__text {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* =============================================================================
   WOOCOMMERCE SINGLE PRODUCT - HIGH-END TECHNICAL DOSSIER
   ============================================================================= */

/* Remove WooCommerce Defaults */
.woocommerce-breadcrumb,
.woocommerce-product-details__short-description,
.woocommerce-tabs,
.product_meta,
.related.products > h2 {
    display: none;
}

/* -----------------------------
   Product Editorial Header
   Full-bleed gallery with overlapping title
   ----------------------------- */
.product-editorial-header {
    position: relative;
    min-height: 70vh;
    display: grid;
    flex-direction: column;
    background: var(--color-cream, #FAF9F6);
}

@media (min-width: 1024px) {
    .product-editorial-header {
        grid-template-columns: 1fr 1fr;
        min-height: 80vh;
    }
}

/* Gallery Side */
.product-gallery-editorial {
    position: relative;
    background: #f0f0f0;
    overflow: hidden;
}

.product-gallery-editorial__main {
    position: relative;
    width: 100%;
    height: 50vh;
}

@media (min-width: 1024px) {
    .product-gallery-editorial__main {
        position: sticky;
        top: 0;
        height: 100vh;
    }
}

.product-gallery-editorial__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    background: white;
}

.product-gallery-editorial__thumbnails {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.product-gallery-editorial__thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.product-gallery-editorial__thumb:hover,
.product-gallery-editorial__thumb.active {
    border-color: var(--color-forest, #2D5530);
}

.product-gallery-editorial__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Title Side */
.product-title-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
    .product-title-block {
        padding: 4rem 3rem;
    }
}

@media (min-width: 1024px) {
    .product-title-block {
        padding: 6rem 4rem;
        min-height: 100vh;
        position: sticky;
        top: 0;
    }
}

.product-title-block__category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-title-block__category svg {
    width: 14px;
    height: 14px;
}

.product-title-block__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 1rem;
}

.product-title-block__sku {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.75rem;
    color: var(--color-muted, #9A9A9A);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.product-title-block__excerpt {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-charcoal-light, #4A4A4A);
    max-width: 480px;
    margin-bottom: 2rem;
}

/* Quick Specs Inline */
.product-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.product-quick-spec {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.product-quick-spec__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted, #9A9A9A);
}

.product-quick-spec__value {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-charcoal, #2C2C2C);
}

/* Desktop CTA in Title Block */
.product-title-block__cta {
    display: none;
}

@media (min-width: 1024px) {
    .product-title-block__cta {
        display: block;
        margin-top: auto;
        padding-top: 2rem;
    }
}

/* -----------------------------
   Sticky Buy Box (Desktop)
   ----------------------------- */
.product-buy-box {
    display: none;
}

@media (min-width: 1024px) {
    .product-buy-box {
        display: block;
        position: fixed;
        top: 50%;
        right: 2rem;
        transform: translateY(-50%);
        width: 320px;
        background: white;
        border-radius: 16px;
        box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.05);
        padding: 2rem;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    .product-buy-box.is-visible {
        opacity: 1;
        visibility: visible;
    }

    .product-buy-box.is-hidden {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-50%) translateX(20px);
    }
}

.product-buy-box__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-buy-box__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-buy-box__price del {
    font-size: 1rem;
    color: var(--color-muted, #9A9A9A);
    margin-right: 0.5rem;
    text-decoration: line-through;
}

.product-buy-box__price ins {
    text-decoration: none;
}

.product-buy-box__stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    margin-bottom: 1.5rem;
}

.product-buy-box__stock--in-stock {
    color: var(--color-forest, #2D5530);
}

.product-buy-box__stock--out-of-stock {
    color: #dc2626;
}

.product-buy-box__stock svg {
    width: 16px;
    height: 16px;
}

.product-buy-box__quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.product-buy-box__quantity-label {
    font-size: 0.8125rem;
    color: var(--color-muted, #9A9A9A);
}

.product-buy-box__quantity-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.product-buy-box__quantity-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-charcoal, #2C2C2C);
    transition: background 0.2s ease;
}

.product-buy-box__quantity-btn:hover {
    background: #f5f5f5;
}

.product-buy-box__quantity-btn svg {
    width: 14px;
    height: 14px;
}

.product-buy-box__quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 0.9375rem;
    font-weight: 600;
}

.product-buy-box__quantity-input:focus {
    outline: none;
}

.product-buy-box__btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.product-buy-box__btn:hover {
    background: var(--color-forest-dark, #1e3a20);
    transform: translateY(-1px);
}

.product-buy-box__btn svg {
    width: 18px;
    height: 18px;
}

.product-buy-box__btn--external {
    background: var(--color-amber, #D4A373);
    color: var(--color-charcoal, #2C2C2C);
}

.product-buy-box__btn--external:hover {
    background: #c99862;
}

.product-buy-box__meta {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f0f0f0;
}

.product-buy-box__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--color-muted, #9A9A9A);
    margin-bottom: 0.5rem;
}

.product-buy-box__meta-item:last-child {
    margin-bottom: 0;
}

.product-buy-box__meta-item svg {
    width: 14px;
    height: 14px;
    color: var(--color-forest, #2D5530);
}

/* -----------------------------
   Technical Blueprint Section
   Charcoal background with leader lines
   ----------------------------- */
.product-blueprint-section {
    background: var(--color-charcoal, #2C2E30);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-blueprint-section {
        padding: 6rem 2rem;
    }
}

.product-blueprint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.product-blueprint__header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.product-blueprint__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-amber, #D4A373);
    margin-bottom: 1rem;
}

.product-blueprint__label svg {
    width: 14px;
    height: 14px;
}

.product-blueprint__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.product-blueprint__subtitle {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Blueprint Grid with Leader Lines */
.product-blueprint__grid {
    display: grid;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .product-blueprint__grid {
        grid-template-columns: 1fr 500px 1fr;
        flex-wrap: nowrap;
    gap: 1.25rem;
        align-items: center;
    }
}

/* Specs Columns */
.product-blueprint__specs-left,
.product-blueprint__specs-right {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1.25rem;
}

@media (min-width: 1024px) {
    .product-blueprint__specs-left {
        text-align: right;
    }
}

/* Blueprint Image Center */
.product-blueprint__image {
    position: relative;
    order: -1;
}

@media (min-width: 1024px) {
    .product-blueprint__image {
        order: 0;
    }
}

.product-blueprint__image-inner {
    position: relative;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.product-blueprint__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Spec Card with Leader Line */
.product-spec-card {
    position: relative;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.product-spec-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(212, 163, 115, 0.3);
}

.product-spec-card__label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber, #D4A373);
    margin-bottom: 0.5rem;
}

.product-spec-card__value {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.product-spec-card__unit {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 0.25rem;
}

.product-spec-card__note {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.5rem;
}

/* Leader Lines (Desktop Only) */
@media (min-width: 1024px) {
    .product-spec-card::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, var(--color-amber, #D4A373), transparent);
    }

    .product-blueprint__specs-left .product-spec-card::after {
        right: -40px;
    }

    .product-blueprint__specs-right .product-spec-card::after {
        left: -40px;
        background: linear-gradient(270deg, var(--color-amber, #D4A373), transparent);
    }
}

/* Specs Grid (Fallback/Mobile) */
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .product-specs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* -----------------------------
   Video Section
   ----------------------------- */
.product-video-section {
    background: var(--color-cream, #FAF9F6);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .product-video-section {
        padding: 6rem 2rem;
    }
}

.product-video__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.product-video__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-video__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-video__label svg {
    width: 14px;
    height: 14px;
}

.product-video__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-video__wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    background: var(--color-charcoal, #2C2C2C);
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.2);
}

.product-video__wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Product Video Section - Full Width with Thumbnail */
.product-video-section__container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.product-video-section__thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 37 / 54;
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-charcoal, #1C1917);
}

.product-video-section__thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.product-video-section__thumbnail:hover .product-video-section__thumbnail-img {
    transform: scale(1.02);
    filter: brightness(0.9);
}

.product-video-section__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.3s ease;
}

.product-video-section__play-btn svg {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.product-video-section__thumbnail:hover .product-video-section__play-btn svg {
    transform: scale(1.1);
}

.product-video-section__play-btn circle {
    transition: fill 0.3s ease;
}

.product-video-section__thumbnail:hover .product-video-section__play-btn circle {
    fill: rgba(255,255,255,1);
}

.product-video-section__wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 37 / 54;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-charcoal, #1C1917);
}

.product-video-section__wrapper--hidden {
    display: none;
}

.product-video-section__wrapper.is-active {
    display: block;
}

.product-video-section__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.product-video-section__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    pointer-events: none;
    z-index: 3;
}

.product-video-section__content {
    color: white;
}

.product-video-section__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-video-section__stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-video-section__stat-value {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-amber, #D4A03C);
}

.product-video-section__stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .product-video-section {
        padding: 3rem 1rem;
    }

    .product-video-section__thumbnail,
    .product-video-section__wrapper {
        border-radius: 8px;
    }

    .product-video-section__play-btn svg {
        width: 60px;
        height: 60px;
    }

    .product-video-section__overlay {
        padding: 2rem 1rem 1rem;
    }
}

/* -----------------------------
   Gallery Showcase
   ----------------------------- */
.product-gallery-showcase {
    padding: 5rem 1.5rem;
    background: white;
}

@media (min-width: 768px) {
    .product-gallery-showcase {
        padding: 6rem 2rem;
    }
}

.product-gallery-showcase__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-gallery-showcase__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-gallery-showcase__label svg {
    width: 14px;
    height: 14px;
}

.product-gallery-showcase__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-gallery-showcase__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-gallery-showcase__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .product-gallery-showcase__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-gallery-showcase__item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.product-gallery-showcase__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-gallery-showcase__item:hover img {
    transform: scale(1.05);
}

.product-gallery-showcase__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-gallery-showcase__item:hover::after {
    opacity: 1;
}

/* -----------------------------
   Related Products
   ----------------------------- */
.product-related-section {
    background: var(--color-cream, #FAF9F6);
    padding: 5rem 1.5rem;
}

@media (min-width: 768px) {
    .product-related-section {
        padding: 6rem 2rem;
    }
}

.product-related__header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-related__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.product-related__label svg {
    width: 14px;
    height: 14px;
}

.product-related__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .product-related__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-related__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Related Product Card */
.product-related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.product-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.15);
}

.product-related-card__image {
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    overflow: hidden;
}

.product-related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.4s ease;
}

.product-related-card:hover .product-related-card__image img {
    transform: scale(1.05);
}

.product-related-card__content {
    padding: 1.25rem;
}

.product-related-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-related-card__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest, #2D5530);
}

/* -----------------------------
   Mobile Sticky Buy Bar
   ----------------------------- */
.product-mobile-buy-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.product-mobile-buy-bar.is-visible {
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .product-mobile-buy-bar {
        display: none;
    }
}

.product-mobile-buy-bar__info {
    flex: 1;
    min-width: 0;
}

.product-mobile-buy-bar__title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal, #2C2C2C);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-mobile-buy-bar__price {
    font-family: var(--font-mono, 'JetBrains Mono', monospace);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-forest, #2D5530);
}

.product-mobile-buy-bar__btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.product-mobile-buy-bar__btn svg {
    width: 16px;
    height: 16px;
}

.product-mobile-buy-bar__btn--external {
    background: var(--color-amber, #D4A373);
    color: var(--color-charcoal, #2C2C2C);
}

/* -----------------------------
   Product Animations
   ----------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-title-block__category,
.product-title-block__title,
.product-title-block__sku,
.product-title-block__excerpt,
.product-quick-specs,
.product-title-block__cta {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-title-block__category { animation-delay: 0.1s; }
.product-title-block__title { animation-delay: 0.2s; }
.product-title-block__sku { animation-delay: 0.3s; }
.product-title-block__excerpt { animation-delay: 0.4s; }
.product-quick-specs { animation-delay: 0.5s; }
.product-title-block__cta { animation-delay: 0.6s; }

/* Body padding for mobile buy bar */
body.single-product {
    padding-bottom: 80px;
}

@media (min-width: 1024px) {
    body.single-product {
        padding-bottom: 0;
    }
}

/* =============================================================================
   CINEMATIC OUTRO - High-Impact Homepage Conclusion
   ============================================================================= */

.cinematic-outro {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 8vh 0; /* Tightened vertical rhythm */
}

/* Shape Divider - Feathered transition from Pack section */
.cinematic-outro__divider {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    color: var(--color-cream, #FAF9F6);
    line-height: 0;
}

.cinematic-outro__divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

@media (min-width: 768px) {
    .cinematic-outro__divider svg {
        height: 120px;
    }
}

/* Parallax Background - Giant Breed Hero Shot */
.cinematic-outro__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: left center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Fallback for mobile (background-attachment: fixed doesn't work well) */
@media (max-width: 1024px) {
    .cinematic-outro__bg {
        background-attachment: scroll;
        background-position: 25% center;
    }
}

/* Overlay for text legibility - minimal on left to show Mastiff clearly */
.cinematic-outro__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(28, 28, 28, 0.15) 0%,    /* Lighter on left for Mastiff visibility */
        rgba(28, 28, 28, 0.35) 35%,
        rgba(28, 28, 28, 0.65) 60%,
        rgba(28, 28, 28, 0.80) 100%   /* Darker on right for text legibility */
    );
}

/* Content Container */
.cinematic-outro__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 60px);
    padding-top: 80px;
}

@media (min-width: 768px) {
    .cinematic-outro__container {
        padding-top: 100px;
    }
}

/* Asymmetrical Grid - Card offset to right */
.cinematic-outro__grid {
    display: grid;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .cinematic-outro__grid {
        grid-template-columns: repeat(12, 1fr);
        flex-wrap: nowrap;
    gap: 1.25rem;
    }
}

/* Glass Anchor Card - Anchored firmly on the right */
.cinematic-outro__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@media (min-width: 1024px) {
    .cinematic-outro__card {
        grid-column: 8 / 12; /* Right-aligned to show Mastiff on left */
    }
}

@media (min-width: 1200px) {
    .cinematic-outro__card {
        grid-column: 8 / 12;
        margin-right: 0;
    }
}

/* Typography - Lora Serif, Heavy Weight */
.cinematic-outro__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.cinematic-outro__text {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 450px;
    margin-bottom: 2rem;
}

/* Liquid Fill Button - Cinematic Outro Context */
/* High-contrast white text for dark backgrounds */
.cinematic-outro .btn-liquid {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #FFFFFF;
    background: rgba(45, 85, 48, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.4s ease;
}

.cinematic-outro .btn-liquid__text {
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cinematic-outro .btn-liquid__fill {
    position: absolute;
    inset: 0;
    background: var(--color-forest, #2D5530);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.cinematic-outro .btn-liquid:hover {
    color: var(--color-cream, #FAF9F6);
    border-color: var(--color-forest, #2D5530);
    background: var(--color-forest, #2D5530);
}

.cinematic-outro .btn-liquid:hover .btn-liquid__text {
    text-shadow: none;
}

.cinematic-outro .btn-liquid:hover .btn-liquid__fill {
    transform: translateY(0);
}

/* Button focus state */
.cinematic-outro .btn-liquid:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Generic Liquid Fill Button (for other contexts) */
.btn-liquid {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-forest, #2D5530);
    background: transparent;
    border: 2px solid var(--color-forest, #2D5530);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.4s ease, border-color 0.4s ease;
}

.btn-liquid__text {
    position: relative;
    z-index: 2;
}

.btn-liquid__fill {
    position: absolute;
    inset: 0;
    background: var(--color-forest, #2D5530);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.btn-liquid:hover {
    color: white;
    border-color: var(--color-forest, #2D5530);
}

.btn-liquid:hover .btn-liquid__fill {
    transform: translateY(0);
}

/* Button focus state */
.btn-liquid:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.4);
}

/* Wisconsin Badge - Technical Label */
.cinematic-outro__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
}

.cinematic-outro__badge svg {
    width: 14px;
    height: 14px;
    color: var(--color-amber, #D4A373);
}

/* Reveal Animation Override for Dark Section */
.cinematic-outro .reveal {
    --reveal-distance: 40px;
}

/* Fade-up reveal animation for headlines (0.5s intentional transition) */
.reveal--fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal--fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .cinematic-outro {
        min-height: auto;
        padding: 0 0 3rem 0;
    }

    /* Reduce background opacity on mobile for text focus */
    .cinematic-outro__bg {
        opacity: 0.3;
    }

    .cinematic-outro__bg-overlay {
        background: linear-gradient(
            180deg,
            rgba(28, 28, 28, 0.6) 0%,
            rgba(28, 28, 28, 0.8) 100%
        );
    }

    .cinematic-outro__container {
        padding-top: 60px;
    }

    /* Center the card on mobile */
    .cinematic-outro__card {
        margin: 0 auto;
        max-width: 90%;
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .cinematic-outro__title {
        font-size: 2rem;
    }

    .cinematic-outro__text {
        margin-left: auto;
        margin-right: auto;
    }

    .cinematic-outro__badge {
        justify-content: center;
    }

    /* Full-width button for easy thumb-tapping */
    .cinematic-outro .btn-liquid {
        width: 100%;
        padding: 1.125rem 2rem;
        font-weight: 700;
        color: #FFFFFF;
        border-color: rgba(255, 255, 255, 0.7);
    }
}

/* =============================================================================
   FAQ PAGE STYLES
   Technical FAQ with search, filter, and accordion
   ============================================================================= */

/* FAQ Hero */
.faq-hero {
    padding: var(--space-16, 6rem) 0 var(--space-10, 4rem);
    background: #FAF9F6;
    text-align: center;
}

.faq-hero__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 1rem;
}

.faq-hero__subheadline {
    font-size: 1.125rem;
    color: var(--color-muted, #4B5563);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FAQ Filter Bar */
.faq-filter {
    padding: var(--space-6, 2rem) 0;
    background: #FAF9F6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.faq-filter__bar {
    display: flex;
    flex-direction: column;
    gap: var(--space-4, 1.5rem);
}

@media (min-width: 768px) {
    .faq-filter__bar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.faq-filter__search {
    position: relative;
    flex: 1;
    max-width: 400px;
}

.faq-filter__input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-filter__input:focus {
    outline: none;
    border-color: var(--color-forest, #2D5530);
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.1);
}

.faq-filter__search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted, #4B5563);
    pointer-events: none;
}

.faq-filter__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.faq-filter__category {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted, #4B5563);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-filter__category:hover {
    border-color: var(--color-forest, #2D5530);
    color: var(--color-forest, #2D5530);
}

.faq-filter__category.is-active {
    background: var(--color-forest, #2D5530);
    border-color: var(--color-forest, #2D5530);
    color: white;
}

/* FAQ Accordion */
.faq-content {
    padding: var(--space-10, 4rem) 0 var(--space-16, 6rem);
    background: white;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq-accordion__item[hidden] {
    display: none;
}

.faq-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-accordion__trigger:hover {
    color: var(--color-forest, #2D5530);
}

.faq-accordion__question {
    flex: 1;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    line-height: 1.4;
}

.faq-accordion__trigger:hover .faq-accordion__question {
    color: var(--color-forest, #2D5530);
}

.faq-accordion__category-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-forest, #2D5530);
    background: rgba(45, 85, 48, 0.1);
    border-radius: 100px;
    white-space: nowrap;
}

.faq-accordion__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-muted, #4B5563);
    transition: transform 0.3s ease;
}

.faq-accordion__trigger[aria-expanded="true"] .faq-accordion__icon {
    transform: rotate(180deg);
}

.faq-accordion__content {
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.faq-accordion__content[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
}

.faq-accordion__content:not([hidden]) {
    max-height: 1000px;
    opacity: 1;
}

.faq-accordion__answer {
    padding: 0 0 1.5rem 0;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-muted, #4B5563);
}

.faq-accordion__answer p {
    margin-bottom: 1rem;
}

.faq-accordion__answer p:last-child {
    margin-bottom: 0;
}

/* FAQ No Results */
.faq-no-results,
.faq-empty {
    text-align: center;
    padding: var(--space-10, 4rem);
    color: var(--color-muted, #4B5563);
}

.faq-no-results a,
.faq-empty a {
    color: var(--color-forest, #2D5530);
    text-decoration: underline;
}

/* FAQ CTA */
.faq-cta {
    padding: 0 0 var(--space-16, 6rem);
    background: white;
}

.faq-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-10, 4rem);
}

.faq-cta__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 1rem;
}

.faq-cta__text {
    font-size: 1rem;
    color: var(--color-muted, #4B5563);
    margin-bottom: 1.5rem;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .faq-hero {
        padding: var(--space-10, 4rem) 0 var(--space-6, 2rem);
    }

    .faq-filter {
        top: 60px;
    }

    .faq-filter__categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .faq-filter__category {
        flex-shrink: 0;
    }

    .faq-accordion__trigger {
        flex-wrap: wrap;
    }

    .faq-accordion__category-tag {
        order: 3;
        margin-top: 0.5rem;
    }
}

/* =============================================================================
   VIDEO GALLERY PAGE STYLES
   Masonry grid with lightbox
   ============================================================================= */

/* Video Hero */
.video-hero {
    padding: var(--space-16, 6rem) 0 var(--space-10, 4rem);
    background: #FAF9F6;
    text-align: center;
}

.video-hero__headline {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 1rem;
}

.video-hero__subheadline {
    font-size: 1.125rem;
    color: var(--color-muted, #4B5563);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Video Filter */
.video-filter {
    padding: var(--space-6, 2rem) 0;
    background: #FAF9F6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.video-filter__bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.video-filter__category {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted, #4B5563);
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.2s;
}

.video-filter__category:hover {
    border-color: var(--color-forest, #2D5530);
    color: var(--color-forest, #2D5530);
}

.video-filter__category.is-active {
    background: var(--color-forest, #2D5530);
    border-color: var(--color-forest, #2D5530);
    color: white;
}

/* Video Gallery Grid */
.video-gallery {
    padding: var(--space-10, 4rem) 0 var(--space-16, 6rem);
    background: white;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6, 2rem);
}

/* Video Card */
.video-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.video-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 767px) {
    .video-card--featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

.video-card[hidden] {
    display: none;
}

.video-card__trigger {
    display: block;
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.video-card__thumbnail {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.video-card--featured .video-card__thumbnail {
    aspect-ratio: 16 / 9;
}

.video-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Scale up to crop out YouTube hqdefault black bars (4:3 image with 16:9 content) */
    transform: scale(1.34);
    transition: transform 0.5s ease;
}

.video-card:hover .video-card__thumbnail img {
    transform: scale(1.38);
}

/* Custom thumbnails don't need the scale transform */
.video-card__thumbnail--custom img {
    transform: none;
}

.video-card:hover .video-card__thumbnail--custom img {
    transform: scale(1.05);
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card__overlay {
    opacity: 1;
}

.video-card__play-btn {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-card:hover .video-card__play-btn {
    transform: scale(1);
}

.video-card__content {
    padding: 1.25rem 1.5rem;
}

.video-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-forest, #2D5530);
    margin-bottom: 0.5rem;
}

.video-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.video-card--featured .video-card__title {
    font-size: 1.5rem;
}

.video-card__description {
    font-size: 0.875rem;
    color: var(--color-muted, #4B5563);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Video No Results */
.video-no-results,
.video-empty {
    text-align: center;
    padding: var(--space-10, 4rem);
    color: var(--color-muted, #4B5563);
}

.video-no-results a {
    color: var(--color-forest, #2D5530);
    text-decoration: underline;
}

/* Video Lightbox */
.video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-6, 2rem);
}

.video-lightbox[hidden] {
    display: none;
}

.video-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.video-lightbox__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-lightbox__close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.video-lightbox__close:hover {
    transform: scale(1.1);
}

.video-lightbox__player {
    position: relative;
    width: 100%;
    aspect-ratio: 37 / 54;
    background: black;
    border-radius: 8px;
    overflow: hidden;
}

.video-lightbox__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.video-lightbox__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: white;
    margin: 1rem 0 0;
    text-align: center;
}

/* Video Responsive */
@media (max-width: 767px) {
    .video-hero {
        padding: var(--space-10, 4rem) 0 var(--space-6, 2rem);
    }

    .video-filter__bar {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }

    .video-filter__category {
        flex-shrink: 0;
    }

    .video-grid {
        flex-direction: column;
    }

    .video-lightbox {
        padding: var(--space-4, 1rem);
    }

    .video-lightbox__close {
        top: -40px;
    }
}

/* =============================================================================
   PRODUCT VIDEO BUTTON
   Stress Test video button on product pages
   ============================================================================= */
.product-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-forest, #2D5530);
    background: rgba(45, 85, 48, 0.1);
    border: 1px solid rgba(45, 85, 48, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.product-video-btn:hover {
    background: var(--color-forest, #2D5530);
    border-color: var(--color-forest, #2D5530);
    color: white;
}

.product-video-btn svg {
    width: 20px;
    height: 20px;
}

/* =============================================================================
   GENERIC PAGE STYLES
   Prose container and page hero for standard pages
   ============================================================================= */

/* Page Hero */
.page-hero {
    position: relative;
    padding: var(--space-16, 6rem) 0;
    text-align: center;
}

.page-hero--simple {
    background: #FAF9F6;
    padding: var(--space-12, 5rem) 0 var(--space-10, 4rem);
}

.page-hero--with-image {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-20, 8rem) 0;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 28, 0.5) 0%,
        rgba(28, 28, 28, 0.7) 100%
    );
}

.page-hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

/* Page Content */
.page-content {
    padding: var(--space-12, 5rem) 0 var(--space-16, 6rem);
    background: white;
}

/* Prose Container - Editorial Typography */
.prose-container {
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-muted, #4B5563);
}

.prose-container h1,
.prose-container h2,
.prose-container h3,
.prose-container h4,
.prose-container h5,
.prose-container h6 {
    font-family: var(--font-display, 'Lora', serif);
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
    margin-top: 2em;
    margin-bottom: 0.75em;
    line-height: 1.3;
}

.prose-container h1 {
    font-size: 2.25rem;
}

.prose-container h2 {
    font-size: 1.75rem;
}

.prose-container h3 {
    font-size: 1.375rem;
}

.prose-container h4 {
    font-size: 1.125rem;
}

.prose-container p {
    margin-bottom: 1.5em;
}

.prose-container p:last-child {
    margin-bottom: 0;
}

.prose-container a {
    color: var(--color-forest, #2D5530);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s;
}

.prose-container a:hover {
    color: var(--color-charcoal, #1C1917);
}

.prose-container strong {
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
}

.prose-container em {
    font-style: italic;
}

.prose-container blockquote {
    margin: 2em 0;
    padding: 1.5em 2em;
    border-left: 4px solid var(--color-forest, #2D5530);
    background: #FAF9F6;
    font-style: italic;
    color: var(--color-charcoal, #1C1917);
}

.prose-container blockquote p:last-child {
    margin-bottom: 0;
}

.prose-container ul,
.prose-container ol {
    margin: 1.5em 0;
    padding-left: 1.5em;
}

.prose-container li {
    margin-bottom: 0.5em;
}

.prose-container li::marker {
    color: var(--color-forest, #2D5530);
}

.prose-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.prose-container figure {
    margin: 2em 0;
}

.prose-container figcaption {
    font-size: 0.875rem;
    color: var(--color-muted, #4B5563);
    text-align: center;
    margin-top: 0.75em;
}

.prose-container hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 3em 0;
}

.prose-container table {
    width: 100%;
    border-collapse: collapse;
    margin: 2em 0;
    font-size: 0.9375rem;
}

.prose-container th,
.prose-container td {
    padding: 0.75em 1em;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prose-container th {
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    background: #FAF9F6;
}

.prose-container code {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', monospace;
    font-size: 0.875em;
    padding: 0.2em 0.4em;
    background: #FAF9F6;
    border-radius: 4px;
    color: var(--color-charcoal, #1C1917);
}

.prose-container pre {
    margin: 2em 0;
    padding: 1.5em;
    background: #1C1917;
    border-radius: 8px;
    overflow-x: auto;
}

.prose-container pre code {
    background: transparent;
    padding: 0;
    color: #e5e5e5;
}

/* Prose Responsive */
@media (max-width: 767px) {
    .page-hero {
        padding: var(--space-10, 4rem) 0;
    }

    .page-hero--simple {
        padding: var(--space-8, 3rem) 0;
    }

    .page-hero--with-image {
        min-height: 40vh;
        padding: var(--space-12, 5rem) 0;
    }

    .page-content {
        padding: var(--space-8, 3rem) 0 var(--space-12, 5rem);
    }

    .prose-container {
        font-size: 1rem;
        line-height: 1.75;
    }

    .prose-container h1 {
        font-size: 1.75rem;
    }

    .prose-container h2 {
        font-size: 1.5rem;
    }

    .prose-container h3 {
        font-size: 1.25rem;
    }

    .prose-container blockquote {
        padding: 1em 1.25em;
        margin: 1.5em 0;
    }
}

/* ==========================================================================
   HUB BREADCRUMB NAVIGATION
   ========================================================================== */

.hub-breadcrumb {
    background: var(--color-cream, #FAF7F2);
    border-bottom: 1px solid rgba(45, 85, 48, 0.1);
    padding: var(--space-4, 1rem) 0;
}

.hub-breadcrumb__inner {
    display: flex;
    align-items: center;
    gap: var(--space-2, 0.5rem);
    flex-wrap: wrap;
    font-size: 0.875rem;
}

.hub-breadcrumb__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-forest, #2D5530);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hub-breadcrumb__link:hover {
    color: var(--color-forest-dark, #1e3a20);
    text-decoration: underline;
}

.hub-breadcrumb__link svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.hub-breadcrumb__separator {
    color: var(--color-muted, #78716C);
    opacity: 0.5;
    user-select: none;
}

.hub-breadcrumb__current {
    color: var(--color-charcoal, #1C1917);
    font-weight: 500;
}

/* Breadcrumb Responsive */
@media (max-width: 767px) {
    .hub-breadcrumb {
        padding: var(--space-3, 0.75rem) 0;
    }

    .hub-breadcrumb__inner {
        font-size: 0.8125rem;
    }

    .hub-breadcrumb__link svg {
        width: 14px;
        height: 14px;
    }
}

/* ==========================================================================
   SHOP ARCHIVE PAGE
   Professional 3-Column Grid with Image Scaling
   ========================================================================== */

.shop-header {
    padding: var(--space-12, 4rem) 0 var(--space-8, 3rem);
    background: var(--color-cream, #FAF9F6);
    text-align: center;
}

.shop-header__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin-bottom: 0.5rem;
}

.shop-header__subtitle {
    font-size: 1.125rem;
    color: var(--color-muted, #78716C);
    max-width: 500px;
    margin: 0 auto;
}

.shop-products {
    padding: var(--space-10, 4rem) 0;
    background: white;
}

/* 3-Column Grid */
.products-grid-shop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    gap: 1.25rem;
}

@media (max-width: 991px) {
    .products-grid-shop {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .products-grid-shop {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Product Card */
.shop-product-card {
    position: relative;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.shop-product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
}

.shop-product-card__image-link {
    display: block;
    text-decoration: none;
}

.shop-product-card__image {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 400px;
    overflow: hidden;
    background: var(--color-cream, #FAF9F6);
}

.shop-product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.shop-product-card:hover .shop-product-card__img {
    transform: scale(1.05);
}

.shop-product-card__content {
    padding: 1.5rem;
}

.shop-product-card__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.shop-product-card__title a {
    color: var(--color-charcoal, #1C1917);
    text-decoration: none;
}

.shop-product-card__title a:hover {
    color: var(--color-forest, #2D5530);
}

.shop-product-card__desc {
    font-size: 0.9375rem;
    color: var(--color-muted, #78716C);
    margin: 0 0 1rem;
    line-height: 1.5;
}

.shop-product-card__price {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--color-forest, #2D5530);
    margin-bottom: 1rem;
}

.shop-product-card__price del {
    color: var(--color-muted, #78716C);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.shop-product-card__price ins {
    text-decoration: none;
}

.shop-product-card__actions {
    display: flex;
    gap: 0.75rem;
}

/* Shop Buttons */
.btn-shop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-shop--primary {
    background: var(--color-forest, #2D5530);
    color: white;
    flex: 1;
}

.btn-shop--primary:hover {
    background: var(--color-forest-dark, #1e3a20);
}

.btn-shop--secondary {
    background: transparent;
    color: var(--color-forest, #2D5530);
    border: 2px solid var(--color-forest, #2D5530);
}

.btn-shop--secondary:hover {
    background: var(--color-forest, #2D5530);
    color: white;
}

/* Shop Trust Bar */
.shop-trust-bar {
    padding: var(--space-8, 3rem) 0;
    background: var(--color-cream, #FAF9F6);
    border-top: 1px solid rgba(0,0,0,0.06);
}

.shop-trust-bar__inner {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.shop-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-charcoal, #1C1917);
}

.shop-trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-forest, #2D5530);
}

.shop-empty {
    text-align: center;
    padding: var(--space-12, 4rem) 0;
}

.shop-empty h2 {
    font-family: var(--font-display, 'Lora', serif);
    margin-bottom: 1rem;
}

/* ==========================================================================
   PRODUCTS DOSSIER - Single Column Technical Layout
   ========================================================================== */

.products-dossier {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Dossier Row - 50/50 Grid */
.dossier-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* LEFT: Technical Portrait - 1:1 Square, max 600px */
.dossier-row__image {
    position: relative;
    max-width: 600px;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    /* CLS Prevention: Reserve space before image loads */
    contain: layout style paint;
}

.dossier-row__image-link {
    display: block;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.dossier-row__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.dossier-row__image-link:hover .dossier-row__img {
    transform: scale(1.02);
}

.dossier-row__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

/* RIGHT: Product Data */
.dossier-row__content {
    padding-top: 1rem;
}

.dossier-row__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    line-height: 1.2;
}

.dossier-row__title a {
    color: var(--color-charcoal, #1C1917);
    text-decoration: none;
    transition: color 0.2s ease;
}

.dossier-row__title a:hover {
    color: var(--color-forest, #2D5530);
}

/* Description with Read More */
.dossier-row__desc {
    margin-bottom: 1.5rem;
}

.dossier-row__desc-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-muted, #78716C);
    margin: 0;
}

.dossier-read-more-toggle {
    background: none;
    border: none;
    color: var(--color-forest, #2D5530);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 0.25rem;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.dossier-read-more-toggle:hover {
    color: var(--color-brand-amber, #D4A373);
    text-decoration: underline;
}

.dossier-row__desc-extended {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
    color: var(--color-muted, #78716C);
    line-height: 1.7;
}

.dossier-row__desc-extended.is-expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

/* Price */
.dossier-row__price {
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal, #1C1917);
    margin-bottom: 2rem;
}

.dossier-row__price del {
    color: var(--color-muted, #78716C);
    font-size: 1.25rem;
    margin-right: 0.75rem;
}

.dossier-row__price ins {
    text-decoration: none;
}

/* Conversion Buttons */
.dossier-row__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-dossier {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-dossier--primary {
    background: var(--color-forest, #2D5530);
    color: white;
}

.btn-dossier--primary:hover {
    background: #234425;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 85, 48, 0.3);
}

.btn-dossier--secondary {
    background: transparent;
    color: var(--color-charcoal, #1C1917);
    border: 2px solid var(--color-charcoal, #1C1917);
}

.btn-dossier--secondary:hover {
    background: var(--color-charcoal, #1C1917);
    color: white;
}

/* MOBILE ADAPTATION: Stack vertically under 992px */
@media (max-width: 991px) {
    .products-dossier {
        gap: 60px;
    }

    .dossier-row {
        flex-direction: column;
        flex-wrap: nowrap;
    gap: 1.25rem;
    }

    .dossier-row__image {
        max-width: 100%;
    }

    .dossier-row__title {
        font-size: 1.75rem;
    }

    .dossier-row__price {
        font-size: 1.5rem;
    }

    .dossier-row__actions {
        flex-direction: column;
    }

    .btn-dossier {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .products-dossier {
        gap: 50px;
    }

    .dossier-row__title {
        font-size: 1.5rem;
    }

    .dossier-row__content {
        padding-top: 0;
    }
}

/* ==========================================================================
   SINGLE PRODUCT PAGE - 60/40 SPLIT LAYOUT
   ========================================================================== */

/* Breadcrumb */
.product-breadcrumb {
    padding: 1rem 0;
    background: var(--color-cream, #FAF9F6);
    font-size: 0.875rem;
}

.product-breadcrumb a {
    color: var(--color-forest, #2D5530);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-breadcrumb span {
    color: var(--color-muted, #78716C);
    margin: 0 0.5rem;
}

.product-breadcrumb .current {
    color: var(--color-charcoal, #1C1917);
    margin: 0;
}

/* Main Product Section */
.product-main {
    padding: var(--space-10, 4rem) 0;
    background: white;
}

.product-main__grid {
    display: grid;
    grid-template-columns: minmax(auto, 500px) 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .product-main__grid {
        flex-direction: column;
        flex-wrap: nowrap;
    gap: 1.25rem;
    }
}

/* Product Gallery (Left 60%) */
.product-gallery {
    position: relative;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
}

.product-gallery__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--color-forest, #2D5530);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.product-gallery__main {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    border-radius: 12px;
    background: #FFFFFF;
    overflow: hidden;
}

.product-gallery__main-img,
.product-gallery__main img {
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 12px;
}


.product-gallery__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: var(--color-cream, #FAF9F6);
    padding: 0;
    transition: border-color 0.2s ease;
}

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
    border-color: var(--color-forest, #2D5530);
}

.product-gallery__thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thumbnail Filmstrip Navigation */
.product-gallery__thumbs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 500px;
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.product-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
    padding: 0.25rem 0;
    min-width: 0;
}

.product-gallery__thumbs-nav {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: rgba(45, 85, 48, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-forest, #2D5530);
    transition: all 0.2s ease;
}

.product-gallery__thumbs-nav:hover {
    background: rgba(45, 85, 48, 0.2);
}

.product-gallery__thumbs-nav.is-hidden {
    opacity: 0.3;
    pointer-events: none;
}

/* Hide filmstrip nav on mobile - native scroll works fine */
@media (max-width: 767px) {
    .product-gallery__thumbs-wrapper {
        max-width: 100%;
    }
    
    .product-gallery__thumbs-nav {
        display: none;
    }
    
    .product-gallery__thumbs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Buy Box (Right 40%) */
.product-buybox {
    position: sticky;
    top: 100px;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 991px) {
    .product-buybox {
        position: static;
    }
}

.product-buybox__inner {
    background: white;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    padding: 2rem;
}

.product-buybox__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-charcoal, #1C1917);
    line-height: 1.2;
    margin: 0 0 0.5rem;
}

.product-buybox__tagline {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    color: var(--color-muted, #78716C);
    margin: 0 0 1.5rem;
    line-height: 1.5;
}

.product-buybox__price {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-forest, #2D5530);
    margin-bottom: 0.5rem;
}

.product-buybox__price del {
    color: var(--color-muted, #78716C);
    font-size: 1.25rem;
    font-weight: 400;
    margin-right: 0.5rem;
}

.product-buybox__price ins {
    text-decoration: none;
}

.product-buybox__stock {
    font-size: 0.875rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
}

.product-buybox__stock.in-stock {
    color: var(--color-forest, #2D5530);
}

.product-buybox__stock.out-of-stock {
    color: #dc2626;
}

.product-buybox__stock.on-backorder {
    color: #d97706;
}

/* Quick Specs in Buy Box */
.product-buybox__specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-cream, #FAF9F6);
    border-radius: 8px;
}

.product-buybox__spec {
    flex: 1;
    text-align: center;
}

.product-buybox__spec-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-muted, #78716C);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.product-buybox__spec-value {
    display: block;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
}

/* Buy Button */
.product-buybox__actions {
    margin-bottom: 1.5rem;
}

.product-buybox__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.product-buybox__btn--primary {
    background: var(--color-forest, #2D5530);
    color: white;
}

.product-buybox__btn--primary:hover {
    background: var(--color-forest-dark, #1e3a20);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 85, 48, 0.3);
}

.product-buybox__btn--primary svg {
    width: 16px;
    height: 16px;
}

.product-buybox__btn--disabled {
    background: #e5e5e5;
    color: #999;
    cursor: not-allowed;
}

/* Trust Signals */
.product-buybox__trust {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
}

.product-buybox__trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-charcoal, #1C1917);
}

.product-buybox__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-forest, #2D5530);
    flex-shrink: 0;
}

/* Technical Specs (The Math) */
.product-buybox__tech-specs {
    background: var(--color-charcoal, #1C1917);
    border-radius: 8px;
    padding: 1.25rem;
    color: white;
}

.product-buybox__tech-title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-amber, #D4A03C);
    margin: 0 0 1rem;
}

.product-buybox__tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-buybox__tech-item {
    text-align: center;
}

.product-buybox__tech-value {
    display: block;
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.product-buybox__tech-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

/* Product Description */
.product-description {
    padding: var(--space-10, 4rem) 0;
    background: var(--color-cream, #FAF9F6);
}

.product-description__inner {
    width: 100%;
    max-width: 800px;
}

.product-description__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 1.5rem;
}

.product-description__content {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-charcoal, #1C1917);
}

.product-description__content p {
    margin-bottom: 1.5rem;
}

.product-description__content ul,
.product-description__content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.product-description__content li {
    margin-bottom: 0.5rem;
}

/* Product Features */
.product-features {
    padding: var(--space-10, 4rem) 0;
    background: white;
}

.product-features__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 2rem;
    text-align: center;
}


.product-features__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.product-features__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
}

.product-features__card {
    flex: 0 1 calc((100% - 2.5rem) / 3);
    max-width: 320px;
    background: var(--color-cream, #FAF9F6);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.product-features__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-gold, #C8A47E);
}

.product-features__icon svg {
    width: 100%;
    height: 100%;
}

.product-features__card-title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin: 0 0 0.75rem;
}

.product-features__card-desc {
    font-size: 0.9375rem;
    color: var(--color-charcoal-light, #44403C);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .product-features {
        padding: 2rem 0;
    }

    .product-features__title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .product-features__grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .product-features__card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 1.5rem;
    }
}


/* Product Video */
.product-video {
    padding: var(--space-10, 4rem) 0;
    background: white;
}

.product-video__inner {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.product-video__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 2rem;
}

.product-video__wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 37 / 54;
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-charcoal, #1C1917);
    cursor: pointer;
}

.product-video__thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    /* Scale up to crop out YouTube hqdefault black bars (4:3 image with 16:9 content) */
    transform: scale(1.34);
    transition: transform 0.4s ease;
}

.product-video__wrapper:hover .product-video__thumb {
    transform: scale(1.38);
}

/* Custom thumbnails don't need the scale transform */
.product-video__thumb--custom {
    transform: none;
}

.product-video__wrapper:hover .product-video__thumb--custom {
    transform: scale(1.03);
}

.product-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-video__wrapper:hover .product-video__play {
    transform: translate(-50%, -50%) scale(1.1);
}

.product-video__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Related Products */
.product-related {
    padding: var(--space-10, 4rem) 0;
    background: var(--color-cream, #FAF9F6);
}

.product-related__title {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 2rem;
}

.product-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: nowrap;
    gap: 1.25rem;
}

@media (max-width: 767px) {
    .product-related__grid {
        flex-direction: column;
    }
}

.product-related__card {
    display: block;
    text-decoration: none;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-related__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-related__image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--color-cream, #FAF9F6);
}

.product-related__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-related__card:hover .product-related__img {
    transform: scale(1.05);
}

.product-related__name {
    font-family: var(--font-display, 'Lora', serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-charcoal, #1C1917);
    margin: 1rem 1rem 0.5rem;
}

.product-related__price {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-forest, #2D5530);
    margin: 0 1rem 1rem;
}

/* Mobile Responsive */
@media (max-width: 575px) {
    .shop-header {
        padding: var(--space-8, 3rem) 0 var(--space-6, 2rem);
    }
    
    .shop-products {
        padding: var(--space-6, 2rem) 0;
    }
    
    .shop-trust-bar__inner {
        gap: 1.5rem;
    }
    
    .shop-trust-item {
        font-size: 0.8125rem;
    }
    
    .product-main {
        padding: var(--space-6, 2rem) 0;
    }
    
    .product-buybox__inner {
        padding: 1.5rem;
    }
    
    .product-buybox__specs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .product-buybox__tech-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .product-buybox__tech-value {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE - MOBILE OPTIMIZATION
   Comprehensive mobile styles for single product pages
   ========================================================================== */

/* Breadcrumb Mobile */
@media (max-width: 767px) {
    .product-breadcrumb {
        padding: 0.75rem 0;
        font-size: 0.8125rem;
    }

    .product-breadcrumb .current {
        display: inline;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 150px;
    }
}

/* Product Main - Tablet */
@media (max-width: 991px) {
    .product-main {
        padding: 2rem 0;
    }
}

/* Product Main - Mobile */
@media (max-width: 767px) {
    .product-main {
        padding: 1.5rem 0;
    }

    .product-main__grid {
        gap: 1.5rem;
    }

    /* Gallery Mobile */
    .product-gallery__badge {
        top: 0.75rem;
        left: 0.75rem;
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }

    .product-gallery__main {
        border-radius: 8px;
    }

    .product-gallery__main-img,
.product-gallery__main img {
        border-radius: 8px;
    }

    .product-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
        gap: 0.5rem;
        margin-top: 0.75rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }

    .product-gallery__thumb {
        width: 60px;
        height: 60px;
        border-radius: 6px;
    }

    /* Buy Box Mobile */
    .product-buybox__inner {
        padding: 1.25rem;
        border-radius: 8px;
    }

    .product-buybox__title {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .product-buybox__tagline {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .product-buybox__price {
        font-size: 1.75rem;
        margin-bottom: 0.375rem;
    }

    .product-buybox__price del {
        font-size: 1.125rem;
    }

    .product-buybox__stock {
        margin-bottom: 1rem;
    }

    /* Quick Specs Mobile */
    .product-buybox__specs {
        padding: 0.875rem;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }

    .product-buybox__spec-label {
        font-size: 0.6875rem;
    }

    .product-buybox__spec-value {
        font-size: 1rem;
    }

    /* Buy Button Mobile */
    .product-buybox__actions {
        margin-bottom: 1rem;
    }

    .product-buybox__btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    /* Trust Signals Mobile */
    .product-buybox__trust {
        gap: 0.5rem;
        padding: 0.875rem 0;
        margin-bottom: 1rem;
    }

    .product-buybox__trust-item {
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .product-buybox__trust-item svg {
        width: 16px;
        height: 16px;
    }

    /* Tech Specs Mobile */
    .product-buybox__tech-specs {
        padding: 1rem;
        border-radius: 6px;
    }

    .product-buybox__tech-title {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .product-buybox__tech-grid {
        gap: 0.5rem;
    }

    .product-buybox__tech-value {
        font-size: 1.125rem;
    }

    .product-buybox__tech-label {
        font-size: 0.6875rem;
    }
}

/* Product Description - Mobile */
@media (max-width: 767px) {
    .product-description {
        padding: 2rem 0;
    }

    .product-description__title {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .product-description__content {
        font-size: 1rem;
        line-height: 1.7;
    }

    .product-description__content p {
        margin-bottom: 1rem;
    }
}

/* Product Video - Mobile */
@media (max-width: 767px) {
    .product-video {
        padding: 2rem 0;
    }

    .product-video__title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .product-video__wrapper {
        border-radius: 8px;
    }

    .product-video__play svg {
        width: 48px;
        height: 48px;
    }
}

/* Related Products - Mobile */
@media (max-width: 767px) {
    .product-related {
        padding: 2rem 0;
    }

    .product-related__title {
        font-size: 1.375rem;
        margin-bottom: 1.5rem;
    }

    .product-related__grid {
        gap: 1rem;
    }

    .product-related__card {
        display: grid;
        grid-template-columns: 100px 1fr;
        gap: 1rem;
        border-radius: 8px;
    }

    .product-related__image {
        aspect-ratio: 1 / 1;
        border-radius: 8px 0 0 8px;
    }
    
    .product-related__img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .product-related__name {
        font-size: 1rem;
        margin: 0.75rem 0.75rem 0.25rem 0;
    }

    .product-related__price {
        margin: 0 0.75rem 0.75rem 0;
    }
}

/* Extra small screens */
@media (max-width: 375px) {
    .product-buybox__title {
        font-size: 1.25rem;
    }

    .product-buybox__price {
        font-size: 1.5rem;
    }

    .product-buybox__tech-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-buybox__tech-value {
        font-size: 1rem;
    }

    .product-related__card {
        grid-template-columns: 80px 1fr;
    }
}

/* ==========================================================================
   SINGLE PRODUCT PAGE - MOBILE EMERGENCY OVERFLOW FIX
   Forces strict mobile containment for product detail pages
   ========================================================================== */

/* 1. SCOPED CSS RESET - Kill horizontal scroll */
html.single-product,
body.single-product {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.single-product #main-content,
body.single-product .site-footer {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}

/* Mobile-specific aggressive containment */
@media (max-width: 767px) {

    /* 2. IMAGE PHYSICS REFACTOR */
    body.single-product .product-gallery,
    body.single-product .product-gallery__main,
    body.single-product .product-gallery__main-img {
        max-width: 100% !important;
    width: 100% !important;
        max-width: 100% !important;
    width: 100% !important;
    }

    body.single-product .product-gallery__main-img {
        object-fit: contain !important;
        height: 100% !important;
    }

    /* Thumbnail strip containment */
    body.single-product .product-gallery__thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
        max-width: 100% !important;
    width: 100% !important;
        overflow-x: auto !important;
    }

    /* 3. FLEX/GRID COLLAPSE */
    body.single-product .product-main__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    body.single-product .product-buybox__specs {
        flex-direction: column !important;
    }

    body.single-product .product-buybox__tech-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    body.single-product .product-related__grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }

    /* Force all children to respect container */
    body.single-product .product-gallery,
    body.single-product .product-buybox,
    body.single-product .product-buybox__inner,
    body.single-product .product-buybox__title,
    body.single-product .product-buybox__tagline,
    body.single-product .product-buybox__price,
    body.single-product .product-buybox__actions,
    body.single-product .product-buybox__btn,
    body.single-product .product-buybox__trust,
    body.single-product .product-buybox__tech-specs,
    body.single-product .product-description__inner,
    body.single-product .product-description__content,
    body.single-product .product-video__inner,
    body.single-product .product-video__wrapper,
    body.single-product .product-related__card {
        max-width: 100% !important;
    width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    /* Container padding fix */
    body.single-product .container-premium {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
    width: 100% !important;
        box-sizing: border-box !important;
    }

    /* All images must respect container (except header logo) */
    body.single-product img:not(.logo-img):not(.logo img):not(.product-related__img) {
        max-width: 100% !important;
    width: 100% !important;
        height: auto !important;
    }

    /* Preserve header logo size on mobile */
    body.single-product .logo img,
    body.single-product .logo-img {
        height: 50px !important;
        width: auto !important;
        max-width: none !important;
    }

    /* Related products image fix */
    body.single-product .product-related__image {
        max-width: 100% !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        overflow: hidden !important;
    }
    
    body.single-product .product-related .product-related__image .product-related__img,
    body.single-product section.product-related .product-related__img {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Video wrapper fix */
    body.single-product .product-video__wrapper {
        max-width: 100% !important;
    width: 100% !important;
    }
}

/* Tablet breakpoint */
@media (max-width: 991px) {
    body.single-product .container-premium {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        max-width: 100% !important;
    width: 100% !important;
    }

    body.single-product .product-main__grid {
        grid-template-columns: 1fr !important;
    }
}

/* Footer fixes */
@media (max-width: 991px) {
    body.single-product .site-footer .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        max-width: 100% !important;
    width: 100% !important;
    }

    body.single-product .site-footer .footer-links a {
        word-break: break-word;
        overflow-wrap: break-word;
    }
}


/* =====================================================
   MINI CART SLIDE-OUT
   ===================================================== */

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 9998;
}

.mini-cart-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.mini-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.mini-cart.is-active {
    transform: translateX(0);
}

.mini-cart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--color-border, #E5E2DB);
    flex-shrink: 0;
}

.mini-cart__title {
    margin: 0;
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.mini-cart__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-charcoal, #2C2E30);
    transition: background 0.2s ease;
}

.mini-cart__close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mini-cart__content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.mini-cart__items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mini-cart__item {
    display: flex;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border, #E5E2DB);
}

.mini-cart__item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-cart__item-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--color-cream, #FAF9F6);
}

.mini-cart__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart__item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
}

.mini-cart__item-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-charcoal, #2C2E30);
    line-height: 1.3;
}

.mini-cart__item-meta {
    font-size: 0.8125rem;
    color: var(--color-muted, #6B7280);
}

.mini-cart__item-price {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-forest, #2D5530);
}

.mini-cart__footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border, #E5E2DB);
    background: var(--color-cream, #FAF9F6);
    flex-shrink: 0;
}

.mini-cart__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-charcoal, #2C2E30);
}

.mini-cart__subtotal span:last-child {
    font-size: 1.125rem;
    color: var(--color-forest, #2D5530);
}

.mini-cart__button {
    display: block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.mini-cart__button--primary {
    background: var(--color-forest, #2D5530);
    color: #fff;
    border: none;
    margin-bottom: 0.75rem;
}

.mini-cart__button--primary:hover {
    background: var(--color-forest-dark, #1E3A21);
}

.mini-cart__button--secondary {
    background: transparent;
    color: var(--color-forest, #2D5530);
    border: 2px solid var(--color-forest, #2D5530);
}

.mini-cart__button--secondary:hover {
    background: var(--color-forest, #2D5530);
    color: #fff;
}

.mini-cart__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--color-muted, #6B7280);
}

.mini-cart__empty svg {
    margin-bottom: 1rem;
    opacity: 0.5;
}

.mini-cart__empty p {
    margin: 0 0 1.5rem;
    font-size: 1rem;
}

/* Body scroll lock when mini-cart is open */
body.mini-cart-open {
    overflow: hidden;
}

/* Added to cart notice styling */
.woocommerce-message {
    display: none !important;
}


/* Add to cart button loading state */
.single_add_to_cart_button.loading,
button.add_to_cart_button.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.single_add_to_cart_button.loading::after,
button.add_to_cart_button.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: fps-spin 0.8s linear infinite;
}

@keyframes fps-spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   Stock Notification Form
   ========================================================================== */

.fps-stock-notify {
    margin-top: 1rem;
    padding: 1.25rem;
    background: var(--color-accent-light, #F5F1EB);
    border-radius: var(--border-radius-lg, 12px);
    border: 1px solid rgba(45, 85, 48, 0.1);
}

.fps-stock-notify__message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-primary, #2C2E30);
}

.fps-stock-notify__message svg {
    flex-shrink: 0;
    color: var(--color-brand-green, #2D5530);
}

.fps-stock-notify__form {
    margin: 0;
}

.fps-stock-notify__input-group {
    display: flex;
    gap: 0.5rem;
}

.fps-stock-notify__input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(45, 85, 48, 0.2);
    border-radius: var(--border-radius-md, 8px);
    font-size: 1rem;
    background: var(--color-white, #fff);
    transition: border-color var(--transition-fast, 150ms ease), box-shadow var(--transition-fast, 150ms ease);
}

.fps-stock-notify__input:focus {
    outline: none;
    border-color: var(--color-brand-green, #2D5530);
    box-shadow: 0 0 0 3px rgba(45, 85, 48, 0.1);
}

.fps-stock-notify__input::placeholder {
    color: var(--color-muted-grey, #6B6B6B);
}

.fps-stock-notify__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--color-brand-green, #2D5530);
    color: var(--color-white, #fff);
    border: none;
    border-radius: var(--border-radius-md, 8px);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast, 150ms ease), transform var(--transition-fast, 150ms ease);
    white-space: nowrap;
}

.fps-stock-notify__btn:hover:not(:disabled) {
    background: #1E3A21;
}

.fps-stock-notify__btn:active:not(:disabled) {
    transform: scale(0.98);
}

.fps-stock-notify__btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fps-stock-notify__btn-loading {
    display: inline-flex;
    animation: fps-spin 1s linear infinite;
}

.fps-stock-notify__success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0.75rem 1rem;
    background: rgba(45, 85, 48, 0.1);
    border-radius: var(--border-radius-md, 8px);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-brand-green, #2D5530);
}

.fps-stock-notify__success svg {
    flex-shrink: 0;
    color: var(--color-brand-green, #2D5530);
}

.fps-stock-notify__error {
    margin: 0.75rem 0 0;
    padding: 0.75rem 1rem;
    background: rgba(220, 53, 69, 0.1);
    border-radius: var(--border-radius-md, 8px);
    font-size: 0.875rem;
    color: #dc3545;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .fps-stock-notify__input-group {
        flex-direction: column;
    }

    .fps-stock-notify__btn {
        width: 100%;
    }
}
