/* =============================================================================
   OBV — OBUASIBEVERAGES — SITE STYLESHEET
   Green/mint visual language matching the approved homepage design.
   All component classes are prefixed obv- to keep this stylesheet self
   contained if it's ever loaded alongside another project's CSS.
   ============================================================================= */

:root {
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --obv-green-950: #092c22;
    --obv-green-900: #0d3b2c;
    --obv-green-800: #154d3b;
    --obv-green-700: #1c6449;
    --obv-green-600: #227757;
    --obv-green-500: #2fa374;
    --obv-mint-400: #7fe0b0;
    --obv-mint-300: #9be8c4;
    --obv-mint-200: #b9f0d8;
    --obv-mint-100: #d9f7e8;
    --obv-mint-50:  #eefbf5;

    --obv-tan-100: #f0ead9;
    --obv-tan-700: #8a6d2f;

    --obv-ink: #16202b;
    --obv-text: #384152;
    --obv-text-muted: #667085;
    --obv-border: rgba(22,32,43,0.09);
    --obv-white: #ffffff;
    --obv-bg-alt: #f3f6f5;

    --obv-shadow-sm: 0 2px 10px rgba(9,44,34,0.06);
    --obv-shadow-md: 0 10px 30px rgba(9,44,34,0.10);
    --obv-shadow-lg: 0 24px 60px rgba(9,44,34,0.16);
    --obv-radius: 16px;
    --obv-radius-sm: 10px;
}

