/* ==========================================================================
   Scrollytelling (anasayfa) — GSAP/ScrollTrigger destekli, dereceli geliştirme
   Tasarım kuralı: JS/GSAP yoksa veya reduced-motion ise her şey görünür kalır.
   İlk gizleme durumları yalnızca html.gsap-ready / html.io-ready altında devreye girer.
   ========================================================================== */

:root {
    --scrolly-accent: #f2a100;
    --scrolly-ink: #1b1b1b;
    --scrolly-muted: #6b6b6b;
    --scrolly-radius: 24px;
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll yardımcı sınıfı
   -------------------------------------------------------------------------- */
html.gsap-ready [data-scrolly] {
    visibility: hidden;
    opacity: 0;
}

/* GSAP yoksa IntersectionObserver fallback */
html.io-ready [data-scrolly] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

html.io-ready [data-scrolly].is-revealed {
    opacity: 1;
    transform: none;
}

/* --------------------------------------------------------------------------
   Hero — aşağı kaydır göstergesi
   -------------------------------------------------------------------------- */
.scrolly-hero {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    min-height: 580px;
    overflow: hidden;
    color: #fff;
}

.scrolly-hero-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.scrolly-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Okunabilirlik perdesi (sabit) */
.scrolly-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.32) 45%, rgba(0, 0, 0, 0) 80%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.38) 100%);
}

