/* ==========================================================================
   3D Teklif - Brutalist + Modern Design System
   ========================================================================== */

:root {
    /* Brand */
    --lime: #FF4338;            /* Ana accent (kırmızı) */
    --lime-dark: #E02A20;
    --lime-glow: #FF6B5E;
    --accent-soft: #FFE5E2;
    --orange: #FF6B35;
    --blue: #3D5AFE;

    /* Surfaces */
    --cream: #F5F1EA;
    --cream-deep: #EDE7DB;
    --card: #FFFFFF;

    /* Text */
    --ink: #141414;
    --ink-soft: #2A2A2A;
    --muted: #6B6B66;
    --rule: #E5DFD2;

    /* Semantic */
    --success: #16a34a;
    --danger: #E53935;
    --warning: #f59e0b;

    /* Radii */
    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 24px;
    --r-xl: 32px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(20,20,20,.04), 0 2px 6px rgba(20,20,20,.04);
    --shadow-md: 0 4px 12px rgba(20,20,20,.06), 0 12px 28px rgba(20,20,20,.08);
    --shadow-lg: 0 12px 32px rgba(20,20,20,.08), 0 32px 64px rgba(20,20,20,.12);
    --shadow: var(--shadow-md);

    /* Type */
    --sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
    --mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    /* Layout */
    --container: 1440px;
    --header-h: 76px;
    --transition: .15s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100vh; overflow-x: hidden; font-size: 15px; line-height: 1.55; }

button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; padding: 0; }
input, select, textarea { font-family: inherit; color: inherit; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 .5em; line-height: 1.1; color: var(--ink); font-weight: 600; letter-spacing: -.025em; }
p { margin: 0 0 1em; }

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 48px;
}

/* ---------- Typography ---------- */
.t-display { font-weight: 600; letter-spacing: -0.035em; line-height: 0.95; }
.t-mono { font-family: var(--mono); letter-spacing: -0.01em; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--lime);
    color: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn-primary:hover {
    background: var(--lime-glow);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255,67,56,.35);
}
.btn-primary:active { transform: translateY(0); }
.btn-primary[disabled],
.btn-primary:disabled {
    background: var(--rule);
    color: var(--muted);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-dark {
    background: var(--ink);
    color: var(--cream);
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .15s, background .15s;
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); color: var(--cream); }

.btn-ghost {
    background: transparent;
    color: var(--ink);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--rule);
    transition: background .15s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-ghost:hover { background: var(--cream-deep); color: var(--ink); }

.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Chips ---------- */
.chip {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--cream-deep);
    font-size: 12px;
    font-family: var(--mono);
    color: var(--ink-soft);
}
.chip-lime { background: var(--lime); color: #fff; }
.chip-dark { background: var(--ink); color: var(--cream); }

/* ---------- Cards ---------- */
.card {
    background: var(--card);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--rule);
}

/* ---------- Form field (global) ---------- */
.ck-field {
    display: block;
    width: 100%;
}
.ck-field > span {
    display: block;
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
    font-weight: 500;
}
.ck-field input,
.ck-field textarea,
.ck-field select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--rule);
    background: #fff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
    resize: vertical;
    color: var(--ink);
    transition: border-color .15s;
}
.ck-field input:focus,
.ck-field textarea:focus,
.ck-field select:focus { border-color: var(--ink); }
.ck-field input::placeholder,
.ck-field textarea::placeholder { color: var(--gray-400, #9b958a); }
.ck-field input.t-mono,
.ck-field textarea.t-mono,
.ck-field .t-mono { font-family: var(--mono); letter-spacing: .02em; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: #D4CEC1; border-radius: 10px; }
::-webkit-scrollbar-track { background: transparent; }

/* ---------- Animations ---------- */
@keyframes pulse-ring {
    0% { transform: scale(.96); opacity: .9; }
    100% { transform: scale(1.3); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
@keyframes tape { to { transform: translateX(-50%); } }

.fade-up { animation: fadeUp .5s cubic-bezier(.2,.8,.2,1) both; }
.fade-in { animation: fadeIn .3s ease both; }

/* ---------- Focus visible ---------- */
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 8px; }

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 1400;
    padding: 16px;
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.2, .8, .2, 1);
    pointer-events: none;
}
.cookie-banner.show {
    transform: translateY(0);
    pointer-events: auto;
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--ink);
    color: var(--cream);
    border-radius: 20px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.18), 0 20px 60px rgba(0,0,0,0.12);
}
.cookie-banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--lime);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.cookie-banner-text { min-width: 0; }
.cookie-banner-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.01em;
}
.cookie-banner-text p {
    font-size: 13.5px;
    color: rgba(245,241,234,0.72);
    line-height: 1.5;
    margin: 0;
}
.cookie-banner-text a {
    color: var(--lime);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cookie-banner-text a:hover { color: var(--lime-glow); }
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}
.cookie-banner-actions .btn-ghost {
    border-color: rgba(245,241,234,0.25);
    color: var(--cream);
}
.cookie-banner-actions .btn-ghost:hover {
    background: rgba(245,241,234,0.1);
    color: var(--cream);
}

