/* ═══════════════════════════════════════════════════════
   GLOBALLIST PRO v3 — Coastal Clarity Design System
   Aesthetic: Ocean-Blue · Airy · Modern · Premium
   Fonts: Sora (Display) + Outfit (Body)
   ═══════════════════════════════════════════════════════ */

/* ── IMPORTS ── */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
    /* Ocean Blue Palette */
    --ocean: #0891b2;
    --ocean-d: #0e7490;
    --ocean-dd: #155e75;
    --ocean-l: #06b6d4;
    --ocean-ll: #22d3ee;
    --sky-1: #ecfeff;
    --sky-2: #cffafe;
    --sky-3: #a5f3fc;
    --deep: #0c4a6e;
    --deep-2: #164e63;
    /* Accent */
    --coral: #f97316;
    --coral-d: #ea580c;
    --coral-glow: rgba(249,115,22,.12);
    --mint: #10b981;
    --mint-glow: rgba(16,185,129,.1);
    --rose: #f43f5e;
    --violet: #8b5cf6;
    --gold: #eab308;
    /* Surfaces — Light */
    --bg-page: #f0f9ff;
    --bg-card: #ffffff;
    --bg-card-h: #f8fdff;
    --bg-muted: #f1f5f9;
    --bg-input: #f8fafc;
    --bg-overlay: rgba(15,23,42,.5);
    --glass: rgba(255,255,255,.72);
    --glass-2: rgba(255,255,255,.88);
    /* Text */
    --t1: #0f172a;
    --t2: #475569;
    --t3: #94a3b8;
    --t4: #cbd5e1;
    /* Borders */
    --border: #e2e8f0;
    --border-h: #cbd5e1;
    --border-ocean: rgba(8,145,178,.15);
    /* Theme transition */
    color-scheme: light;
}

/* ═══ DARK THEME ═══ */
[data-theme="dark"] {
    --bg-page: #0a0f1a;
    --bg-card: #111827;
    --bg-card-h: #1a2236;
    --bg-muted: #1e293b;
    --bg-input: #1e293b;
    --bg-overlay: rgba(0,0,0,.7);
    --glass: rgba(17,24,39,.82);
    --glass-2: rgba(17,24,39,.92);
    --t1: #f1f5f9;
    --t2: #94a3b8;
    --t3: #64748b;
    --t4: #334155;
    --border: #1e293b;
    --border-h: #334155;
    --border-ocean: rgba(8,145,178,.2);
    --sky-1: rgba(8,145,178,.08);
    --sky-2: rgba(8,145,178,.12);
    --sky-3: rgba(8,145,178,.18);
    --deep: #0c4a6e;
    --sh-xs: 0 1px 2px rgba(0,0,0,.2);
    --sh-s: 0 2px 8px rgba(0,0,0,.25);
    --sh-m: 0 4px 16px rgba(0,0,0,.3);
    --sh-l: 0 8px 32px rgba(0,0,0,.35);
    --sh-xl: 0 16px 48px rgba(0,0,0,.4);
    --sh-ocean: 0 4px 20px rgba(8,145,178,.15);
    color-scheme: dark;
}

    [data-theme="dark"] .hero {
        background: linear-gradient(180deg, rgba(8,145,178,.06) 0%, var(--bg-page) 100%);
    }

    [data-theme="dark"] .page-header {
        background: linear-gradient(180deg, rgba(8,145,178,.06) 0%, var(--bg-page) 100%);
    }

    [data-theme="dark"] .hero-wave {
        background: var(--bg-page);
    }

    [data-theme="dark"] .footer {
        background: #060a12;
    }

    [data-theme="dark"] .auth-form-side {
        background: var(--bg-card);
    }

    [data-theme="dark"] img {
        opacity: .92;
    }

/* Additional root variables */
:root {
    /* Radius */
    --r-xs: 6px;
    --r-s: 8px;
    --r-m: 12px;
    --r-l: 16px;
    --r-xl: 20px;
    --r-2xl: 28px;
    --r-full: 9999px;
    /* Shadows */
    --sh-xs: 0 1px 2px rgba(0,0,0,.04);
    --sh-s: 0 2px 8px rgba(0,0,0,.05);
    --sh-m: 0 4px 16px rgba(0,0,0,.06);
    --sh-l: 0 8px 32px rgba(0,0,0,.08);
    --sh-xl: 0 16px 48px rgba(0,0,0,.1);
    --sh-ocean: 0 4px 20px rgba(8,145,178,.12);
    --sh-glow: 0 0 60px rgba(8,145,178,.08);
    /* Motion */
    --ease: cubic-bezier(.22,1,.36,1);
    --ease-bounce: cubic-bezier(.34,1.56,.64,1);
    --ease-smooth: cubic-bezier(.4,0,.2,1);
    --dur-fast: .15s;
    --dur: .25s;
    --dur-slow: .5s;
    /* Fonts */
    --font-h: 'Sora', system-ui, sans-serif;
    --font-b: 'Outfit', system-ui, sans-serif;
}

/* ── RESET ── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-b);
    background: var(--bg-page);
    color: var(--t1);
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    color: var(--ocean);
    text-decoration: none;
    transition: color var(--dur);
}

    a:hover {
        color: var(--ocean-d);
    }

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

input, select, textarea, button {
    font-family: var(--font-b);
    font-size: inherit;
}

::selection {
    background: var(--ocean);
    color: #fff;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--bg-page);
}

::-webkit-scrollbar-thumb {
    background: var(--t4);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--t3);
    }

/* ── LAYOUT ── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

.section {
    padding: clamp(56px, 10vw, 110px) 0;
}

.grid {
    display: grid;
    gap: 20px;
}

.g2 {
    grid-template-columns: repeat(2, 1fr);
}

.g3 {
    grid-template-columns: repeat(3, 1fr);
}

.g4 {
    grid-template-columns: repeat(4, 1fr);
}

.g5 {
    grid-template-columns: repeat(5, 1fr);
}

.g6 {
    grid-template-columns: repeat(6, 1fr);
}

@media(max-width:1100px) {
    .g5, .g6 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:900px) {
    .g4, .g5, .g6 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:700px) {
    .g2, .g3, .g4, .g5, .g6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .g-m1 {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .g2 {
        grid-template-columns: 1fr;
    }
}

.flex {
    display: flex;
}

.flex-c {
    display: flex;
    align-items: center;
}

.flex-b {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-8 {
    gap: 8px;
}

.gap-12 {
    gap: 12px;
}

.gap-16 {
    gap: 16px;
}

.gap-20 {
    gap: 20px;
}

.gap-24 {
    gap: 24px;
}

.tc {
    text-align: center;
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all .3s var(--ease);
    overflow: visible; /* Dropdown'ların nav dışına taşması için şart */
}

    .nav.scrolled {
        background: var(--glass-2);
        box-shadow: 0 1px 20px rgba(0,0,0,.06);
    }