/* Sinematik karartma (scroll/scrub ile belirir) */
.scrolly-hero-veil--scrub {
    z-index: 5;
    opacity: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* Polen canvas — görselin üstünde, içeriğin altında */
.scrolly-pollen {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.scrolly-hero-content {
    position: relative;
    z-index: 4;
    max-width: 780px;
    margin: 0 auto;
    padding: 72px 20px 40px;
    text-align: center;
}

.scrolly-hero-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

/* Hero üstündeki beyaz Gülmar wordmark (şeffaf PNG) */
.scrolly-hero-logo {
    display: block;
    width: clamp(280px, 40vw, 520px);
    height: auto;
    margin: 0 auto 10px;
    transition: opacity .4s ease, visibility .4s ease, transform .5s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

/* Wordmark ve alt marka satırı tek bir logo kilidi gibi hareket eder. */
.scrolly-hero-lockup {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    transition: opacity .4s ease, visibility .4s ease, transform .5s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
}

/* Aşağı kaydırıp hero yazısı geçilince logo kilidi kaybolur */
html.hero-passed .scrolly-hero-lockup {
    opacity: 0;
    visibility: hidden;
    filter: blur(6px);
    transform: scale(.96);
}

/* --------------------------------------------------------------------------
   Gentaş ana bayii rozeti — GÜLMAR LOGOSUYLA TEK BİRİM ("tek logo").
   Markup'ta logo + rozet birlikte .scrolly-logo-stack içinde (index.blade.php).
   Rozet, stack'e (= logo kutusu) göre position:absolute ve boyutu logonun
   YÜZDESİ (width:%) → her ekran genişliğinde logoyla BİRLİKTE ölçeklenir ve
   konumu sabit kalır; ikisi birbirine göre ASLA KAYMAZ (mobil = PC aynı şekil).
   Breakpoint GEREKMEZ. Lockup'ın GSAP intro/scroll geçişiyle birlikte belirir/
   kaybolur (artık ayrı badge-in animasyonu yok; sadece sheen parıltısı).
   Konum ayarı: width (%) + transform translate(% , %) (logoya göre kaydır).
   GÖTCHA: SVG mask URL'i taşınırsa elle güncelle (yoksa rozet TAMAMEN görünmez).
   -------------------------------------------------------------------------- */
.scrolly-logo-stack {
    position: relative;
    display: inline-block;
}

.scrolly-dealer-badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 6;
    width: 34%;                       /* logo genişliğinin yüzdesi → birlikte ölçeklenir */
    aspect-ratio: 640 / 180;
    transform: translate(-40%, -58%);  /* logonun sol-ÜST DIŞINA: belirgin sola + üste */
    pointer-events: none;
    background: linear-gradient(105deg,
        #aab0b7 0%,
        #cacdd3 30%,
        #ffffff 50%,
        #cacdd3 70%,
        #aab0b7 100%);
    background-size: 200% 100%;
    background-repeat: no-repeat;
    -webkit-mask: url("../images/applications/landing_page/gentas_ana_bayii_minimal_resmi_logo.svg") center / contain no-repeat;
            mask: url("../images/applications/landing_page/gentas_ana_bayii_minimal_resmi_logo.svg") center / contain no-repeat;
    filter: drop-shadow(0 2px 9px rgba(0, 0, 0, .5));
    animation: scrolly-badge-sheen 7s ease-in-out 1.4s infinite;
}

/* Yumuşak gri-gümüş parıltı — degrade ileri-geri çok yavaş kayar (göz yormaz) */
@keyframes scrolly-badge-sheen {
    0%   { background-position: 100% 50%; }
    50%  { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .scrolly-dealer-badge {
        animation: none;
        background-position: 35% 50%;
    }
}

/* Anasayfada hero tepedeyken pill bar logosu gizli; hero geçilince belirir.
   (hdr-js JS ile eklenir; JS yoksa pill bar logosu normal görünür) */
body.page-home .floating-pillbar .pillbar-brand .header-logo {
    clip-path: inset(0 round 12px);
    transition: opacity .34s ease, visibility .34s ease, transform .52s cubic-bezier(.2, .9, .2, 1), filter .42s ease, clip-path .52s cubic-bezier(.2, .9, .2, 1);
    transform-origin: center;
    will-change: transform, opacity, filter, clip-path;
}

/* Logo yataydan sürüklenmez; merkezden netleşerek ve maskesi açılarak belirir. */
html.hdr-js:not(.hero-passed) body.page-home .floating-pillbar .pillbar-brand .header-logo {
    opacity: 0;
    visibility: hidden;
    clip-path: inset(12% 48% round 999px);
    filter: blur(10px);
    transform: scale(.82);
}

/* --- Anasayfa: içeriğe göre boyutlanan, ORTALI pill bar ---
   Logo yokken marka alanı kapalı → bar dar ve ortalı.
   Logo gelince marka alanı açılır → bar ortada büyür, GÜLMAR solda belirir. */
body.page-home .pillbar-surface {
    width: -moz-fit-content;
    width: fit-content;
}

body.page-home .pillbar-layout {
    display: flex;
    align-items: center;
}

/* Menü içerik genişliğinde dursun (full-width stretch kapalı) */
body.page-home .floating-pillbar .header-menu,
body.page-home .floating-pillbar .header-menu > .nav-menu {
    width: auto;
}

/* Nav ile sağ aksiyonlar arası boşluk */
body.page-home .pillbar-actions {
    margin-left: clamp(14px, 2vw, 34px);
}

/* Marka alanı: logo gelince açılır. max-width gerçek içeriğe yakın tutuldu
   ki animasyon süresi boyunca görünür hareket olsun (ölü süre olmasın). */
body.page-home .pillbar-brand {
    overflow: hidden;
    max-width: 168px;
    margin-right: clamp(10px, 1.5vw, 26px);
    transition: max-width .42s cubic-bezier(.2, .9, .2, 1), margin-right .42s cubic-bezier(.2, .9, .2, 1);
    will-change: max-width;
}

/* Hero tepedeyken (yazı dururken) marka alanı kapalı → sol taraf yok */
html.hdr-js:not(.hero-passed) body.page-home .pillbar-brand {
    max-width: 0;
    margin-right: 0;
}

.scrolly-hero-title {
    display: flex;
    width: 88%;
    align-items: center;
    gap: clamp(10px, 1.2vw, 18px);
    margin: 0 auto;
    font-family: "Manrope", "Poppins", sans-serif;
    font-size: clamp(13px, 1.05vw, 16px);
    font-weight: 600;
    line-height: 1.35;
    color: rgba(255, 255, 255, .94);
    letter-spacing: .3em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .34);
    text-transform: uppercase;
    white-space: nowrap;
    text-wrap: balance;
}

.scrolly-hero-title::before,
.scrolly-hero-title::after {
    flex: 1 1 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .68));
    content: "";
}

.scrolly-hero-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .68), transparent);
}

.scrolly-hero-title .word {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
    margin-right: 0.62em;
    padding-bottom: 0.08em;
}

.scrolly-hero-title .word:last-child {
    margin-right: 0;
}

