/* ============================================================
   home.css — Toon Pop Anasayfa
   ────────────────────────────────────────────────────────────
   Tema:    toonpop_pwa  (DEMO RESTAURANT)
   View:    views/home.php
   Class:   gh-* (yz_paketservis ile uyumlu — view dokunulmadı)

   SECTIONS:
     1.  Hero          .gh-hero           (POW! + hello-pill + YENİ MENÜ)
     1.5 Cat Ribbon    .cat-ribbon        (KATEGORİ SEÇ — emoji tile grid)
     2.  Proof Strip   .gh-proof          (rating + #1 + traveller badges)
     3.  Story         .gh-story          (Hakkımızda / kısa özet)
     4.  Chef's Picks  .gh-picks          (3-col, comic kart + offset shadow)
     5.  Coastal       .gh-coastal        (Sahil Deneyimi 3-kart)
     6.  Reviews       .gh-reviews        (3-col, comic avatar)
     7.  Final CTA     .gh-final-cta      (POW! kapanış)

   TOON POP ESTETİK:
   - Sarı zemin (--br-bg-1) + halftone dotlar
   - Scarlet kırmızı (--br-gold) ana aksan
   - Siyah outline (--br-wine) tüm kart/buton bordürleri
   - Sora display + Inter body
   - Offset shadow signature (3px/5px/8px translate)
   - "POW!" outline başlık tekniği (-webkit-text-stroke + text-shadow)
============================================================ */


/* ============================================================
   HERO YENİ COMPONENT'LER (v005 hotfix)
   - hello-pill         (MADDE 6 — konum + açık + süre)
   - pow-floating       (MADDE 8 — YENİ MENÜ floating accent)
   - home-banner        (MADDE 9 — öğrenci indirim + countdown)
============================================================ */


/* POW! comic floating accent */
.pow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--br-gold);
    color: var(--br-white);
    font-family: var(--br-font-display);
    font-weight: 800;
    text-transform: uppercase;
    border: 2px solid var(--br-wine);
    box-shadow: 3px 3px 0 var(--br-wine);
    padding: 8px 14px;
    border-radius: var(--br-radius-sm);
    letter-spacing: 0.05em;
    font-size: 13px;
    line-height: 1;
    transform: rotate(-6deg);
}
.pow-yellow {
    background: var(--br-yellow);
    color: var(--br-wine);
    transform: rotate(4deg);
}
.pow-green {
    background: var(--br-olive);
    color: var(--br-white);
    transform: rotate(-3deg);
}

/* Floating variation — hero'da serbest pozisyon */
.pow-floating {
    position: absolute;
    top: 201px;
    right: 14px;
    z-index: 3;
    animation: powFloat 2.4s ease-in-out infinite alternate;
    pointer-events: none;
}
@media (min-width: 768px) {
    .pow-floating {
        top: 24px;
        right: 32px;
        font-size: 15px;
        padding: 9px 16px;
        box-shadow: 4px 4px 0 var(--br-wine);
    }
}
@keyframes powFloat {
    from { transform: rotate(4deg) translateY(0); }
    to   { transform: rotate(8deg) translateY(-4px); }
}


/* home-banner — Öğrenci indirim + countdown (mockup'a uygun)
   - Hero'nun ALTINDA, full-width KIRMIZI bant
   - Sol: emoji + cream/sarı yazı
   - Sağ: sarı pill içinde siyah timer (kalın siyah outline + offset shadow) */
.home-banner-wrap {
    background: var(--br-gold);
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.08) 1px, transparent 0);
    background-size: 12px 12px;
    border-top: var(--br-border-thick);
    border-bottom: var(--br-border-thick);
    padding: 0;
    width: 100%;
}

.home-banner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 16px;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--br-yellow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .home-banner {
        padding: 14px 24px;
        font-size: 14px;
    }
}

.home-banner-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-weight: 800;
}

.home-banner-emoji {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    margin-right: 4px;
    font-size: 1.2em;
}