.nav-inner {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 6px;
    max-width: 100%;
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-h);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--t1) !important;
    margin-right: 20px;
    flex-shrink: 0;
}

    .nav-logo .mark {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
        display: grid;
        place-items: center;
        color: #fff;
        font-weight: 800;
        font-size: 15px;
        box-shadow: 0 2px 10px rgba(8,145,178,.25);
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
}

.nav-a {
    padding: 7px 14px;
    border-radius: var(--r-full);
    font-size: .87rem;
    font-weight: 500;
    color: var(--t2);
    transition: all var(--dur);
    white-space: nowrap;
}

    .nav-a:hover {
        color: var(--t1);
        background: var(--sky-1);
    }

    .nav-a.on {
        color: var(--ocean);
        background: var(--sky-1);
        font-weight: 600;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    overflow: visible;
}

.nav-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--t3);
    transition: all var(--dur);
    flex-shrink: 0;
}

    .nav-btn:hover {
        border-color: var(--ocean);
        color: var(--ocean);
        box-shadow: var(--sh-ocean);
    }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 22px;
    border-radius: var(--r-full);
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    color: #fff !important;
    font-weight: 600;
    font-size: .87rem;
    border: 0;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    box-shadow: 0 2px 12px rgba(8,145,178,.2);
    white-space: nowrap;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(8,145,178,.3);
        color: #fff !important;
    }

.burger {
    display: none;
    background: 0;
    border: 0;
    cursor: pointer;
    padding: 6px;
    color: var(--t1);
}

@media(max-width:900px) {
    .nav-links {
        display: none;
    }

    .burger {
        display: block;
    }

    .nav-cta > span {
        display: none;
    }

    .nav-drop-wrap {
        display: none;
    }
}

@media(max-width:480px) {
    .nav-cta {
        display: none;
    }

    .nav-inner {
        gap: 4px;
    }

    .nav-logo {
        margin-right: 8px;
        font-size: 1.1rem;
    }

        .nav-logo .mark {
            width: 32px;
            height: 32px;
            font-size: 13px;
        }

    .nav-right {
        gap: 5px;
    }

    .nav-btn, .theme-btn {
        width: 36px;
        height: 36px;
    }
}

/* Mobile Menu */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: var(--bg-card);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    padding: 24px;
}

    .mob-menu.open {
        transform: translateX(0);
    }
    /* Mobil menü içindeki dropdown'lar relative akışta açılsın */
    .mob-menu .nav-drop-wrap {
        position: relative;
        display: block !important;
    }

    .mob-menu .nav-dropdown {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        max-height: 200px;
        overflow-y: auto;
        box-shadow: none;
        border: 1px solid var(--border);
        border-radius: var(--r-m);
        margin-top: 4px;
        max-width: 100%;
        min-width: auto;
    }

    .mob-menu.open {
        transform: translateX(0);
    }

.mob-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--bg-muted);
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--r-full);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--t2);
    font-size: 18px;
}

.mob-nav {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .mob-nav a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        border-radius: var(--r-m);
        font-size: 1rem;
        font-weight: 500;
        color: var(--t2);
        transition: all .15s;
    }

        .mob-nav a:hover {
            background: var(--sky-1);
            color: var(--ocean);
        }

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(50px, 10vw, 100px) 0 clamp(70px, 12vw, 130px);
    background: linear-gradient(180deg, var(--sky-1) 0%, var(--bg-page) 100%);
    width: 100%;
}

.hero-deco {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .hero-deco::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(8,145,178,.08), transparent 70%);
        top: -200px;
        right: -100px;
    }

    .hero-deco::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(6,182,212,.06), transparent 70%);
        bottom: -100px;
        left: -50px;
    }

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-page);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px 6px 8px;
    border-radius: var(--r-full);
    background: var(--bg-card);
    border: 1px solid var(--border);
    font-size: .8rem;
    font-weight: 600;
    color: var(--ocean);
    margin-bottom: 28px;
    box-shadow: var(--sh-s);
    animation: fadeUp .6s var(--ease) both;
}

    .hero-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--mint);
        animation: pulse 2s infinite;
    }

.hero h1 {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -.03em;
    color: var(--t1);
    animation: fadeUp .6s .06s var(--ease) both;
}

    .hero h1 .hl {
        background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: clamp(.95rem, 2vw, 1.12rem);
    color: var(--t2);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeUp .6s .12s var(--ease) both;
}

/* Hero Search */
.hero-search {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 6px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--sh-l);
    animation: fadeUp .6s .18s var(--ease) both;
    transition: border-color .3s, box-shadow .3s;
}

    .hero-search:focus-within {
        border-color: var(--ocean-l);
        box-shadow: 0 8px 40px rgba(8,145,178,.12);
    }

.hs-row {
    display: flex;
    gap: 4px;
}

.hs-input {
    flex: 1;
    padding: 14px 16px;
    border: 0;
    border-radius: var(--r-xl);
    background: var(--bg-input);
    color: var(--t1);
    font-size: .95rem;
    outline: 0;
    transition: background .2s;
    min-width: 0;
}

    .hs-input::placeholder {
        color: var(--t3);
    }

    .hs-input:focus {
        background: var(--sky-1);
    }

.hs-select {
    padding: 14px 36px 14px 14px;
    border: 0;
    border-radius: var(--r-xl);
    background: var(--bg-input);
    color: var(--t2);
    font-size: .85rem;
    cursor: pointer;
    outline: 0;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M1.6 4.6a.5.5 0 0 1 .8 0L8 10.3l5.6-5.7a.5.5 0 0 1 .8.8l-6 6a.5.5 0 0 1-.8 0l-6-6a.5.5 0 0 1 0-.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    min-width: 130px;
}

.hs-btn {
    padding: 14px 28px;
    border: 0;
    border-radius: var(--r-xl);
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: all var(--dur) var(--ease);
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(8,145,178,.25);
}

    .hs-btn:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 28px rgba(8,145,178,.35);
    }

@media(max-width:640px) {
    .hs-row {
        flex-wrap: wrap;
    }

    .hs-select {
        flex: 1;
        min-width: auto;
    }

    .hs-btn {
        width: 100%;
        justify-content: center;
    }

    .hs-input {
        padding: 12px 14px;
        font-size: .88rem;
    }

    .hs-select {
        padding: 12px 32px 12px 12px;
    }

    .hs-btn {
        padding: 12px 20px;
    }
}

