/* ============================================
   ORGANIC & NATURAL Theme — "Apothicaire Éditorial"
   Fraunces + DM Sans + Cormorant Garamond
   ============================================ */

/* --- CSS Variables --- */
:root {
    /* Fonds — warm cream & sand */
    --og-bg-main: #FBF8F4;
    --og-bg-card: #FFFFFF;
    --og-bg-alt: #F5F0E8;
    --og-bg-accent: #EDE6D8;
    --og-bg-dark: #2C2418;

    /* Text */
    --og-text: #2C2418;
    --og-text-secondary: #6B5E4F;
    --og-text-muted: #9C9081;

    /* Primary — sage green */
    --og-primary: #6B8F71;
    --og-primary-light: #E8F0E9;
    --og-primary-dark: #4A6B4F;

    /* Accents */
    --og-amber: #C4813D;
    --og-terracotta: #C47458;
    --og-cream: #F0E6D3;
    --og-red: #B85450;

    /* Borders & Shadows */
    --og-border: #E5DED3;
    --og-border-hover: #D4C9B8;
    --og-shadow-sm: 0 2px 8px rgba(44, 36, 24, 0.04);
    --og-shadow-md: 0 4px 16px rgba(44, 36, 24, 0.07);
    --og-shadow-lg: 0 12px 40px rgba(44, 36, 24, 0.10);

    /* Radii */
    --og-radius-sm: 10px;
    --og-radius-md: 16px;
    --og-radius-lg: 24px;
    --og-radius-full: 9999px;

    /* Spacing */
    --og-space-xs: 0.5rem;
    --og-space-sm: 0.75rem;
    --og-space-md: 1rem;
    --og-space-lg: 1.5rem;
    --og-space-xl: 2.5rem;
    --og-space-2xl: 4rem;
    --og-space-3xl: 6rem;

    /* Easing */
    --og-ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --og-ease-out: cubic-bezier(0.22, 1, 0.36, 1);

    /* Font stacks */
    --og-font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
    --og-font-body: 'DM Sans', 'Nunito Sans', sans-serif;
    --og-font-accent: 'Cormorant Garamond', Georgia, serif;
}

/* --- Reset & Base (organic-theme scoped) --- */
.organic-theme {
    background: var(--og-bg-main);
    color: var(--og-text);
    font-family: var(--og-font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    /* Paper texture */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23n)' opacity='0.015'/%3E%3C/svg%3E");
}
.organic-theme *, .organic-theme *::before, .organic-theme *::after {
    box-sizing: border-box;
}
.organic-theme a {
    color: var(--og-primary-dark);
    text-decoration: none;
    transition: color 0.3s var(--og-ease);
}
.organic-theme a:hover {
    color: var(--og-primary);
}
.organic-theme img {
    max-width: 100%;
    height: auto;
    display: block;
}
.organic-theme h1, .organic-theme h2, .organic-theme h3, .organic-theme h4 {
    font-family: var(--og-font-display);
    color: var(--og-text);
    line-height: 1.2;
    margin: 0 0 var(--og-space-md) 0;
}
.organic-theme h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; letter-spacing: -0.01em; }
.organic-theme h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 500; }
.organic-theme h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }
.organic-theme p {
    color: var(--og-text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0 0 var(--og-space-md) 0;
}

/* --- Container --- */
.og-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--og-space-lg);
}

/* --- Scroll Reveal (slower, organic) --- */
.og-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s var(--og-ease), transform 0.9s var(--og-ease);
}
.og-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   HEADER — warm, understated, botanical
   ================================================ */