/* Timer pill — sarı zemin + siyah outline + offset shadow (Toon Pop signature) */
.home-banner .timer {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--br-font-mono);
    font-weight: 700;
    color: var(--br-wine);
    background: var(--br-yellow);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 4px 10px;
    letter-spacing: 0.08em;
    font-size: 12px;
    flex-shrink: 0;
    line-height: 1.3;
}
@media (min-width: 768px) {
    .home-banner .timer {
        font-size: 13px;
        padding: 5px 12px;
    }
}


/* ============================================================
   1.5 CAT RIBBON — KATEGORİ SEÇ (MADDE 10)
   Comic emoji tile grid (4 col mobil, 8 col desktop)
============================================================ */
.cat-ribbon-section {
    background: var(--br-bg-4);
    background-image: var(--br-halftone-light);
    background-size: var(--br-halftone-size);
    border-bottom: var(--br-border-thick);
    padding: 32px 16px;
}
@media (min-width: 768px) {
    .cat-ribbon-section {
        padding: 48px 24px;
    }
}

.cat-ribbon-header {
    text-align: center;
    margin-bottom: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.cat-ribbon-eyebrow {
    display: inline-block;
    font-family: var(--br-font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--br-wine);
    background: var(--br-yellow);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 4px 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.cat-ribbon-title {
    font-family: var(--br-font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--br-white);
    -webkit-text-stroke: 2px var(--br-wine);
    text-shadow: 4px 4px 0 var(--br-gold);
    margin: 0;
}

/* Tile grid */
.cat-ribbon {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .cat-ribbon {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}
@media (min-width: 1000px) {
    .cat-ribbon {
        grid-template-columns: repeat(8, 1fr);
        gap: 14px;
    }
}

/* Tile (comic emoji + isim) */
.cat-tile {
    background: var(--br-white);
    border: var(--br-border);
    border-radius: var(--br-radius-md);
    box-shadow: var(--br-shadow-sm);
    padding: 14px 8px 10px;
    text-decoration: none;
    color: var(--br-wine);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 90px;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    text-align: center;
}
.cat-tile:hover {
    background: var(--br-yellow);
    color: var(--br-wine);
    transform: translate(-2px, -2px);
    box-shadow: var(--br-shadow-md);
    text-decoration: none;
}

.cat-tile-emoji {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    font-size: 32px;
    line-height: 1;
    display: block;
}
@media (min-width: 768px) {
    .cat-tile-emoji {
        font-size: 36px;
    }
}

.cat-tile-name {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--br-wine);
    line-height: 1.15;
    word-break: break-word;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (min-width: 768px) {
    .cat-tile-name {
        font-size: 12px;
    }
}


/* ============================================================
   SHARED — Section eyebrow + title + buttons + waves
============================================================ */
.gh-section-eyebrow {
    font-family: var(--br-font-mono);
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--br-wine);
    background: var(--br-yellow);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 4px 12px;
    margin-bottom: 14px;
    text-transform: uppercase;
    display: inline-block;
}

.gh-section-title {
    font-family: var(--br-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--br-wine);
    margin: 0 0 16px;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Wave separator (Toon Pop'ta yatay kalın çizgi + dotlar) */
.gh-wave {
    display: block;
    margin: 14px auto;
    width: 80px;
    height: 4px;
    background: var(--br-wine);
    border-radius: 2px;
    position: relative;
    opacity: 1;
}
.gh-wave::before,
.gh-wave::after {
    content: '';
    position: absolute;
    top: 0;
    width: 4px;
    height: 4px;
    border-radius: 2px;
    background: var(--br-gold);
}
.gh-wave::before { left: -12px; }
.gh-wave::after  { right: -12px; }

/* Wave SVG (legacy için inline svg de gelebilir) */
svg.gh-wave path {
    stroke: var(--br-wine);
    stroke-width: 3;
    fill: none;
}


/* ============================================================
   CTA Buttons — Toon Pop comic
============================================================ */
.gh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: var(--br-radius-md);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    border: var(--br-border);
    cursor: pointer;
    white-space: nowrap;
    font-family: var(--br-font-display);
    line-height: 1.2;
}
.gh-btn-sm { padding: 11px 22px; font-size: 0.75rem; }

.gh-btn-primary {
    background: var(--br-gold);
    color: var(--br-white) !important;
    box-shadow: var(--br-shadow-sm);
}
.gh-btn-primary span,
.gh-btn-primary svg {
    color: var(--br-white) !important;
    stroke: var(--br-white);
}
.gh-btn-primary:hover {
    background: var(--br-gold-dark);
    color: var(--br-white) !important;
    transform: translate(-1px, -1px);
    box-shadow: var(--br-shadow-hover);
    text-decoration: none;
}
.gh-btn-primary:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--br-wine);
}

.gh-btn-outline {
    background: var(--br-white);
    color: var(--br-wine);
    box-shadow: var(--br-shadow-sm);
}
.gh-btn-outline:hover {
    background: var(--br-yellow);
    color: var(--br-wine);
    transform: translate(-1px, -1px);
    box-shadow: var(--br-shadow-hover);
    text-decoration: none;
}


/* ============================================================
   1. HERO — POW! Comic
============================================================ */
.gh-hero {
    position: relative;
    background: var(--br-bg-1);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size-lg);
    padding: 48px 16px 40px;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 768px) {
    .gh-hero { padding: 80px 24px 64px; }
}