/* Hero Stats Mobile */
@media(max-width:480px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hs-stat {
        min-width: 80px;
    }

    .hero-pill {
        font-size: .72rem;
        padding: 5px 12px 5px 6px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(24px, 5vw, 56px);
    margin-top: 44px;
    animation: fadeUp .6s .26s var(--ease) both;
}

.hs-stat {
    text-align: center;
}

.hs-num {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--ocean);
}

.hs-lbl {
    font-size: .75rem;
    color: var(--t3);
    margin-top: 2px;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 500;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    animation: fadeUp .6s .32s var(--ease) both;
}

.htag {
    padding: 5px 14px;
    border-radius: var(--r-full);
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--t3);
    font-size: .8rem;
    cursor: pointer;
    transition: all .2s;
    box-shadow: var(--sh-xs);
}

    .htag:hover {
        border-color: var(--ocean);
        color: var(--ocean);
        background: var(--sky-1);
    }

/* ═══════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════ */
.sh {
    margin-bottom: 36px;
}

    .sh.c {
        text-align: center;
    }

.sh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-h);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ocean);
    margin-bottom: 10px;
    background: var(--sky-1);
    padding: 5px 14px;
    border-radius: var(--r-full);
    border: 1px solid var(--border-ocean);
}

.sh-title {
    font-family: var(--font-h);
    font-weight: 800;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

    .sh-title .hl {
        background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.sh-desc {
    font-size: .95rem;
    color: var(--t2);
    max-width: 520px;
    line-height: 1.7;
}

.sh.c .sh-desc {
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   CATEGORY TILES
   ═══════════════════════════════════════ */
.cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: clamp(16px, 2.5vw, 24px) 10px;
    background: var(--bg-card);
    border-radius: var(--r-l);
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    cursor: pointer;
    text-align: center;
    box-shadow: var(--sh-xs);
}

    .cat-tile:hover {
        transform: translateY(-6px);
        border-color: var(--ocean-l);
        box-shadow: var(--sh-ocean);
    }

.cat-ico {
    width: 50px;
    height: 50px;
    border-radius: var(--r-m);
    background: var(--sky-1);
    display: grid;
    place-items: center;
    font-size: 22px;
    transition: all .4s var(--ease);
}

.cat-tile:hover .cat-ico {
    transform: scale(1.1) rotate(-3deg);
    background: var(--sky-2);
}

.cat-nm {
    font-weight: 600;
    font-size: .84rem;
    color: var(--t1);
}

.cat-ct {
    font-size: .72rem;
    color: var(--t3);
}

/* ═══════════════════════════════════════
   LISTING CARDS
   ═══════════════════════════════════════ */
.lc {
    background: var(--bg-card);
    border-radius: var(--r-l);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all .4s var(--ease);
    box-shadow: var(--sh-xs);
}

    .lc:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-l);
        border-color: transparent;
    }

.lc-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: var(--bg-muted);
}

    .lc-img img, .lc-img > div {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

.lc:hover .lc-img img, .lc:hover .lc-img > div {
    transform: scale(1.06);
}

.lc-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 4px;
    z-index: 2;
}

.lc-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    cursor: pointer;
    border: 0;
    color: var(--t3);
    font-size: 15px;
    transition: all .2s;
    box-shadow: var(--sh-s);
}

    .lc-fav:hover, .lc-fav.on {
        color: var(--rose);
        transform: scale(1.12);
    }

.lc-body {
    padding: 14px 16px 16px;
}

.lc-title {
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

    .lc-title a {
        color: var(--t1);
    }

        .lc-title a:hover {
            color: var(--ocean);
        }

.lc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .75rem;
    color: var(--t3);
    margin-bottom: 12px;
}

    .lc-meta span {
        display: flex;
        align-items: center;
        gap: 3px;
    }

.lc-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.lc-price {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--ocean-d);
}

.lc-loc {
    font-size: .72rem;
    color: var(--t3);
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 4px 10px;
    border-radius: var(--r-full);
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.b-gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
}

.b-new {
    background: linear-gradient(135deg, var(--mint), #059669);
    color: #fff;
}

.b-prm {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    color: #fff;
}

.b-urg {
    background: linear-gradient(135deg, var(--rose), #e11d48);
    color: #fff;
}

/* ═══════════════════════════════════════
   STEPS / HOW IT WORKS
   ═══════════════════════════════════════ */
.step-card {
    text-align: center;
    padding: clamp(20px, 3vw, 36px) 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    box-shadow: var(--sh-xs);
    transition: all .35s var(--ease);
}

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-m);
        border-color: var(--border-ocean);
    }

.step-num {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 14px;
}

.step-card h3 {
    font-family: var(--font-h);
    font-size: .95rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.step-card p {
    color: var(--t2);
    font-size: .88rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testi {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: clamp(20px, 3vw, 28px);
    transition: all .35s var(--ease);
    box-shadow: var(--sh-xs);
}

    .testi:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-m);
        border-color: var(--border-ocean);
    }

.testi-stars {
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: 2px;
    font-size: .9rem;
}

.testi-q {
    color: var(--t2);
    line-height: 1.7;
    font-size: .9rem;
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

    .testi-q::before {
        content: '"';
        position: absolute;
        left: 0;
        top: -6px;
        font-family: var(--font-h);
        font-size: 2.2rem;
        color: var(--ocean-l);
        line-height: 1;
    }

.testi-who {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: .78rem;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 600;
    font-size: .88rem;
}

.testi-role {
    font-size: .75rem;
    color: var(--t3);
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
    position: relative;
    border-radius: var(--r-2xl);
    overflow: hidden;
    padding: clamp(40px, 6vw, 72px) clamp(24px, 4vw, 48px);
    text-align: center;
    width: 100%;
    background: linear-gradient(135deg, var(--ocean-d), var(--ocean), var(--ocean-l));
    color: #fff;
    box-shadow: var(--sh-xl);
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-banner > * {
        position: relative;
        z-index: 1;
    }

    .cta-banner h2 {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: clamp(1.6rem, 4vw, 2.6rem);
        margin-bottom: 12px;
        line-height: 1.15;
        color: #fff;
    }

    .cta-banner p {
        color: rgba(255,255,255,.8);
        font-size: 1rem;
        margin-bottom: 24px;
    }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 24px;
    border-radius: var(--r-full);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    border: 0;
    font-family: var(--font-b);
    transition: all var(--dur) var(--ease);
    line-height: 1.4;
}

.btn-p {
    background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
    color: #fff;
    box-shadow: 0 2px 12px rgba(8,145,178,.2);
}

    .btn-p:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(8,145,178,.3);
        color: #fff;
    }

