/* ==========================================================================
   ProNordic Global Stylesheet
   Design Ethos: Editorial Luxury, High-End Clinical, Spacious & Refined
   ========================================================================== */

/* --- Variables --- */
:root {
    /* Color Foundation */
    --color-white: #FFFFFF;
    --color-black: #000000;
    
    /* Backgrounds */
    --bg-main: #FFFFFF;
    --bg-soft: #F9FAFB;      
    --bg-teal-wash: #F2F9FA; 
    --bg-dark: #0A0B0C;      
    
    /* Brand Colors */
    --brand-teal: #00A9CE;
    --brand-teal-dark: #0087A5;
    --accent-yellow: #FEDF00;
    
    /* Typography Colors */
    --text-dark: #111827;    
    --text-body: #4B5563;    
    --text-muted: #9CA3AF;
    
    /* UI Elements */
    --border-subtle: #E5E7EB;
    --border-hover: #D1D5DB;
    
    /* Shadows - extremely subtle for premium feel */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
    
    /* Typography */
    --font-body: 'Futura PT Book', 'Futura', 'Trebuchet MS', sans-serif;
    --font-heading: 'Futura PT Demi', 'Futura', 'Trebuchet MS', sans-serif;
    
    /* Responsive Spacing System (Desktop Base) */
    --container-max: 1240px; 
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;
    
    /* Transitions */
    --trans-fast: 0.3s ease;
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    background-color: var(--bg-main);
    color: var(--text-body);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: all var(--trans-fast); }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }

/* --- Typography Hierarchy --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.display-title { font-size: clamp(3.25rem, 6vw, 6.5rem); letter-spacing: -0.03em; color: var(--color-white); margin-bottom: var(--space-md); max-width: 14ch; font-weight: 400; }
.hero-subpage .display-title { font-size: clamp(1.95rem, 3.6vw, 3.9rem); }
.section-title { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: var(--space-sm); max-width: 20ch; font-weight: 400; }
.card-title { font-size: 1.5rem; margin-bottom: var(--space-xs); line-height: 1.3; font-weight: 400; }

.eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

.text-teal { color: var(--brand-teal); }
.text-dark { color: var(--text-dark); }
.text-white { color: var(--color-white) !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.body-text { font-size: 1.125rem; max-width: 48ch; margin-bottom: var(--space-sm); color: var(--text-body); }
.body-text:last-of-type { margin-bottom: 0; }
.intro-desc { font-size: 1.25rem; max-width: 55ch; margin-bottom: var(--space-lg); color: var(--text-body); }

/* --- Utilities --- */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--space-md); }
.section-spacing { padding: var(--space-xxl) 0; }
.bg-soft { background-color: var(--bg-soft); }
.bg-teal-wash { background-color: var(--bg-teal-wash); }
.shadow-sm { box-shadow: var(--shadow-sm); }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-0 { margin-bottom: 0; }
.mb-xl { margin-bottom: var(--space-xl); }
.hide-mobile { display: flex; }
.show-mobile { display: none; }

/* --- Links & Buttons --- */
.link-arrow {
    display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-heading);
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em;
    border-bottom: 1px solid transparent; padding-bottom: 0.25rem; transition: all var(--trans-fast);
}
.link-arrow svg { transition: transform var(--trans-fast); }
.link-arrow:hover { color: var(--brand-teal); border-color: var(--brand-teal); }
.link-arrow:hover svg { transform: translateX(6px); }

.btn-primary {
    display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading);
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.4); padding: 1rem 2rem; border-radius: 2px; transition: all var(--trans-fast);
}
.btn-primary:hover {
    background: var(--brand-teal); color: var(--color-white); border-color: var(--brand-teal);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 169, 206, 0.25);
}

.btn-primary-dark {
    display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-heading);
    font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; background: var(--text-dark);
    color: var(--color-white); padding: 1rem 2rem; border-radius: 2px; border: 1px solid var(--text-dark);
    transition: all var(--trans-fast);
}
.btn-primary-dark:hover { 
    background: var(--brand-teal); border-color: var(--brand-teal);
    transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 169, 206, 0.25);
}