.gh-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Hero meta — Konum · Açık · Teslimat süresi
   Tagline'ın ÜZERİNDE konumlanan dinamik bilgi pill'i */
.gh-hero-meta {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
    width: 100%;
}

.gh-hero-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--br-white);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 6px 14px;
    font-family: var(--br-font-mono);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
    flex-wrap: wrap;
    justify-content: center;
}
@media (min-width: 768px) {
    .gh-hero-meta-pill {
        font-size: 12px;
    }
}

.gh-hero-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--br-wine);
}

.gh-hero-meta-sep {
    color: var(--br-wine-light);
    opacity: 0.6;
    width: auto;
    height: auto;
    background: transparent;
    font-size: 12px;
    margin: 0 1px;
}

/* "Açık" yeşil + pulse dot (mockup'a uygun) */
.gh-hero-meta-open {
    color: var(--br-olive-dark);
    font-weight: 800;
    position: relative;
    padding-left: 12px;
}
.gh-hero-meta-open::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--br-olive);
    border: 1.5px solid var(--br-wine);
    animation: heroMetaPulse 1.8s ease-in-out infinite;
}

/* "Kapalı" kırmızı dot */
.gh-hero-meta-closed {
    color: var(--br-gold-dark);
    font-weight: 800;
    position: relative;
    padding-left: 12px;
}
.gh-hero-meta-closed::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--br-gold);
    border: 1.5px solid var(--br-wine);
}

@keyframes heroMetaPulse {
    0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
    50%      { transform: translateY(-50%) scale(1.3); opacity: 0.7; }
}

/* Hero TAGLINE — POW! comic outline başlık */
.gh-hero-tagline {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(2.25rem, 7vw, 4.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding: 20px 0;
    color: var(--br-white);
    -webkit-text-stroke: 2.5px var(--br-wine);
    text-shadow: 5px 5px 0 var(--br-gold);
}
@media (min-width: 768px) {
    .gh-hero-tagline {
        -webkit-text-stroke: 3px var(--br-wine);
        text-shadow: 7px 7px 0 var(--br-gold);
    }
}

.gh-hero-subtagline {
    font-family: var(--br-font-display);
    font-weight: 600;
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    color: var(--br-wine);
    margin: 0 0 28px;
    line-height: 1.4;
}

.gh-hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}