@media (max-width: 760px) {
    .cookie-banner { padding: 12px; }
    .cookie-banner-inner {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px 20px;
        text-align: left;
    }
    .cookie-banner-icon { width: 40px; height: 40px; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions button { flex: 1; justify-content: center; }
}

/* ---------- Modal Overlay (global) ---------- */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20,20,20,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    place-items: center;
    animation: fadeIn .3s ease;
}
.modal-overlay.show { display: grid; }
.modal-box {
    width: 620px;
    max-width: calc(100% - 32px);
    padding: 36px;
    border-radius: 28px;
    background: #fff;
    box-shadow: var(--shadow-lg);
}
.modal-icon-lime {
    width: 40px; height: 40px; border-radius: 12px;
    background: var(--lime);
    color: #fff;
    display: grid; place-items: center;
}
.modal-icon-gray {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #94a3b8, #64748b);
    color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 10px 24px -10px rgba(100, 116, 139, .6);
}
.modal-icon-red {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--danger);
    color: #fff;
    display: grid; place-items: center;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 12px 24px -12px rgba(229, 57, 53, .7);
}
.modal-icon-amber {
    width: 60px; height: 60px; border-radius: 50%;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: #fff;
    display: grid; place-items: center;
    margin: 0 auto 16px;
    box-shadow: 0 10px 24px -10px rgba(217, 119, 6, .6);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    background: rgba(245,241,234,0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--ink);
}
.logo:hover { color: var(--ink); }
.logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--ink);
    display: grid;
    place-items: center;
    color: var(--lime);
    flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; }
.logo-text { letter-spacing: -0.02em; }
.logo-text strong { color: var(--muted); font-weight: 600; }
.logo-img {
    height: 80px;
    width: auto;
    #max-width: 200px;
    display: block;
    object-fit: contain;
}
.logo-img-footer { height: 60px; #max-width: 220px; }

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    color: var(--ink-soft);
}
.nav a {
    color: inherit;
    font-weight: 500;
    transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--lime); }

/* Dropdown nav */
.nav-item { position: relative; }
.nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: inherit;
    font-weight: 500;
    font-size: 14px;
}
.nav-toggle .chevron { width: 14px; height: 14px; transition: transform .2s; }
.nav-item:hover .nav-toggle .chevron { transform: rotate(180deg); }
.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding-top: 14px; /* görünür boşluk + hover hit area */
    min-width: 240px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}
.dropdown::before {
    content: "";
    position: absolute;
    inset: 14px 0 0 0; /* iç kart */
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    z-index: -1;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.dropdown a {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    margin: 0 8px;
    border-radius: var(--r-sm);
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: background .15s;
}
.dropdown a:first-child { margin-top: 8px; }
.dropdown a:last-child { margin-bottom: 8px; }
.dropdown a:hover { background: var(--cream); }
.dropdown-icon {
    width: 32px; height: 32px;
    display: grid; place-items: center;
    border-radius: 8px;
    background: var(--cream-deep);
    color: var(--ink);
    flex-shrink: 0;
}
.dropdown-icon svg { width: 16px; height: 16px; }
.dropdown-text { display: flex; flex-direction: column; gap: 2px; }
.dropdown-text small { color: var(--muted); font-size: 11.5px; font-weight: 400; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-btn {
    width: 42px; height: 42px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--rule);
    transition: background .15s;
    position: relative;
}
.icon-btn:hover { background: var(--cream-deep); }
.icon-btn svg { width: 18px; height: 18px; }
.cart-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: var(--lime);
    color: #fff;
    border-radius: 999px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    width: 42px; height: 42px;
    border-radius: 999px;
    align-items: center; justify-content: center;
    border: 1px solid var(--rule);
    color: var(--ink);
}
.hamburger svg { width: 20px; height: 20px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    position: relative;
    padding: 56px 48px 24px;
    max-width: var(--container);
    margin: 0 auto;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
}
.hero-orb-1 {
    top: 80px;
    right: 80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,67,56,0.38), rgba(255,67,56,0) 70%);
}
.hero-orb-2 {
    bottom: -80px;
    left: 120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,107,53,0.22), rgba(255,107,53,0) 70%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.hero-content { padding-top: 8px; }

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--rule);
    font-size: 12px;
    font-family: var(--mono);
    color: var(--ink-soft);
}
.hero-status .pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
}

