/* ============================================================
   DOESTAR HOME LANDING — Mobile-first premium fashion-tech
   Breakpoints: default(<480) → 480 → 720 → 960 → 1024
   ============================================================ */

:root {
    --home-bg: #ffffff;
    --home-surface: #f7f8fb;
    --home-card: #ffffff;
    --home-text: #07070a;
    --home-muted: #6b7280;
    --home-muted-2: #9ca3af;
    --home-border: #e8eaf0;
    --home-blue: #7c3aed;
    --home-blue-dark: #7c3aed;
    --home-blue-light: rgba(124, 58, 237, 0.08);
    --home-black: #08090d;
    --home-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --home-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
    --home-shadow-lg: 0 18px 50px rgba(15, 23, 42, 0.08);
    --home-radius-sm: 12px;
    --home-radius-md: 16px;
    --home-radius-lg: 22px;
    --home-radius-xl: 28px;
}

/* Overflow guard — sadece landing'e ait, sticky'i kırmasın diye scoped */
.home-page { overflow-x: clip; }

/* Global anchor reset — landing içinde hover underline yok */
.home-page a,
.home-page a:hover,
.home-page a:focus,
.home-page a:active,
.home-page a:visited {
    text-decoration: none !important;
    color: inherit;
}

.home-page {
    background: var(--home-bg);
    color: var(--home-text);
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
}

.home-page *, .home-page *::before, .home-page *::after { box-sizing: border-box; }

/* ============================================================
   SHELL — tüm section'lar bunun içinde
   ============================================================ */
.home-shell {
    display: block;
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 28px;
    box-sizing: border-box;
}