.og-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--og-bg-main);
    border-bottom: 1px solid var(--og-border);
    padding: var(--og-space-md) 0;
    transition: background 0.4s var(--og-ease), box-shadow 0.4s var(--og-ease);
}
.og-header.scrolled {
    background: rgba(251, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(44, 36, 24, 0.05);
}
.og-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--og-space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--og-space-xl);
}
.og-header__logo {
    font-family: var(--og-font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--og-text);
    text-decoration: none;
    letter-spacing: -0.02em;
}
.og-header__logo:hover { color: var(--og-primary-dark); }
.og-header__nav {
    display: flex;
    align-items: center;
    gap: var(--og-space-xl);
}
.og-header__nav > a,
.og-dropdown__trigger {
    font-family: var(--og-font-body);
    color: var(--og-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
}
.og-header__nav > a::after,
.og-dropdown__trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--og-primary);
    transition: width 0.35s var(--og-ease);
}
.og-header__nav > a:hover::after,
.og-dropdown__trigger:hover::after {
    width: 100%;
}
.og-header__nav > a:hover,
.og-dropdown__trigger:hover {
    color: var(--og-text);
}
.og-dropdown__trigger svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s var(--og-ease);
}
.og-dropdown {
    position: relative;
}
.og-dropdown__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: var(--og-bg-card);
    border: 1px solid var(--og-border);
    border-radius: var(--og-radius-md);
    box-shadow: var(--og-shadow-lg);
    padding: var(--og-space-sm);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--og-ease), transform 0.35s var(--og-ease), visibility 0.35s;
    z-index: 200;
}
.og-dropdown:hover .og-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.og-dropdown:hover .og-dropdown__trigger svg {
    transform: rotate(180deg);
}
.og-dropdown__menu a {
    display: block;
    padding: var(--og-space-xs) var(--og-space-md);
    color: var(--og-text-secondary);
    font-size: 0.9rem;
    border-radius: var(--og-radius-sm);
    transition: background 0.2s, color 0.2s;
}
.og-dropdown__menu a:hover {
    background: var(--og-primary-light);
    color: var(--og-primary-dark);
}

/* Header actions & cart */
.og-header__actions {
    display: flex;
    align-items: center;
    gap: var(--og-space-md);
}
.og-header__cart {
    position: relative;
    display: flex;
    align-items: center;
}
.og-header__cart svg {
    width: 22px;
    height: 22px;
    stroke: var(--og-text-secondary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.og-header__cart:hover svg { stroke: var(--og-primary-dark); }
.og-header__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--og-amber);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.og-header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.og-header__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--og-text);
    border-radius: 2px;
    transition: all 0.35s var(--og-ease);
}
.og-header__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.og-header__hamburger.active span:nth-child(2) {
    opacity: 0;
}
.og-header__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.og-mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 320px;
    height: 100vh;
    background: var(--og-bg-main);
    border-left: 1px solid var(--og-border);
    z-index: 150;
    padding: 5rem var(--og-space-xl) var(--og-space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--og-space-sm);
    transform: translateX(100%);
    transition: transform 0.5s var(--og-ease-out);
    overflow-y: auto;
}
.og-mobile-menu.open {
    transform: translateX(0);
}
.og-mobile-menu a {
    display: block;
    padding: var(--og-space-sm) 0;
    color: var(--og-text);
    font-family: var(--og-font-display);
    font-size: 1.15rem;
    font-weight: 500;
    border-bottom: 1px solid var(--og-border);
}
.og-mobile-menu__cats {
    padding-left: var(--og-space-md);
}
.og-mobile-menu__cats a {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 1rem;
    font-weight: 400;
    color: var(--og-text-secondary);
    border-bottom-color: rgba(229, 222, 211, 0.5);
}

/* ================================================
   HERO — editorial, warm, organic blobs
   ================================================ */
.og-hero {
    min-height: 75vh;
    background: var(--og-bg-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: var(--og-space-3xl) var(--og-space-lg);
}
.og-hero__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.og-hero__blob {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.3;
}
.og-hero__blob--1 {
    width: 400px;
    height: 400px;
    background: var(--og-primary-light);
    top: -80px;
    right: -100px;
    animation: ogMorph 10s var(--og-ease) infinite;
}
.og-hero__blob--2 {
    width: 250px;
    height: 250px;
    background: var(--og-cream);
    bottom: -50px;
    left: -60px;
    animation: ogMorph 12s var(--og-ease) infinite reverse;
}
.og-hero__blob--3 {
    width: 180px;
    height: 180px;
    background: rgba(196, 129, 61, 0.15);
    top: 40%;
    left: 15%;
    animation: ogMorph 8s var(--og-ease) infinite 2s;
}
@keyframes ogMorph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 35% 65% / 55% 30% 70% 45%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}
.og-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}
.og-hero__eyebrow {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--og-amber);
    display: block;
    margin-bottom: var(--og-space-md);
    letter-spacing: 0.03em;
}
.og-hero__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    color: var(--og-text);
    margin-bottom: var(--og-space-lg);
    font-weight: 600;
}
.og-hero__subtitle {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--og-text-secondary);
    line-height: 1.6;
    margin-bottom: var(--og-space-xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}
