/* ============================================================
   OLIVAHOLIC — Product Page
   Brand palette:
     Orange (chili)  : #F57C1F · #E8650A · #FFF3E0
     Green  (garlic) : #5BA847 · #3E8A2E · #EEF7EC
     Neutral         : #1A1A1A · #4A4A4A · #F9F7F4
   Prefix: .olh-*
   ============================================================ */

/* ── Brand tokens ─────────────────────────────────────────── */
:root {
    --olh-orange:        #F57C1F;
    --olh-orange-dark:   #C45D08;
    --olh-orange-light:  #FFF3E0;
    --olh-green:         #5BA847;
    --olh-green-dark:    #3E8A2E;
    --olh-green-light:   #EEF7EC;
    --olh-kala:          #1A8FA0;
    --olh-kala-dark:     #116B7A;
    --olh-kala-light:    #DFF4F7;
    --olh-ink:           #1A1A1A;
    --olh-muted:         #5C5C5C;
    --olh-paper:         #F9F7F4;
    --olh-white:         #FFFFFF;
    --olh-radius:        16px;
    --olh-radius-lg:     24px;
    --olh-gap:           32px;
    --olh-max:           1280px;
}

/* ── Shared inner wrapper ─────────────────────────────────── */
.olh-hero__inner,
.olh-story__inner,
.olh-variants__inner,
.olh-why__inner,
.olh-serving__inner,
.olh-crosslinks__inner {
    max-width: var(--olh-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ── Shared label / eyebrow ──────────────────────────────── */
.olh-label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--olh-orange);
    margin-bottom: 12px;
}

/* ============================================================
   1. HERO — Full-viewport split screen
   ============================================================ */
.olh-hero {
    position: relative;
    display: flex;
    min-height: 100vh;
    overflow: hidden;
}

/* Left & right slabs */
.olh-hero__slab {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 60px 40px 100px;
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.olh-hero__slab:hover {
    flex: 1.12;
}

.olh-hero__slab--orange {
    background: linear-gradient(160deg, #F5A623 0%, #E8650A 60%, #C94E00 100%);
}

.olh-hero__slab--kala {
    background: linear-gradient(180deg, #22A8BC 0%, #148294 55%, #0C5560 100%);
}

.olh-hero__slab--green {
    background: linear-gradient(200deg, #7BC862 0%, #4EA03A 55%, #2E7220 100%);
}

/* Subtle texture overlay */
.olh-hero__slab::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 30% 80%, rgba(255,255,255,0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 20%, rgba(0,0,0,0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Pack product image */
.olh-hero__pack {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
    transform: translateY(0) rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.olh-hero__slab--kala .olh-hero__pack {
    transform: translateY(0) rotate(0deg);
}

.olh-hero__slab--green .olh-hero__pack {
    transform: translateY(0) rotate(2deg);
}

.olh-hero__slab:hover .olh-hero__pack {
    transform: translateY(-12px) rotate(0deg) scale(1.05);
}

/* Flavour tag (bottom corner of each slab) */
.olh-hero__flavour-tag {
    position: absolute;
    bottom: 32px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.3);
    white-space: nowrap;
    z-index: 3;
}

/* Centre brand overlay */
.olh-hero__brand {
    position: absolute;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    pointer-events: none;
}

.olh-hero__eyebrow {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8);
}

.olh-hero__title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0,0,0,0.4);
    margin: 0;
}

.olh-hero__tagline {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    font-style: italic;
    max-width: 320px;
    line-height: 1.45;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* Hero CTA arrow */
.olh-hero__cta {
    pointer-events: all;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50px;
    padding: 12px 26px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.olh-hero__cta:hover {
    background: rgba(255,255,255,0.28);
    border-color: #fff;
    transform: translateY(3px);
}

/* ============================================================
   2. BRAND STORY
   ============================================================ */
.olh-story {
    padding: 100px 0;
    background: var(--olh-paper);
}

.olh-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.olh-story__title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--olh-ink);
    line-height: 1.2;
    margin: 0 0 20px;
}

.olh-story__body {
    font-size: 1.05rem;
    color: var(--olh-muted);
    line-height: 1.75;
    max-width: 520px;
}

/* Pills */
.olh-story__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-content: center;
}

.olh-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.olh-pill--orange {
    background: var(--olh-orange-light);
    color: var(--olh-orange-dark);
    border: 2px solid var(--olh-orange);
}

.olh-pill--kala {
    background: var(--olh-kala-light);
    color: var(--olh-kala-dark);
    border: 2px solid var(--olh-kala);
}

.olh-pill--green {
    background: var(--olh-green-light);
    color: var(--olh-green-dark);
    border: 2px solid var(--olh-green);
}

.olh-pill--neutral {
    background: #fff;
    color: var(--olh-ink);
    border: 2px solid #E0DDD8;
}

.olh-pill__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.olh-pill--orange .olh-pill__dot { background: var(--olh-orange); }
.olh-pill--kala   .olh-pill__dot { background: var(--olh-kala); }
.olh-pill--green  .olh-pill__dot { background: var(--olh-green); }

/* ============================================================
   3. VARIANT CARDS
   ============================================================ */
.olh-variants {
    padding: 0 0 100px;
    background: var(--olh-paper);
}

.olh-variants__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--olh-gap);
}