@media (min-width: 480px) { .home-shell { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 720px) { .home-shell { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1024px) { .home-shell { padding-left: 48px; padding-right: 48px; } }

/* CTA banner ve diğer outer wrappers da shell içinde — çift padding olmasın */
.home-shell > .home-cta { margin-left: 0; margin-right: 0; }

/* Header'ı da landing genişliğine hizala */
.home-page ~ * .site-header-inner,
body:has(.home-page) .site-header-inner {
    padding-left: 28px !important;
    padding-right: 28px !important;
}

@media (min-width: 480px) {
    body:has(.home-page) .site-header-inner {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}
@media (min-width: 720px) {
    body:has(.home-page) .site-header-inner {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

/* Section dikey rhythm — sol/sağ padding shell'e bırakılır */
.home-section { padding-top: 36px; padding-bottom: 36px; }
@media (min-width: 720px) {
    .home-section { padding-top: 56px; padding-bottom: 56px; }
}
@media (min-width: 1024px) {
    .home-section { padding-top: 72px; padding-bottom: 72px; }
}

.home-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}
@media (min-width: 720px) { .home-section-head { margin-bottom: 28px; } }

.home-section-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--home-text);
    margin: 0;
    line-height: 1.2;
}
@media (min-width: 720px) { .home-section-title { font-size: 24px; } }
@media (min-width: 1024px) { .home-section-title { font-size: 28px; } }

.home-section-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--home-blue) !important;
    text-decoration: none !important;
    white-space: nowrap;
    flex-shrink: 0;
}
.home-section-link:hover { color: var(--home-blue-dark) !important; text-decoration: none !important; }
@media (min-width: 720px) { .home-section-link { font-size: 13px; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid transparent;
    background: transparent;
    transition: background 0.18s ease, border-color 0.18s ease;
    white-space: nowrap;
    min-height: 44px;
}

@media (min-width: 720px) {
    .home-btn { height: 50px; padding: 0 24px; font-size: 14.5px; border-radius: 14px; }
}

.home-btn--primary {
    background: var(--home-blue);
    color: #fff !important;
    box-shadow: 0 6px 14px -4px rgba(124, 58, 237, 0.4);
}
.home-btn--primary:hover,
.home-btn--primary:focus,
.home-btn--primary:active { color: #fff !important; }

.home-btn--ghost {
    background: #fff;
    color: var(--home-text) !important;
    border-color: var(--home-border);
}
.home-btn--ghost:hover,
.home-btn--ghost:focus,
.home-btn--ghost:active { color: var(--home-text) !important; }

.home-btn--dark {
    background: var(--home-black);
    color: #fff !important;
    border-color: var(--home-black);
}
.home-btn--dark:hover,
.home-btn--dark:focus,
.home-btn--dark:active { color: #fff !important; }
.home-btn--sm { height: 38px; padding: 0 14px; font-size: 13px; border-radius: 10px; min-height: 38px; }

@media (hover: hover) {
    .home-btn--primary:hover { background: var(--home-blue-dark); }
    .home-btn--ghost:hover { border-color: var(--home-text); }
    .home-btn--dark:hover { background: #000; }
}

/* ============================================================
   1. HERO
   ============================================================ */
.home-hero {
    padding-top: 16px;
    padding-bottom: 16px;
}
@media (min-width: 720px) {
    .home-hero { padding-top: 40px; padding-bottom: 24px; }
}
@media (min-width: 960px) {
    .home-hero { padding-top: 56px; padding-bottom: 32px; }
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

@media (min-width: 960px) {
    .home-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
        gap: 48px;
    }
}

.home-hero-left {
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
    /* Mobilde içerik viewport'u doldursun ve dikey ortalansın */
    min-height: calc(100svh - 80px);
    justify-content: center;
}

@media (min-width: 720px) {
    .home-hero-left { gap: 22px; min-height: 0; justify-content: flex-start; }
}

.home-hero-eyebrow {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--home-muted);
}

.home-hero-title {
    font-size: clamp(32px, 9.5vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -0.03em;
    color: var(--home-black);
    margin: 0;
}

@media (min-width: 480px) { .home-hero-title { font-size: clamp(36px, 7vw, 48px); } }
@media (min-width: 720px) { .home-hero-title { font-size: clamp(40px, 5.5vw, 52px); line-height: 1.16; } }
@media (min-width: 960px) { .home-hero-title { font-size: clamp(44px, 4.6vw, 60px); line-height: 1.14; } }

.home-hero-title em {
    display: inline-block;
    color: var(--home-blue);
    font-style: italic;
    font-weight: 700;
    line-height: 1.05;
    padding-top: 0.12em;
    padding-bottom: 0.08em;
    overflow: visible;
}

.home-hero-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--home-muted);
    margin: 0;
}

@media (min-width: 720px) { .home-hero-desc { font-size: 16px; max-width: 480px; } }

/* HERO actions — mobilde stack, ≥480px row */
.home-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.home-hero-actions .home-btn { width: 100%; }

@media (min-width: 480px) {
    .home-hero-actions { flex-direction: row; flex-wrap: wrap; gap: 10px; }
    .home-hero-actions .home-btn { width: auto; }
}

/* HERO stats */
.home-hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 14px 8px;
    background: var(--home-surface);
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    margin-top: 4px;
}

@media (min-width: 720px) {
    .home-hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 16px 10px;
        max-width: 520px;
    }
}

.home-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 8px 6px;
    border-right: none;
    border-bottom: 1px solid var(--home-border);
    min-width: 0;
}

/* Mobile 2x2 — sadece (1) ve (2) bottom border var, son sıra altta border yok */
.home-hero-stat:nth-child(3),
.home-hero-stat:nth-child(4) { border-bottom: none; }
.home-hero-stat:nth-child(odd) { border-right: 1px solid var(--home-border); }

@media (min-width: 720px) {
    .home-hero-stat { padding: 4px 8px; border-bottom: none; }
    .home-hero-stat:nth-child(odd) { border-right: 1px solid var(--home-border); }
    .home-hero-stat:nth-child(2) { border-right: 1px solid var(--home-border); }
    .home-hero-stat:last-child { border-right: none; }
}

.home-hero-stat-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--home-black);
    letter-spacing: -0.02em;
}

@media (min-width: 720px) { .home-hero-stat-val { font-size: 18px; } }

.home-hero-stat-lbl {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--home-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* HERO visual */
.home-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: calc(100vh - 200px);
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3e9d8 0%, #e6d5b8 50%, #d4a574 100%);
    box-shadow: var(--home-shadow-md);
}

@media (min-width: 720px) {
    .home-hero-visual { border-radius: 32px; }
}

@media (min-width: 720px) {
    .home-hero-visual {
        max-height: 560px;
        border-radius: 32px;
        box-shadow: var(--home-shadow-lg);
    }
}

.home-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-hero-visual-chip {
    position: absolute;
    top: 12px;
    left: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 999px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--home-black);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 3;
}