.og-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: var(--og-space-sm);
    background: var(--og-primary);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--og-radius-full);
    font-family: var(--og-font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s var(--og-ease);
}
.og-hero__cta:hover {
    background: var(--og-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 143, 113, 0.3);
}
.og-hero__cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Botanical divider */
.og-hero__divider {
    margin-top: var(--og-space-2xl);
    color: var(--og-primary);
    opacity: 0.4;
    font-size: 1.2rem;
    letter-spacing: 0.5em;
}

/* ================================================
   SECTIONS
   ================================================ */
.og-section {
    padding: var(--og-space-3xl) 0;
}
.og-section--alt {
    background: var(--og-bg-alt);
}
.og-section--accent {
    background: var(--og-bg-accent);
}
.og-section-header {
    text-align: center;
    margin-bottom: var(--og-space-2xl);
}
.og-section-header h2 {
    margin-bottom: var(--og-space-sm);
}
.og-section-header p {
    font-family: var(--og-font-accent);
    font-style: italic;
    color: var(--og-text-muted);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
}
/* Leaf divider after section headers */
.og-section-header::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--og-primary);
    margin: var(--og-space-lg) auto 0;
    border-radius: 2px;
    opacity: 0.6;
}

/* ================================================
   GRID
   ================================================ */
.og-grid {
    display: grid;
    gap: var(--og-space-xl);
}
.og-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.og-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ================================================
   PRODUCT CARD — apothecary style
   ================================================ */
.og-card {
    background: var(--og-bg-card);
    border: 1px solid var(--og-border);
    border-radius: var(--og-radius-md);
    overflow: hidden;
    transition: all 0.5s var(--og-ease);
}
.og-card:hover {
    box-shadow: var(--og-shadow-lg);
    transform: translateY(-5px);
    border-color: var(--og-border-hover);
}
.og-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.og-card__image {
    background: var(--og-bg-alt);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.og-card__image img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.8s var(--og-ease);
}
.og-card:hover .og-card__image img {
    transform: scale(1.04);
}
/* Category tag — italic apothecary label */
.og-card__category {
    position: absolute;
    top: var(--og-space-md);
    left: var(--og-space-md);
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 0.8rem;
    color: var(--og-primary-dark);
    background: var(--og-primary-light);
    padding: 4px 12px;
    border-radius: var(--og-radius-full);
}
.og-card__body {
    padding: 1.25rem 1.5rem var(--og-space-sm);
}
.og-card__title {
    font-family: var(--og-font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--og-text);
    margin-bottom: var(--og-space-xs);
    line-height: 1.3;
}
.og-card__price {
    display: flex;
    align-items: baseline;
    gap: var(--og-space-sm);
    font-family: var(--og-font-body);
    margin-top: var(--og-space-xs);
}
.og-card__price del {
    color: var(--og-text-muted);
    font-size: 0.9rem;
    text-decoration: line-through;
}
.og-card__price ins {
    color: var(--og-amber);
    font-weight: 700;
    font-size: 1.15rem;
    text-decoration: none;
}
.og-card__price .og-price-single {
    color: var(--og-text);
    font-weight: 600;
    font-size: 1.1rem;
}
/* CTA below card — outline pill style */
.og-card__cta {
    display: block;
    width: calc(100% - 2rem);
    margin: 0 1rem 1rem;
    padding: 0.75rem;
    background: var(--og-bg-main);
    border: 1.5px solid var(--og-primary);
    color: var(--og-primary-dark);
    border-radius: var(--og-radius-full);
    font-family: var(--og-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s var(--og-ease);
}
.og-card__cta:hover {
    background: var(--og-primary);
    color: #fff;
    box-shadow: 0 6px 20px rgba(107, 143, 113, 0.25);
}

/* ================================================
   CATEGORIES GRID
   ================================================ */
.og-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--og-space-lg);
}
.og-cat-card {
    display: block;
    background: var(--og-bg-card);
    border: 1px solid var(--og-border);
    border-radius: var(--og-radius-md);
    padding: var(--og-space-xl) var(--og-space-lg);
    text-align: center;
    text-decoration: none;
    transition: all 0.4s var(--og-ease);
}
.og-cat-card:hover {
    border-color: var(--og-primary);
    box-shadow: var(--og-shadow-md);
    transform: translateY(-3px);
}
.og-cat-card__name {
    font-family: var(--og-font-display);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--og-text);
    margin-bottom: var(--og-space-xs);
}
.og-cat-card__count {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--og-text-muted);
}