/* Dark mode overrides — toggled via body.obv-dark (see site.js) */
body.obv-dark {
    --obv-ink: #eafbf3;
    --obv-text: #cdeadd;
    --obv-text-muted: #9fc7b6;
    --obv-border: rgba(234,251,243,0.12);
    --obv-white: #103427;
    --obv-bg-alt: #0c281f;
}
body.obv-dark { background: #0a2019; }
body.obv-dark .obv-hero-visual-panel,
body.obv-dark .obv-about-visual-panel { background: linear-gradient(135deg, #1c6449, #0d3b2c); }
body.obv-dark .obv-product-card-visual,
body.obv-dark .obv-news-card-visual { background: linear-gradient(160deg, #1c6449, #123f2e); }
body.obv-dark .obv-nav { background: #0c281f; }
body.obv-dark .obv-nav.obv-nav-scrolled { background: #0c281f; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body.obv-body {
    font-family: var(--font-body);
    font-size: 16px;
    background: var(--obv-white);
    color: var(--obv-text);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

.obv-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.obv-container-narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--font-display); color: var(--obv-ink); line-height: 1.15; }

.obv-text-accent { color: var(--obv-green-600); }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.obv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.obv-btn-solid { background: var(--obv-green-800); color: #fff; }
.obv-btn-solid:hover { background: var(--obv-green-900); transform: translateY(-1px); }
.obv-btn-outline { border-color: var(--obv-mint-300); color: var(--obv-green-700); background: transparent; }
body.obv-dark .obv-btn-outline { color: var(--obv-mint-300); border-color: var(--obv-green-600); }
.obv-btn-outline:hover { background: var(--obv-mint-50); }
body.obv-dark .obv-btn-outline:hover { background: rgba(127,224,176,0.08); }
.obv-btn-lg { padding: 16px 32px; font-size: 16px; }
.obv-btn-sm { padding: 9px 18px; font-size: 13.5px; }

/* ─── TOP BAR ─────────────────────────────────────────────── */
.obv-topbar { background: var(--obv-green-800); padding: 9px 0; }
.obv-topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.obv-topbar-left { display: flex; gap: 24px; flex-wrap: wrap; row-gap: 4px; min-width: 0; }
.obv-topbar-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.82); font-size: 13.5px; font-weight: 500; white-space: nowrap; }
.obv-topbar-item i { color: var(--obv-mint-300); font-size: 12px; }

@media (max-width: 600px) {
    /* Phone-and-narrower reads the same phone/email/hours from the
       Contact page and footer, so the topbar drops out entirely here
       rather than trying to cram both lines into a few hundred px. */
    .obv-topbar { display: none; }
}
.obv-theme-toggle {
    width: 32px; height: 32px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.12); color: #fff; display: flex;
    align-items: center; justify-content: center; font-size: 13px;
}
.obv-theme-toggle:hover { background: rgba(255,255,255,0.22); }

/* ─── NAV ─────────────────────────────────────────────────── */
.obv-nav { background: #fff; position: sticky; top: 0; z-index: 60; transition: box-shadow 0.2s ease, background 0.2s ease; }
.obv-nav.obv-nav-scrolled { box-shadow: var(--obv-shadow-sm); }
.obv-nav-inner { display: flex; align-items: center; padding: 16px 24px; gap: 40px; }

.obv-logo { display: flex; align-items: center; gap: 10px; }
.obv-logo-icon {
    width: 38px; height: 38px; border-radius: 10px; background: var(--obv-green-800);
    color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.obv-logo-text { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--obv-ink); }
.obv-logo-light .obv-logo-text { color: #fff; }

.obv-nav-links { margin-left: auto; }
.obv-nav-drawer-header, .obv-nav-drawer-footer { display: none; }
.obv-nav-drawer-links { display: flex; align-items: center; gap: 30px; }
.obv-nav-drawer-links > a { font-weight: 500; font-size: 15px; color: var(--obv-text); transition: color 0.15s ease; }
.obv-nav-drawer-links > a:hover { color: var(--obv-green-700); }

.obv-nav-dropdown { position: relative; }
.obv-nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; font-weight: 500; font-size: 15px; color: var(--obv-text); }
.obv-nav-dropdown-trigger i { font-size: 11px; transition: transform 0.15s ease; }
.obv-nav-dropdown-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px);
    background: #fff; border-radius: 14px; box-shadow: var(--obv-shadow-lg); padding: 10px;
    min-width: 230px; opacity: 0; visibility: hidden; transition: all 0.18s ease; z-index: 70;
    display: flex; flex-direction: column;
}
body.obv-dark .obv-nav-dropdown-menu { background: #103427; }
.obv-nav-dropdown-menu a { padding: 10px 12px; border-radius: 8px; font-size: 14.5px; display: flex; align-items: center; gap: 10px; color: var(--obv-text); }
.obv-nav-dropdown-menu a:hover { background: var(--obv-mint-50); color: var(--obv-green-700); }
body.obv-dark .obv-nav-dropdown-menu a:hover { background: rgba(127,224,176,0.08); }
.obv-nav-dropdown-menu a i { width: 16px; color: var(--obv-green-600); font-size: 13px; }
.obv-nav-dropdown-all { font-weight: 700; border-bottom: 1px solid var(--obv-border); margin-bottom: 4px; padding-bottom: 12px !important; }

/* Hover-to-open only makes sense with a pointer — scoping this to desktop
   widths stops a tap-triggered :hover state on touch devices from firing
   these rules. Without this guard, ":hover" briefly wins over the mobile
   drawer's own ".obv-nav-dropdown-open" styling below (a hover selector
   is more specific than a single class), snapping the submenu back to
   its absolutely-positioned, horizontally-centered desktop transform —
   which on a full-width mobile drawer shifts it half its own width off
   to the left and clips the rest, making it look empty/hidden. */
@media (min-width: 961px) {
    .obv-nav-dropdown:hover .obv-nav-dropdown-trigger i { transform: rotate(180deg); }
    .obv-nav-dropdown:hover .obv-nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
}

.obv-nav-actions { display: flex; align-items: center; gap: 18px; }
.obv-cart-link { position: relative; font-size: 19px; color: var(--obv-ink); }
.obv-cart-badge {
    position: absolute; top: -8px; right: -10px; background: var(--obv-green-600); color: #fff;
    font-size: 10.5px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center; padding: 0 4px;
}
.obv-nav-cta { padding: 11px 22px; font-size: 14.5px; }
.obv-nav-burger { display: none; background: none; border: none; font-size: 20px; color: var(--obv-ink); }

/* ─── MOBILE NAV DRAWER — full-screen, brand-dark, slides in from the right ─── */
@media (max-width: 960px) {
    .obv-nav-links {
        position: fixed; inset: 0; width: 100%; height: 100dvh; margin-left: 0;
        background: var(--obv-green-950);
        display: flex; flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 200; overflow-y: auto;
    }
    .obv-nav-links.obv-nav-open { transform: translateX(0); }

    .obv-nav-drawer-header {
        display: flex; align-items: center; justify-content: space-between;
        padding: 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.1); flex-shrink: 0;
    }
    .obv-nav-drawer-header .obv-logo-icon { background: rgba(255,255,255,0.14); width: 32px; height: 32px; font-size: 14px; }
    .obv-nav-drawer-header .obv-logo-text { font-size: 18px; }
    .obv-nav-drawer-close {
        width: 36px; height: 36px; border-radius: 50%; border: none; flex-shrink: 0;
        background: rgba(255,255,255,0.1); color: #fff; font-size: 15px;
        display: flex; align-items: center; justify-content: center; transition: background 0.15s ease;
    }
    .obv-nav-drawer-close:hover { background: rgba(255,255,255,0.22); }

    .obv-nav-drawer-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 4px 0; flex: none; }
    .obv-nav-drawer-links > a,
    .obv-nav-drawer-links .obv-nav-dropdown-trigger {
        color: #fff; font-family: var(--font-display); font-weight: 600; font-size: 17px;
        padding: 13px 20px; border-bottom: 1px solid rgba(255,255,255,0.07);
        display: flex; align-items: center; justify-content: space-between; text-align: left;
    }
    .obv-nav-drawer-links > a:active,
    .obv-nav-drawer-links .obv-nav-dropdown-trigger:active { background: rgba(255,255,255,0.05); }
    .obv-nav-drawer-links .obv-nav-dropdown-trigger i { font-size: 13px; color: rgba(255,255,255,0.5); transition: transform 0.2s ease; }
    .obv-nav-dropdown.obv-nav-dropdown-open .obv-nav-drawer-links .obv-nav-dropdown-trigger i { transform: rotate(180deg); }

    .obv-nav-dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
        background: rgba(255,255,255,0.04); border-radius: 0; padding: 2px 0 2px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.07); display: none; min-width: 0;
    }
    .obv-nav-dropdown.obv-nav-dropdown-open .obv-nav-dropdown-menu { display: flex; flex-direction: column; }
    .obv-nav-dropdown-menu a { color: rgba(255,255,255,0.78); font-family: var(--font-body); font-weight: 500; font-size: 14.5px; padding: 9px 8px; border-radius: 0; }
    .obv-nav-dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.06); }
    body.obv-dark .obv-nav-dropdown-menu a:hover { background: rgba(255,255,255,0.06); }
    .obv-nav-dropdown-menu a i { color: var(--obv-mint-300); }
    .obv-nav-dropdown-all { border-bottom-color: rgba(255,255,255,0.12) !important; }

    .obv-nav-drawer-footer {
        display: flex; flex-direction: column; gap: 12px; padding: 18px 20px; margin-top: auto;
        border-top: 1px solid rgba(255,255,255,0.1); flex-shrink: 0;
    }
    .obv-nav-drawer-footer .obv-btn { width: 100%; }
    .obv-nav-drawer-contact { color: rgba(255,255,255,0.7); font-size: 14px; text-align: center; display: flex; align-items: center; justify-content: center; gap: 8px; }
    .obv-nav-drawer-contact i { color: var(--obv-mint-300); }

    .obv-nav-cta { display: none; }
    .obv-nav-burger { display: block; }
    /* .obv-nav-links leaving the flex flow above (it's now a fixed drawer)
       takes its margin-left: auto with it, so nothing was left pushing
       the cart/burger group to the right edge at this breakpoint — this
       reinstates that push directly on the group that actually remains. */
    .obv-nav-actions { margin-left: auto; }
}

