/*
Theme Name: Good Vibes Water
Theme URI: https://goodvibeswater.com
Author: Good Beverage LLC
Author URI: https://goodvibeswater.com
Description: Modern minimalist theme for Good Vibes Water — pH9+ Alkaline Enhanced water brand. Features hero slideshow, product grid, FAQ accordion, store locator, and WooCommerce integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: goodvibeswater
Tags: custom-background, custom-logo, custom-menu, featured-images, full-width-template, sticky-post, threaded-comments, translation-ready, woocommerce
*/

/* ═══════════════════════════════════════════
   RESET & ROOT
═══════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black:       #111110;
    --near-black:  #1c1c1a;
    --off-white:   #f8f5f0;
    --white:       #ffffff;
    --cream:       #f2ede4;
    --sand:        #d9d1c2;
    --stone:       #a89f90;
    --bark:        #6b6257;
    --leaf-dark:   #1d3a2f;
    --leaf:        #2d5a40;
    --leaf-mid:    #4a8a5f;
    --leaf-light:  #8cc4a0;
    --leaf-pale:   #d4eddc;
    --blue-dark:   #0d2d4a;
    --blue:        #1a5276;
    --blue-mid:    #2e86c1;
    --blue-light:  #7fb3d3;
    --blue-pale:   #d6eaf8;
    --fn: 'Jost', sans-serif;
    --fd: 'Cormorant Garamond', Georgia, serif;
    --nav-h: 68px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--fn);
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { color: inherit; }

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 56px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}

#site-nav.scrolled { box-shadow: 0 1px 24px rgba(0,0,0,0.07); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-fallback {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--black);
}

#primary-menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

#primary-menu a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    transition: color 0.2s;
}

#primary-menu a:hover { color: var(--leaf); }

.nav-cta {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 11px 24px;
    text-decoration: none;
    transition: background 0.2s;
}

.nav-cta:hover { background: var(--leaf); }

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--black);
    transition: transform 0.3s;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.82);
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.05) 40%,
        rgba(0,0,0,0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    padding-top: var(--nav-h);
}

.hero-logo { height: 140px; width: auto; filter: brightness(0) invert(1); margin-bottom: 32px; }

.hero-tagline {
    font-family: var(--fd);
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}
.hero-tagline em { font-style: italic; }

.hero-sub {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin-bottom: 48px;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; }

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn-primary {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--white);
    padding: 15px 36px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary:hover { background: var(--off-white); }

.btn-outline-white {
    display: inline-block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 15px 36px;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-dark {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--black);
    padding: 15px 36px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn-dark:hover { background: var(--leaf); }

.btn-green {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--leaf-mid);
    padding: 15px 40px;
    text-decoration: none;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
}
.btn-green:hover { background: var(--leaf); }

.btn-text-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}
.btn-text-link:hover { color: var(--leaf); border-color: var(--leaf-mid); }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
#stats-strip {
    background: var(--black);
    display: flex;
    align-items: stretch;
}

.strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: center;
}
.strip-item:last-child { border-right: none; }

.strip-num {
    font-family: var(--fd);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.strip-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.eyebrow {
    display: block;
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--leaf-mid);
    margin-bottom: 20px;
    font-weight: 400;
}

.section-title {
    font-family: var(--fd);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 300;
    line-height: 1.08;
    color: var(--black);
    margin-bottom: 28px;
}
.section-title em { font-style: italic; color: var(--leaf); }

.section-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--bark);
    font-weight: 300;
}
.section-body p + p { margin-top: 18px; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px;
}

/* ═══════════════════════════════════════════
   MISSION
═══════════════════════════════════════════ */
#mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 90vh;
}

.mission-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 80px;
    background: var(--off-white);
}

.mission-text .section-body strong { color: var(--black); font-weight: 500; }

.mission-image {
    background: var(--leaf-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 60px;
}

.mission-image img {
    max-height: 560px;
    max-width: 100%;
    object-fit: contain;
}

/* ═══════════════════════════════════════════
   PRODUCTS / WOOCOMMERCE
═══════════════════════════════════════════ */
#products-section {
    padding: 120px 64px;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

/* Override WooCommerce defaults */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product {
    float: none !important;
    margin: 0 !important;
    width: auto !important;
}

.product-card, .woocommerce ul.products li.product { cursor: pointer; }

.product-img-wrap,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    display: block;
    background: var(--cream);
    height: 520px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.6s ease;
    position: relative;
    text-decoration: none;
}