/* Category pills (shop/category page) */
.og-cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--og-space-sm);
    margin-bottom: var(--og-space-2xl);
}
.og-cat-pill {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 0.9rem;
    padding: var(--og-space-xs) var(--og-space-lg);
    border-radius: var(--og-radius-full);
    border: 1px solid var(--og-border);
    color: var(--og-text-secondary);
    text-decoration: none;
    transition: all 0.3s var(--og-ease);
    background: transparent;
}
.og-cat-pill:hover {
    border-color: var(--og-primary);
    color: var(--og-primary-dark);
    background: var(--og-primary-light);
}
.og-cat-pill.active {
    background: var(--og-primary);
    border-color: var(--og-primary);
    color: #fff;
}

/* ================================================
   SHOP HEADER
   ================================================ */
.og-shop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--og-space-md);
    margin-bottom: var(--og-space-xl);
    padding-bottom: var(--og-space-lg);
    border-bottom: 1px solid var(--og-border);
}
.og-shop-header__info h1 {
    margin-bottom: var(--og-space-xs);
}
.og-shop-header__count {
    font-family: var(--og-font-accent);
    font-style: italic;
    color: var(--og-text-muted);
    font-size: 1rem;
}
.og-sort-select {
    font-family: var(--og-font-body);
    font-size: 0.875rem;
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--og-border);
    border-radius: 8px;
    background: var(--og-bg);
    color: var(--og-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

/* ================================================
   BREADCRUMB
   ================================================ */
.og-breadcrumb {
    padding: var(--og-space-lg) 0;
}
.og-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.og-breadcrumb__list li {
    font-size: 0.85rem;
    color: var(--og-text-muted);
}
.og-breadcrumb__list li a {
    color: var(--og-text-muted);
    text-decoration: none;
}
.og-breadcrumb__list li a:hover {
    color: var(--og-primary-dark);
}
.og-breadcrumb__sep {
    margin: 0 var(--og-space-sm);
    opacity: 0.4;
}
.og-breadcrumb__list li[aria-current="page"] {
    color: var(--og-text);
    font-weight: 500;
}

/* ================================================
   PRODUCT PAGE — editorial magazine layout
   ================================================ */
.og-product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--og-space-2xl);
    padding: var(--og-space-lg) 0 var(--og-space-3xl);
    align-items: start;
}
.og-product-gallery {
    position: sticky;
    top: 100px;
}
.og-product-gallery__main {
    background: var(--og-bg-alt);
    border-radius: var(--og-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    cursor: zoom-in;
    overflow: hidden;
}
.og-product-gallery__main img {
    transition: transform 0.7s var(--og-ease);
    max-height: 500px;
}
.og-product-gallery__main:hover img {
    transform: scale(1.06);
}

/* Product info */
.og-product-info__category {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--og-amber);
    display: block;
    margin-bottom: var(--og-space-sm);
}
.og-product-info__title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: var(--og-space-md);
    font-weight: 600;
}
/* Sage green rule under title */
.og-product-info__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--og-primary);
    margin-top: var(--og-space-md);
    border-radius: 2px;
}
.og-product-info__short {
    color: var(--og-text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--og-space-xl);
}
.og-product-info__price {
    display: flex;
    align-items: baseline;
    gap: var(--og-space-md);
    margin-bottom: var(--og-space-xl);
}
.og-product-info__price del {
    color: var(--og-text-muted);
    font-size: 1.1rem;
    text-decoration: line-through;
}
.og-product-info__price ins {
    color: var(--og-amber);
    font-weight: 700;
    font-size: 1.6rem;
    text-decoration: none;
}
.og-product-info__price .og-price-single {
    color: var(--og-text);
    font-weight: 700;
    font-size: 1.6rem;
}
.og-badge-discount {
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--og-red);
    color: #fff;
    padding: 3px 10px;
    border-radius: var(--og-radius-full);
}