.home-hero-visual-chip::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: var(--home-blue);
}

@media (min-width: 720px) {
    .home-hero-visual-chip {
        top: 16px;
        left: 16px;
        padding: 7px 13px;
        font-size: 11px;
        gap: 6px;
    }
    .home-hero-visual-chip::before { width: 6px; height: 6px; }
}

.home-floating {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    background: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    color: var(--home-text);
    box-shadow: var(--home-shadow-md);
    z-index: 3;
    white-space: nowrap;
}

@media (min-width: 720px) {
    .home-floating { padding: 10px 14px; font-size: 12.5px; gap: 8px; }
}

.home-floating--ai {
    bottom: 22%;
    left: 16px;
    right: auto;
    top: auto;
}
.home-floating--like {
    bottom: 10%;
    left: 16px;
    right: auto;
    top: auto;
    color: #e11d48;
}

@media (min-width: 720px) {
    .home-floating--ai { bottom: 26%; left: 20px; }
    .home-floating--like { bottom: 12%; left: 20px; }
}

/* Inset card — her zaman ana görselin üzerinde, sağ-alt köşede */
.home-floating--inset {
    display: block;
    position: absolute;
    bottom: 14px;
    right: 14px;
    top: auto;
    width: 130px;
    aspect-ratio: 5 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #faf6ee 0%, #f0e7d4 100%);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    border: 3px solid #fff;
    z-index: 3;
}

@media (min-width: 480px) {
    .home-floating--inset { width: 150px; bottom: 16px; right: 16px; }
}

@media (min-width: 720px) {
    .home-floating--inset {
        width: 180px;
        border-radius: var(--home-radius-md);
        border-width: 4px;
    }
}

@media (min-width: 1024px) {
    .home-floating--inset { width: 200px; }
}

.home-floating--inset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.home-floating--inset-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    color: var(--home-black);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-inset-hide-mobile { display: none; }
@media (min-width: 720px) {
    .home-inset-hide-mobile { display: inline; }
}

/* ============================================================
   2. TRUST STRIP
   ============================================================ */
.home-trust { padding-top: 16px; padding-bottom: 8px; }
@media (min-width: 720px) { .home-trust { padding-top: 24px; padding-bottom: 16px; } }

.home-trust-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    box-shadow: var(--home-shadow-sm);
}

@media (min-width: 720px) {
    .home-trust-card {
        grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
        gap: 24px;
        align-items: center;
        padding: 22px 28px;
        border-radius: var(--home-radius-lg);
    }
}

.home-trust-text {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--home-text);
    line-height: 1.4;
}
.home-trust-text strong { color: var(--home-blue); font-weight: 700; }

@media (min-width: 720px) { .home-trust-text { font-size: 14px; } }

.home-trust-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.home-trust-stat-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
    background: var(--home-blue-light);
    color: var(--home-blue);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.home-trust-stat-meta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.home-trust-stat-val { font-size: 14.5px; font-weight: 700; color: var(--home-black); letter-spacing: -0.01em; }
.home-trust-stat-lbl { font-size: 10.5px; color: var(--home-muted); margin-top: 1px; }

@media (min-width: 720px) {
    .home-trust-stat-val { font-size: 15px; }
}

/* Press pills */
.home-press {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    justify-content: flex-start;
}

@media (min-width: 720px) {
    .home-press { gap: 8px; margin-top: 14px; }
}

.home-press-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--home-text);
    box-shadow: var(--home-shadow-sm);
}

@media (min-width: 720px) { .home-press-pill { padding: 7px 14px; font-size: 12.5px; gap: 6px; } }

.home-press-pill svg { color: var(--home-blue); flex-shrink: 0; }

/* ============================================================
   3. HOW IT WORKS
   ============================================================ */
.home-how { text-align: center; }

.home-how-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--home-black);
    margin: 0 0 24px;
    line-height: 1.15;
}

@media (min-width: 720px) { .home-how-title { font-size: 30px; margin-bottom: 32px; } }
@media (min-width: 1024px) { .home-how-title { font-size: 36px; margin-bottom: 40px; } }

.home-how-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 720px) {
    .home-how-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}

.home-how-step {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 720px) { .home-how-step { padding: 24px; gap: 12px; } }

.home-how-step-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-how-step-num {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--home-blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12.5px;
    font-weight: 700;
    flex-shrink: 0;
}