/* Locks background scroll while the full-screen mobile drawer is open. */
body.obv-nav-drawer-locked { overflow: hidden; }

/* ─── FLASH MESSAGES ──────────────────────────────────────── */
.obv-flash { position: sticky; top: 0; z-index: 90; }
.obv-flash-inner { max-width: 640px; margin: 12px auto; padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600;
    display: flex; align-items: center; gap: 10px; box-shadow: var(--obv-shadow-md); }
.obv-flash-success { background: #103427; color: #d9f7e8; }
.obv-flash-error { background: #4a1414; color: #ffd9d9; }

/* ─── EYEBROWS / SECTION HEADINGS ─────────────────────────── */
.obv-eyebrow-pill {
    display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 50px;
    background: var(--obv-mint-100); color: var(--obv-green-700); font-size: 13px; font-weight: 700; margin-bottom: 26px;
}
body.obv-dark .obv-eyebrow-pill { background: rgba(127,224,176,0.12); color: var(--obv-mint-300); }
.obv-eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--obv-green-600); }
.obv-eyebrow-line { display: inline-flex; align-items: center; gap: 10px; color: var(--obv-green-600); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; margin-bottom: 14px; }
.obv-eyebrow-line::before { content: ''; width: 24px; height: 2px; background: var(--obv-green-600); }
.obv-eyebrow-center { justify-content: center; }
.obv-section-heading { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; margin-bottom: 16px; }
.obv-section-heading-sm { font-size: 26px; margin-bottom: 24px; }
.obv-section-desc { color: var(--obv-text-muted); font-size: 16.5px; max-width: 620px; }
.obv-section-header-center { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.obv-section-header-center .obv-section-desc { margin: 0 auto; }
.obv-section-header-split { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }

.obv-section { padding: 90px 0; }
.obv-section-alt { background: var(--obv-bg-alt); }
.obv-section-cta { text-align: center; margin-top: 44px; }

/* ─── HERO ─────────────────────────────────────────────────── */
.obv-hero { padding: 70px 0 40px; background: linear-gradient(180deg, var(--obv-mint-50) 0%, #ffffff 65%); overflow: hidden; }
body.obv-dark .obv-hero { background: linear-gradient(180deg, #0c281f 0%, #0a2019 65%); }
.obv-hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.obv-hero-heading { font-size: clamp(38px, 5vw, 64px); font-weight: 700; margin-bottom: 22px; }
.obv-hero-desc { color: var(--obv-text-muted); font-size: 17px; max-width: 520px; margin-bottom: 34px; }
.obv-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.obv-hero-stats { display: flex; gap: 44px; flex-wrap: wrap; }
.obv-hero-stat-value { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--obv-green-700); }
.obv-hero-stat-label { font-size: 13.5px; color: var(--obv-text-muted); font-weight: 500; margin-top: 2px; }

.obv-hero-visual { position: relative; min-height: 460px; }
.obv-hero-visual-panel {
    position: absolute; inset: 0; border-radius: 28px; overflow: hidden;
    background: linear-gradient(135deg, var(--obv-mint-300), var(--obv-mint-400));
}
.obv-hero-visual-slide { opacity: 0; transition: opacity 0.6s ease; z-index: 1; }
.obv-hero-visual-slide-active { opacity: 1; z-index: 2; }

/* Shown when a hero slide has no photo uploaded yet (Admin → Hero Slides) —
   a branded dot-grid + watermark icon instead of a flat, unfinished-looking
   block of color, so an empty slide still looks intentional. */
.obv-hero-visual-panel-empty {
    background-image:
        radial-gradient(rgba(13,59,44,0.14) 1.5px, transparent 1.5px),
        linear-gradient(135deg, var(--obv-mint-300), var(--obv-mint-400));
    background-size: 18px 18px, 100% 100%;
}
.obv-hero-visual-placeholder-icon {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    font-size: 130px; color: rgba(13,59,44,0.16);
}
body.obv-dark .obv-hero-visual-panel-empty {
    background-image:
        radial-gradient(rgba(234,251,243,0.08) 1.5px, transparent 1.5px),
        linear-gradient(135deg, #1c6449, #0d3b2c);
    background-size: 18px 18px, 100% 100%;
}
body.obv-dark .obv-hero-visual-placeholder-icon { color: rgba(234,251,243,0.14); }

.obv-hero-slide { transition: opacity 0.25s ease; }
.obv-hero-dots { display: flex; gap: 10px; margin-top: 30px; }
.obv-hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--obv-mint-300); padding: 0; cursor: pointer; transition: all 0.2s ease; }
.obv-hero-dot-active { background: var(--obv-green-700); width: 26px; border-radius: 6px; }
body.obv-dark .obv-hero-dot { background: rgba(127,224,176,0.3); }
body.obv-dark .obv-hero-dot-active { background: var(--obv-mint-400); }
.obv-hero-float-card {
    /* z-index above .obv-hero-visual-slide-active (2) so the badges always
       float on top of the hero photo/panel behind them, never get covered
       by it — this was the cause of badges being clipped/hidden. */
    position: absolute; z-index: 3; background: #fff; border-radius: 16px; box-shadow: var(--obv-shadow-lg);
    padding: 16px 18px; display: flex; align-items: center; gap: 12px; max-width: 230px;
}
body.obv-dark .obv-hero-float-card { background: #103427; }
.obv-hero-float-card-1 { top: -6%; left: -8%; }
.obv-hero-float-card-2 { bottom: -6%; right: -6%; }
.obv-hero-float-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--obv-mint-100); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
body.obv-dark .obv-hero-float-icon { background: rgba(127,224,176,0.12); }
.obv-hero-float-card strong { display: block; font-size: 14.5px; color: var(--obv-ink); }
.obv-hero-float-card span { font-size: 12.5px; color: var(--obv-text-muted); }

@media (max-width: 960px) {
    .obv-hero-inner { grid-template-columns: 1fr; }
    .obv-hero-visual { min-height: 340px; margin-top: 40px; }
    .obv-hero-float-card { max-width: 190px; padding: 12px 14px; }
}

/* ─── MARQUEE ──────────────────────────────────────────────── */
.obv-marquee { background: var(--obv-green-900); overflow: hidden; padding: 14px 0; }
.obv-marquee-track { display: flex; gap: 40px; white-space: nowrap; width: max-content; animation: obv-marquee-scroll 30s linear infinite; }
.obv-marquee-item { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 10px; }
.obv-marquee-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--obv-mint-400); }
@keyframes obv-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─── ABOUT ────────────────────────────────────────────────── */
.obv-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.obv-about-visual { position: relative; min-height: 420px; }
.obv-about-visual-panel { position: absolute; inset: 0; border-radius: 24px; background: linear-gradient(150deg, var(--obv-mint-100), var(--obv-mint-300)); }
.obv-about-stat-card {
    position: absolute; bottom: -8%; left: -6%; background: #fff; border-radius: 18px; box-shadow: var(--obv-shadow-lg);
    padding: 22px 26px; text-align: center;
}
body.obv-dark .obv-about-stat-card { background: #103427; }
.obv-about-stat-value { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--obv-green-700); }
.obv-about-stat-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; color: var(--obv-text-muted); margin-top: 4px; }

