/* ==========================================================================
   KARES TECH — Design System v2 · Logo 5 "The Four-Square" · Apple Classic
   ========================================================================== */

:root {
    --brown:        #4A2410;
    --brown-deep:   #2E1608;
    --tan:          #C9A07A;
    --tan-light:    #DDB893;
    --cream:        #F2E8DF;
    --cream-light:  #FAF5EF;
    --paper:        #F9F4EB;
    --ink:          #1c1611;
    --ink-soft:     #5a4a3a;
    --white:        #ffffff;
    --border:       #e0d8cf;

    /* legacy aliases (used by admin includes) */
    --primary-brown:   #4A2410;
    --secondary-brown: #C9A07A;
    --light-bg:        #FAF5EF;
    --dark-text:       #1c1611;
    --gray-text:       #5a4a3a;
    --border-color:    #e0d8cf;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream-light);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}
a { color: inherit; }
img { display: block; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* ==========================================================================
   Logo Mark — Logo 5 "The Four-Square"
   ========================================================================== */
.logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-tiles {
    display: grid;
    grid-template-columns: repeat(2, 17px);
    gap: 3px;
}
.logo-tiles .t { width: 17px; height: 17px; border-radius: 4px; }
.logo-tiles .t1 { background: var(--brown); }
.logo-tiles .t2 { background: var(--tan); }
.logo-tiles .t3 { background: var(--brown-deep); }
.logo-tiles .t4 { background: var(--brown); transform: rotate(45deg); border-radius: 3px; }

.logo-wordmark {
    font-weight: 300;
    letter-spacing: .18em;
    font-size: 16px;
    color: var(--brown);
    line-height: 1;
    white-space: nowrap;
}
.logo-wordmark b { font-weight: 800; letter-spacing: .04em; }

/* dark/inverted logo (footers, dark navbars) */
.logo-mark.inv .logo-wordmark { color: var(--cream-light); }
.logo-mark.inv .logo-wordmark b { color: var(--tan); }
.logo-mark.inv .t1,
.logo-mark.inv .t4 { background: var(--tan); }
.logo-mark.inv .t2 { background: rgba(255,255,255,.35); }
.logo-mark.inv .t3 { background: rgba(255,255,255,.15); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250,245,239,.93);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 28px;
}
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}
.nav-links a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color .2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--brown); }
.nav-links .nav-cta {
    background: var(--brown);
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: background .2s, color .2s;
}
.nav-links .nav-cta:hover { background: var(--brown-deep); color: #fff !important; }
.nav-links .nav-cta-outline {
    background: transparent !important;
    color: var(--brown) !important;
    border: 1.5px solid var(--brown);
    padding: 7.5px 18px;
}
.nav-links .nav-cta-outline:hover {
    background: var(--brown) !important;
    color: #fff !important;
}

/* Yazılım dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-arrow { font-size: 10px; display: inline-block; transition: transform .2s; line-height: 1; }
.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
.nav-dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    /* padding-top bridges the gap — hover stays active between trigger and menu */
    padding-top: 12px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transition: opacity .18s ease, transform .18s ease;
    z-index: 300;
    min-width: 210px;
}
.nav-dropdown::before {
    /* visible white card that appears below the padding bridge */
    content: '';
    position: absolute;
    inset: 12px 0 0 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(74,36,16,.11);
    z-index: -1;
}
.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
    transition: background .15s, color .15s;
}
.nav-dropdown li a:hover {
    background: var(--cream-light);
    color: var(--brown);
}

/* Wide dropdown for Donanım — 4-column text grid (20 items = 5 rows) */
.nav-dropdown.nav-dropdown-wide {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 12px;
    min-width: 680px;
    left: 50%;
}
.nav-dropdown.nav-dropdown-wide::before {
    inset: 12px 0 0 0;
}
.nav-dropdown.nav-dropdown-wide > li {
    display: block;
}
.nav-dropdown.nav-dropdown-wide li a {
    white-space: normal;
    font-size: 12.5px;
    padding: 10px 13px;
    line-height: 1.35;
}