.home-how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--home-surface);
    color: var(--home-text);
    display: grid;
    place-items: center;
    margin-left: auto;
}

@media (min-width: 720px) {
    .home-how-step-num { width: 30px; height: 30px; font-size: 13px; }
    .home-how-step-icon { width: 56px; height: 56px; border-radius: 16px; }
}

.home-how-step-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-black);
    margin: 0;
    letter-spacing: -0.015em;
}
@media (min-width: 720px) { .home-how-step-name { font-size: 17px; } }

.home-how-step-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--home-muted);
    margin: 0;
}
@media (min-width: 720px) { .home-how-step-desc { font-size: 13.5px; } }

/* ============================================================
   4. FEATURED OUTFITS — yatay scroll mobil, grid desktop
   ============================================================ */
.home-outfits-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding: 4px 0 12px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.home-outfits-grid::-webkit-scrollbar { display: none; }

.home-outfit {
    position: relative;
    flex: 0 0 60%;
    max-width: 240px;
    aspect-ratio: 3 / 4;
    border-radius: var(--home-radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    text-decoration: none;
    color: inherit;
    scroll-snap-align: start;
}

@media (min-width: 480px) {
    .home-outfit { flex: 0 0 45%; max-width: 280px; }
}

@media (min-width: 720px) {
    .home-outfits-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
        overflow: visible;
        padding: 0;
        margin: 0;
    }
    .home-outfit { flex: none; max-width: none; aspect-ratio: 3 / 4; }
}

@media (min-width: 1024px) {
    .home-outfits-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.home-outfit img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-outfit-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 10px 12px 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.home-outfit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #fff;
    font-size: 11.5px;
    font-weight: 500;
}

.home-outfit-handle { font-weight: 600; letter-spacing: -0.005em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.home-outfit-likes { display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0; }
.home-outfit-likes svg { fill: currentColor; }

.home-outfit-tag {
    align-self: flex-start;
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 700;
    color: var(--home-black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ============================================================
   5. COMMUNITY + BLOG
   ============================================================ */
.home-cb-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

@media (min-width: 960px) {
    .home-cb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

.home-cb-card {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-lg);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: var(--home-shadow-sm);
}

@media (min-width: 720px) { .home-cb-card { padding: 24px; gap: 18px; } }

.home-cb-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.home-cb-head-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }

.home-cb-head h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: var(--home-black);
    letter-spacing: -0.015em;
    line-height: 1.2;
}
@media (min-width: 720px) { .home-cb-head h3 { font-size: 19px; } }

.home-cb-head p {
    font-size: 12.5px;
    color: var(--home-muted);
    margin: 0;
}
@media (min-width: 720px) { .home-cb-head p { font-size: 13px; } }

/* Community items */
.home-feed-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 12px;
    background: var(--home-surface);
    border-radius: var(--home-radius-md);
}
@media (min-width: 720px) { .home-feed-item { padding: 14px; } }

.home-feed-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.home-feed-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4d4d4, #9ca3af);
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    aspect-ratio: 1 / 1;
}

.home-feed-text { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }

.home-feed-handle { font-size: 12px; color: var(--home-muted); }
.home-feed-handle strong { color: var(--home-text); font-weight: 600; }

.home-feed-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--home-black);
    line-height: 1.35;
}

.home-feed-time { font-size: 11px; color: var(--home-muted-2); flex-shrink: 0; }

.home-feed-thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
}

.home-feed-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

.home-feed-thumb img { width: 100%; height: 100%; object-fit: cover; }

.home-feed-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: var(--home-muted);
}

.home-feed-meta span { display: inline-flex; align-items: center; gap: 4px; }
.home-feed-meta svg { color: var(--home-muted); }

/* Blog */
.home-blog-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
    background: var(--home-surface);
    border-radius: var(--home-radius-md);
}

@media (min-width: 480px) {
    .home-blog-hero { grid-template-columns: 0.85fr 1fr; gap: 14px; align-items: center; }
}

.home-blog-hero-img {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
}

@media (min-width: 480px) {
    .home-blog-hero-img { aspect-ratio: 4 / 5; border-radius: 12px; }
}

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

.home-blog-hero-text { display: flex; flex-direction: column; gap: 6px; min-width: 0; }