/* Product CTA button */
.og-product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--og-space-sm);
    width: 100%;
    padding: 1rem 2rem;
    background: var(--og-primary);
    color: #fff;
    border: none;
    border-radius: var(--og-radius-full);
    font-family: var(--og-font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s var(--og-ease);
    cursor: pointer;
}
.og-product-cta:hover {
    background: var(--og-primary-dark);
    color: #fff;
    box-shadow: 0 8px 25px rgba(107, 143, 113, 0.3);
    transform: translateY(-2px);
}
.og-product-cta svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Trust badges — line icon style */
.og-trust {
    display: flex;
    gap: var(--og-space-lg);
    margin-top: var(--og-space-xl);
    padding-top: var(--og-space-xl);
    border-top: 1px solid var(--og-border);
}
.og-trust__item {
    display: flex;
    align-items: center;
    gap: var(--og-space-sm);
    font-size: 0.85rem;
    color: var(--og-text-secondary);
}
.og-trust__icon {
    width: 22px;
    height: 22px;
    stroke: var(--og-primary);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}
.og-product-meta {
    margin-top: var(--og-space-lg);
    font-size: 0.8rem;
    color: var(--og-text-muted);
}

/* ================================================
   PRODUCT DESCRIPTION — styled via CSS
   ================================================ */
.og-description {
    background: var(--og-bg-main);
    padding: var(--og-space-3xl) 0;
}
.og-description h2 {
    font-family: var(--og-font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--og-text);
    margin-top: var(--og-space-2xl);
    margin-bottom: var(--og-space-lg);
    padding-bottom: var(--og-space-sm);
    border-bottom: 1px solid var(--og-border);
}
.og-description h2:first-child {
    margin-top: 0;
}
.og-description p {
    color: var(--og-text-secondary);
    line-height: 1.85;
    margin-bottom: var(--og-space-lg);
    font-size: 1.05rem;
}
/* Benefit cards from ul */
.og-description ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--og-space-lg);
    list-style: none;
    padding: 0;
    margin: var(--og-space-lg) 0 var(--og-space-xl);
}
.og-description ul li {
    background: var(--og-bg-card);
    border: 1px solid var(--og-border);
    border-radius: var(--og-radius-md);
    padding: var(--og-space-xl) var(--og-space-lg);
    text-align: center;
    color: var(--og-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    transition: border-color 0.3s var(--og-ease), box-shadow 0.3s var(--og-ease);
}
.og-description ul li:hover {
    border-color: var(--og-primary);
    box-shadow: var(--og-shadow-sm);
}
/* Leaf/checkmark before each li */
.og-description ul li::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto var(--og-space-md);
    background: var(--og-primary-light);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B8F71' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10c1.85 0 3.58-.5 5.07-1.37'/%3E%3Cpath d='M8 14s1.5 2 4 2 4-2 4-2'/%3E%3Cpath d='M9 9h.01'/%3E%3Cpath d='M15 9h.01'/%3E%3C/svg%3E");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
}
/* Testimonial cards from blockquote */
.og-description blockquote {
    background: var(--og-bg-alt);
    border: none;
    border-radius: var(--og-radius-lg);
    padding: var(--og-space-xl) var(--og-space-2xl);
    margin: var(--og-space-lg) 0;
    position: relative;
    font-family: var(--og-font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--og-text);
    line-height: 1.7;
}
.og-description blockquote::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--og-primary);
    opacity: 0.3;
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    line-height: 1;
    font-family: Georgia, serif;
}
.og-description blockquote p {
    font-family: var(--og-font-accent);
    font-style: italic;
    color: var(--og-text);
    margin-bottom: var(--og-space-sm);
}
.og-description blockquote p:last-child {
    font-family: var(--og-font-body);
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--og-text-secondary);
    margin-bottom: 0;
}
/* Numbered steps from ol */
.og-description ol {
    counter-reset: og-steps;
    list-style: none;
    padding: 0;
    margin: var(--og-space-lg) 0 var(--og-space-xl);
}
.og-description ol li {
    counter-increment: og-steps;
    display: flex;
    align-items: flex-start;
    gap: var(--og-space-lg);
    padding: var(--og-space-lg) 0;
    border-bottom: 1px solid var(--og-border);
    color: var(--og-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}
.og-description ol li:last-child {
    border-bottom: none;
}
.og-description ol li::before {
    content: counter(og-steps);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--og-primary-light);
    color: var(--og-primary-dark);
    border-radius: 50%;
    font-family: var(--og-font-display);
    font-weight: 600;
    font-size: 1rem;
}