/* Basket icon in navbar */
.nav-basket { display: flex; align-items: center; }
.basket-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 10px;
    border-radius: 8px;
    color: var(--ink);
    text-decoration: none !important;
    transition: background .15s;
}
.basket-btn:hover { background: var(--cream); }
.basket-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.basket-btn svg { display: block; }
.basket-badge {
    position: absolute;
    top: -7px;
    right: -8px;
    background: #e53e3e;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    border: 2px solid #fff;
}
.basket-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
}

/* ==========================================================================
   Donanım store pages (donanim.php, donanim-kategori.php, urun.php, sepet.php)
   ========================================================================== */
.store-hero {
    background: var(--cream);
    border-bottom: 1px solid var(--border);
    padding: 48px 0 40px;
}
.store-hero h1 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 800; color: var(--brown); margin-bottom: 8px; }
.store-hero p  { color: var(--ink-soft); font-size: .95rem; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    color: var(--ink-soft);
    margin-bottom: 16px;
}
.breadcrumb a { color: var(--brown); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { opacity: .5; }

/* Category grid on donanim.php */
.kategori-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
    gap: 20px;
    padding: 48px 0;
}
.kategori-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 22px;
    text-decoration: none;
    color: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .18s, transform .18s, border-color .18s;
}
.kategori-card:hover {
    box-shadow: 0 6px 28px rgba(74,36,16,.11);
    transform: translateY(-3px);
    border-color: var(--tan);
}
.kategori-card h3 { font-size: 1rem; font-weight: 700; color: var(--brown); }
.kategori-card p  { font-size: .83rem; color: var(--ink-soft); line-height: 1.5; }
.kategori-card .kat-arrow { margin-top: auto; font-size: .8rem; color: var(--tan); font-weight: 600; }

/* Product grid on donanim-kategori.php */
.urun-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
    gap: 24px;
    padding: 40px 0;
}
.urun-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s, transform .18s;
}
.urun-card:hover { box-shadow: 0 8px 32px rgba(74,36,16,.12); transform: translateY(-3px); }
.urun-card-img {
    background: var(--cream);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.urun-card-img img { width: 100%; height: 100%; object-fit: cover; }
.urun-card-img .no-img { font-size: 2.5rem; opacity: .25; }
.urun-card-body { padding: 18px 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.urun-card-body h3 { font-size: .97rem; font-weight: 700; color: var(--ink); }
.urun-card-body p  { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; flex: 1; }
.urun-fiyat { font-size: 1.15rem; font-weight: 800; color: var(--brown); }
.urun-fiyat small { font-size: .7rem; font-weight: 500; color: var(--ink-soft); display: block; }
.urun-card-actions { display: flex; gap: 8px; margin-top: 4px; }
.urun-card-actions a { flex: 1; text-align: center; padding: 9px 0; border-radius: 8px; font-size: .83rem; font-weight: 600; text-decoration: none; transition: background .15s, color .15s; }
.btn-sepet { background: var(--brown); color: #fff !important; }
.btn-sepet:hover { background: var(--brown-deep); }
.btn-detay { background: var(--cream); color: var(--brown) !important; border: 1px solid var(--border); }
.btn-detay:hover { background: var(--cream-light); }

/* Store category layout (sidebar + product grid) */
.store-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    padding: 40px 0;
    align-items: start;
}

/* Product detail page (urun.php) */
.urun-detay-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 48px 0; align-items: start; }
.urun-foto-main { aspect-ratio: 4/3; background: var(--cream); border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); }
.urun-foto-main img { width: 100%; height: 100%; object-fit: cover; }
.urun-foto-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.urun-foto-thumbs img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; border: 2px solid var(--border); cursor: pointer; transition: border-color .15s; }
.urun-foto-thumbs img:hover, .urun-foto-thumbs img.active { border-color: var(--brown); }
.urun-detay-info h1 { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 800; color: var(--ink); margin-bottom: 10px; }
.urun-detay-info .urun-fiyat-big { font-size: 2rem; font-weight: 800; color: var(--brown); margin: 16px 0 4px; }
.urun-detay-info .kdv-note { font-size: .8rem; color: var(--ink-soft); margin-bottom: 20px; }
.qty-wrap { display: flex; align-items: center; gap: 0; margin-bottom: 20px; }
.qty-btn { width: 36px; height: 36px; border: 1px solid var(--border); background: var(--cream); color: var(--ink); font-size: 1.2rem; cursor: pointer; border-radius: 8px 0 0 8px; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: background .15s; }
.qty-btn:last-child { border-radius: 0 8px 8px 0; }
.qty-btn:hover { background: var(--cream-light); }
.qty-input { width: 52px; height: 36px; border: 1px solid var(--border); border-left: none; border-right: none; text-align: center; font-size: .95rem; font-weight: 700; color: var(--ink); background: var(--white); }
.btn-sepete-ekle { width: 100%; padding: 14px; background: var(--brown); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .15s; margin-bottom: 10px; }
.btn-sepete-ekle:hover { background: var(--brown-deep); }
.stok-yok { opacity: .5; cursor: not-allowed; }