.btn-s {
    background: var(--bg-card);
    color: var(--t1);
    border: 1.5px solid var(--border);
}

    .btn-s:hover {
        border-color: var(--ocean);
        color: var(--ocean);
        transform: translateY(-1px);
    }

.btn-o {
    background: transparent;
    color: var(--ocean);
    border: 1.5px solid var(--ocean);
}

    .btn-o:hover {
        background: var(--ocean);
        color: #fff;
    }

.btn-w {
    background: #fff;
    color: var(--ocean-d);
}

    .btn-w:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(255,255,255,.2);
        color: var(--ocean-d);
    }

.btn-lg {
    padding: 14px 32px;
    font-size: .95rem;
}

.btn-sm {
    padding: 7px 16px;
    font-size: .82rem;
}

.btn-ghost {
    background: transparent;
    color: var(--t2);
    border: 0;
}

    .btn-ghost:hover {
        color: var(--ocean);
    }

/* ═══════════════════════════════════════
   FORMS
   ═══════════════════════════════════════ */
.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: .85rem;
    color: var(--t1);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--r-m);
    background: var(--bg-card);
    color: var(--t1);
    font-size: .9rem;
    outline: 0;
    transition: all var(--dur);
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--ocean);
        box-shadow: 0 0 0 3px rgba(8,145,178,.1);
    }

    .form-input::placeholder, .form-textarea::placeholder {
        color: var(--t4);
    }

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2394a3b8' viewBox='0 0 16 16'%3E%3Cpath d='M1.6 4.6a.5.5 0 0 1 .8 0L8 10.3l5.6-5.7a.5.5 0 0 1 .8.8l-6 6a.5.5 0 0 1-.8 0l-6-6a.5.5 0 0 1 0-.8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .88rem;
    color: var(--t2);
    cursor: pointer;
}

    .form-check input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--ocean);
        border-radius: 4px;
        cursor: pointer;
    }

.form-hint {
    font-size: .78rem;
    color: var(--t3);
    margin-top: 4px;
}

/* ═══════════════════════════════════════
   TABLES
   ═══════════════════════════════════════ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--r-l);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th {
        background: var(--sky-1);
        font-weight: 600;
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--t2);
        padding: 12px 16px;
        text-align: left;
        white-space: nowrap;
    }

    .table td {
        padding: 12px 16px;
        font-size: .88rem;
        border-top: 1px solid var(--border);
    }

    .table tr:hover td {
        background: var(--bg-card-h);
    }

.status {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: .72rem;
    font-weight: 600;
}

.st-active {
    background: var(--mint-glow);
    color: #059669;
}

.st-pending {
    background: rgba(245,158,11,.1);
    color: #b45309;
}

.st-expired {
    background: rgba(244,63,94,.08);
    color: #e11d48;
}

/* ═══════════════════════════════════════
   PRICING CARDS
   ═══════════════════════════════════════ */
.price-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--r-xl);
    padding: clamp(24px, 3vw, 36px);
    transition: all .4s var(--ease);
    position: relative;
    box-shadow: var(--sh-xs);
}

    .price-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh-l);
    }

    .price-card.featured {
        border-color: var(--ocean);
        box-shadow: var(--sh-ocean);
    }

        .price-card.featured::before {
            content: 'Popüler';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            padding: 4px 16px;
            border-radius: var(--r-full);
            background: linear-gradient(135deg, var(--ocean), var(--ocean-l));
            color: #fff;
            font-size: .72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: .06em;
        }

.price-name {
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    color: var(--t2);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.price-amt {
    font-family: var(--font-h);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--t1);
    line-height: 1;
    margin-bottom: 4px;
}

    .price-amt span {
        font-size: .9rem;
        font-weight: 400;
        color: var(--t3);
    }

.price-desc {
    font-size: .85rem;
    color: var(--t3);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.price-features {
    list-style: none;
    margin-bottom: 24px;
}

    .price-features li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 6px 0;
        font-size: .88rem;
        color: var(--t2);
    }

        .price-features li::before {
            content: '✓';
            color: var(--ocean);
            font-weight: 700;
            flex-shrink: 0;
        }

/* ═══════════════════════════════════════
   ACCORDION / FAQ
   ═══════════════════════════════════════ */
.acc-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-m);
    margin-bottom: 8px;
    overflow: hidden;
    transition: all .3s;
    box-shadow: var(--sh-xs);
}

    .acc-item:hover {
        border-color: var(--border-h);
    }

.acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: .92rem;
    color: var(--t1);
    background: 0;
    border: 0;
    width: 100%;
    text-align: left;
    transition: all .2s;
}

    .acc-head:hover {
        color: var(--ocean);
    }

.acc-icon {
    font-size: 1.1rem;
    color: var(--t3);
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}

.acc-item.open .acc-icon {
    transform: rotate(45deg);
    color: var(--ocean);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.acc-body-inner {
    padding: 0 20px 18px;
    color: var(--t2);
    font-size: .9rem;
    line-height: 1.7;
}

/* ═══════════════════════════════════════
   DASHBOARD SIDEBAR
   ═══════════════════════════════════════ */
.dash-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    min-height: 70vh;
}

@media(max-width:900px) {
    .dash-layout {
        grid-template-columns: 1fr;
    }
}

.dash-side {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 20px;
    height: fit-content;
    box-shadow: var(--sh-xs);
    position: sticky;
    top: 90px;
}

    .dash-side a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border-radius: var(--r-s);
        font-size: .88rem;
        color: var(--t2);
        transition: all .15s;
        font-weight: 500;
    }

        .dash-side a:hover {
            background: var(--sky-1);
            color: var(--ocean);
        }

        .dash-side a.on {
            background: var(--sky-1);
            color: var(--ocean);
            font-weight: 600;
        }

.dash-main {
    min-width: 0;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 20px;
    box-shadow: var(--sh-xs);
    transition: all .3s;
}

    .stat-card:hover {
        box-shadow: var(--sh-m);
        transform: translateY(-2px);
    }

.stat-label {
    font-size: .78rem;
    color: var(--t3);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
    margin-bottom: 6px;
}

.stat-val {
    font-family: var(--font-h);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--t1);
}

    .stat-val .up {
        color: var(--mint);
        font-size: .78rem;
        font-weight: 600;
    }

/* ═══════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════ */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    overflow: hidden;
    transition: all .4s var(--ease);
    box-shadow: var(--sh-xs);
}

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-l);
    }