/* Description CTA button */
.og-description .description-cta {
    margin: var(--og-space-3xl) 0 var(--og-space-xl);
    text-align: center;
}
.og-description .description-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--og-space-sm);
    width: 100%;
    padding: 1rem 2rem;
    background: var(--og-primary);
    color: #fff;
    border: none;
    border-radius: var(--og-radius-full);
    font-family: var(--og-font-body);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s var(--og-ease);
}
.og-description .description-cta a:hover {
    background: var(--og-primary-dark);
    color: #fff;
    box-shadow: 0 8px 25px rgba(107, 143, 113, 0.3);
    transform: translateY(-2px);
}

/* ================================================
   RELATED PRODUCTS
   ================================================ */
.og-related {
    padding: var(--og-space-3xl) 0;
    background: var(--og-bg-alt);
}
.og-related h2 {
    text-align: center;
    margin-bottom: var(--og-space-2xl);
}

/* ================================================
   BUTTONS
   ================================================ */
.og-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--og-space-sm);
    font-family: var(--og-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.875rem 2rem;
    border-radius: var(--og-radius-full);
    text-decoration: none;
    transition: all 0.35s var(--og-ease);
    cursor: pointer;
    border: none;
}
.og-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.og-btn--primary {
    background: var(--og-primary);
    color: #fff;
}
.og-btn--primary:hover {
    background: var(--og-primary-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(107, 143, 113, 0.25);
    transform: translateY(-2px);
}
.og-btn--outline {
    background: transparent;
    color: var(--og-primary-dark);
    border: 1.5px solid var(--og-primary);
}
.og-btn--outline:hover {
    background: var(--og-primary);
    color: #fff;
}

/* ================================================
   PAGES — about, contact, terms, cart, 404
   ================================================ */
.og-page {
    padding: var(--og-space-2xl) 0 var(--og-space-3xl);
}
.og-page__header {
    margin-bottom: var(--og-space-2xl);
    padding-bottom: var(--og-space-lg);
    border-bottom: 1px solid var(--og-border);
}
.og-page__header h1 {
    margin-bottom: var(--og-space-sm);
}
.og-page__header p {
    font-family: var(--og-font-accent);
    font-style: italic;
    color: var(--og-text-muted);
}
.og-page__content h2 {
    margin-top: var(--og-space-2xl);
    padding-bottom: var(--og-space-sm);
    border-bottom: 1px solid var(--og-border);
}
.og-page__content h2:first-child { margin-top: 0; }
.og-page__content p { line-height: 1.85; }
.og-page__content ul {
    list-style: none;
    padding: 0;
}
.og-page__content ul li {
    padding: var(--og-space-sm) 0;
    padding-left: var(--og-space-xl);
    position: relative;
    color: var(--og-text-secondary);
}
.og-page__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--og-primary);
    border-radius: 50%;
}

/* Contact grid */
.og-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--og-space-2xl);
}
.og-contact-info__item {
    display: flex;
    gap: var(--og-space-md);
    margin-bottom: var(--og-space-xl);
}
.og-contact-info__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--og-primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}
.og-contact-info__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--og-primary-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* Form */
.og-contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--og-space-lg);
}
.og-form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--og-text);
    margin-bottom: var(--og-space-xs);
}
.og-input {
    width: 100%;
    padding: 0.875rem var(--og-space-md);
    background: var(--og-bg-card);
    border: 1.5px solid var(--og-border);
    border-radius: var(--og-radius-sm);
    font-family: var(--og-font-body);
    font-size: 0.95rem;
    color: var(--og-text);
    transition: border-color 0.3s var(--og-ease), box-shadow 0.3s var(--og-ease);
}
.og-input:focus {
    outline: none;
    border-color: var(--og-primary);
    box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

/* Cart empty */
.og-cart-empty {
    text-align: center;
    padding: var(--og-space-3xl) 0;
}
.og-cart-empty svg {
    width: 64px;
    height: 64px;
    stroke: var(--og-text-muted);
    fill: none;
    stroke-width: 1;
    margin-bottom: var(--og-space-xl);
    opacity: 0.5;
}

/* 404 */
.og-404 {
    text-align: center;
    padding: var(--og-space-3xl) 0;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.og-404__code {
    font-family: var(--og-font-display);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--og-primary-light);
    line-height: 1;
    margin-bottom: var(--og-space-md);
}

/* ================================================
   PAGINATION
   ================================================ */
.og-pagination {
    display: flex;
    justify-content: center;
    gap: var(--og-space-sm);
    margin-top: var(--og-space-2xl);
}
.og-pagination__btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--og-border);
    border-radius: 50%;
    background: var(--og-bg-card);
    color: var(--og-text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s var(--og-ease);
}
.og-pagination__btn:hover {
    border-color: var(--og-primary);
    color: var(--og-primary-dark);
}
.og-pagination__btn.active {
    background: var(--og-primary);
    border-color: var(--og-primary);
    color: #fff;
}
.og-pagination__btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