/* Cart page (sepet.php) */
.sepet-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 32px; padding: 40px 0; align-items: start; }
.sepet-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; border: 1px solid var(--border); }
.sepet-table th { padding: 14px 18px; text-align: left; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: var(--ink-soft); background: var(--cream); border-bottom: 1px solid var(--border); }
.sepet-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.sepet-table tr:last-child td { border-bottom: none; }
.sepet-urun-ad { font-weight: 600; font-size: .93rem; }
.sepet-urun-cat { font-size: .77rem; color: var(--ink-soft); }
.sepet-qty { display: flex; align-items: center; gap: 0; }
.sepet-qty input { width: 42px; height: 32px; border: 1px solid var(--border); text-align: center; font-size: .88rem; font-weight: 700; border-radius: 6px; }
.sepet-remove { background: none; border: none; color: var(--ink-soft); cursor: pointer; font-size: .8rem; padding: 6px 10px; border-radius: 6px; transition: background .15s, color .15s; }
.sepet-remove:hover { background: #fef2f2; color: #dc2626; }
.sepet-ozet { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 24px; }
.sepet-ozet h3 { font-size: 1rem; font-weight: 800; margin-bottom: 20px; color: var(--ink); }
.ozet-row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: 10px; color: var(--ink-soft); }
.ozet-row.total { font-size: 1.05rem; font-weight: 800; color: var(--ink); border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.btn-odeme { display: block; width: 100%; padding: 14px; background: var(--brown); color: #fff; border: none; border-radius: 12px; font-size: .97rem; font-weight: 700; text-align: center; text-decoration: none; cursor: pointer; transition: background .15s; margin-top: 16px; }
.btn-odeme:hover { background: var(--brown-deep); }
.sepet-bos { text-align: center; padding: 80px 0; color: var(--ink-soft); }
.sepet-bos svg { margin: 0 auto 16px; display: block; }

/* Checkout page (odeme.php) */
.odeme-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 32px; padding: 40px 0; align-items: start; }
.odeme-form-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.odeme-form-card h2 { font-size: 1.05rem; font-weight: 800; margin-bottom: 20px; color: var(--ink); padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--ink-soft); }
.form-group input, .form-group select, .form-group textarea {
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color .15s;
    font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brown); }