.scrolly-hero-title .word > span {
    display: inline-block;
}

.scrolly-hero-lead {
    max-width: 620px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(14px, 1.2vw, 17px);
    font-weight: 400;
    line-height: 1.65;
    text-wrap: balance;
}

.scrolly-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.scrolly-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s ease;
}

.scrolly-hero-btn:hover {
    transform: translateY(-2px);
}

.scrolly-hero-btn--primary {
    color: #181818;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}

.scrolly-hero-btn--primary:hover {
    color: #181818;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
}

.scrolly-hero-btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .42);
    background: rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.scrolly-hero-btn--ghost:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .14);
}

/* Teklif (WhatsApp) butonu — şeffaf/turuncu yerine WhatsApp yeşili. */
.scrolly-hero-btn--ghost:has(.fa-whatsapp) {
    color: #fff;
    border-color: #25d366;
    background: #25d366;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.scrolly-hero-btn--ghost:has(.fa-whatsapp):hover {
    color: #fff;
    border-color: #1ebe5b;
    background: #1ebe5b;
}

.scrolly-hero-proof {
    /* 4 kart DENGELİ ızgara: geniş ekranda tek sıra 4'lü; orta/tablet genişlikte
       2x2 (3+1 "kayma" olmaz). flex-wrap'ın orphan 4. kartı sorununu çözer. */
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;      /* 4 kart EŞİT yükseklik; damga akış dışı (altta) */
    gap: 10px;
    max-width: min(1180px, calc(100vw - 48px));
    margin: 26px auto 0;
    padding-bottom: 98px;      /* alttaki (absolute) damgalara yer ayır */
}

.scrolly-hero-proof-card {
    position: relative;
    height: 100%;              /* hücreyi (eşit satır yüksekliğini) doldur → kartlar eşit */
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    align-content: center;     /* uzayan kartta içerik dikey ortalı */
    gap: 10px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 18px;
    color: #fff;
    text-align: left;
    text-decoration: none;
    background: rgba(10, 12, 10, .28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
    backdrop-filter: blur(14px) saturate(130%);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.scrolly-hero-proof-card:hover {
    color: #fff;
    border-color: rgba(242, 161, 0, .72);
    background: rgba(20, 17, 10, .46);
    transform: translateY(-2px);
}

/* Hücre = buton (kart) + ALTINDA bağımsız damga. Damga butonun İÇİNDE değil,
   DIŞINDA altında durur. align-items:start sayesinde maker hücreleri uzar,
   diğer kartlar esnemez (2x2'de alt satıra taşmaz; damga hücre sınırında). */
.scrolly-hero-proof-cell {
    position: relative;        /* damga buna göre konumlanır (kartı eşit tutmak için akış dışı) */
}

/* Üretici firma damgası — butonun DIŞINDA, SOL-ALT köşesine biner. position:absolute
   olduğundan kartın yüksekliğine EKLENMEZ → 4 kart eşit kalır; yer .scrolly-hero-proof
   padding-bottom ile ayrılır. */
.scrolly-hero-proof-stamp {
    position: absolute;
    top: calc(100% - 14px);
    left: 2px;
    width: 112px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 7px rgba(0, 0, 0, .42));
    pointer-events: none;
    transition: transform .25s ease;
}

.scrolly-hero-proof-card:hover + .scrolly-hero-proof-stamp { transform: scale(1.04); }

.scrolly-hero-proof-img {
    display: block;
    width: 46px;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
}

.scrolly-hero-proof-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.scrolly-hero-proof-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
    max-width: 214px;
}

.scrolly-hero-proof-copy strong,
.scrolly-hero-proof-copy small {
    display: block;
    overflow-wrap: anywhere;
    white-space: normal;
}

.scrolly-hero-proof-copy strong {
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 700;
}

.scrolly-hero-proof-copy small {
    font-size: 10.5px;
    line-height: 1.25;
    color: rgba(255, 255, 255, .68);
}

/* Orta/tablet genişlik: 4'lü sıra sığmaz → 3+1 yerine dengeli 2x2. */
@media (min-width: 768px) and (max-width: 1040px) {
    .scrolly-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: min(640px, calc(100vw - 48px));
    }
    /* 2x2'de rozetli kartlar ALT satıra → damgalar satır arasında değil, açık alanda iner */
    .scrolly-hero-proof-cell.is-maker-cell { order: 1; }
}