/* ============================================================
   2. PROOF STRIP — Yatay rozet şeridi
============================================================ */
.gh-proof {
    background: var(--br-wine);
    color: var(--br-yellow);
    border-bottom: var(--br-border-thick);
    padding: 14px 16px;
}
.gh-proof-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    text-align: center;
}
.gh-proof-block {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--br-yellow);
}
.gh-proof-divider {
    width: 1px;
    height: 24px;
    background: var(--br-yellow);
    opacity: 0.4;
}
.gh-proof-rating { display: inline-flex; align-items: center; gap: 6px; }
.gh-proof-rating-num {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 18px;
    color: var(--br-yellow);
}
.gh-proof-stars {
    display: inline-flex;
    gap: 1px;
    color: var(--br-yellow);
    font-size: 14px;
}
.gh-proof-label {
    font-family: var(--br-font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--br-cream-soft);
}
.gh-proof-rank-num {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--br-yellow);
    line-height: 1;
}
.gh-proof-rank-sub {
    font-family: var(--br-font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--br-cream-muted);
}
.gh-proof-badge-title {
    font-family: var(--br-font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--br-yellow);
}
.gh-proof-badge-text {
    font-size: 11px;
    color: var(--br-cream-soft);
}


/* ============================================================
   3. SIGNATURE PRODUCT — POW! İMZA ÜRÜN (mockup'a uygun)
   - Siyah zemin (--br-wine) + halftone dotlar (sarı tint)
   - Sol: text + butonlar
   - Sağ: SARI zemin görsel kutusu (halftone dotlu)
   - Mobile: tek kolon, görsel üstte
============================================================ */
.gh-signature {
    padding: 24px 16px;
    background: var(--br-bg-4);
    border-bottom: var(--br-border-thick);
}
@media (min-width: 768px) {
    .gh-signature {
        padding: 40px 24px;
    }
}

/* Master card (siyah zemin) */
.gh-signature-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--br-wine);
    border: var(--br-border-thick);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-md);
    overflow: hidden;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(255, 217, 61, 0.06) 1px, transparent 0);
    background-size: 14px 14px;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "thumb" "body";
}
@media (min-width: 768px) {
    .gh-signature-card {
        grid-template-columns: 1.2fr 1fr;
        grid-template-areas: "body thumb";
    }
}

/* Body (sol kolon) */
.gh-signature-body {
    grid-area: body;
    padding: 22px 22px 24px;
    color: var(--br-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (min-width: 768px) {
    .gh-signature-body {
        padding: 36px 32px;
    }
}

/* "İMZA ÜRÜN" eyebrow badge — kırmızı zemin, siyah outline, offset, hafif eğri */
.gh-signature-eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    background: var(--br-gold);
    color: var(--br-white);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 4px 12px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 14px;
    transform: rotate(-6deg);
}

/* Title — POW! prefix + ürün adı, sarı renk */
.gh-signature-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(1.625rem, 4vw, 2.5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--br-yellow);
    margin: 0 0 14px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}
.gh-signature-pow {
    color: var(--br-yellow);
    font-family: var(--br-font-display);
    font-weight: 800;
    -webkit-text-stroke: 1.5px var(--br-yellow);
}

/* Açıklama */
.gh-signature-desc {
    font-family: var(--br-font-sans);
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--br-cream-soft);
    margin: 0 0 20px;
    font-weight: 400;
}

/* Action butonları */
.gh-signature-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

/* SEPETE EKLE — sarı zemin, siyah yazı, offset shadow */
.gh-signature-add {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--br-yellow);
    color: var(--br-wine) !important;
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-md);
    box-shadow: var(--br-shadow-sm);
    padding: 12px 22px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    line-height: 1.2;
}
.gh-signature-add:hover {
    background: var(--br-yellow-light);
    color: var(--br-wine) !important;
    transform: translate(-1px, -1px);
    box-shadow: var(--br-shadow-hover);
    text-decoration: none;
}
.gh-signature-add:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--br-wine);
}
.gh-signature-add-price {
    font-family: var(--br-font-display);
    font-weight: 800;
}
.gh-signature-add-sep {
    opacity: 0.6;
}