.fatura-toggle { display: flex; gap: 10px; margin-bottom: 20px; }
.fatura-opt {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink-soft);
    text-align: center;
    transition: border-color .15s, color .15s, background .15s;
    user-select: none;
}
.fatura-opt.active { border-color: var(--brown); color: var(--brown); background: var(--cream); }
.kurumsal-fields { display: none; }
.kurumsal-fields.show { display: block; }
.email-verify-note {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 10px;
    padding: 14px 16px;
    font-size: .82rem;
    color: #92400e;
    margin-top: 16px;
    line-height: 1.5;
}
.email-verify-note strong { display: block; margin-bottom: 4px; }
.btn-siparis-ver { width: 100%; padding: 15px; background: var(--brown); color: #fff; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .15s; margin-top: 8px; }
.btn-siparis-ver:hover { background: var(--brown-deep); }
.siparis-ozet-mini { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.siparis-ozet-mini h3 { font-size: .95rem; font-weight: 800; margin-bottom: 16px; color: var(--ink); }
.siparis-item-row { display: flex; justify-content: space-between; font-size: .85rem; margin-bottom: 10px; color: var(--ink-soft); }
.siparis-item-row .item-name { flex: 1; }
.siparis-item-row .item-price { font-weight: 600; color: var(--ink); white-space: nowrap; }

/* Order success page */
.siparis-basarili { text-align: center; max-width: 560px; margin: 80px auto; padding: 0 24px; }
.siparis-basarili .check-icon { font-size: 3.5rem; margin-bottom: 16px; }
.siparis-basarili h1 { font-size: 1.6rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.siparis-basarili p { font-size: .95rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 8px; }
.siparis-no-box { background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: 16px 24px; margin: 20px 0; font-size: 1.1rem; font-weight: 800; color: var(--brown); letter-spacing: .05em; }

/* Responsive store */
@media (max-width: 768px) {
    .urun-detay-wrap  { grid-template-columns: 1fr; }
    .sepet-wrap       { grid-template-columns: 1fr; }
    .odeme-wrap       { grid-template-columns: 1fr; }
    .form-row         { grid-template-columns: 1fr; }
    .nav-dropdown.nav-dropdown-wide { min-width: 300px; grid-template-columns: repeat(2,1fr); }
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--brown);
    color: #fff !important;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn-primary:hover { background: var(--brown-deep); transform: translateY(-1px); }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--brown);
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid var(--brown);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}
.btn-secondary:hover { background: var(--brown); color: #fff; }

.btn-tan {
    display: inline-flex;
    align-items: center;
    background: var(--tan);
    color: var(--brown-deep) !important;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
    white-space: nowrap;
}
.btn-tan:hover { background: var(--tan-light); }

.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    padding: 12px 26px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,.35);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}
.btn-ghost-light:hover { background: rgba(255,255,255,.1); }

.full-width { width: 100%; justify-content: center; text-align: center; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

/* ==========================================================================
   Eyebrow label
   ========================================================================== */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tan);
    border: 1px solid rgba(201,160,122,.45);
    padding: 4px 13px;
    border-radius: 50px;
}

/* ==========================================================================
   Section backgrounds
   ========================================================================== */
.sec-white  { background: var(--white); }
.sec-cream  { background: var(--cream-light); }
.sec-paper  { background: var(--paper); }
.sec-dark   { background: var(--brown-deep); }
.sec-brown  { background: var(--brown); }
.border-top { border-top: 1px solid var(--border); }
.bg-light   { background: var(--cream-light); }
.bg-white   { background: var(--white); }

/* ==========================================================================
   Typography helpers
   ========================================================================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow { margin-bottom: 14px; }
.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 14px;
}
.section-header p { font-size: 16px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }
.light-text h2 { color: #fff; }
.light-text p  { color: rgba(255,255,255,.65); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 120px 0 20px;
    text-align: center;
    background: var(--cream-light);
}
.hero-section .eyebrow { margin-bottom: 22px; }
.hero-h1 {
    font-size: clamp(52px, 7.5vw, 86px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: .93;
    color: var(--ink);
}
.hero-h1.accent { color: var(--brown); }
.hero-body {
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 480px;
    margin: 22px auto 34px;
    line-height: 1.6;
}
.hero-image-wrap {
    position: relative; /* anchor absolutely-positioned .slide children */
    margin: 56px auto 0;
    width: 90%;
    max-width: 980px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(46,22,8,.13), 0 0 0 1px var(--border);
}
.hero-image-wrap img { width: 100%; }
/* Hero slider holds mixed-orientation product photos (tablet + phone) — show each
   fully (contain) on a warm backdrop, in a compact fixed-height box so it doesn't
   dominate the top of the page. */
.hero-image-wrap.slider-container {
    height: 230px;
    max-width: 440px;
    margin-top: 32px;
    background: transparent;
    box-shadow: none;
}
.hero-image-wrap.slider-container .slide { object-fit: contain; }
@media (max-width: 768px) {
    .hero-image-wrap.slider-container { height: 200px; }
}
.hero-placeholder {
    width: 90%;
    max-width: 980px;
    height: 500px;
    margin: 56px auto 0;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--border) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1.5px dashed var(--border);
}