.blog-img {
    aspect-ratio: 16/9;
    background: var(--bg-muted);
    overflow: hidden;
}

    .blog-img > div {
        width: 100%;
        height: 100%;
        transition: transform .5s var(--ease);
    }

.blog-card:hover .blog-img > div {
    transform: scale(1.05);
}

.blog-body {
    padding: 18px;
}

.blog-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-full);
    background: var(--sky-1);
    color: var(--ocean);
    font-size: .72rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.35;
}

    .blog-title a {
        color: var(--t1);
    }

        .blog-title a:hover {
            color: var(--ocean);
        }

.blog-excerpt {
    font-size: .85rem;
    color: var(--t2);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    font-size: .75rem;
    color: var(--t3);
}

/* ═══════════════════════════════════════
   PAGE HEADERS
   ═══════════════════════════════════════ */
.page-header {
    padding: clamp(32px, 6vw, 64px) 0;
    background: linear-gradient(180deg, var(--sky-1) 0%, var(--bg-page) 100%);
    text-align: center;
    position: relative;
}

    .page-header h1 {
        font-family: var(--font-h);
        font-weight: 800;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        letter-spacing: -.02em;
        margin-bottom: 10px;
    }

    .page-header p {
        color: var(--t2);
        font-size: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }

/* ═══════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════ */
.auth-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

@media(max-width:900px) {
    .auth-layout {
        grid-template-columns: 1fr;
    }
}

.auth-side {
    background: linear-gradient(135deg, var(--ocean-d), var(--ocean), var(--ocean-l));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
    color: #fff;
}

@media(max-width:900px) {
    .auth-side {
        display: none;
    }
}

.auth-side h2 {
    font-family: var(--font-h);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.auth-side p {
    color: rgba(255,255,255,.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.auth-stat {
    display: flex;
    gap: 32px;
    margin-top: 24px;
}

    .auth-stat div {
        text-align: center;
    }

    .auth-stat strong {
        display: block;
        font-family: var(--font-h);
        font-size: 1.6rem;
        font-weight: 800;
    }

    .auth-stat span {
        font-size: .78rem;
        color: rgba(255,255,255,.7);
    }

.auth-form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
    background: var(--bg-card);
}

.auth-form {
    max-width: 400px;
    width: 100%;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    border-radius: var(--r-m);
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    font-weight: 600;
    font-size: .88rem;
    cursor: pointer;
    transition: all .2s;
    color: var(--t1);
}

    .social-btn:hover {
        border-color: var(--border-h);
        background: var(--bg-muted);
    }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
    font-size: .8rem;
    color: var(--t3);
}

    .auth-divider::before, .auth-divider::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border);
    }

/* ═══════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════ */
.cmp-table {
    width: 100%;
    border-collapse: collapse;
}

    .cmp-table th, .cmp-table td {
        padding: 14px 18px;
        text-align: center;
        font-size: .88rem;
    }

    .cmp-table th {
        background: var(--sky-1);
        font-weight: 600;
        color: var(--t2);
    }

    .cmp-table td {
        border-top: 1px solid var(--border);
    }

    .cmp-table tr:hover td {
        background: var(--bg-card-h);
    }

    .cmp-table td:first-child {
        text-align: left;
        font-weight: 600;
        color: var(--t1);
        background: var(--sky-1);
    }

/* ═══════════════════════════════════════
   FILTER SIDEBAR
   ═══════════════════════════════════════ */
.filter-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
}

@media(max-width:900px) {
    .filter-layout {
        grid-template-columns: 1fr;
    }
}

.filter-side {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 20px;
    height: fit-content;
    box-shadow: var(--sh-xs);
    position: sticky;
    top: 90px;
}

.filter-title {
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    margin-bottom: 18px;
}

    .filter-group h4 {
        font-size: .82rem;
        font-weight: 600;
        color: var(--t2);
        margin-bottom: 8px;
    }

.chip {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: var(--r-full);
    background: var(--bg-muted);
    border: 1px solid var(--border);
    font-size: .8rem;
    color: var(--t2);
    cursor: pointer;
    transition: all .2s;
    margin: 2px;
}

    .chip:hover, .chip.on {
        background: var(--sky-1);
        border-color: var(--ocean);
        color: var(--ocean);
    }

/* ═══════════════════════════════════════
   MULTI-STEP FORM
   ═══════════════════════════════════════ */
.steps-bar {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    padding: 0 10px;
}

.step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-muted);
    border: 2px solid var(--border);
    display: grid;
    place-items: center;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: .85rem;
    color: var(--t3);
    flex-shrink: 0;
    transition: all .3s;
}

    .step-dot.active {
        background: var(--ocean);
        border-color: var(--ocean);
        color: #fff;
    }

    .step-dot.done {
        background: var(--mint);
        border-color: var(--mint);
        color: #fff;
    }

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
}

    .step-line.done {
        background: var(--mint);
    }

/* ═══════════════════════════════════════
   GALLERY (detail page)
   ═══════════════════════════════════════ */
.gallery {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: 8px;
}

@media(max-width:700px) {
    .gallery {
        grid-template-columns: 1fr;
    }
}

.gallery-main {
    aspect-ratio: 16/10;
    background: var(--bg-muted);
    border-radius: var(--r-l);
    overflow: hidden;
    display: grid;
    place-items: center;
    font-size: 4rem;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

@media(max-width:700px) {
    .gallery-thumbs {
        flex-direction: row;
    }
}

.gallery-thumb {
    aspect-ratio: 1;
    background: var(--bg-muted);
    border-radius: var(--r-s);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
}

    .gallery-thumb:hover, .gallery-thumb.on {
        border-color: var(--ocean);
    }

/* Detail sidebar */
.detail-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
}

    .detail-layout > div {
        min-width: 0;
    }

@media(max-width:900px) {
    .detail-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.detail-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.seller-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 20px;
    box-shadow: var(--sh-s);
}

.spec-table {
    width: 100%;
}

    .spec-table td {
        padding: 10px 0;
        font-size: .88rem;
        border-bottom: 1px solid var(--border);
    }

        .spec-table td:first-child {
            font-weight: 600;
            color: var(--t1);
            width: 40%;
        }

        .spec-table td:last-child {
            color: var(--t2);
        }

.feat-tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--r-full);
    background: var(--sky-1);
    color: var(--ocean-d);
    font-size: .78rem;
    font-weight: 500;
    margin: 2px;
}

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 32px;
}

.pg-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-s);
    border: 1px solid var(--border);
    background: var(--bg-card);
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 500;
    color: var(--t2);
    transition: all .2s;
}

    .pg-btn:hover {
        border-color: var(--ocean);
        color: var(--ocean);
    }

    .pg-btn.on {
        background: var(--ocean);
        border-color: var(--ocean);
        color: #fff;
    }