/* DETAY — outline, transparent zemin, sarı yazı */
.gh-signature-detail {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--br-yellow) !important;
    border: 2px solid var(--br-yellow);
    border-radius: var(--br-radius-md);
    padding: 12px 20px;
    font-family: var(--br-font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
    line-height: 1.2;
}
.gh-signature-detail:hover {
    background: var(--br-yellow);
    color: var(--br-wine) !important;
    text-decoration: none;
}

/* Thumb (sağ kolon) — sarı zemin + halftone */
.gh-signature-thumb {
    grid-area: thumb;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    border-left: none;
    border-bottom: 3px solid var(--br-wine);
    overflow: hidden;
    text-decoration: none;
    color: var(--br-wine);
    transition: background 0.15s;
    position: relative;
}
@media (min-width: 768px) {
    .gh-signature-thumb {
        border-left: 3px solid var(--br-wine);
        border-bottom: none;
        aspect-ratio: auto;
        min-height: 100%;
    }
}
.gh-signature-thumb:hover {
    background: var(--br-yellow-light);
    color: var(--br-wine);
    text-decoration: none;
}

.gh-signature-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gh-signature-thumb-letter {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(80px, 15vw, 140px);
    line-height: 1;
    color: var(--br-wine);
    text-transform: uppercase;
    -webkit-text-stroke: 3px var(--br-wine);
    text-shadow: 4px 4px 0 var(--br-gold);
}


/* ============================================================
   4. EN ÇOK SEVİLEN — Bu hafta en çok satılan ürünler (mockup)
   - Beyaz krem zemin (br-bg-4)
   - Title: "EN ÇOK SEVİLEN." (POW! tarzı, italic SEVİLEN)
   - Subtitle: ince yazı
   - 4-col grid (mobile 2-col, desktop 4-col)
   - Kart: sarı halftone üst + beyaz alt + tag pill + + butonu
============================================================ */
.gh-picks {
    padding: 32px 16px;
    background: var(--br-cream-soft);
    border-bottom: var(--br-border-thick);
}
@media (min-width: 768px) {
    .gh-picks { padding: 56px 24px; }
}

.gh-picks-header {
    max-width: 1200px;
    margin: 0 auto 24px;
    text-align: left;
}

.gh-picks-title,
body .gh-picks-title,
body.theme-dark .gh-picks-title,
html body .gh-picks-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000 !important;
    margin: 0 0 6px;
}
.gh-picks-title-accent,
body .gh-picks-title-accent,
body.theme-dark .gh-picks-title-accent,
html body .gh-picks-title-accent {
    color: var(--br-gold) !important;
    font-style: italic;
}

.gh-picks-subtitle {
    font-family: var(--br-font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--br-wine-light);
    margin: 0;
    line-height: 1.5;
}

/* 4-col grid (mobile 2, desktop 4) */
.gh-picks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (min-width: 600px) {
    .gh-picks-grid {
        gap: 16px;
    }
}
@media (min-width: 1000px) {
    .gh-picks-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* Card */
.gh-pick-card {
    background: var(--br-white);
    border: var(--br-border);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-sm);
    overflow: hidden;
    transition: transform 0.15s, box-shadow 0.15s;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.gh-pick-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--br-shadow-md);
    text-decoration: none;
}