/* Base card */
.olh-vcard {
    border-radius: var(--olh-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.35s ease;
}

.olh-vcard:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
}

/* Orange card */
.olh-vcard--orange {
    background: linear-gradient(170deg, #FFF3E0 0%, #FFE0B2 100%);
    border: 2px solid #FFCC80;
    box-shadow: 0 8px 30px rgba(245,124,31,0.12);
}

/* Kalamata card */
.olh-vcard--kala {
    background: linear-gradient(170deg, #DFF4F7 0%, #B2E6ED 100%);
    border: 2px solid #7DD4DF;
    box-shadow: 0 8px 30px rgba(26,143,160,0.12);
}

/* Green card */
.olh-vcard--green {
    background: linear-gradient(170deg, #EEF7EC 0%, #DCEDC8 100%);
    border: 2px solid #AED581;
    box-shadow: 0 8px 30px rgba(91,168,71,0.12);
}

/* Image area */
.olh-vcard__img-wrap {
    padding: 48px 40px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.olh-vcard__img {
    width: 100%;
    max-width: 340px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.olh-vcard:hover .olh-vcard__img {
    transform: scale(1.06) translateY(-6px);
}

/* Content area */
.olh-vcard__content {
    padding: 8px 36px 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Badges row */
.olh-vcard__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.olh-vcard__badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}

.olh-vcard--orange .olh-vcard__badge {
    background: var(--olh-orange);
    color: #fff;
}

.olh-vcard--kala .olh-vcard__badge {
    background: var(--olh-kala);
    color: #fff;
}

.olh-vcard--green .olh-vcard__badge {
    background: var(--olh-green);
    color: #fff;
}

.olh-vcard__name {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    color: var(--olh-ink);
    margin: 0 0 6px;
    line-height: 1.25;
}

.olh-vcard__subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.olh-vcard--orange .olh-vcard__subtitle { color: var(--olh-orange-dark); }
.olh-vcard--kala   .olh-vcard__subtitle { color: var(--olh-kala-dark); }
.olh-vcard--green  .olh-vcard__subtitle { color: var(--olh-green-dark); }

.olh-vcard__desc {
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 22px;
}

/* Tags */
.olh-vcard__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.olh-vcard__tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 6px;
}

.olh-vcard--orange .olh-vcard__tag {
    background: rgba(245,124,31,0.12);
    color: var(--olh-orange-dark);
}

.olh-vcard--kala .olh-vcard__tag {
    background: rgba(26,143,160,0.12);
    color: var(--olh-kala-dark);
}

.olh-vcard--green .olh-vcard__tag {
    background: rgba(91,168,71,0.12);
    color: var(--olh-green-dark);
}

/* Weight badge */
.olh-vcard__weight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--olh-muted);
}

/* ============================================================
   4. WHY OLIVAHOLIC — Dark section with 4-col grid
   ============================================================ */
.olh-why {
    padding: 100px 0;
    background: var(--olh-ink);
    position: relative;
    overflow: hidden;
}

/* Decorative arc */
.olh-why::before {
    content: '';
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 240px;
    background: radial-gradient(ellipse at 50% 100%, rgba(245,124,31,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.olh-why__header {
    text-align: center;
    margin-bottom: 64px;
}

.olh-why__title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: #fff;
    margin: 0 0 12px;
}

.olh-why__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    font-style: italic;
}

.olh-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.olh-why__item {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--olh-radius);
    padding: 36px 28px;
    text-align: center;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.olh-why__item:hover {
    background: rgba(245,124,31,0.08);
    border-color: rgba(245,124,31,0.3);
    transform: translateY(-4px);
}

.olh-why__icon {
    display: block;
    font-size: 2.4rem;
    margin-bottom: 18px;
    line-height: 1;
}

.olh-why__item-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
}

.olh-why__item-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin: 0;
}

/* ============================================================
   5. SERVING IDEAS — alternating orange / green pills
   ============================================================ */
.olh-serving {
    padding: 100px 0;
    background: var(--olh-paper);
}

.olh-serving__header {
    text-align: center;
    margin-bottom: 56px;
}

.olh-serving__subtitle {
    font-size: 1.1rem;
    color: var(--olh-muted);
    font-style: italic;
    margin: 4px 0 0;
}

.olh-serving__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.olh-serving__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: var(--olh-radius);
    padding: 24px 26px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.olh-serving__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.olh-serving__item--orange {
    background: var(--olh-orange-light);
    border: 1.5px solid #FFCC80;
}

.olh-serving__item--green {
    background: var(--olh-green-light);
    border: 1.5px solid #AED581;
}

.olh-serving__emoji {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.olh-serving__text {
    font-size: 0.92rem;
    color: var(--olh-ink);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   6. CROSS-LINKS
   ============================================================ */
.olh-crosslinks {
    padding: 80px 0 100px;
    background: #fff;
    border-top: 1px solid #EEEBE5;
}

.olh-crosslinks__title {
    font-family: var(--font-heading, Georgia, serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--olh-ink);
    text-align: center;
    margin: 0 0 44px;
}

.olh-crosslinks__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.olh-cl-card {
    display: block;
    text-decoration: none;
    border-radius: var(--olh-radius);
    overflow: hidden;
    position: relative;
    background: #111;
    aspect-ratio: 4 / 3;
}

.olh-cl-card__img-wrap {
    position: absolute;
    inset: 0;
}

.olh-cl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.4s, transform 0.5s ease;
}

.olh-cl-card:hover .olh-cl-card__img {
    opacity: 0.5;
    transform: scale(1.07);
}

.olh-cl-card__name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .olh-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .olh-story__inner {
        gap: 50px;
    }
}

@media (max-width: 1024px) {
    .olh-variants__grid {
        grid-template-columns: 1fr 1fr;
    }

    .olh-variants__grid .olh-vcard:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .olh-hero {
        flex-direction: column;
        min-height: 100svh;
    }

    .olh-hero__slab {
        flex: none;
        min-height: 34svh;
        padding: 28px 24px 80px;
    }

    .olh-hero__pack {
        max-width: 200px;
    }

    .olh-hero__brand {
        position: fixed;
        top: 50%;
        left: 50%;
    }

    .olh-hero__title {
        font-size: clamp(2.4rem, 9vw, 3.6rem);
    }

    .olh-story__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .olh-variants__grid {
        grid-template-columns: 1fr;
    }

    .olh-variants__grid .olh-vcard:last-child:nth-child(odd) {
        grid-column: unset;
        max-width: unset;
    }

    .olh-serving__grid {
        grid-template-columns: 1fr 1fr;
    }

    .olh-crosslinks__grid {
        grid-template-columns: 1fr;
    }

    .olh-why__grid {
        grid-template-columns: 1fr;
    }

    .olh-hero__inner,
    .olh-story__inner,
    .olh-variants__inner,
    .olh-why__inner,
    .olh-serving__inner,
    .olh-crosslinks__inner {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .olh-serving__grid {
        grid-template-columns: 1fr;
    }

    .olh-vcard__img-wrap {
        padding: 32px 24px 16px;
        min-height: 240px;
    }

    .olh-vcard__content {
        padding: 8px 24px 32px;
    }
}