/* ═══════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════ */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: 24px;
    text-align: center;
    box-shadow: var(--sh-xs);
    transition: all .35s var(--ease);
}

    .contact-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh-m);
        border-color: var(--border-ocean);
    }

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    font-family: var(--font-h);
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-card p {
    font-size: .85rem;
    color: var(--t2);
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    background: var(--deep);
    color: rgba(255,255,255,.7);
    padding: clamp(40px, 6vw, 64px) 0 0;
    margin-top: clamp(40px, 6vw, 80px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr repeat(3, 1fr);
    gap: clamp(24px, 4vw, 48px);
    padding-bottom: 36px;
}

.footer-brand {
    font-family: var(--font-h);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.footer-desc {
    color: rgba(255,255,255,.5);
    line-height: 1.7;
    font-size: .88rem;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

    .footer-social a {
        width: 36px;
        height: 36px;
        border-radius: var(--r-full);
        border: 1px solid rgba(255,255,255,.15);
        display: grid;
        place-items: center;
        color: rgba(255,255,255,.5);
        transition: all .2s;
        font-size: .82rem;
    }

        .footer-social a:hover {
            background: var(--ocean);
            border-color: var(--ocean);
            color: #fff;
        }

.footer-h {
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,.5);
    transition: all .2s;
    font-size: .85rem;
}

    .footer-links a:hover {
        color: #fff;
        padding-left: 3px;
    }

.footer-bot {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .78rem;
    color: rgba(255,255,255,.35);
}

@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════
   MISC
   ═══════════════════════════════════════ */
/* Back to top */
.btt {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: var(--r-full);
    background: var(--ocean);
    color: #fff;
    border: 0;
    display: none;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(8,145,178,.3);
    transition: all .3s var(--ease);
}

    .btt.vis {
        display: grid;
    }

    .btt:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(8,145,178,.4);
    }

/* Divider */
.divider {
    height: 1px;
    background: var(--border);
}

/* Toast */
.toast-c {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toast {
    padding: 12px 18px;
    border-radius: var(--r-m);
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: var(--sh-l);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeUp .3s var(--ease);
    font-size: .88rem;
}

/* Search Overlay */
.s-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: var(--bg-overlay);
    backdrop-filter: blur(6px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 18vh;
}

    .s-overlay.open {
        display: flex;
    }

.s-box {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: var(--r-2xl);
    padding: 6px;
    width: 90%;
    max-width: 560px;
    box-shadow: var(--sh-xl);
    animation: fadeUp .2s var(--ease);
}

    .s-box input {
        width: 100%;
        padding: 16px 20px;
        border: 0;
        background: 0;
        font-size: 1.05rem;
        color: var(--t1);
        outline: 0;
    }

        .s-box input::placeholder {
            color: var(--t3);
        }

/* Gradient placeholders for images */
.img-ph {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,.35);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all .6s var(--ease);
}

    .reveal.vis {
        opacity: 1;
        transform: translateY(0);
    }

.rv-d1 {
    transition-delay: .06s;
}

.rv-d2 {
    transition-delay: .12s;
}

.rv-d3 {
    transition-delay: .18s;
}

.rv-d4 {
    transition-delay: .24s;
}

.rv-d5 {
    transition-delay: .3s;
}

/* Toggle switch */
.toggle-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.toggle {
    position: relative;
    width: 48px;
    height: 26px;
}

    .toggle input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    background: var(--border);
    cursor: pointer;
    transition: all .3s;
}

    .toggle-slider::before {
        content: '';
        position: absolute;
        left: 3px;
        top: 3px;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: #fff;
        transition: transform .3s var(--ease);
        box-shadow: var(--sh-s);
    }

.toggle input:checked + .toggle-slider {
    background: var(--ocean);
}

    .toggle input:checked + .toggle-slider::before {
        transform: translateX(22px);
    }

/* ═══ THEME TOGGLE (Nav) ═══ */
.theme-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--t3);
    transition: all var(--dur);
    flex-shrink: 0;
    font-size: 16px;
    line-height: 1;
}

    .theme-btn:hover {
        border-color: var(--ocean);
        color: var(--ocean);
        box-shadow: var(--sh-ocean);
    }

/* ═══ LANGUAGE / COUNTRY DROPDOWN ═══ */
.nav-drop-wrap {
    position: relative;
    z-index: 101;
}

.nav-drop-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--r-full);
    border: 1px solid var(--border);
    background: var(--bg-card);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 600;
    color: var(--t2);
    transition: all var(--dur);
    white-space: nowrap;
    font-family: var(--font-b);
}

    .nav-drop-btn:hover {
        border-color: var(--ocean);
        color: var(--ocean);
    }

    .nav-drop-btn .flag {
        font-size: 16px;
        line-height: 1;
    }

    .nav-drop-btn .caret {
        font-size: 8px;
        opacity: .5;
    }

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-m);
    box-shadow: var(--sh-l);
    min-width: 200px;
    max-width: calc(100vw - 32px);
    z-index: 9999;
    overflow: hidden;
    display: none;
    animation: fadeUp .15s var(--ease);
    max-height: 70vh;
    overflow-y: auto;
}
/* Sağ taraftaki dropdown viewport dışına taşmasın */
.nav-right .nav-drop-wrap:last-of-type .nav-dropdown,
.nav-right .nav-drop-wrap:nth-last-of-type(2) .nav-dropdown {
    right: 0;
    left: auto;
}
/* Sol taraftaki dropdown'lar da taşmasın */
.nav-right .nav-drop-wrap:first-of-type .nav-dropdown {
    right: auto;
    left: 0;
}

.nav-drop-wrap.open .nav-dropdown {
    display: block;
}

.nav-dropdown h6 {
    padding: 10px 14px 6px;
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--t3);
    font-weight: 700;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    font-size: .84rem;
    color: var(--t2);
    transition: all .1s;
}

    .nav-dropdown a:hover {
        background: var(--sky-1);
        color: var(--ocean);
    }

    .nav-dropdown a.on {
        background: var(--sky-1);
        color: var(--ocean);
        font-weight: 600;
    }

    .nav-dropdown a .flag {
        font-size: 18px;
    }

.dd-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0;
}

/* ═══ ENHANCED IMAGE SLIDER ═══ */
/* ═══ DETAIL PAGE — GALLERY CONTAINMENT ═══ */
.detail-gallery {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform .5s var(--ease);
    width: 100%;
}