/* ================================================
   FOOTER — dark brown, warm
   ================================================ */
.og-footer {
    background: var(--og-bg-dark);
    color: #D4C9B8;
    padding: var(--og-space-2xl) 0 var(--og-space-lg);
}
.og-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--og-space-2xl);
    padding-bottom: var(--og-space-2xl);
}
.og-footer__brand {
    font-family: var(--og-font-display);
    font-weight: 700;
    font-size: 1.3rem;
    color: #FBF8F4;
    display: block;
    margin-bottom: var(--og-space-md);
}
.og-footer__desc {
    color: rgba(212, 201, 184, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}
.og-footer__heading {
    font-family: var(--og-font-accent);
    font-style: italic;
    font-weight: 400;
    color: var(--og-amber);
    font-size: 1.05rem;
    margin-bottom: var(--og-space-lg);
}
.og-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--og-space-sm);
}
.og-footer__links a {
    color: rgba(212, 201, 184, 0.7);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.25s var(--og-ease);
}
.og-footer__links a:hover {
    color: #FBF8F4;
}
.og-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: var(--og-space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.og-footer__copy {
    font-size: 0.8rem;
    color: rgba(212, 201, 184, 0.4);
}
.og-footer__locale {
    font-size: 0.75rem;
    color: rgba(212, 201, 184, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: var(--og-radius-full);
}

/* Mobile sticky CTA (product page) */
.og-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--og-bg-card);
    border-top: 1px solid var(--og-border);
    padding: var(--og-space-md) var(--og-space-lg);
    box-shadow: 0 -4px 20px rgba(44, 36, 24, 0.08);
}
.og-sticky-cta .og-product-cta {
    width: 100%;
}

/* Lightbox */
.og-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(44, 36, 24, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: var(--og-space-xl);
}
.og-lightbox.active {
    display: flex;
}
.og-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--og-radius-md);
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .og-grid--4 { grid-template-columns: repeat(3, 1fr); }
    .og-product-top { gap: var(--og-space-xl); }
    .og-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--og-space-xl); }
}

@media (max-width: 768px) {
    .og-header__nav { display: none; }
    .og-header__hamburger { display: flex; }

    .og-grid--4, .og-grid--3 { grid-template-columns: repeat(2, 1fr); }

    .og-hero { min-height: 60vh; padding: var(--og-space-2xl) var(--og-space-md); }
    .og-hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .og-hero__blob--1 { width: 250px; height: 250px; }
    .og-hero__blob--3 { display: none; }

    .og-product-top { grid-template-columns: 1fr; }
    .og-product-gallery { position: static; }

    .og-contact-grid { grid-template-columns: 1fr; }

    .og-trust { flex-direction: column; gap: var(--og-space-md); }

    .og-footer__grid { grid-template-columns: 1fr; }
    .og-footer__bottom { flex-direction: column; gap: var(--og-space-sm); text-align: center; }

    .og-sticky-cta { display: block; }
    .og-footer { padding-bottom: 80px; }

    .og-description ul { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .og-grid--4, .og-grid--3 { grid-template-columns: 1fr; gap: var(--og-space-lg); }
    .og-categories-grid { grid-template-columns: 1fr; }
    .og-hero { min-height: 55vh; }
    .og-hero__cta { width: 100%; justify-content: center; }
}