.home-blog-hero-date {
    font-size: 11px;
    color: var(--home-muted);
    font-weight: 500;
    letter-spacing: 0.04em;
}

.home-blog-hero-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--home-black);
    line-height: 1.25;
    margin: 0;
    letter-spacing: -0.015em;
}

@media (min-width: 720px) { .home-blog-hero-title { font-size: 17px; } }

.home-blog-hero-desc {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--home-muted);
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.home-blog-hero-link {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--home-blue) !important;
    text-decoration: none !important;
    margin-top: 4px;
}
.home-blog-hero-link:hover { color: var(--home-blue-dark) !important; }

.home-blog-mini {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 480px) { .home-blog-mini { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.home-blog-mini-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px;
    background: var(--home-surface);
    border-radius: var(--home-radius-md);
    text-decoration: none;
    color: inherit;
    min-height: 64px;
}

.home-blog-mini-img {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 8px;
    overflow: hidden;
    background: #e5e7eb;
}

@media (min-width: 720px) { .home-blog-mini-img { width: 56px; height: 56px; min-width: 56px; border-radius: 10px; } }

.home-blog-mini-img img { width: 100%; height: 100%; object-fit: cover; }

.home-blog-mini-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.home-blog-mini-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--home-black);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media (min-width: 720px) { .home-blog-mini-title { font-size: 12.5px; } }

.home-blog-mini-date { font-size: 10.5px; color: var(--home-muted); }

/* ============================================================
   6. AI TRY-ON
   ============================================================ */
.home-ai {
    background: var(--home-surface);
    border-radius: var(--home-radius-xl);
    padding: 24px;
}

@media (min-width: 720px) { .home-ai { padding: 32px; border-radius: 32px; } }
@media (min-width: 1024px) { .home-ai { padding: 40px; } }

.home-ai-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
}

@media (min-width: 960px) {
    .home-ai-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
        gap: 32px;
    }
}

.home-ai-text { display: flex; flex-direction: column; gap: 12px; min-width: 0; }

.home-ai-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--home-black);
    margin: 0;
    line-height: 1.15;
}

@media (min-width: 720px) { .home-ai-title { font-size: 28px; } }
@media (min-width: 1024px) { .home-ai-title { font-size: 32px; } }

.home-ai-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--home-muted);
    margin: 0;
}
@media (min-width: 720px) { .home-ai-desc { font-size: 14.5px; } }

.home-ai-list {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.home-ai-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--home-text);
    font-weight: 500;
}
@media (min-width: 720px) { .home-ai-list li { font-size: 14px; } }

.home-ai-list li svg { color: var(--home-blue); flex-shrink: 0; }

/* AI flow — mobilde dikey stack, ≥720px yatay */
.home-ai-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 720px) {
    .home-ai-flow {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 8px;
        align-items: center;
    }
}

.home-ai-flow-card {
    width: 100%;
    max-width: 280px;
    aspect-ratio: 3 / 4;
    border-radius: var(--home-radius-md);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--home-border);
    box-shadow: var(--home-shadow-sm);
    position: relative;
}

@media (min-width: 720px) {
    .home-ai-flow-card { max-width: none; }
}

.home-ai-flow-card img { width: 100%; height: 100%; object-fit: cover; }

.home-ai-flow-arrow {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--home-border);
    display: grid;
    place-items: center;
    color: var(--home-blue);
    font-size: 16px;
    font-weight: 700;
    transform: rotate(90deg);
}

@media (min-width: 720px) {
    .home-ai-flow-arrow { transform: none; }
}

.home-ai-flow-card-label {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 8px;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--home-black);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
}

.home-ai-flow-card-label--ai {
    background: var(--home-blue);
    color: #fff;
}

/* ============================================================
   7. EXPERTS
   ============================================================ */
.home-experts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

@media (min-width: 720px) { .home-experts-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1024px) { .home-experts-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); } }

.home-expert {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    padding: 12px;
    gap: 10px;
}

@media (min-width: 720px) { .home-expert { padding: 14px; } }

.home-expert-head { display: flex; align-items: center; gap: 10px; min-width: 0; }

.home-expert-avatar {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4d4d4, #9ca3af);
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    aspect-ratio: 1 / 1;
}

@media (min-width: 720px) { .home-expert-avatar { width: 44px; height: 44px; min-width: 44px; font-size: 14px; } }