.slider-slide {
    min-width: 100%;
    width: 100%;
    aspect-ratio: 16/10;
    display: grid;
    place-items: center;
    font-size: 5rem;
    flex-shrink: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all .2s;
    color: var(--t1);
    font-size: 18px;
    box-shadow: var(--sh-m);
}

[data-theme="dark"] .slider-arrow {
    background: rgba(17,24,39,.85);
}

.slider-arrow:hover {
    background: var(--ocean);
    color: #fff;
    border-color: var(--ocean);
}

.slider-arrow.prev {
    left: 12px;
}

.slider-arrow.next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,.4);
    cursor: pointer;
    transition: all .2s;
    border: 0;
}

    .slider-dot.on {
        background: #fff;
        width: 24px;
        border-radius: 4px;
    }

.slider-count {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    padding: 4px 12px;
    border-radius: var(--r-full);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    z-index: 5;
}

.slider-fullscreen {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: var(--r-s);
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    border: 0;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: grid;
    place-items: center;
    transition: all .2s;
}

    .slider-fullscreen:hover {
        background: var(--ocean);
    }

/* Thumbnail strip */
.thumb-strip {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
    max-width: 100%;
    width: 100%;
}

    .thumb-strip::-webkit-scrollbar {
        height: 4px;
    }

    .thumb-strip::-webkit-scrollbar-thumb {
        background: var(--t4);
        border-radius: 4px;
    }

.thumb-item {
    min-width: 80px;
    height: 60px;
    border-radius: var(--r-s);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
}

    .thumb-item:hover, .thumb-item.on {
        border-color: var(--ocean);
    }

/* ═══ ENHANCED DETAIL PAGE ═══ */
.detail-price-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    box-shadow: var(--sh-s);
}

.detail-price {
    font-family: var(--font-h);
    font-size: clamp(1.4rem,3vw,2rem);
    font-weight: 800;
    color: var(--ocean);
}

.detail-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    overflow: hidden;
}

.spec-cell {
    background: var(--bg-card);
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

    .spec-cell .spec-label {
        font-size: .72rem;
        color: var(--t3);
        text-transform: uppercase;
        letter-spacing: .06em;
        font-weight: 600;
    }

    .spec-cell .spec-val {
        font-weight: 600;
        font-size: .9rem;
        color: var(--t1);
    }

.detail-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-l);
    padding: clamp(16px, 3vw, 24px);
    margin-bottom: 16px;
    box-shadow: var(--sh-xs);
    overflow: hidden;
    max-width: 100%;
}

    .detail-section h3 {
        font-family: var(--font-h);
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 16px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        gap: 8px;
    }

.feat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(180px, 100%), 1fr));
    gap: 8px;
}

.feat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: var(--r-s);
    background: var(--bg-muted);
    font-size: .84rem;
    color: var(--t2);
}

    .feat-item .fcheck {
        color: var(--ocean);
        font-weight: 700;
        flex-shrink: 0;
    }

/* Safety score */
.safety-meter {
    height: 8px;
    border-radius: 4px;
    background: var(--bg-muted);
    overflow: hidden;
    margin-top: 6px;
}

.safety-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--mint), #34d399);
    transition: width .8s var(--ease);
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 200px;
    border-radius: var(--r-m);
    background: var(--bg-muted);
    display: grid;
    place-items: center;
    color: var(--t3);
    font-size: .88rem;
    border: 1px solid var(--border);
}