/* GSAP açılış animasyonu için başlangıç durumları (yalnızca gsap-ready) */
html.gsap-ready .scrolly-hero-title .word > span {
    transform: translateY(110%);
}

html.gsap-ready:not(.hero-intro-done) .scrolly-hero-lockup,
html.gsap-ready:not(.hero-intro-done) .scrolly-hero-lead,
html.gsap-ready:not(.hero-intro-done) .scrolly-hero-actions,
html.gsap-ready:not(.hero-intro-done) .scrolly-hero-proof {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(14px) scale(.98);
}


.scrolly-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 6;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: max-content;
    color: rgba(255, 255, 255, .72);
    transform: translateX(-50%);
    transition: opacity .3s ease;
}

.scrolly-scroll-cue-mouse {
    display: grid;
    width: 28px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    place-items: start center;
}

.scrolly-scroll-cue-mouse > span {
    display: block;
    width: 4px;
    height: 7px;
    margin-top: 9px;
    border-radius: 999px;
    background: #fff;
    animation: scrolly-cue 1.6s ease-in-out infinite;
}

.scrolly-scroll-cue-label {
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
}

@keyframes scrolly-cue {
    0% { transform: translateY(-6px); opacity: 0; }
    40% { opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}

@media (max-width: 767px) {
    .scrolly-hero-content {
        padding-top: 78px;
    }

    .scrolly-hero-logo {
        width: min(74vw, 360px);
        margin-bottom: 8px;
    }

    /* Rozet için mobil kural GEREKMEZ: artık logonun YÜZDESİ (tek birim),
       logoyla birlikte ölçeklenir/konumlanır. Bkz. .scrolly-dealer-badge. */

    .scrolly-hero-title {
        width: 94%;
        gap: 8px;
        font-size: 10px;
        letter-spacing: .2em;
    }

    .scrolly-hero-lead {
        max-width: 330px;
        margin-top: 14px;
        font-size: 13px;
    }

    .scrolly-hero-actions {
        margin-top: 20px;
    }

    .scrolly-hero-btn {
        min-height: 43px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .scrolly-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        width: min(100%, 390px);
        max-width: calc(100vw - 28px);
        margin-top: 18px;
        padding-bottom: 58px;
    }
    /* rozetli kartlar (MDF, Kontrplak) ALT satıra → damgalar açık alanda iner */
    .scrolly-hero-proof-cell.is-maker-cell { order: 1; }

    .scrolly-hero-proof-card {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 8px;
        padding: 7px 8px;
        border-radius: 15px;
    }

    .scrolly-hero-proof-img {
        width: 36px;
        border-radius: 10px;
    }

    .scrolly-hero-proof-copy { max-width: none; }
    .scrolly-hero-proof-copy strong { font-size: 11.5px; }
    .scrolly-hero-proof-copy small { font-size: 9.5px; }
    .scrolly-hero-proof-stamp { width: 78px; top: calc(100% - 24px); }

    .scrolly-scroll-cue-label {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   Ürün kategorileri — sticky görsel + akan metin
   Varsayılan: gizli (mevcut carousel fallback gösterilir).
   Yalnızca masaüstü + gsap-ready ise devreye girer.
   -------------------------------------------------------------------------- */
.scrolly-cats {
    display: none;
}

@media (min-width: 992px) {
    html.gsap-ready .scrolly-cats {
        display: block;
    }

    html.gsap-ready .scrolly-cats-fallback {
        display: none !important;
    }
}

.scrolly-cats-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 90px);
    align-items: start;
}

.scrolly-cats-stage {
    position: sticky;
    top: 110px;
    height: calc(100vh - 160px);
    min-height: 460px;
    border-radius: var(--scrolly-radius);
    overflow: hidden;
    background: #f4f4f4;
    box-shadow: 0 30px 70px rgba(24, 32, 28, 0.18);
}

.scrolly-cats-figure {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity .7s ease, transform 1.1s cubic-bezier(.22, 1, .36, 1);
}

.scrolly-cats-figure.is-active {
    opacity: 1;
    transform: scale(1);
}

.scrolly-cats-figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scrolly-cats-figure figcaption {
    position: absolute;
    left: 26px;
    bottom: 22px;
    z-index: 2;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--scrolly-ink);
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.scrolly-cats-steps {
    display: flex;
    flex-direction: column;
}

.scrolly-cats-step {
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    opacity: .32;
    transition: opacity .5s ease;
}

.scrolly-cats-step.is-active {
    opacity: 1;
}

.scrolly-cats-step .step-index {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .2em;
    color: var(--scrolly-accent);
}

.scrolly-cats-step h3 {
    margin: 14px 0 6px;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    color: var(--scrolly-ink);
}

.scrolly-cats-step p {
    margin: 0 0 22px;
    max-width: 460px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--scrolly-muted);
}