.product-img-wrap:nth-child(2) { background: #e8f0f6; }

.product-card:hover .product-img-wrap,
.woocommerce ul.products li.product:hover .woocommerce-loop-product__link { transform: scale(1.015); }

.product-img-wrap img,
.woocommerce ul.products li.product .woocommerce-loop-product__link img {
    max-height: 86%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img,
.woocommerce ul.products li.product:hover img { transform: scale(1.04); }

.product-info {
    padding: 24px 4px 48px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-name {
    font-family: var(--fd) !important;
    font-size: 26px !important;
    font-weight: 400 !important;
    color: var(--black) !important;
    margin-bottom: 6px !important;
    line-height: 1.2 !important;
    padding: 0 !important;
}

.product-tag, .product-type-tag {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    display: block;
    margin-bottom: 8px;
}

.woocommerce ul.products li.product .price,
.product-price {
    font-size: 14px !important;
    color: var(--bark) !important;
    font-weight: 300 !important;
}

.woocommerce ul.products li.product .price strong,
.product-price strong {
    color: var(--black);
    font-weight: 500;
}

.woocommerce ul.products li.product .button,
.woocommerce a.button,
.woocommerce button.button {
    background: var(--black) !important;
    color: var(--white) !important;
    font-family: var(--fn) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    border-radius: 0 !important;
    padding: 12px 24px !important;
    transition: background 0.2s !important;
    border: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce a.button:hover { background: var(--leaf) !important; }

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 14px;
    font-weight: 400;
    z-index: 2;
}

/* ═══════════════════════════════════════════
   BENEFITS
═══════════════════════════════════════════ */
#benefits {
    padding: 120px 64px;
    background: var(--black);
}

.benefits-header {
    text-align: center;
    margin-bottom: 72px;
}
.benefits-header .eyebrow { color: var(--leaf-light); }
.benefits-header .section-title { color: var(--white); }
.benefits-header .section-title em { color: var(--leaf-light); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 48px 40px;
    transition: background 0.3s;
}
.benefit-card:hover { background: rgba(255,255,255,0.07); }

.benefit-num {
    font-family: var(--fd);
    font-size: 48px;
    font-weight: 300;
    color: var(--leaf-light);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.benefit-title {
    font-family: var(--fd);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 14px;
}

.benefit-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

/* ═══════════════════════════════════════════
   QUOTE
═══════════════════════════════════════════ */
#quote-section {
    padding: 100px 64px;
    background: var(--leaf-pale);
    text-align: center;
}

.quote-text {
    font-family: var(--fd);
    font-size: clamp(26px, 3.5vw, 50px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.3;
    color: var(--leaf-dark);
    max-width: 860px;
    margin: 0 auto 24px;
}

.quote-attr {
    font-size: 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--leaf-mid);
    font-weight: 400;
}

/* ═══════════════════════════════════════════
   FAQ / HEMP SEED OIL
═══════════════════════════════════════════ */
#faq-section {
    padding: 120px 64px;
    background: var(--off-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.faq-list { padding-top: 8px; }

.faq-item { border-top: 1px solid var(--sand); }
.faq-item:last-child { border-bottom: 1px solid var(--sand); }

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    text-align: left;
    font-family: var(--fn);
    font-size: 15px;
    font-weight: 400;
    color: var(--black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: color 0.2s;
}
.faq-question:hover { color: var(--leaf); }

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 1px solid var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--stone);
    transition: transform 0.3s, background 0.2s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--leaf-pale);
    border-color: var(--leaf-light);
    color: var(--leaf);
}

.faq-answer {
    display: none;
    padding: 0 0 24px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
}
.faq-item.open .faq-answer { display: block; }

.hemp-image-side {
    position: sticky;
    top: 100px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}
.hemp-image-side img { max-height: 500px; max-width: 100%; object-fit: contain; }

/* ═══════════════════════════════════════════
   STORE LOCATOR
═══════════════════════════════════════════ */
#store-locator {
    padding: 120px 64px;
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.locator-text .eyebrow { color: var(--leaf-mid); }

.search-row {
    display: flex;
    margin-top: 32px;
}