/* Similar listings horizontal scroll */
.similar-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    max-width: 100%;
}

    .similar-scroll > * {
        min-width: 260px;
        max-width: 300px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .similar-scroll::-webkit-scrollbar {
        height: 4px;
    }

    .similar-scroll::-webkit-scrollbar-thumb {
        background: var(--t4);
        border-radius: 4px;
    }

/* Body transition for theme */
body {
    transition: background-color .3s, color .3s;
}

/* ═══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE / RESPONSIVE FIXES
   Zero horizontal overflow on ALL devices
   ═══════════════════════════════════════════════════════ */

/* Prevent ANY overflow */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.section, .hero, .page-header, .footer, .cta-banner {
    overflow-x: hidden;
}
/* NOT: .nav buradan çıkarıldı — overflow-x:hidden dropdown'ları kesiyor */
img, video, iframe, table, pre, code {
    max-width: 100%;
}

.container {
    overflow: visible;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ── 1024px & below ── */
@media(max-width:1024px) {
    .detail-layout {
        grid-template-columns: 1fr 320px;
        gap: 20px;
    }
}

/* ── 900px & below (tablet) ── */
@media(max-width:900px) {
    .detail-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar {
        position: static;
    }

    .filter-layout {
        grid-template-columns: 1fr;
    }

    .filter-side {
        position: static;
    }

    .dash-layout {
        grid-template-columns: 1fr;
    }

    .dash-side {
        position: static;
    }

    .auth-layout {
        grid-template-columns: 1fr;
    }

    .auth-side {
        display: none;
    }

    .auth-form-side {
        min-height: 100vh;
    }

    /* Nav - already handled: links hidden, burger shown, dropdowns hidden */
    .nav-inner {
        height: 58px;
    }

    /* Hero */
    .hero {
        padding: 40px 0 60px;
    }

        .hero h1 {
            font-size: clamp(1.8rem, 7vw, 2.6rem);
        }

    .hero-sub {
        font-size: .92rem;
    }

    /* Tables scroll horizontally only inside wrapper */
    .table-wrap {
        -webkit-overflow-scrolling: touch;
    }

    .cmp-table {
        min-width: 600px;
    }
}

/* ── 700px & below (large phone) ── */
@media(max-width:700px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: clamp(40px, 8vw, 56px) 0;
    }

    .hero-search {
        border-radius: var(--r-l);
    }

    .hero h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    /* Detail page */
    .detail-price-bar {
        flex-direction: column;
        text-align: left;
    }

        .detail-price-bar > div:last-child {
            text-align: left;
        }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feat-grid {
        grid-template-columns: 1fr;
    }

    .detail-gallery {
        width: 100%;
        max-width: 100%;
    }

    .slider-slide {
        aspect-ratio: 4/3;
        font-size: 3.5rem;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

        .slider-arrow.prev {
            left: 8px;
        }

        .slider-arrow.next {
            right: 8px;
        }

    .slider-count {
        top: 10px;
        right: 10px;
        font-size: .7rem;
        padding: 3px 10px;
    }

    .slider-fullscreen {
        top: 10px;
        left: 10px;
        width: 32px;
        height: 32px;
    }

    .thumb-item {
        min-width: 64px;
        height: 48px;
        font-size: 1.1rem;
    }

    .detail-price {
        font-size: 1.3rem;
    }

    .detail-section {
        padding: 14px;
        margin-bottom: 12px;
        border-radius: var(--r-m);
    }

        .detail-section h3 {
            font-size: .92rem;
            margin-bottom: 12px;
            padding-bottom: 10px;
        }

    .spec-cell {
        padding: 10px 12px;
    }

        .spec-cell .spec-val {
            font-size: .82rem;
        }

        .spec-cell .spec-label {
            font-size: .68rem;
        }

    .feat-item {
        padding: 7px 10px;
        font-size: .8rem;
    }

    .seller-card {
        padding: 14px;
    }

    .map-placeholder {
        height: 160px;
        font-size: .8rem;
    }

    .similar-scroll > * {
        min-width: 200px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bot {
        flex-direction: column;
        text-align: center;
    }

    /* Cards grid */
    .grid {
        gap: 12px;
    }

    .cat-tile {
        padding: 14px 8px;
    }

    .cat-ico {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .cat-nm {
        font-size: .78rem;
    }

    .cat-ct {
        font-size: .68rem;
    }

    /* Steps - horizontal scroll or stack */
    .step-card {
        padding: 16px 12px;
    }

    /* Pricing */
    .price-card {
        padding: 20px;
    }

    /* CTA */
    .cta-banner {
        padding: 32px 20px;
        border-radius: var(--r-l);
    }

        .cta-banner h2 {
            font-size: clamp(1.2rem, 5vw, 1.6rem);
        }

    /* Blog */
    .blog-body {
        padding: 14px;
    }

    /* Similar listings */
    .similar-scroll > * {
        min-width: 220px;
    }
}

/* ── 480px & below (small phone) ── */
@media(max-width:480px) {
    .container {
        padding: 0 14px;
    }

    .hero {
        padding: 28px 0 48px;
    }

        .hero h1 {
            font-size: 1.5rem;
            margin-bottom: 12px;
        }

    .hero-sub {
        font-size: .85rem;
        margin-bottom: 24px;
    }

    .hero-search {
        padding: 4px;
    }

    .hero-tags {
        gap: 4px;
    }

    .htag {
        padding: 4px 10px;
        font-size: .72rem;
    }

    /* Spec grid single col on very small */
    .spec-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Detail page small phone */
    .slider-slide {
        aspect-ratio: 1/1;
        font-size: 3rem;
    }

    .slider-wrap {
        border-radius: var(--r-m);
    }

    .slider-dots {
        bottom: 10px;
        gap: 4px;
    }

    .slider-dot {
        width: 6px;
        height: 6px;
    }

        .slider-dot.on {
            width: 18px;
        }

    .thumb-strip {
        gap: 6px;
        margin-top: 8px;
    }

    .thumb-item {
        min-width: 56px;
        height: 42px;
        font-size: 1rem;
        border-radius: 6px;
    }

    .detail-price-bar {
        padding: 12px 14px;
        margin: 14px 0;
        border-radius: var(--r-m);
    }

    .detail-price {
        font-size: 1.15rem;
    }

    .detail-section {
        padding: 12px;
        margin-bottom: 10px;
    }

        .detail-section h3 {
            font-size: .85rem;
            gap: 6px;
        }

    .spec-cell {
        padding: 8px 10px;
    }

        .spec-cell .spec-val {
            font-size: .78rem;
            word-break: break-word;
        }

        .spec-cell .spec-label {
            font-size: .64rem;
        }

    .feat-item {
        padding: 6px 8px;
        font-size: .76rem;
        gap: 6px;
    }

    .similar-scroll > * {
        min-width: 180px;
    }

    /* Footer single col */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section headers */
    .sh-title {
        font-size: clamp(1.2rem, 5vw, 1.5rem);
    }

    .sh-desc {
        font-size: .85rem;
    }

    .sh-eyebrow {
        font-size: .65rem;
        padding: 4px 10px;
    }

    /* Listings */
    .lc-body {
        padding: 10px 12px 12px;
    }

    .lc-title {
        font-size: .82rem;
    }

    .lc-price {
        font-size: .95rem;
    }

    .lc-meta {
        font-size: .7rem;
    }

    /* Pagination */
    .pagination {
        gap: 2px;
    }

    .pg-btn {
        width: 34px;
        height: 34px;
        font-size: .8rem;
    }

    /* Contact cards */
    .contact-card {
        padding: 16px;
    }

    /* Seller card */
    .seller-card {
        padding: 16px;
    }

    /* Testimonials */
    .testi {
        padding: 16px;
    }

    .testi-q {
        font-size: .85rem;
    }

    /* Submit page */
    .steps-bar {
        padding: 0;
    }

    .step-dot {
        width: 30px;
        height: 30px;
        font-size: .75rem;
    }

    /* Buttons */
    .btn-lg {
        padding: 12px 24px;
        font-size: .88rem;
    }

    /* Accordion */
    .acc-head {
        padding: 14px 16px;
        font-size: .88rem;
    }

    .acc-body-inner {
        padding: 0 16px 14px;
        font-size: .85rem;
    }
}

/* ── 380px & below (very small phone) ── */
@media(max-width:380px) {
    .hero h1 {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 12px;
    }

    .hs-num {
        font-size: 1.2rem;
    }

    .hs-lbl {
        font-size: .65rem;
    }

    .nav-logo {
        font-size: 1rem;
        gap: 7px;
    }

        .nav-logo .mark {
            width: 28px;
            height: 28px;
            font-size: 12px;
            border-radius: 7px;
        }

    .nav-btn, .theme-btn {
        width: 34px;
        height: 34px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .slider-slide {
        aspect-ratio: 3/4;
    }

    .detail-price {
        font-size: 1rem;
    }

    .thumb-item {
        min-width: 48px;
        height: 36px;
        font-size: .9rem;
    }
}

/* ── Safe area for notched phones ── */
@supports(padding: env(safe-area-inset-left)) {
    .nav {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .footer {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    body {
        padding-bottom: env(safe-area-inset-bottom);
    }
}

/* ── Prevent text overflow everywhere ── */
h1, h2, h3, h4, h5, h6, p, span, a, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.lc-title, .blog-title, .sh-title, .hero h1 {
    hyphens: auto;
}

/* ── Touch-friendly tap targets ── */
@media(hover: none) and (pointer: coarse) {
    .nav-a {
        padding: 10px 16px;
    }

    .chip {
        padding: 8px 14px;
    }

    .pg-btn {
        width: 42px;
        height: 42px;
    }

    .lc-fav {
        width: 38px;
        height: 38px;
    }
}