/* --- Header --- */
.site-header { position: fixed; top: 0; width: 100%; z-index: 1001; padding: 1.4rem 0; transition: all var(--trans-slow); background: transparent; color: var(--color-white); }
.site-header.scrolled { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(12px); padding: 0.5rem 0; border-bottom: 1px solid var(--border-subtle); color: var(--text-dark); }
.site-header.menu-open { background: #FFFFFF !important; color: var(--text-dark) !important; border-bottom: 1px solid var(--border-subtle); z-index: 1001; }
.site-header.menu-open .mobile-menu-toggle { color: var(--text-dark) !important; }
.site-header.menu-open .line { background: var(--text-dark) !important; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand-logo { display: flex; align-items: baseline; gap: 2px; }
.logo-img {
    height: 98px;
    width: auto;
    display: block;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1);
}
.site-header.scrolled .logo-img {
    height: 50px;
    filter: none;
}
.footer-logo .logo-img { height: 192px; filter: brightness(0) invert(1); }
.brand-logo:hover .logo-img { opacity: 0.85; transform: translateY(-1px); }

.desktop-nav .nav-list { display: flex; gap: 3rem; }
.desktop-nav a { font-size: 0.875rem; color: inherit; opacity: 0.8; position: relative; transition: opacity var(--trans-fast), color var(--trans-fast); }
.desktop-nav a:hover { opacity: 1; color: var(--brand-teal); }

.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 0.75rem 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--text-dark);
    transition: all 0.2s ease;
}
.dropdown-menu a:hover {
    background: var(--bg-soft);
    color: var(--brand-teal);
}
.dropdown-menu .has-sub-dropdown { position: relative; }
.dropdown-menu .sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    background: #FFFFFF;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    padding: 0.75rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    z-index: 1001;
}
.dropdown-menu .has-sub-dropdown:hover > .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
.dropdown-menu .has-sub-dropdown > a::after {
    content: '\203A';
    float: right;
    margin-left: 0.5rem;
}

.header-actions { display: flex; align-items: center; gap: 2rem; }
.nav-cta { 
    font-size: 0.875rem; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em;
    padding: 0.6rem 1.25rem; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 2px; transition: all var(--trans-fast);
}
.site-header.scrolled .nav-cta { border-color: var(--border-subtle); }
.nav-cta:hover { background: var(--brand-teal); border-color: var(--brand-teal); color: var(--color-white) !important; }