/* ==========================================================================
   Product Showcase Sections
   ========================================================================== */
.showcase-section { padding: 28px 0 90px; }
.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.showcase-text .eyebrow { margin-bottom: 18px; }
.showcase-text h2 {
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 18px;
}
.showcase-text p { font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 28px; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.showcase-image {
    height: 440px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #ded4c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 60px rgba(46,22,8,.12);
    border: 1px solid rgba(46,22,8,.14);
    position: relative;
}
.showcase-image img { width: 100%; height: 100%; object-fit: cover; }
/* Cycling product shots: show each fully (contain). The card's cream background
   shows through the letterboxed areas as a mat; the card border is the frame. */
.showcase-image .slider-container .slide { object-fit: contain; box-sizing: border-box; padding: 18px; }

/* slider */
.slider-container .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity .9s ease;
}
.slider-container .slide.active { opacity: 1; }
.hardware-img { max-width: 100%; max-height: 100%; object-fit: contain; padding: 24px; }

/* product badge */
.product-badge {
    display: inline-block;
    background: var(--brown);
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.product-badge.coming-soon {
    background: transparent;
    color: var(--tan);
    border: 1.5px solid var(--tan);
}

/* ==========================================================================
   Hardware Carousel
   ========================================================================== */
.hardware-carousel-section { padding: 80px 0; }
.carousel-window { overflow: hidden; padding: 12px 0; }
.carousel-track { display: flex; transition: transform .6s ease; }
.product-card { flex: 0 0 25%; padding: 0 14px; text-align: center; }
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px;
    margin-bottom: 14px;
    transition: box-shadow .25s;
}
.product-card:hover img { box-shadow: 0 12px 28px rgba(46,22,8,.08); }
.product-card h4 { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.product-card p  { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Hardware Grid Cards
   ========================================================================== */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.hw-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: transform .25s, box-shadow .25s;
}
.hw-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(46,22,8,.08); }
.hw-card h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.hw-card p  { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   Installation Steps (dark brown background)
   ========================================================================== */
.features-section { padding: 100px 0; }
.dark-bg { background: var(--brown-deep); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.feature-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
}
.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--tan);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.feature-card p  { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section { padding: 100px 0; }
.toggle-container {
    display: inline-flex;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 24px;
}
.toggle-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    transition: all .2s;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
}
.toggle-btn.active { background: var(--brown); color: #fff; }

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-grid .pricing-card { flex: 0 1 262px; }
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 36px 32px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(46,22,8,.09); }
.pricing-card.highlight {
    border-color: var(--brown);
    background: var(--brown);
}
.pricing-card.highlight h3  { color: var(--tan); }
.pricing-card.highlight .target-audience,
.pricing-card.highlight .period { color: rgba(255,255,255,.65); }
.pricing-card.highlight .price-display { color: #fff; }
.pricing-card.highlight .currency { color: #fff; }
.pricing-card.highlight .feature-list li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pricing-card.highlight .feature-list li::before { color: var(--tan); }
.pricing-card.highlight .btn-primary { background: var(--tan); color: var(--brown-deep) !important; }
.pcard-summary { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; }
.pricing-card.highlight .pcard-summary { color: rgba(255,255,255,.72); }
.pricing-card.highlight .btn-primary:hover { background: var(--tan-light); }

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tan);
    color: var(--brown-deep);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-card h3 { font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.target-audience { font-size: 13px; color: var(--ink-soft); margin-bottom: 22px; }

.price-display { color: var(--brown); margin: 22px 0; line-height: 1; }
.currency { font-size: 20px; font-weight: 700; vertical-align: top; margin-top: 8px; display: inline-block; }
.amount   { font-size: 56px; font-weight: 900; line-height: 1; letter-spacing: -.04em; }
.period   { font-size: 14px; color: var(--ink-soft); font-weight: 500; display: block; margin-top: 4px; }

.feature-list { list-style: none; margin-bottom: 28px; }
.feature-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--ink);
    line-height: 1.4;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓  '; color: var(--tan); font-weight: 700; }

/* ==========================================================================
   Support Section
   ========================================================================== */
.support-section { padding: 80px 0; }
.support-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform .25s, box-shadow .25s;
}
.support-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(46,22,8,.07); }
.support-card.pro-support { border-color: var(--brown); }
.support-card h4 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.support-card > p { font-size: 14px; color: var(--ink-soft); margin-bottom: 16px; }
.support-card ul  { list-style: none; }
.support-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
}
.support-card ul li:last-child { border-bottom: none; }
.support-card ul li::before { content: '→  '; color: var(--tan); font-weight: 700; }

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}
.contact-card h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.contact-card a   { color: var(--brown); text-decoration: none; font-weight: 600; font-size: 15px; }
.contact-card a:hover { text-decoration: underline; }
.contact-card p   { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   CTA Band
   ========================================================================== */
.cta-band {
    background: var(--brown);
    padding: 80px 0;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(28px, 4vw, 50px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    margin-bottom: 14px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 32px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--brown-deep);
    padding: 72px 0 36px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,.38);
    line-height: 1.6;
    margin-top: 14px;
}
.footer-col h5 {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,.58);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 9px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--tan); }
.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p    { font-size: 12px; color: rgba(255,255,255,.28); margin: 0; }
.footer-bottom a    { font-size: 12px; color: rgba(255,255,255,.28); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Hamburger button ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
    flex-shrink: 0;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
}
/* X animation when open */
.navbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.navbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 992px) {
    /* Show hamburger, hide desktop nav */
    .nav-toggle { display: flex; }
    .nav-links { display: none; }

    /* Open state: slide down below navbar */
    .navbar.nav-open .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 64px);
        background: var(--cream-light);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 12px 20px 32px;
        z-index: 199;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    body.nav-open { overflow: hidden; }
    .navbar.nav-open .nav-links li { width: 100%; }
    .navbar.nav-open .nav-links a {
        display: block;
        padding: 10px 4px;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
    }
    .navbar.nav-open .nav-links li:last-child > a { border-bottom: none; }

    /* Hide desktop dropdown arrow on mobile */
    .nav-arrow { display: none; }

    /* Sub-dropdowns: hidden by default, expand on tap */
    .nav-dropdown,
    .nav-dropdown.nav-dropdown-wide {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        grid-template-columns: 1fr !important;
        min-width: unset !important;
        padding-top: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        padding-left: 12px;
    }
    .nav-dropdown::before { display: none !important; }
    .has-dropdown.open > .nav-dropdown { display: block !important; }
    .has-dropdown.open > a { color: var(--brown); font-weight: 700; }
    .nav-dropdown li a {
        font-size: 13.5px !important;
        padding: 8px 4px !important;
        border-radius: 0 !important;
        color: var(--ink-soft) !important;
    }
    .nav-section-header { display: none !important; }

    /* CTA buttons inline on mobile */
    .navbar.nav-open .nav-links .nav-cta,
    .navbar.nav-open .nav-links .nav-cta-outline {
        display: inline-block;
        width: auto;
        margin-top: 8px;
        text-align: center;
        padding: 10px 22px;
    }

    /* Basket on mobile */
    .basket-label { display: inline; }

    /* Layout */
    .showcase-content { grid-template-columns: 1fr; gap: 40px; }
    .showcase-content.reverse { }
    .hero-actions { justify-content: flex-start; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { max-width: 420px; }
    .pricing-grid .pricing-card { flex-basis: 100%; }
    .hero-h1 { font-size: 44px; }
    .features-section, .pricing-section, .support-section { padding: 70px 0; }
    .hero-section { padding: 48px 0 16px; }

    /* Store pages */
    .store-hero { padding: 28px 0 22px; }
    .store-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0;
    }
    .urun-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 0; }
    .kategori-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 24px 0; }
}

@media (max-width: 640px) {
    .grid-4 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .btn-row { flex-direction: column; align-items: flex-start; }
    .hero-section .btn-row { align-items: center; }
    .product-card { flex: 0 0 100%; }
    .showcase-image { height: 280px; }
    .hero-placeholder { height: 280px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .urun-grid { grid-template-columns: 1fr; }
    .kategori-grid { grid-template-columns: 1fr; }
}