.hero-title {
    font-size: clamp(48px, 7vw, 84px);
    margin: 0 0 20px;
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 0.95;
    color: var(--ink);
}
.hero-title .accent {
    background: var(--lime);
    color: #fff;
    padding: 0 12px;
    border-radius: 16px;
    display: inline-block;
    transform: rotate(-1.5deg);
    line-height: 1.1;
}
.hero-title .nowrap { white-space: nowrap; }

.hero-desc {
    font-size: 19px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 520px;
    margin: 0 0 32px;
}

.perks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    margin-top: 8px;
}
.perk { display: flex; gap: 10px; align-items: flex-start; }
.perk-icon {
    width: 34px; height: 34px;
    border-radius: 10px;
    background: var(--accent-soft);
    color: var(--lime);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.perk-icon svg { width: 17px; height: 17px; }
.perk-title { font-size: 13.5px; font-weight: 600; margin-bottom: 2px; color: var(--ink); }
.perk-desc { font-size: 12px; color: var(--muted); line-height: 1.35; }

/* ==========================================================================
   Home Dropzone
   ========================================================================== */
.home-dropzone-wrap { position: relative; }
.home-dropzone {
    position: relative;
    background: #fff;
    border: 2px dashed var(--rule);
    border-radius: 28px;
    padding: 36px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: background .15s, border-color .15s, transform .15s;
    box-shadow: var(--shadow-md);
}
.home-dropzone:hover { border-color: var(--ink); }
.home-dropzone.is-drag {
    background: var(--lime);
    border-color: var(--ink);
    transform: scale(1.01);
}
.home-dropzone.is-drag .home-dz-icon {
    background: var(--ink);
    color: var(--lime);
}
.home-dropzone.is-drag .home-dz-title { color: var(--ink); }

.home-dz-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-dz-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    pointer-events: none;
}

.home-dz-pulse {
    position: relative;
    width: 124px;
    height: 124px;
}
.home-dz-pulse .ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--lime-dark);
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}
.home-dz-icon {
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
    display: grid;
    place-items: center;
    transition: background .2s;
    box-shadow: 0 8px 24px rgba(255,67,56,0.35);
}

.home-dz-title {
    font-size: 28px;
    margin-bottom: 6px;
}
.home-dz-sub {
    color: var(--muted);
    font-size: 15px;
}

.home-dz-hints {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 560px) {
    .home-dropzone { min-height: 380px; padding: 24px; }
    .home-dz-title { font-size: 22px; }
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
    max-width: var(--container);
    margin: 80px auto 40px;
    padding: 0 48px;
}
.how-it-works-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 32px;
}
.how-it-works-head .chip {
    background: var(--ink);
    color: var(--lime);
}
.how-it-works h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin: 12px 0 0;
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hiw-card {
    padding: 22px;
    border-radius: 22px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border: 1px solid var(--rule);
    transition: transform .2s, box-shadow .2s;
}
.hiw-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.hiw-card.featured {
    background: var(--lime);
    color: #fff;
    border-color: var(--lime);
}
.hiw-card.featured .hiw-card-num,
.hiw-card.featured .hiw-card-title { color: #fff; }
.hiw-card.featured .hiw-card-desc { color: rgba(255,255,255,0.9); }

.hiw-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.hiw-card-num { font-size: 13px; color: var(--muted); font-family: var(--mono); }
.hiw-card-icon { width: 22px; height: 22px; }
.hiw-card-title { font-size: 22px; margin-bottom: 6px; font-weight: 600; letter-spacing: -.025em; }
.hiw-card-desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.45; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: 80px;
    background: var(--ink);
    color: var(--cream);
    padding: 56px 48px 32px;
    position: relative;
    overflow: hidden;
}
.footer-anim-row {
    display: flex;
    justify-content: space-around;
    align-items: end;
    margin-bottom: 40px;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-anim {
    text-align: center;
    width: 96px;
}
.footer-anim-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 10px;
    position: relative;
}
.footer-anim-label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(245,241,234,0.8);
    white-space: nowrap;
}