.scrolly-cats-step .btn {
    align-self: flex-start;
}

.scrolly-cats-step .scrolly-cats-bar {
    position: relative;
    width: 80px;
    height: 3px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.scrolly-cats-step .scrolly-cats-bar::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--scrolly-accent);
    transition: transform .5s ease;
}

.scrolly-cats-step.is-active .scrolly-cats-bar::after {
    transform: scaleX(1);
}

@media (min-width: 992px) {
    html.gsap-ready .scrolly-colors-fallback {
        display: none !important;
    }
}

/* Renkler sahnesi — figür içinde swatch montajı */
.scrolly-colors .scrolly-cats-stage {
    background: #15171a;
}

.scrolly-colors-grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 6px;
}

.scrolly-swatch {
    background-color: #2a2d31;
    background-size: cover;
    background-position: center;
}

/* Renkler — mobil / GSAP yok fallback (basit kart listesi) */
.scrolly-colors-fallback {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 10px;
}

.scrolly-colors-card {
    display: block;
    padding: 16px;
    border: 1px solid #ededed;
    border-radius: 16px;
    background: #fff;
    transition: box-shadow .25s ease, transform .25s ease;
}

.scrolly-colors-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(24, 32, 28, 0.12);
}

.scrolly-colors-card .swatches {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.scrolly-colors-card .swatch {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
}

.scrolly-colors-card h3 {
    margin: 0 0 2px;
    font-size: 18px;
    color: var(--scrolly-ink);
}

.scrolly-colors-card span {
    font-size: 14px;
    color: var(--scrolly-muted);
}

/* --------------------------------------------------------------------------
   Hakkımızda — görsel parallax sahnesi
   -------------------------------------------------------------------------- */
.about-area .thumb {
    overflow: hidden;
    border-radius: var(--scrolly-radius);
}

html.gsap-ready .about-area .thumb img {
    will-change: transform;
}

/* --------------------------------------------------------------------------
   Üretim / kalite — yatay scroll süreç
   Varsayılan (mobil / GSAP yok): yatay kaydırılabilir şerit.
   Masaüstü + gsap-ready: bölüm pinlenir, şerit scroll ile yatay ilerler.
   -------------------------------------------------------------------------- */
.scrolly-process-section {
    position: relative;
    overflow: hidden;
}

.scrolly-process-viewport {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.scrolly-process-track {
    display: flex;
    gap: 24px;
    width: max-content;
    padding: 10px clamp(16px, 5vw, 80px) 28px;
}

.scrolly-process-card {
    flex: 0 0 auto;
    width: min(80vw, 340px);
    padding: 34px 30px;
    border: 1px solid #ededed;
    border-radius: var(--scrolly-radius);
    background: #fff;
    box-shadow: 0 18px 40px rgba(24, 32, 28, 0.08);
}

.scrolly-process-index {
    display: block;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    color: rgba(242, 161, 0, 0.28);
}

.scrolly-process-card h3 {
    margin: 14px 0 10px;
    font-size: 22px;
    color: var(--scrolly-ink);
}

.scrolly-process-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: var(--scrolly-muted);
}

@media (min-width: 992px) {
    html.gsap-ready .scrolly-process-section {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    html.gsap-ready .scrolly-process-viewport {
        overflow: hidden;
    }

    html.gsap-ready .scrolly-process-card {
        width: 380px;
    }
}

/* --------------------------------------------------------------------------
   Erişilebilirlik / hareket azaltma — her şey görünür, animasyon yok
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    html.gsap-ready [data-scrolly],
    html.io-ready [data-scrolly] {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .scrolly-scroll-cue span {
        animation: none;
    }
}