.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 24px; height: 20px; position: relative; z-index: 1001; color: inherit; }
.mobile-menu-toggle .line { display: block; width: 100%; height: 1px; background: currentColor; position: absolute; transition: all var(--trans-fast); }
.mobile-menu-toggle .line:first-child { top: 4px; }
.mobile-menu-toggle .line:last-child { bottom: 4px; }
.mobile-menu-toggle.active .line:first-child { transform: translateY(5px) rotate(45deg); }
.mobile-menu-toggle.active .line:last-child { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
    display: none; position: fixed; inset: 0; width: 100vw; height: 100vh; background: #FFFFFF !important;
    opacity: 0; pointer-events: none; transform: translateY(-100%); transition: transform var(--trans-slow), opacity var(--trans-fast);
    z-index: 1000; padding: var(--space-md); padding-top: 6rem; overflow-y: auto; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.mobile-menu.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav-list { display: flex; flex-direction: column; gap: var(--space-lg); }
.mobile-nav-list a { font-family: var(--font-heading); font-size: 1.25rem; color: var(--text-dark); text-transform: uppercase; letter-spacing: 0.1em; }
.mobile-nav-list a:hover { color: var(--brand-teal); }
.mobile-sub { padding-left: 1rem; opacity: 0.7; }

/* --- Homepage Hero --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 1; background-color: #1a1c20; background-image: linear-gradient(135deg, #111215 0%, #20242a 100%); background-size: cover; background-position: center; animation: slowZoom 25s ease-in-out infinite alternate; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }
.hero-overlay { position: absolute; inset: 0; z-index: 2; background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%); }
.hero-container { position: relative; z-index: 3; width: 100%; padding-top: var(--space-xl); }
.hero-eyebrow-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: var(--space-md); }
.hero-eyebrow-wrap .eyebrow { margin-bottom: 0; color: var(--brand-teal); }
.accent-line { height: 1px; width: 40px; background: var(--brand-teal); }
.hero-lead { color: rgba(255, 255, 255, 0.85); font-size: clamp(1.125rem, 2vw, 1.375rem); max-width: 50ch; margin-bottom: var(--space-lg); font-weight: 300; }

/* Image Placeholders */
.image-placeholder { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: inherit; background: #FFFFFF; }
.image-light { background: #FFFFFF; }
.image-lab { background: #FFFFFF; }
.image-editorial { background: #E2E8F0; }

/* --- Structures --- */
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: center; }
.split-grid.reverse .split-visual { order: 2; }
.split-grid.reverse .split-content { order: 1; }
.image-wrapper { width: 100%; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.image-wrapper img { width: 100%; height: 100%; object-fit: cover; }

.section-intro { max-width: 650px; margin: 0 auto var(--space-xl); }
.content-band {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--space-xl);
    text-align: left;
}
.content-band .section-title,
.content-band .intro-desc,
.content-band .card-title,
.content-band .body-text { margin-left: 0; margin-right: 0; }
.content-band .intro-desc { max-width: 72ch; }
.content-band .body-text { max-width: 64ch; }
.legal-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-lg);
}
@media (min-width: 900px) {
    .legal-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.legal-block {
    background: var(--color-white);
    border: 1px solid var(--border-subtle);
    padding: var(--space-lg);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}
.legal-block h3 { margin-bottom: var(--space-sm); }
.legal-block .body-text { margin-bottom: 0; }
.b2c-page .section-spacing { padding: var(--space-xl) 0; }
.b2c-page .content-band { margin-bottom: var(--space-lg); }
.b2c-page .content-band .intro-desc { margin-bottom: var(--space-md); }
.b2c-page .faq-section { padding-bottom: var(--space-xl); }
.b2c-page .section-spacing.bg-soft { padding-top: var(--space-xl); }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-xl); }
.product-card { background: var(--color-white); border: 1px solid var(--border-subtle); display: flex; flex-direction: column; transition: all var(--trans-fast); }
.product-card:hover { border-color: var(--brand-teal); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.04); }
.product-card .card-visual { aspect-ratio: 4/5; background: #FFFFFF; overflow: hidden; border-bottom: 1px solid var(--border-subtle); display: flex; align-items: center; justify-content: center; padding: var(--space-md); }
.product-card .card-visual img { object-fit: contain; width: 100%; height: 100%; }
.product-card .card-content { padding: var(--space-lg); }
.product-overview-section .split-content { padding-left: var(--space-md); }
.product-info-logo { margin-top: var(--space-md); display: flex; justify-content: center; }
.product-info-logo img { width: min(100%, 520px); height: auto; object-fit: contain; }
.product-price, .science-detail { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.95rem; color: var(--text-dark); margin: var(--space-md) 0 var(--space-sm); display: inline-block; border-top: 1px solid var(--border-subtle); padding-top: var(--space-sm); }
.card-desc { color: var(--text-body); font-size: 1rem; }
.product-detail-page .section-spacing { padding: 4rem 0; }
.product-detail-page .section-intro { margin-bottom: var(--space-lg); }
.product-detail-page .content-band { margin-bottom: var(--space-lg); }
.product-detail-page .grid-3.mt-xl { margin-top: var(--space-lg); }
.product-detail-page .text-center.mb-xl { margin-bottom: var(--space-lg); }

.breather-section { position: relative; min-height: 56vh; display: flex; align-items: center; overflow: hidden; padding: var(--space-xxl) 0; }
.breather-bg { position: absolute; inset: 0; z-index: 1; }
.breather-bg img, .breather-bg .image-placeholder { width: 100%; height: 100%; object-fit: cover; }
.breather-overlay { position: absolute; inset: 0; z-index: 2; background: rgba(17, 24, 39, 0.5); }
.breather-container { position: relative; z-index: 3; width: 100%; }
.breather-content { max-width: 700px; margin: 0 auto; }

.faq-container { max-width: 800px; margin: 0 auto; }
.accordion { border-top: 1px solid var(--border-subtle); }
.accordion-item { border-bottom: 1px solid var(--border-subtle); }
.accordion-header { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg) 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-heading); font-weight: 400; font-size: 1.25rem; color: var(--text-dark); transition: color var(--trans-fast); }
.accordion-header:hover { color: var(--brand-teal); }
.accordion-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.accordion-icon::before, .accordion-icon::after { content: ''; position: absolute; background: currentColor; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: transform 0.4s ease; }
.accordion-icon::before { width: 100%; height: 1px; }
.accordion-icon::after { height: 100%; width: 1px; }
.accordion-header[aria-expanded="true"] .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-inner { padding-bottom: var(--space-lg); font-size: 1.125rem; max-width: 60ch; }