.obv-about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 30px 0 34px; }
.obv-about-point { display: flex; gap: 14px; align-items: flex-start; }
.obv-about-point-icon {
    width: 40px; height: 40px; border-radius: 10px; background: var(--obv-mint-50); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0;
}
body.obv-dark .obv-about-point-icon { background: rgba(127,224,176,0.1); }
.obv-about-point strong { display: block; font-size: 14.5px; color: var(--obv-ink); margin-bottom: 2px; }
.obv-about-point span { font-size: 13px; color: var(--obv-text-muted); }

/* ─── ABOUT PAGE (dedicated /about page) ──────────────────── */
.obv-story-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.obv-story-visual {
    position: relative; min-height: 380px; border-radius: 24px;
    background: linear-gradient(150deg, var(--obv-mint-100), var(--obv-mint-300));
    display: flex; align-items: center; justify-content: center;
}
.obv-story-visual i { font-size: 84px; color: rgba(9,44,34,0.35); }
body.obv-dark .obv-story-visual { background: linear-gradient(135deg, #1c6449, #0d3b2c); }

.obv-mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 48px; }
.obv-mv-card { background: #fff; border: 1px solid var(--obv-border); border-radius: var(--obv-radius); padding: 34px 30px; }
body.obv-dark .obv-mv-card { background: var(--obv-white); }
.obv-mv-card-icon {
    width: 54px; height: 54px; border-radius: 14px; background: var(--obv-mint-100); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px;
}
body.obv-dark .obv-mv-card-icon { background: rgba(127,224,176,0.1); }
.obv-mv-card h3 { font-size: 19px; margin-bottom: 10px; }
.obv-mv-card p { font-size: 14.5px; color: var(--obv-text-muted); }

.obv-split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.obv-split-row + .obv-split-row { margin-top: 80px; }
.obv-split-row-reverse .obv-split-visual { order: 2; }
.obv-split-row-reverse .obv-split-copy { order: 1; }
.obv-split-visual {
    position: relative; min-height: 320px; border-radius: 24px;
    background: linear-gradient(150deg, var(--obv-mint-100), var(--obv-mint-300));
    display: flex; align-items: center; justify-content: center;
}
.obv-split-visual i { font-size: 72px; color: rgba(9,44,34,0.35); }
body.obv-dark .obv-split-visual { background: linear-gradient(135deg, #1c6449, #0d3b2c); }
.obv-split-copy .obv-eyebrow-line { margin-bottom: 14px; }
.obv-split-copy h2 { font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 16px; }
.obv-split-copy p { color: var(--obv-text-muted); font-size: 15.5px; }

.obv-cta-band { background: var(--obv-green-900); color: #fff; padding: 76px 0; text-align: center; }
.obv-cta-band-icon {
    width: 56px; height: 56px; border-radius: 50%; background: rgba(127,224,176,0.15); color: var(--obv-mint-300);
    display: flex; align-items: center; justify-content: center; font-size: 21px; margin: 0 auto 22px;
}
.obv-cta-band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); margin-bottom: 16px; }
.obv-cta-band p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto 30px; font-size: 16px; }
.obv-cta-band-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.obv-cta-band .obv-btn-outline { border-color: rgba(255,255,255,0.35); color: #fff; }
.obv-cta-band .obv-btn-outline:hover { background: rgba(255,255,255,0.1); }

@media (max-width: 900px) {
    .obv-story-grid { grid-template-columns: 1fr; }
    .obv-story-visual { min-height: 260px; }
    .obv-mv-grid { grid-template-columns: 1fr; }
    .obv-split-row { grid-template-columns: 1fr; gap: 26px; }
    .obv-split-row + .obv-split-row { margin-top: 50px; }
    .obv-split-row-reverse .obv-split-visual, .obv-split-row-reverse .obv-split-copy { order: initial; }
    .obv-split-visual { min-height: 240px; }
}

@media (max-width: 900px) {
    .obv-about-grid { grid-template-columns: 1fr; }
    .obv-about-visual { min-height: 320px; margin-bottom: 60px; }
    .obv-about-points { grid-template-columns: 1fr; }
}

/* ─── FILTER TABS & CHIPS ──────────────────────────────────── */
.obv-filter-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 30px; flex-wrap: wrap; }
.obv-admin-filter-tabs { justify-content: flex-start; margin-bottom: 24px; }
.obv-filter-tab {
    padding: 11px 24px; border-radius: 50px; font-weight: 600; font-size: 14.5px; background: #fff;
    color: var(--obv-text); border: 1px solid var(--obv-border); transition: all 0.15s ease;
}
body.obv-dark .obv-filter-tab { background: #103427; }
.obv-filter-tab-active, .obv-filter-tab:hover { background: var(--obv-green-800); color: #fff; border-color: var(--obv-green-800); }
.obv-category-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 44px; }
.obv-chip { display: inline-flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 50px; font-size: 13.5px;
    font-weight: 500; background: #fff; border: 1px solid var(--obv-border); color: var(--obv-text-muted); }
body.obv-dark .obv-chip { background: #103427; }
.obv-chip-active { background: var(--obv-mint-100); color: var(--obv-green-700); border-color: var(--obv-mint-300); }
body.obv-dark .obv-chip-active { background: rgba(127,224,176,0.12); color: var(--obv-mint-300); }

/* ─── PRODUCT GRID / CARDS ─────────────────────────────────── */
.obv-product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 1100px) { .obv-product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .obv-product-grid { grid-template-columns: 1fr; } }

.obv-product-card {
    background: #fff; border: 1px solid var(--obv-border); border-radius: var(--obv-radius); overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease; display: flex; flex-direction: column;
}
body.obv-dark .obv-product-card { background: #103427; }
.obv-product-card:hover { transform: translateY(-4px); box-shadow: var(--obv-shadow-md); }
.obv-product-card-visual {
    position: relative; aspect-ratio: 1 / 0.85; background: linear-gradient(160deg, var(--obv-mint-200), var(--obv-mint-400));
    display: flex; align-items: center; justify-content: center; font-size: 54px; color: rgba(9,44,34,0.55);
}
.obv-product-card-visual:hover { color: rgba(9,44,34,0.7); }
.obv-tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase; }
.obv-tag-alcoholic { background: var(--obv-tan-100); color: var(--obv-tan-700); }
.obv-tag-non-alcoholic { background: var(--obv-mint-100); color: var(--obv-green-700); }
.obv-tag-news { position: static; display: inline-block; background: var(--obv-mint-100); color: var(--obv-green-700); padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; }

.obv-product-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.obv-product-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; color: var(--obv-green-600); text-transform: uppercase; margin-bottom: 6px; }
.obv-product-name { font-size: 18px; margin-bottom: 8px; }
.obv-product-name a { color: var(--obv-ink); }
.obv-product-desc { font-size: 13.5px; color: var(--obv-text-muted); flex: 1; margin-bottom: 16px; }
.obv-product-card-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--obv-border); }
.obv-product-price { font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--obv-green-700); }
.obv-product-arrow-btn {
    width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--obv-mint-300); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; transition: all 0.15s ease;
}
.obv-product-arrow-btn:hover { background: var(--obv-green-800); border-color: var(--obv-green-800); color: #fff; }

/* ─── WHY US ───────────────────────────────────────────────── */
.obv-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .obv-feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .obv-feature-grid { grid-template-columns: 1fr; } }
.obv-feature-card { background: #fff; border: 1px solid var(--obv-border); border-radius: var(--obv-radius); padding: 32px 28px; transition: box-shadow 0.2s ease, transform 0.2s ease; }
body.obv-dark .obv-feature-card { background: #103427; }
.obv-feature-card:hover { box-shadow: var(--obv-shadow-md); transform: translateY(-3px); }
.obv-feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--obv-mint-100); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 20px; }
body.obv-dark .obv-feature-icon { background: rgba(127,224,176,0.1); }
.obv-feature-card h3 { font-size: 18px; margin-bottom: 10px; }
.obv-feature-card p { font-size: 14px; color: var(--obv-text-muted); }