/* Thumb (üst sarı halftone container) */
.gh-pick-thumb {
    position: relative;
    aspect-ratio: 1;
    background: var(--br-yellow);
    background-image: var(--br-halftone-mid);
    background-size: var(--br-halftone-size-lg);
    border-bottom: 3px solid var(--br-wine);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gh-pick-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gh-pick-letter {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(48px, 8vw, 72px);
    line-height: 1;
    color: var(--br-wine);
    -webkit-text-stroke: 2px var(--br-wine);
    text-shadow: 3px 3px 0 var(--br-gold);
    text-transform: uppercase;
}

/* Tag pill (ACILI / FRESH / DEAL) */
.gh-pick-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 3px 10px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.4;
}
.gh-pick-tag--spicy {
    background: var(--br-gold);
    color: var(--br-white);
}
.gh-pick-tag--popular {
    background: var(--br-wine, #c0392b);
    color: var(--br-white, #fff);
    box-shadow: 0 2px 6px rgba(192,57,43,0.25);
}
.gh-pick-tag--fresh,
.gh-pick-tag--new {
    background: var(--br-olive);
    color: var(--br-white);
}
.gh-pick-tag--deal {
    background: var(--br-wine);
    color: var(--br-yellow);
}
.gh-pick-tag--signature {
    background: var(--br-yellow);
    color: var(--br-wine);
}

/* Body (alt beyaz container) */
.gh-pick-body {
    padding: 12px 14px 12px;
    background: var(--br-white);
    flex: 1;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .gh-pick-body {
        padding: 14px 16px;
    }
}

.gh-pick-title,
body .gh-pick-title,
body.theme-dark .gh-pick-title,
html body .gh-pick-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    margin: 0 0 4px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    color: #000 !important;
}
@media (min-width: 768px) {
    .gh-pick-title { font-size: 1rem; }
}

/* Title parse: ilk kelime siyah, kalan kelimeler kırmızı (mockup'a uygun) */
.gh-pick-title-first,
body .gh-pick-title-first,
body.theme-dark .gh-pick-title-first,
html body .gh-pick-title-first {
    color: #000 !important;
}
.gh-pick-title-rest,
body .gh-pick-title-rest,
body.theme-dark .gh-pick-title-rest,
html body .gh-pick-title-rest {
    color: var(--br-gold) !important;
}

.gh-pick-desc {
    font-size: 0.8125rem;
    color: var(--br-wine-light);
    line-height: 1.4;
    margin: 0 0 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    flex: 1;
}

.gh-pick-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

/* Fiyat (kırmızı, büyük) */
.gh-pick-price {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--br-gold);
    line-height: 1;
    letter-spacing: -0.01em;
}
@media (min-width: 768px) {
    .gh-pick-price { font-size: 1.375rem; }
}

/* + butonu (siyah zemin sarı +) */
.gh-pick-add {
    width: 36px;
    height: 36px;
    background: var(--br-wine);
    color: var(--br-yellow);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-sm);
    box-shadow: 2px 2px 0 var(--br-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    flex-shrink: 0;
}
.gh-pick-card:hover .gh-pick-add {
    background: var(--br-gold);
    color: var(--br-white);
    box-shadow: 2px 2px 0 var(--br-wine);
    transform: translate(-1px, -1px);
}
.gh-pick-add svg {
    stroke: currentColor;
    width: 18px;
    height: 18px;
}


/* ============================================================
   5. REVIEWS (Misafir Yorumları) — Mockup Toon Pop comic
   - Sarı zemin + halftone
   - Title: "MİSAFİRLERİMİZ DİYOR Kİ." (POW! tarzı)
   - 3 col kart (mobile 1, tablet 2, desktop 3)
   - Her kart hafif rotated (-1° / +1° / -0.5°)
   - Comic outline + offset shadow
   - Yıldızlar SARI (filled), açık gri (empty)
============================================================ */
.gh-reviews {
    padding: 32px 16px;
    background: var(--br-bg-1);
    background-image: var(--br-halftone-light);
    background-size: var(--br-halftone-size);
    border-bottom: var(--br-border-thick);
}
@media (min-width: 768px) {
    .gh-reviews { padding: 56px 24px; }
}

.gh-reviews-header {
    max-width: 1200px;
    margin: 0 auto 28px;
    text-align: left;
}

.gh-reviews-title,
body .gh-reviews-title,
body.theme-dark .gh-reviews-title,
html body .gh-reviews-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000 !important;
    margin: 0 0 6px;
}
.gh-reviews-title-accent,
body .gh-reviews-title-accent,
body.theme-dark .gh-reviews-title-accent,
html body .gh-reviews-title-accent {
    color: var(--br-gold) !important;
    font-style: italic;
}

.gh-reviews-subtitle {
    font-family: var(--br-font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--br-wine-light);
    margin: 0;
    line-height: 1.5;
}