.section-header-split { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--border-subtle); padding-bottom: var(--space-md); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.blog-card { display: flex; flex-direction: column; }
.blog-card .card-visual { aspect-ratio: 4/3; margin-bottom: var(--space-md); overflow: hidden; }
.blog-card .card-content { flex: 1; }
.blog-card .card-title { font-size: 1.25rem; transition: color var(--trans-fast); }
.blog-card:hover .card-title { color: var(--brand-teal); }

.contact-cta .container { max-width: 700px; }

/* --- Footer --- */
.site-footer { background: var(--bg-dark); color: var(--color-white); padding: var(--space-xl) 0 var(--space-md); }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: var(--space-xl); margin-bottom: var(--space-xxl); }
.footer-note { color: var(--text-muted); font-size: 0.875rem; margin-top: var(--space-sm); }
.footer-links-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.footer-heading { font-weight: 400; color: var(--color-white); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: var(--space-md); }
.footer-nav li { margin-bottom: 0.75rem; }
.footer-nav a, .tel-link, .footer-address { color: var(--text-muted); font-size: 0.875rem; font-style: normal; transition: color var(--trans-fast); }
.footer-nav a:hover, .tel-link:hover { color: var(--brand-teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: var(--space-md); display: flex; justify-content: space-between; align-items: center; color: var(--text-muted); font-size: 0.75rem; }

/* --- Animations --- */
.fade-up-section { 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); }
.fade-up-section.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }

/* Full-Bleed Video */
.full-bleed-video { position: relative; width: 100%; overflow: hidden; }
.full-bleed-video video { display: block; width: 100%; height: auto; }

/* ==========================================================================
   Subpage Additions & Layout Utilities
   ========================================================================== */