/* ─── PROCESS ──────────────────────────────────────────────── */
.obv-process-section { padding: 90px 0; background: linear-gradient(180deg, var(--obv-mint-50), #fff); }
body.obv-dark .obv-process-section { background: linear-gradient(180deg, #0c281f, #0a2019); }
.obv-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; margin-top: 20px; }
.obv-process-steps::before {
    content: ''; position: absolute; top: 34px; left: 12.5%; right: 12.5%; height: 2px; background: var(--obv-mint-300); z-index: 0;
}
@media (max-width: 900px) { .obv-process-steps { grid-template-columns: 1fr 1fr; } .obv-process-steps::before { display: none; } }
@media (max-width: 560px) { .obv-process-steps { grid-template-columns: 1fr; } }
.obv-process-step { text-align: center; position: relative; z-index: 1; }
.obv-process-circle {
    width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 2px solid var(--obv-mint-300); color: var(--obv-green-700);
    display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 21px;
    margin: 0 auto 18px;
}
body.obv-dark .obv-process-circle { background: #103427; }
.obv-process-step h3 { font-size: 17px; margin-bottom: 8px; }
.obv-process-step p { font-size: 13.5px; color: var(--obv-text-muted); max-width: 220px; margin: 0 auto; }

/* ─── NEWS ─────────────────────────────────────────────────── */
.obv-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .obv-news-grid { grid-template-columns: 1fr; } }
.obv-news-card { background: #fff; border: 1px solid var(--obv-border); border-radius: var(--obv-radius); overflow: hidden; transition: all 0.2s ease; display: block; }
body.obv-dark .obv-news-card { background: #103427; }
.obv-news-card:hover { transform: translateY(-4px); box-shadow: var(--obv-shadow-md); }
.obv-news-card-visual { position: relative; aspect-ratio: 16/10; background: linear-gradient(160deg, var(--obv-mint-200), var(--obv-mint-400)); display: flex; align-items: center; justify-content: center; font-size: 40px; color: rgba(9,44,34,0.5); }
.obv-news-date-badge { position: absolute; bottom: 12px; left: 14px; background: #fff; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; color: var(--obv-ink); }
.obv-news-card-body { padding: 20px; }
.obv-news-card-body h3 { font-size: 17px; margin-bottom: 10px; line-height: 1.35; }
.obv-news-card-body p { font-size: 13.5px; color: var(--obv-text-muted); margin-bottom: 14px; }
.obv-read-more { font-size: 13.5px; font-weight: 700; color: var(--obv-green-700); display: inline-flex; align-items: center; gap: 6px; }

/* ─── TESTIMONIALS ─────────────────────────────────────────── */
.obv-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .obv-testimonial-grid { grid-template-columns: 1fr; } }
.obv-testimonial-card { background: #fff; border: 1px solid var(--obv-border); border-radius: var(--obv-radius); padding: 28px; }
body.obv-dark .obv-testimonial-card { background: #103427; }
.obv-stars { color: #eab308; font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.obv-testimonial-quote { font-size: 14.5px; color: var(--obv-text); font-style: italic; margin-bottom: 22px; line-height: 1.7; }
.obv-testimonial-author { display: flex; align-items: center; gap: 12px; }
.obv-avatar-circle { width: 42px; height: 42px; border-radius: 50%; background: var(--obv-green-700); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.obv-testimonial-author strong { display: block; font-size: 14.5px; color: var(--obv-ink); }
.obv-testimonial-author span { font-size: 12.5px; color: var(--obv-text-muted); }

/* ─── FAQ ──────────────────────────────────────────────────── */
.obv-faq-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .obv-faq-grid { grid-template-columns: 1fr; } }
.obv-faq-cta-card { background: var(--obv-green-900); color: #fff; border-radius: var(--obv-radius); padding: 28px; margin-top: 30px; }
.obv-faq-cta-card h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.obv-faq-cta-card p { font-size: 13.5px; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.obv-faq-cta-standalone { margin-top: 40px; text-align: center; }
.obv-faq-list { display: flex; flex-direction: column; gap: 14px; }
.obv-faq-item { background: #fff; border: 1px solid var(--obv-border); border-radius: 14px; overflow: hidden; transition: border-color 0.15s ease; }
body.obv-dark .obv-faq-item { background: #103427; }
.obv-faq-item-open { border-color: var(--obv-green-500); }
.obv-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: none; border: none; text-align: left; font-size: 15px; font-weight: 600; color: var(--obv-ink); }
.obv-faq-toggle-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--obv-mint-100); color: var(--obv-green-700); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
body.obv-dark .obv-faq-toggle-icon { background: rgba(127,224,176,0.12); }
.obv-faq-answer { padding: 0 20px 20px; font-size: 14px; color: var(--obv-text-muted); }

/* ─── FOOTER ───────────────────────────────────────────────── */
.obv-footer { background: var(--obv-green-950); color: rgba(255,255,255,0.72); padding: 70px 0 0; }
.obv-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
@media (max-width: 800px) { .obv-footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .obv-footer-top { grid-template-columns: 1fr; } }
.obv-footer-desc { font-size: 13.5px; line-height: 1.7; margin: 18px 0 22px; max-width: 320px; }
.obv-footer-social { display: flex; gap: 10px; }
.obv-footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; transition: background 0.15s ease; }
.obv-footer-social a:hover { background: var(--obv-green-600); }
.obv-footer-col h4 { color: #fff; font-size: 14.5px; font-weight: 700; margin-bottom: 18px; }
.obv-footer-col a { display: block; font-size: 13.5px; margin-bottom: 12px; color: rgba(255,255,255,0.65); }
.obv-footer-col a:hover { color: #fff; }
.obv-footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.obv-footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.obv-footer-legal a { color: rgba(255,255,255,0.6); }
.obv-footer-legal a:hover { color: #fff; }

@media (max-width: 640px) {
    .obv-footer-bottom { flex-direction: column; text-align: center; gap: 14px; }
    .obv-footer-legal { justify-content: center; }
}

.obv-scroll-top {
    position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: none;
    background: var(--obv-green-800); color: #fff; font-size: 16px; display: flex; align-items: center; justify-content: center;
    box-shadow: var(--obv-shadow-md); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.2s ease; z-index: 55;
}
.obv-scroll-top.obv-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.obv-scroll-top:hover { background: var(--obv-green-900); }

/* ─── CHAT WIDGET ──────────────────────────────────────────── */
.obv-chat-widget { position: fixed; bottom: 26px; right: 92px; z-index: 65; }
@media (max-width: 560px) { .obv-chat-widget { right: 16px; bottom: 90px; } }
.obv-chat-toggle-btn {
    display: flex; align-items: center; gap: 10px; background: var(--obv-green-800); color: #fff; border: none;
    padding: 14px 22px; border-radius: 50px; font-weight: 700; font-size: 14px; box-shadow: var(--obv-shadow-lg); position: relative;
}
.obv-chat-toggle-btn:hover { background: var(--obv-green-900); }
.obv-chat-notif-badge { position: absolute; top: -6px; right: -6px; background: #dc2626; color: #fff; font-size: 10.5px; font-weight: 700;
    min-width: 18px; height: 18px; border-radius: 20px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

.obv-chat-window {
    position: absolute; bottom: 74px; right: 0; width: 360px; max-width: calc(100vw - 32px); height: 500px; max-height: 70vh;
    background: #fff; border-radius: 18px; box-shadow: var(--obv-shadow-lg); display: flex; flex-direction: column; overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(16px) scale(0.97); transition: all 0.2s ease; transform-origin: bottom right;
}
body.obv-dark .obv-chat-window { background: #103427; }
.obv-chat-widget.open .obv-chat-window { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
.obv-chat-widget.open .obv-chat-toggle-btn { display: none; }

.obv-chat-header { background: var(--obv-green-900); color: #fff; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.obv-chat-header-info { display: flex; align-items: center; gap: 12px; }
.obv-chat-header-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.obv-chat-header-text h3 { color: #fff; font-size: 14.5px; margin-bottom: 2px; }
.obv-chat-header-text p { font-size: 11.5px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; }
.obv-online-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; display: inline-block; }
.obv-chat-close-btn { background: none; border: none; color: #fff; font-size: 16px; opacity: 0.8; }
.obv-chat-close-btn:hover { opacity: 1; }

.obv-chat-messages { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 14px; background: var(--obv-mint-50); }
body.obv-dark .obv-chat-messages { background: #0c281f; }
.obv-chat-message { max-width: 84%; display: flex; flex-direction: column; gap: 4px; }
.obv-chat-message-content { padding: 10px 14px; border-radius: 14px; font-size: 13.5px; line-height: 1.5; }
.obv-chat-message-time { font-size: 10.5px; color: var(--obv-text-muted); padding: 0 4px; }
.obv-chat-bot, .obv-chat-admin { align-self: flex-start; }
.obv-chat-bot .obv-chat-message-content, .obv-chat-admin .obv-chat-message-content { background: #fff; color: var(--obv-ink); border-bottom-left-radius: 4px; }
body.obv-dark .obv-chat-bot .obv-chat-message-content, body.obv-dark .obv-chat-admin .obv-chat-message-content { background: #103427; color: #eafbf3; }
.obv-chat-visitor { align-self: flex-end; }
.obv-chat-visitor .obv-chat-message-content { background: var(--obv-green-700); color: #fff; border-bottom-right-radius: 4px; }

.obv-chat-input-area { display: flex; align-items: center; gap: 10px; padding: 14px; border-top: 1px solid var(--obv-border); background: #fff; }
body.obv-dark .obv-chat-input-area { background: #103427; }
.obv-chat-input { flex: 1; border: 1px solid var(--obv-border); border-radius: 50px; padding: 10px 16px; font-size: 13.5px; background: var(--obv-bg-alt); color: var(--obv-ink); }
.obv-chat-input:focus { outline: none; border-color: var(--obv-green-500); }
.obv-chat-send-btn { width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--obv-green-800); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.obv-chat-send-btn:hover { background: var(--obv-green-900); }

.obv-chat-order-form { background: #fff; border-radius: 12px; padding: 14px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--obv-shadow-sm); max-width: 260px; }
body.obv-dark .obv-chat-order-form { background: #0c281f; }
.obv-chat-order-form-title { font-size: 12.5px; color: var(--obv-text-muted); }
.obv-chat-order-form label { display: flex; flex-direction: column; gap: 4px; font-size: 11.5px; font-weight: 600; color: var(--obv-text-muted); }
.obv-chat-order-form input, .obv-chat-order-form textarea { border: 1px solid var(--obv-border); border-radius: 8px; padding: 7px 10px; font-size: 12.5px; }

/* ─── PAGE HEADER (products/faqs/news/cart/checkout/contact) ─ */
.obv-page-header { background: linear-gradient(180deg, var(--obv-mint-50), #fff); padding: 64px 0 44px; text-align: center; }
body.obv-dark .obv-page-header { background: linear-gradient(180deg, #0c281f, #0a2019); }
.obv-page-header h1 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 12px; }
.obv-page-header p { color: var(--obv-text-muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

.obv-breadcrumb-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--obv-text-muted); margin-bottom: 28px; }
.obv-breadcrumb-back:hover { color: var(--obv-green-700); }

/* ─── FORMS (shared) ───────────────────────────────────────── */
.obv-form { display: flex; flex-direction: column; gap: 18px; }
.obv-form label { display: flex; flex-direction: column; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--obv-ink); }
.obv-form input, .obv-form textarea, .obv-form select {
    border: 1px solid var(--obv-border); border-radius: 10px; padding: 12px 14px; font-size: 14.5px; color: var(--obv-ink);
    background: #fff; font-weight: 400;
}
body.obv-dark .obv-form input, body.obv-dark .obv-form textarea, body.obv-dark .obv-form select { background: #0c281f; color: #eafbf3; }
.obv-form input:focus, .obv-form textarea:focus, .obv-form select:focus { outline: none; border-color: var(--obv-green-500); }
.obv-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .obv-form-row { grid-template-columns: 1fr; } }

/* ─── CART / CHECKOUT ──────────────────────────────────────── */
.obv-empty-state { text-align: center; padding: 70px 20px; color: var(--obv-text-muted); }
.obv-empty-state i { font-size: 44px; color: var(--obv-mint-300); margin-bottom: 18px; }
.obv-empty-state p { margin-bottom: 22px; font-size: 15px; }

.obv-cart-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.obv-cart-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--obv-border); border-radius: 14px; padding: 14px 18px; }
body.obv-dark .obv-cart-row { background: #103427; }
.obv-cart-row-icon { width: 48px; height: 48px; border-radius: 10px; background: var(--obv-mint-100); color: var(--obv-green-700); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
body.obv-dark .obv-cart-row-icon { background: rgba(127,224,176,0.1); }
.obv-cart-row-info { flex: 1; min-width: 120px; }
.obv-cart-row-info a { display: block; font-weight: 600; font-size: 14.5px; color: var(--obv-ink); }
.obv-cart-row-info span { font-size: 12.5px; color: var(--obv-text-muted); }
.obv-cart-row-subtotal { font-weight: 700; color: var(--obv-green-700); min-width: 70px; text-align: right; }
.obv-cart-remove-btn { background: none; border: none; color: var(--obv-text-muted); font-size: 15px; padding: 6px; }
.obv-cart-remove-btn:hover { color: #dc2626; }

.obv-qty-stepper { display: flex; align-items: center; border: 1px solid var(--obv-border); border-radius: 50px; overflow: hidden; }
.obv-qty-stepper button { width: 30px; height: 30px; background: none; border: none; font-size: 16px; color: var(--obv-ink); }
.obv-qty-stepper button:hover { background: var(--obv-mint-50); }
.obv-qty-stepper input { width: 40px; text-align: center; border: none; font-size: 13.5px; padding: 0; background: transparent; }

.obv-cart-summary { background: var(--obv-bg-alt); border-radius: var(--obv-radius); padding: 28px; text-align: center; }
.obv-cart-summary-row { display: flex; justify-content: space-between; font-size: 17px; margin-bottom: 6px; }
.obv-cart-summary-note { font-size: 12.5px; color: var(--obv-text-muted); margin-bottom: 20px; }
.obv-cart-checkout-btn { width: 100%; margin-bottom: 12px; }

.obv-checkout-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 860px) { .obv-checkout-grid { grid-template-columns: 1fr; } }
.obv-checkout-note { font-size: 13px; color: var(--obv-text-muted); text-align: center; }
.obv-checkout-note a { color: var(--obv-green-700); font-weight: 600; }
.obv-checkout-summary { background: var(--obv-bg-alt); border-radius: var(--obv-radius); padding: 26px; position: sticky; top: 100px; }
.obv-checkout-summary h3 { font-size: 17px; margin-bottom: 18px; }
.obv-checkout-summary-item { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 12px; color: var(--obv-text); }
.obv-checkout-summary-total { display: flex; justify-content: space-between; font-size: 18px; font-weight: 700; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--obv-border); color: var(--obv-ink); }

.obv-order-confirmation { text-align: center; }
.obv-confirmation-icon { font-size: 60px; color: var(--obv-green-600); margin-bottom: 20px; }
.obv-confirmation-sub { color: var(--obv-text-muted); margin-bottom: 30px; }
.obv-confirmation-card { background: var(--obv-bg-alt); border-radius: var(--obv-radius); padding: 26px; text-align: left; margin-bottom: 30px; }
.obv-confirmation-card hr { border: none; border-top: 1px solid var(--obv-border); margin: 16px 0; }
.obv-confirmation-address { font-size: 13.5px; color: var(--obv-text-muted); }
.obv-confirmation-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── PRODUCT DETAIL ───────────────────────────────────────── */
.obv-product-detail-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 54px; align-items: start; margin-bottom: 70px; }
@media (max-width: 860px) { .obv-product-detail-grid { grid-template-columns: 1fr; } }
.obv-product-detail-visual { position: relative; aspect-ratio: 1/0.9; border-radius: var(--obv-radius); background: linear-gradient(160deg, var(--obv-mint-200), var(--obv-mint-400)); display: flex; align-items: center; justify-content: center; font-size: 90px; color: rgba(9,44,34,0.5); }
.obv-product-detail-info h1 { font-size: clamp(26px, 3.4vw, 36px); margin: 6px 0 16px; }
.obv-product-detail-desc { color: var(--obv-text-muted); margin-bottom: 20px; }
.obv-product-detail-price { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--obv-green-700); margin-bottom: 26px; }
.obv-add-to-cart-form { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.obv-order-via-chat-btn { margin-bottom: 20px; }
.obv-product-category-line { font-size: 13.5px; color: var(--obv-text-muted); }
.obv-product-category-line a { color: var(--obv-green-700); font-weight: 600; }
.obv-related-products h2 { text-align: center; }

/* ─── NEWS ARTICLE ─────────────────────────────────────────── */
.obv-news-article h1 { font-size: clamp(28px, 4vw, 40px); margin: 14px 0; }
.obv-news-article-date { font-size: 13px; color: var(--obv-text-muted); margin-bottom: 26px; }
.obv-news-article-visual { aspect-ratio: 16/8; border-radius: var(--obv-radius); background: linear-gradient(160deg, var(--obv-mint-200), var(--obv-mint-400)); display: flex; align-items: center; justify-content: center; font-size: 60px; color: rgba(9,44,34,0.5); margin-bottom: 34px; }
.obv-news-article-body { font-size: 16px; line-height: 1.85; color: var(--obv-text); }

/* ─── CONTACT ──────────────────────────────────────────────── */
.obv-contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 860px) { .obv-contact-grid { grid-template-columns: 1fr; } }
.obv-contact-info { display: flex; flex-direction: column; gap: 16px; }
.obv-contact-info-card { display: flex; gap: 14px; align-items: flex-start; background: var(--obv-bg-alt); border-radius: 14px; padding: 18px; }
.obv-contact-info-icon { width: 42px; height: 42px; border-radius: 10px; background: var(--obv-mint-100); color: var(--obv-green-700); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
body.obv-dark .obv-contact-info-icon { background: rgba(127,224,176,0.1); }
.obv-contact-info-card strong { display: block; font-size: 14.5px; margin-bottom: 3px; }
.obv-contact-info-card span { font-size: 13px; color: var(--obv-text-muted); }

/* ─── LEGAL / 404 ──────────────────────────────────────────── */
.obv-legal-title { font-size: 32px; margin-bottom: 24px; }
.obv-legal-body h3 { font-size: 18px; margin: 26px 0 10px; }
.obv-legal-body p { color: var(--obv-text-muted); margin-bottom: 6px; line-height: 1.8; }
.obv-error-page { text-align: center; padding: 120px 20px; }
.obv-error-icon { font-size: 54px; color: var(--obv-mint-300); margin-bottom: 20px; }
.obv-error-page h1 { font-size: 30px; margin-bottom: 12px; }
.obv-error-page p { color: var(--obv-text-muted); margin-bottom: 26px; }