.footer-grid {
    #border-top: 1px solid rgba(255,255,255,0.12);
    #padding-top: 32px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    max-width: 1344px;
    margin: 0 auto;
}
.footer-brand { padding-right: 16px; }
.footer-brand .logo { color: var(--cream); margin-bottom: 14px; }
.footer-brand .logo-mark { background: var(--lime); color: #fff; }
.footer-brand p {
    font-size: 13.5px;
    color: rgba(245,241,234,0.6);
    line-height: 1.55;
    max-width: 320px;
}
.footer-col h4 {
    font-size: 11px;
    color: var(--lime);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 12px;
    font-family: var(--mono);
    font-weight: 500;
}
.footer-col ul { display: grid; gap: 8px; }
.footer-col a {
    color: rgba(245,241,234,0.75);
    font-size: 13.5px;
    transition: color .15s;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 32px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    color: rgba(245,241,234,0.5);
    font-size: 12px;
    max-width: 1344px;
    margin: 32px auto 0;
}
.footer-bottom .t-mono,
.footer-bottom .version { font-family: var(--mono); }

/* ==========================================================================
   Cart Drawer
   ========================================================================== */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 150;
    pointer-events: none;
    visibility: hidden;
}
.cart-drawer.open {
    pointer-events: auto;
    visibility: visible;
}
.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.45);
    opacity: 0;
    transition: opacity .25s ease;
}
.cart-drawer.open .cart-backdrop { opacity: 1; }

.cart-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 460px;
    max-width: 92vw;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    box-shadow: -30px 0 60px rgba(0,0,0,0.15);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }

.cart-header {
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--rule);
    flex-shrink: 0;
}
.cart-title { font-size: 22px; margin: 0; letter-spacing: -.025em; }
.cart-subtitle { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cart-close-btn {
    width: 36px; height: 36px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--rule);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: background .15s;
}
.cart-close-btn:hover { background: var(--cream-deep); }

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}
.cart-empty {
    text-align: center;
    padding: 80px 0;
}
.cart-empty-ico {
    display: grid;
    place-items: center;
    margin-bottom: 14px;
    color: var(--ink);
}
.cart-empty-title {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
    margin-bottom: 4px;
}
.cart-empty-sub {
    font-size: 13px;
    color: var(--muted);
}

/* Cart items list */
.cart-items {
    display: grid;
    gap: 12px;
}

.cart-item {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 18px;
    padding: 12px;
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 12px;
}
.cart-item-thumb {
    width: 84px;
    height: 84px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F2ECDC, #DDD4BD);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cart-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: block;
}
.cart-item-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}
.cart-item-info {
    min-width: 0;
    flex: 1;
}
.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-meta {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
}
.cart-item-dims {
    font-size: 11px;
    color: var(--muted);
}
.cart-item-remove {
    color: var(--muted);
    width: 24px; height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: color .15s;
}
.cart-item-remove:hover { color: var(--danger); }

.cart-item-bottom {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
}
.cart-item-qty {
    display: flex;
    align-items: center;
    background: var(--cream-deep);
    border-radius: 999px;
    padding: 2px;
    gap: 2px;
}
.cart-item-qty button {
    width: 24px; height: 24px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: var(--ink);
    background: transparent;
    transition: background .15s;
}
.cart-item-qty button:hover { background: rgba(0,0,0,.08); }
.cart-item-qty .qty-btn-accent-sm {
    background: var(--ink);
    color: var(--lime);
}
.cart-item-qty .qty-btn-accent-sm:hover { background: var(--ink-soft); color: var(--lime); }
.cart-item-qty span {
    min-width: 22px;
    text-align: center;
    font-size: 13px;
    padding: 0 4px;
}
.cart-item-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}

/* Cart footer */
.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--rule);
    background: #fff;
    flex-shrink: 0;
}
.cart-threshold-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin-bottom: 12px;
    background: #FFF3CD;
    border: 1px solid #FDE68A;
    border-radius: 10px;
    font-size: 12.5px;
    color: #7A5E00;
}
.cart-threshold-hint strong { color: var(--ink); }
.cart-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}
.cart-row-total {
    align-items: end;
    margin-top: 8px;
    margin-bottom: 14px;
    color: var(--ink);
}
.cart-row-total > span:first-child {
    font-size: 13px;
    font-weight: 600;
}
.cart-row-total > span:last-child {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.025em;
    line-height: 1;
}
.cart-checkout-btn {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 16px 24px;
}

@media (max-width: 560px) {
    .cart-panel { width: 100vw; max-width: 100vw; }
    .cart-header { padding: 18px 20px; }
    .cart-body { padding: 14px 20px; }
    .cart-footer { padding: 16px 20px; }
    .cart-item { grid-template-columns: 72px 1fr; padding: 10px; }
    .cart-item-thumb { width: 72px; height: 72px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
    .container, .hero, .how-it-works { padding-left: 24px; padding-right: 24px; }
    .site-header { padding: 14px 24px; }
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .perks { grid-template-columns: 1fr 1fr; }
    .hiw-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .hamburger { display: inline-flex; }
}
@media (max-width: 560px) {
    .hero-title { font-size: 44px; }
    .perks { grid-template-columns: 1fr; }
    .hiw-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