#wpsl-search-input, .search-input {
    flex: 1;
    border: 1px solid var(--sand);
    border-right: none;
    padding: 14px 18px;
    font-family: var(--fn);
    font-size: 14px;
    font-weight: 300;
    color: var(--black);
    background: var(--off-white);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
}
#wpsl-search-input:focus, .search-input:focus { border-color: var(--leaf-mid); }

#wpsl-search-btn, .search-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-family: var(--fn);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    transition: background 0.2s;
    border-radius: 0;
}
#wpsl-search-btn:hover, .search-btn:hover { background: var(--leaf); }

.retailers-label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin: 36px 0 14px;
    display: block;
}

.retailer-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
    font-size: 12px;
    font-weight: 400;
    color: var(--bark);
    border: 1px solid var(--sand);
    padding: 7px 16px;
    background: var(--off-white);
}

.map-wrap {
    height: 480px;
    background: var(--cream);
    overflow: hidden;
}

#wpsl-gmap { height: 100% !important; }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact-section {
    padding: 120px 64px;
    background: var(--near-black);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

#contact-section .eyebrow { color: var(--leaf-light); }
#contact-section .section-title { color: var(--white); }
#contact-section .section-body { color: rgba(255,255,255,0.4); }

.contact-details { margin-top: 36px; }

.contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

.contact-line strong {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone);
    min-width: 80px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { display: flex; flex-direction: column; gap: 8px; }

.field label {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 400;
    display: block;
}

.field input,
.field textarea,
.field select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 13px 16px;
    font-family: var(--fn);
    font-size: 14px;
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    border-radius: 0;
    width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--leaf-light); }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.2); }
.field textarea { resize: vertical; min-height: 110px; }
.field select option { background: var(--near-black); color: var(--white); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
#site-footer {
    background: #0a0a09;
    padding: 72px 64px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 36px;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    max-width: 270px;
}

.footer-col h4 {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
}
.footer-col a:hover { color: rgba(255,255,255,0.65); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.18); font-weight: 300; }

.footer-social { display: flex; gap: 24px; }
.footer-social a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--leaf-light); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATION
═══════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1100px) {
    #site-nav, #products-section, #benefits, #faq-section,
    #quote-section, #store-locator, #contact-section, #site-footer { padding-left: 40px; padding-right: 40px; }
    .mission-text { padding: 80px 48px; }
}

@media (max-width: 900px) {
    #primary-menu { display: none; }
    #primary-menu.open { display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 20px 40px; border-bottom: 1px solid var(--sand); gap: 20px; }
    .nav-toggle { display: flex; }
    .hero-logo { height: 100px; }
    #mission { grid-template-columns: 1fr; }
    .mission-image { height: 360px; }
    .product-grid, .woocommerce ul.products { grid-template-columns: 1fr 1fr !important; }
    .product-img-wrap { height: 380px; }
    .benefits-grid { grid-template-columns: 1fr 1fr; }
    #faq-section { grid-template-columns: 1fr; }
    .hemp-image-side { display: none; }
    #store-locator, #contact-section { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    #stats-strip { flex-wrap: wrap; }
    .strip-item { flex: 1 1 33%; }
}

@media (max-width: 600px) {
    .product-grid, .woocommerce ul.products { grid-template-columns: 1fr !important; }
    .benefits-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: center; }
    .footer-grid { grid-template-columns: 1fr; }
    #site-nav, #products-section, #benefits, #faq-section,
    #quote-section, #store-locator, #contact-section, #site-footer { padding-left: 24px; padding-right: 24px; }
    .mission-text { padding: 60px 24px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ═══════════════════════════════════════════
   IMAGE BACKGROUND FIXES
═══════════════════════════════════════════ */

/* Force white background on all product image containers */
.product-img-wrap,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
    background: #ffffff !important;
}

/* Ensure product images render cleanly on white */
.product-img-wrap img,
.woocommerce ul.products li.product img {
    background: #ffffff;
    mix-blend-mode: normal;
}

/* Nav logo sizing — transparent PNG */
.nav-logo img {
    height: 44px;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hero logo — white transparent PNG */
.hero-logo {
    height: 130px;
    width: auto;
    max-width: 420px;
    display: block;
    margin: 0 auto 32px;
    object-fit: contain;
    filter: none;
}

/* Mission image — clean white bg */
.mission-image img {
    background: transparent;
    mix-blend-mode: normal;
}

/* Hemp image side panel */
.hemp-image-side img {
    background: transparent;
}