/* Grid */
.gh-reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 1200px;
    margin: 0 auto 24px;
}
@media (min-width: 600px) {
    .gh-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (min-width: 1000px) {
    .gh-reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

/* Card — comic outline + offset shadow + slight rotation */
.gh-review-card {
    background: var(--br-white);
    border: var(--br-border);
    border-radius: var(--br-radius-lg);
    box-shadow: var(--br-shadow-md);
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
    transform: rotate(var(--rotation, 0deg));
    position: relative;
}
.gh-review-card:hover {
    transform: rotate(0deg) translate(-2px, -2px);
    box-shadow: var(--br-shadow-lg);
    z-index: 2;
}

/* Decorative quote mark (sol üst köşe) */
.gh-review-card::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: 14px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    color: var(--br-gold);
    -webkit-text-stroke: 2px var(--br-wine);
    pointer-events: none;
    z-index: 1;
}

/* Stars row */
.gh-review-stars {
    display: inline-flex;
    gap: 2px;
    font-size: 18px;
    line-height: 1;
    margin-top: 6px;
}
.gh-review-star {
    color: var(--br-bg-4);
    transition: color 0.15s;
}
.gh-review-star.is-filled {
    color: var(--br-yellow);
    -webkit-text-stroke: 1px var(--br-wine);
}

/* Review text */
.gh-review-text {
    font-family: var(--br-font-sans);
    font-size: 0.9375rem;
    color: var(--br-wine);
    line-height: 1.55;
    margin: 0;
    flex: 1;
    font-weight: 500;
}

/* Author block (avatar + name + location) */
.gh-review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 2px dashed var(--br-wine-line);
}

.gh-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--br-radius-pill);
    border: 2px solid var(--br-wine);
    background: var(--br-yellow);
    color: var(--br-wine);
    box-shadow: 2px 2px 0 var(--br-wine);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 16px;
    flex-shrink: 0;
}

.gh-review-author-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.2;
}

.gh-review-name {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 0.9375rem;
    color: var(--br-wine);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.gh-review-location {
    font-family: var(--br-font-mono);
    font-weight: 700;
    font-size: 11px;
    color: var(--br-wine-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* CTA — "Tüm Yorumları Gör" */
.gh-reviews-cta {
    text-align: center;
    margin-top: 28px;
}

.gh-reviews-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--br-white);
    color: var(--br-wine);
    border: 2px solid var(--br-wine);
    border-radius: var(--br-radius-pill);
    box-shadow: 2px 2px 0 var(--br-wine);
    padding: 10px 22px;
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    line-height: 1.2;
}
.gh-reviews-cta-btn:hover {
    background: var(--br-yellow);
    color: var(--br-wine);
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0 var(--br-wine);
    text-decoration: none;
}


/* ============================================================
   7. FINAL CTA — POW! kapanış
============================================================ */
.gh-final-cta {
    padding: 56px 16px;
    background: var(--br-wine);
    color: var(--br-yellow);
    background-image: radial-gradient(circle at 80% 20%, var(--br-gold-soft) 0%, transparent 50%);
    text-align: center;
    border-bottom: var(--br-border-thick);
}
@media (min-width: 768px) {
    .gh-final-cta { padding: 80px 24px; }
}
.gh-final-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}
.gh-final-cta-title {
    font-family: var(--br-font-display);
    font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--br-yellow);
    margin: 0 0 14px;
    -webkit-text-stroke: 2px var(--br-yellow);
    color: var(--br-wine);
    text-shadow: 4px 4px 0 var(--br-gold);
}
.gh-final-cta-tagline {
    font-size: 1rem;
    color: var(--br-cream-soft);
    margin: 0 0 28px;
    line-height: 1.55;
}


/* ============================================================
   Yardımcılar
============================================================ */
.gh-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--br-font-display);
    font-weight: 700;
    font-size: 13px;
    color: var(--br-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}
.gh-link-arrow:hover {
    color: var(--br-gold-dark);
    text-decoration: underline;
}