.home-expert-meta { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.home-expert-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--home-black);
    letter-spacing: -0.005em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@media (min-width: 720px) { .home-expert-name { font-size: 13.5px; } }

.home-expert-role { font-size: 10.5px; color: var(--home-muted); margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-expert-followers { font-size: 10.5px; color: var(--home-muted); margin-top: 1px; }

@media (min-width: 720px) {
    .home-expert-role,
    .home-expert-followers { font-size: 11px; }
}

.home-expert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    border: 1px solid var(--home-border);
    background: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--home-text) !important;
    cursor: pointer;
    text-decoration: none !important;
    min-height: 32px;
}
.home-expert-btn:hover { color: var(--home-text) !important; }

/* ============================================================
   8. TESTIMONIALS
   ============================================================ */
.home-testimonials-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.home-testimonials-nav {
    display: none;
}

@media (min-width: 720px) {
    .home-testimonials-nav { display: inline-flex; gap: 6px; }
}

.home-testimonials-nav button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--home-border);
    background: #fff;
    cursor: pointer;
    color: var(--home-muted);
    display: grid;
    place-items: center;
}

.home-testimonials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 480px) { .home-testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } }
@media (min-width: 1024px) { .home-testimonials { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }

.home-testimonial {
    background: #fff;
    border: 1px solid var(--home-border);
    border-radius: var(--home-radius-md);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 0;
}

@media (min-width: 720px) { .home-testimonial { padding: 20px; gap: 16px; } }

.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.home-testimonial-meta {
    flex: 1;
    min-width: 0;
}

.home-testimonial-stars {
    display: flex;
    gap: 1px;
    color: var(--home-blue);
    flex-shrink: 0;
    margin-left: auto;
}

.home-testimonial-quote {
    font-size: 13px;
    line-height: 1.55;
    color: var(--home-text);
    margin: 0;
}

@media (min-width: 720px) { .home-testimonial-quote { font-size: 13.5px; } }

.home-testimonial-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #d4d4d4, #9ca3af);
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    aspect-ratio: 1 / 1;
}

@media (min-width: 720px) { .home-testimonial-avatar { width: 34px; height: 34px; min-width: 34px; font-size: 11px; } }