/* Subpage Hero (approx 65-70vh height) */
.hero-subpage { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; background-color: #1a1c20; }
.hero-subpage .hero-bg { animation: none; } /* Subtler approach for subpages */
.hero-subpage .hero-container { padding-top: 9rem; }
@media (min-width: 992px) and (max-width: 1440px) {
    .hero-subpage { min-height: 72vh; }
    .hero-subpage .hero-container { padding-top: 9rem; }
    .hero-subpage .display-title {
        font-size: clamp(1.6rem, 2.9vw, 3.1rem); /* ~20% reduction for laptop headers */
    }
}
.about-page .hero-subpage .display-title { max-width: 100%; }

/* 3-Column Content Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.feature-block { padding: var(--space-md) 0; }
.feature-icon { color: var(--brand-teal); margin-bottom: var(--space-sm); }
.feature-block h3 { margin-bottom: var(--space-xs); font-size: 1.25rem; }

/* Stockists Cards */
.stockist-card { background: var(--bg-soft); padding: var(--space-lg); border: 1px solid var(--border-subtle); display: flex; flex-direction: column; transition: all var(--trans-fast); }
.stockist-card:hover { border-color: var(--brand-teal); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stockist-logo { height: 60px; max-width: 100%; object-fit: contain; object-position: left; margin-bottom: var(--space-sm); }
.stockist-card h3 { font-size: 1.25rem; margin-bottom: var(--space-xs); }
.stockist-card p { font-size: 1rem; color: var(--text-body); margin-bottom: var(--space-sm); }

/* Forms & Contact Layouts */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--space-xl); align-items: start; }
.form-group { margin-bottom: var(--space-md); }
.form-label { display: block; font-family: var(--font-heading); font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-control { width: 100%; padding: 1rem; border: 1px solid var(--border-subtle); font-family: var(--font-body); font-size: 1rem; color: var(--text-dark); border-radius: 2px; background: var(--bg-soft); transition: border-color var(--trans-fast); }
.form-control:focus { outline: none; border-color: var(--brand-teal); background: var(--color-white); }
textarea.form-control { resize: vertical; min-height: 150px; }
.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact-info > .eyebrow { margin-bottom: var(--space-xs); }
.contact-info > .section-title { margin-bottom: var(--space-sm); }
.contact-info > .body-text { margin-bottom: var(--space-md); max-width: 48ch; }
.contact-block { display: flex; flex-direction: column; gap: var(--space-xs); padding-bottom: var(--space-md); border-bottom: 1px solid var(--border-subtle); }
.contact-block:last-child { border-bottom: none; padding-bottom: 0; }
.contact-block .card-title { margin-bottom: 0.25rem; }
.contact-block .body-text { margin-bottom: 0.25rem; }
.contact-block .link-arrow { margin-top: 0.25rem; }
.contact-block h5.eyebrow { margin-bottom: 0.25rem; }
.contact-block a { font-weight: 500; }
.product-mini-logos { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin: var(--space-md) 0; }
.mini-logo-link { display: inline-flex; align-items: center; }
.mini-product-logo { height: 34px; width: auto; display: block; transition: opacity var(--trans-fast), transform var(--trans-fast); }
.product-mini-logos .mini-product-logo { height: 109px; }
.product-mark .mini-product-logo { height: 102px; }
.mini-logo-link:hover .mini-product-logo { opacity: 0.85; transform: translateY(-1px); }
.product-mark { margin-top: var(--space-md); }
.static-logo { opacity: 1 !important; transform: none !important; transition: none !important; }

/* Responsive adjustments */
@media (max-width: 1199px) {
    :root { --space-xxl: 5rem; --space-xl: 3.5rem; }
    .split-grid, .product-grid { gap: var(--space-xl); }
    .breather-section { min-height: 60vh; }
}
@media (max-width: 991px) {
    :root { --space-xxl: 4.5rem; --space-xl: 3rem; }
    .split-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
    .split-grid.reverse .split-visual, .split-grid .split-visual { order: -1; }
    .blog-grid, .grid-3 { grid-template-columns: repeat(2, 1fr); gap: var(--space-xl); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-links-wrapper { grid-template-columns: repeat(3, 1fr); }
    .image-wrapper { aspect-ratio: 16/10; }
    .product-card .card-visual { aspect-ratio: 1/1; }
    .hero-subpage { min-height: 60vh; }
}
@media (max-width: 768px) {
    :root { --space-xxl: 3rem; --space-xl: 2rem; --space-lg: 1.5rem; }
    .desktop-nav, .nav-cta, .hide-mobile { display: none; }
    .show-mobile { display: block; }
    .mobile-menu-toggle { display: block; color: var(--color-white); }
    .site-header.scrolled .mobile-menu-toggle { color: var(--text-dark); }
    .mobile-menu { display: block; }
    .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%); }
    .hero-actions { display: flex; flex-direction: column; }
    .btn-primary { justify-content: center; width: 100%; }
    .product-grid, .blog-grid, .grid-3 { grid-template-columns: 1fr; gap: var(--space-lg); }
    .image-wrapper { aspect-ratio: 4/3; }
    .breather-section { min-height: 50vh; }
    .product-overview-section .split-content { padding-left: 0; padding-right: 0; }
    .product-detail-page .section-spacing { padding: 3rem 0; }
    .hero-container { padding-top: 7rem; }
    .hero-subpage .hero-container { padding-top: 7rem; }
    .hero-subpage { min-height: 60vh; }
    .footer-top { grid-template-columns: 1fr; text-align: center; gap: var(--space-lg); }
    .footer-links-wrapper { grid-template-columns: 1fr; text-align: center; gap: var(--space-md); }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-logo { justify-content: center; }
    .footer-nav { display: flex; flex-direction: column; align-items: center; }
    .footer-address { text-align: center; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: var(--space-sm); }
    .product-mini-logos { flex-wrap: nowrap; justify-content: center; }
    .product-mini-logos .mini-logo-link { flex: 0 0 auto; }
    .product-mini-logos .mini-product-logo { height: 80px; }
    .logo-img { height: 63px; }
    .product-mark { display: flex; justify-content: center; }
    .product-mark .mini-product-logo { height: 122px; }
}
@media (max-width: 480px) {
    .footer-links-wrapper { grid-template-columns: 1fr; }
    .accordion-header { font-size: 1.125rem; }
    .product-card .card-content, .stockist-card { padding: var(--space-md); }
}

/* --- Add these minimal utility classes to your style.css --- */
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