.home-testimonial-name {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--home-black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-testimonial-handle { font-size: 11px; color: var(--home-muted); }

/* ============================================================
   9. FINAL CTA
   ============================================================ */
.home-cta {
    margin-top: 24px;
    padding: 24px 20px;
    background: linear-gradient(135deg, var(--home-blue) 0%, #a78bfa 50%, var(--home-blue-dark) 100%);
    border-radius: var(--home-radius-xl);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -16px rgba(124, 58, 237, 0.4);
}

@media (min-width: 720px) {
    .home-cta {
        margin-top: 32px;
        padding: 32px;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 32px;
        border-radius: 32px;
    }
}

@media (min-width: 1024px) {
    .home-cta { padding: 40px 44px; }
}

.home-cta-text {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    text-align: left;
}

@media (min-width: 720px) { .home-cta-text { align-items: flex-start; gap: 18px; } }

.home-cta-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

@media (min-width: 480px) { .home-cta-title { font-size: 22px; } }
@media (min-width: 720px) { .home-cta-title { font-size: 26px; line-height: 1.18; } }
@media (min-width: 1024px) { .home-cta-title { font-size: 30px; } }

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 46px;
    padding: 0 22px;
    background: #fff;
    color: var(--home-blue) !important;
    border: none;
    border-radius: 12px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    width: 100%;
    min-height: 44px;
}
.home-cta-btn:hover,
.home-cta-btn:focus,
.home-cta-btn:active { color: var(--home-blue) !important; background: #fff; }

@media (min-width: 480px) { .home-cta-btn { width: auto; } }
@media (min-width: 720px) { .home-cta-btn { height: 48px; font-size: 14px; } }

/* CTA polaroid stack — mobil hidden */
.home-cta-images { display: none; }

@media (min-width: 720px) {
    .home-cta-images {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
        height: 120px;
    }
}

.home-cta-img {
    position: absolute;
    width: 88px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.home-cta-img img { width: 100%; height: 100%; object-fit: cover; }

.home-cta-img:nth-child(1) { right: 180px; transform: rotate(-8deg); top: 0; }
.home-cta-img:nth-child(2) { right: 100px; top: 14px; transform: rotate(-2deg); }
.home-cta-img:nth-child(3) { right: 20px; top: 0; transform: rotate(6deg); }

/* ============================================================
   HOVER (only on hover-capable devices)
   ============================================================ */
@media (hover: hover) {
    .home-btn--primary { transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
    .home-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -4px rgba(124, 58, 237, 0.5); }
    .home-btn--ghost { transition: transform 0.15s ease, border-color 0.15s ease; }
    .home-btn--ghost:hover { transform: translateY(-1px); }
    .home-outfit { transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease; }
    .home-outfit:hover { transform: translateY(-4px); box-shadow: 0 18px 36px -10px rgba(15, 23, 42, 0.22); }
    .home-outfit img { transition: transform 0.5s ease; }
    .home-outfit:hover img { transform: scale(1.05); }
    .home-how-step { transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .home-how-step:hover { transform: translateY(-4px); box-shadow: var(--home-shadow-md); }
    .home-expert { transition: transform 0.2s ease, box-shadow 0.2s ease; }
    .home-expert:hover { transform: translateY(-3px); box-shadow: var(--home-shadow-md); }
    .home-expert-btn:hover { background: var(--home-surface); }
    .home-press-pill { transition: transform 0.15s ease, border-color 0.15s ease; }
    .home-press-pill:hover { transform: translateY(-1px); border-color: var(--home-blue); }
    .home-cta-btn { transition: transform 0.15s ease; }
    .home-cta-btn:hover { transform: translateY(-2px); }
    .home-blog-mini-card { transition: background 0.15s ease; }
    .home-blog-mini-card:hover { background: #eef0f4; }
    .home-section-link { transition: opacity 0.15s ease; }
    .home-section-link:hover { opacity: 0.8; }
    .home-testimonials-nav button:hover { background: var(--home-surface); color: var(--home-text); }
}

/* ============================================================
   HERO ENTRANCE ANIMATION — fade-up + soft shimmer
   ============================================================ */

@keyframes home-fade-up {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes home-fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes home-scale-in {
    0% {
        opacity: 0;
        transform: scale(0.94);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes home-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes home-pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    70% { box-shadow: 0 0 0 14px rgba(124, 58, 237, 0); }
    100% { box-shadow: 0 0 0 0 rgba(124, 58, 237, 0); }
}

@keyframes home-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Hero entrance — staggered fade-up */
.home-hero-eyebrow,
.home-hero-title,
.home-hero-desc,
.home-hero-actions,
.home-hero-stats,
.home-hero-visual {
    opacity: 0;
    animation: home-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero-eyebrow { animation-delay: 0.05s; }
.home-hero-title   { animation-delay: 0.18s; }
.home-hero-desc    { animation-delay: 0.32s; }
.home-hero-actions { animation-delay: 0.45s; }
.home-hero-stats   { animation-delay: 0.58s; }
.home-hero-visual  { animation: home-scale-in 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards; }

/* "İlhamla giyin." mavi italic kelimeyi shimmer ile vurgula */
.home-hero-title em {
    display: inline-block;
    background: linear-gradient(
        90deg,
        var(--home-blue) 0%,
        #a78bfa 50%,
        var(--home-blue) 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: home-shimmer 4s linear infinite;
}

/* Floating chip'ler hafif yüzsün */
.home-floating--ai {
    animation: home-float 3.5s ease-in-out infinite;
    animation-delay: 0.8s;
}
.home-floating--like {
    animation: home-float 3.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Primary CTA — pulse ring (yeni kullanıcı dikkati çeker) */
.home-hero-actions .home-btn--primary {
    animation: home-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards,
               home-pulse-ring 2.4s ease-out 1.6s infinite;
    opacity: 0;
}

/* Reduced motion — kullanıcı animasyon istemiyorsa kapat */
@media (prefers-reduced-motion: reduce) {
    .home-hero-eyebrow,
    .home-hero-title,
    .home-hero-desc,
    .home-hero-actions,
    .home-hero-stats,
    .home-hero-visual,
    .home-hero-actions .home-btn--primary,
    .home-floating--ai,
    .home-floating--like {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
    .home-hero-title em {
        background: none;
        -webkit-text-fill-color: var(--home-blue);
        color: var(--home-blue);
    }
}
