/* ============================================================
   lastiklicarsaf.pro — bağımsız "sıcak butik" tasarım sistemi (4. iterasyon)
   Fildişi zemin + espresso metin + terracotta vurgu; Bodoni Moda (display) + Figtree (body).
   Diğer iki siteden (style.css/theme-comtr.css) tamamen bağımsız;
   bu dosya tek başına ana sayfa + sipariş + takip + teşekkür
   sayfalarının tümünü stiller.
   Yükleme: <link rel="stylesheet" href="assets/css/pro.css?v=20260820-pro6">
   ============================================================ */

/* ── Tokenler ── */
:root {
    --paper: #faf7f2;
    --card: #ffffff;
    --cream: #f5eee1;
    --cream-deep: #efe4d0;
    --ink: #241a12;
    --ink-soft: #4a3d31;
    --muted: #8a7a68;
    --line: #e9e0d2;
    --clay: #b4552d;
    --clay-deep: #93411f;
    --clay-tint: #f9ede4;
    --dark: #201710;
    --gold: #d99a6c;
    --font-display: "Bodoni Moda", "Times New Roman", Georgia, serif;
    --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-num: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif; /* sayılar: 800 + tabular */
    --shadow-soft: 0 18px 44px -22px rgba(36, 26, 18, 0.28);
    --shadow-card: 0 8px 22px -14px rgba(36, 26, 18, 0.22);
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
}

/* ── Taban ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    margin: 0 0 0.4em;
    letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--clay); color: #fff; }

:focus-visible {
    outline: 2px solid var(--clay);
    outline-offset: 2px;
    border-radius: 4px;
}

.container {
    width: min(1160px, 100% - 48px);
    margin-inline: auto;
}

.section { padding: 84px 0; }

/* ── Reveal animasyonu ── */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ── Duyuru şeridi (ana sayfa) ── */
.announce {
    background: var(--dark);
    color: var(--cream);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.announce-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clay);
    animation: announce-pulse 1.8s ease-in-out infinite;
    flex: none;
}
@keyframes announce-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.78); }
}

/* ── Üst bar (ana sayfa) / site başlığı (iç sayfalar) ── */
.topbar, .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(250, 247, 242, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.topbar-inner, .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--cream);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 17px;
    display: grid;
    place-items: center;
    letter-spacing: 0.02em;
    flex: none;
}
.brand-mark--light {
    background: transparent;
    border: 1px solid rgba(245, 238, 225, 0.45);
    color: var(--cream);
}
.brand-copy { display: flex; flex-direction: column; line-height: 1.2; }
.brand-copy strong {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
}
.brand-copy small {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px;
}
.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.brand-text strong { font-size: 15px; font-weight: 700; }
.brand-text small { font-size: 11px; color: var(--muted); }

.topnav {
    display: flex;
    gap: 26px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
}
.topnav a { transition: color 0.2s ease; }
.topnav a:hover { color: var(--clay); }

.topbar-actions, .header-action {
    display: inline-flex;
    align-items: center;
    gap: 18px;
}
.topbar-tel {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}

/* ── Butonlar ── */
.cta, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.cta:active, .button:active { transform: translateY(1px); }

.cta-primary, .button-primary { background: var(--clay); color: #fff; }
.cta-primary:hover, .button-primary:hover { background: var(--clay-deep); color: #fff; }

.cta-outline, .button-outline {
    background: transparent;
    border-color: var(--ink);
    color: var(--ink);
}
.cta-outline:hover, .button-outline:hover {
    background: var(--ink);
    color: var(--cream);
}

.button-soft {
    background: var(--cream);
    border-color: var(--line);
    color: var(--ink);
}
.button-soft:hover { border-color: var(--clay); color: var(--clay); }

.cta-lg, .button-large { padding: 15px 30px; font-size: 16px; }
.cta-xl { padding: 18px 38px; font-size: 17px; }
.cta-cream { background: var(--cream); color: var(--ink); }
.cta-cream:hover { background: #fff; color: var(--ink); }
.cta-text {
    padding: 0;
    color: var(--clay);
    font-weight: 700;
    border-radius: 0;
}
.cta-text:hover { color: var(--clay-deep); }
.full { width: 100%; }

/* ── Hero ── */
.hero { padding: 72px 0 88px; overflow: hidden; }
.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--clay-tint);
    border: 1px solid rgba(180, 85, 45, 0.22);
    color: var(--clay-deep);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 7px 15px;
    border-radius: 999px;
    margin: 0 0 22px;
}
.pulse-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clay);
    animation: announce-pulse 1.8s ease-in-out infinite;
    flex: none;
}

.hero h1 {
    font-size: clamp(42px, 5.2vw, 66px);
    margin-bottom: 20px;
}
.hero h1 em {
    font-style: italic;
    color: var(--clay);
}
.hero-lead {
    font-size: 17.5px;
    color: var(--ink-soft);
    max-width: 46ch;
    margin-bottom: 26px;
}

.hero-count {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--dark);
    border-radius: var(--radius-md);
    padding: 14px 22px;
    box-shadow: var(--shadow-card);
    margin-bottom: 26px;
}
.hero-count-cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 52px;
}
.hero-count-cell b {
    font-family: var(--font-num);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--cream);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.hero-count-cell small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(245, 238, 225, 0.55);
    margin-top: 4px;
}
.hero-count-sep {
    font-family: var(--font-num);
    font-size: 22px;
    font-weight: 800;
    color: var(--gold);
    padding-bottom: 16px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.hero-facts {
    display: flex;
    gap: 36px;
}
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts strong {
    font-family: var(--font-num);
    font-size: 24px;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.hero-facts span {
    font-size: 12.5px;
    color: var(--muted);
    letter-spacing: 0.03em;
}

/* Hero görsel kompozisyonu */
.hero-visual { position: relative; max-width: 520px; margin-inline: auto; width: 100%; }
.hero-photo {
    aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--card);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s ease;
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-photo.is-tilting { transition: none; }

.hero-mini {
    position: absolute;
    left: -34px;
    bottom: -30px;
    width: 138px;
    height: 138px;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid var(--paper);
    box-shadow: var(--shadow-soft);
    margin: 0;
}
.hero-mini img { width: 100%; height: 100%; object-fit: cover; }

.hero-price-chip {
    position: absolute;
    top: 24px;
    right: -26px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 14px 20px;
    text-align: left;
}
.hero-price-chip small {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.hero-price-chip strong {
    font-family: var(--font-num);
    font-size: 30px;
    font-weight: 800;
    color: var(--clay);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.hero-price-chip strong span { font-size: 15px; color: var(--ink-soft); }
.hero-price-chip em {
    display: block;
    font-style: normal;
    font-size: 11px;
    color: var(--muted);
    max-width: 17ch;
}

.hero-ship-chip {
    position: absolute;
    top: -13px;
    left: 26px;
    background: var(--ink);
    color: var(--cream);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 7px 15px;
    border-radius: 999px;
}

/* ── Güven şeridi ── */
.trust-strip {
    border-block: 1px solid var(--line);
    background: var(--card);
    padding: 16px 0;
}
.trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px 22px;
}
.trust-strip span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
}
.trust-strip i { color: var(--clay); font-style: normal; }

/* ── Bölüm başlıkları ── */
.section-head { max-width: 640px; margin-bottom: 42px; }
.section-index {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    margin: 0 0 12px;
}
.section-head h2 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head p { font-size: 16px; color: var(--muted); }

.eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--clay);
    margin: 0 0 10px;
}

/* ── Ürün mozaiği ── */
.product { background: linear-gradient(180deg, var(--paper) 0%, #f6f0e6 100%); }
.product-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 225px;
    gap: 14px;
}
.pm {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--card);
    margin: 0;
}
.pm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pm:hover img { transform: scale(1.04); }
.pm figcaption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 26px 16px 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(32, 23, 16, 0.82) 100%);
    color: var(--cream);
    font-size: 12.5px;
    line-height: 1.4;
}
.pm figcaption span {
    display: block;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.pm-main { grid-column: span 2; grid-row: span 2; }

.pm-note {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 36px;
    align-items: center;
    background: var(--cream);
    border: 1px solid var(--cream-deep);
    padding: 26px 32px;
}
.pm-note-index {
    grid-column: 1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clay);
    margin: 0;
}
.pm-note h3 {
    grid-column: 1;
    font-size: 22px;
    margin: 2px 0 0;
}
.pm-note ul {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 32px;
}
.pm-note li {
    font-size: 13.5px;
    color: var(--ink-soft);
}
.pm-note li strong { color: var(--ink); font-size: 14.5px; }
.pm-note .cta-text { grid-column: 2; justify-self: end; white-space: nowrap; }

/* ��─ Fiyat kademeleri ── */
.tier-table {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.tier-row {
    display: grid;
    grid-template-columns: 1fr auto 175px 160px;
    gap: 22px;
    align-items: center;
    padding: 24px 28px;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s ease;
}
.tier-row:last-child { border-bottom: none; }
.tier-row:hover { background: rgba(245, 238, 225, 0.55); }

.tier-row--featured {
    background: var(--cream);
    box-shadow: inset 4px 0 0 var(--clay);
}
.tier-info strong {
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.tier-combos {
    font-size: 13.5px;
    color: var(--muted);
    margin: 0;
}

/* sütun yerleşimi — "en çok seçilen" etiketi olmayan satırlarda da fiyat/buton hizası sabit kalır */
.tier-info { grid-column: 1; }
.tier-note { grid-column: 2; align-self: center; }
.tier-price { grid-column: 3; }
.tier-order { grid-column: 4; }

.tier-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--ink);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.tier-row:hover .tier-order {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--cream);
}
.tier-row--featured .tier-order {
    background: var(--clay);
    border-color: var(--clay);
    color: #fff;
}
.tier-row--featured:hover .tier-order {
    background: var(--clay-deep);
    border-color: var(--clay-deep);
}

.tier-note {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--clay-deep);
    background: var(--clay-tint);
    border: 1px solid rgba(180, 85, 45, 0.25);
    border-radius: 999px;
    padding: 4px 12px;
    white-space: nowrap;
}

.tier-price { text-align: right; }
.tier-price small {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 2px;
}
.tier-price strong {
    font-family: var(--font-num);
    font-size: 34px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--clay);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}

/* ── Beden şeridi ── */
.specs-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    margin-top: 18px;
    overflow: hidden;
}
.specs-strip > div {
    padding: 18px 20px;
    border-right: 1px solid var(--line);
}
.specs-strip > div:last-child { border-right: none; }
.specs-strip strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
}
.specs-strip span { font-size: 13px; color: var(--muted); }

/* ── Yorumlar ── */
.quotes-rail {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.quote {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 26px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.stars {
    color: var(--clay);
    font-size: 15px;
    letter-spacing: 3px;
}
.quote blockquote {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--ink-soft);
    flex: 1;
}
.quote figcaption {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 14px;
    display: grid;
    place-items: center;
    flex: none;
}
.quote figcaption strong { display: block; font-size: 14px; }
.quote figcaption small { font-size: 12px; color: var(--muted); }

/* ─�� Süreç ── */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.steps li {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 24px;
}
.steps b {
    display: block;
    font-family: var(--font-num);
    font-size: 26px;
    font-weight: 800;
    color: var(--clay);
    line-height: 1;
    margin-bottom: 12px;
    font-variant-numeric: tabular-nums;
}
.steps strong { display: block; font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.steps p { font-size: 13.5px; color: var(--muted); margin: 0; }
.steps--warn {
    background: var(--clay-tint);
    border-color: rgba(180, 85, 45, 0.3);
}
.steps--warn b { color: var(--clay-deep); }

/* ── SSS ── */
.faq-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: start;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-item.active { border-color: rgba(180, 85, 45, 0.4); }
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
    padding: 17px 20px;
}
.faq-question b {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--clay);
    line-height: 1;
    flex: none;
}
.faq-answer {
    display: none;
    font-size: 14.5px;
    color: var(--ink-soft);
    padding: 0 20px 18px;
}
.faq-item.active .faq-answer { display: block; }

/* ── Kapanış CTA ── */
.last-cta-panel {
    background: var(--dark);
    border-radius: 26px;
    padding: 52px 56px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
}
.last-cta-kicker {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
}
.last-cta-panel h2 {
    color: var(--cream);
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 10px;
}
.last-cta-panel p { color: rgba(245, 238, 225, 0.66); font-size: 15.5px; margin: 0; }

/* ── Footer ── */
.foot {
    background: var(--dark);
    color: var(--cream);
    padding-top: 64px;
    margin-top: 84px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 2.1fr 1fr 1fr 1.7fr;
    gap: 44px;
    padding-bottom: 48px;
}
.foot .brand-copy strong { color: var(--cream); }
.foot .brand-copy small { color: rgba(245, 238, 225, 0.45); }
.foot-tagline {
    font-size: 14px;
    color: rgba(245, 238, 225, 0.62);
    max-width: 36ch;
    margin: 18px 0 22px;
}
.foot-contact { display: flex; flex-direction: column; gap: 10px; }
.foot-contact a, .foot-contact span {
    font-size: 14px;
    color: rgba(245, 238, 225, 0.85);
    display: inline-flex;
    align-items: center;
    gap: 9px;
}
.foot-contact a:hover { color: #fff; }
.foot-contact b {
    color: var(--gold);
    font-weight: 600;
    width: 18px;
    text-align: center;
}
.foot-col h3 {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 238, 225, 0.45);
    margin-bottom: 16px;
}
.foot-col a {
    display: block;
    font-size: 14px;
    color: rgba(245, 238, 225, 0.78);
    padding: 5px 0;
    transition: color 0.2s ease;
}
.foot-col a:hover { color: #fff; }
.foot-pay li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(245, 238, 225, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.foot-pay li:last-child { border-bottom: none; }
.foot-pay b { font-size: 14px; font-weight: 700; color: var(--cream); }
.foot-pay span { font-size: 12.5px; color: rgba(245, 238, 225, 0.5); }

.foot-bottom {
    border-top: 1px solid rgba(245, 238, 225, 0.14);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.foot-bottom small { font-size: 12.5px; color: rgba(245, 238, 225, 0.42); }
.foot-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.foot-badges span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(245, 238, 225, 0.72);
    border: 1px solid rgba(245, 238, 225, 0.25);
    border-radius: 999px;
    padding: 5px 13px;
}

/* ============================================================
   İÇ SAYFALAR (siparis-ver / takip / tesekkurler)
   ============================================================ */

/* Duyuru (iç sayfa) */
.announcement {
    background: var(--dark);
    color: var(--cream);
    font-size: 13px;
}
.announcement-copy { padding: 10px 0; }
.announcement-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
}
.announcement-countdown span { opacity: 0.55; padding: 0 2px; }

/* Sipariş sayfası */
.section-shell { padding: 48px 0 88px; }
.section-heading { max-width: 620px; margin-bottom: 34px; }
.section-heading h1 { font-size: clamp(30px, 3.6vw, 42px); }
.section-heading p { color: var(--muted); font-size: 15.5px; }

.order-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 26px;
    align-items: start;
}

.order-form {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
}
.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-section {
    border: none;
    margin: 0 0 28px;
    padding: 0;
}
.form-section:last-child { margin-bottom: 0; }
.form-section legend {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--clay);
    padding: 0;
    margin-bottom: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-grid label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}

.order-form input[type="text"],
.order-form input[type="tel"],
.order-form textarea,
.track-form input {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.order-form input::placeholder,
.order-form textarea::placeholder,
.track-form input::placeholder { color: #b3a695; }
.order-form input:focus,
.order-form textarea:focus,
.track-form input:focus {
    outline: none;
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(180, 85, 45, 0.14);
}
.order-form textarea { resize: vertical; }

.custom-select-wrap { position: relative; display: block; }
.custom-select-wrap select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 40px 12px 14px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom-select-wrap select:focus {
    outline: none;
    border-color: var(--clay);
    box-shadow: 0 0 0 3px rgba(180, 85, 45, 0.14);
}
.custom-select-wrap select:disabled { color: #b3a695; cursor: not-allowed; }
.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--muted);
    pointer-events: none;
}

/* Ödeme seçenekleri */
.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.payment-option input { accent-color: var(--clay); width: 18px; height: 18px; flex: none; }
.payment-option strong { display: block; font-size: 14.5px; }
.payment-option small { font-size: 12.5px; color: var(--muted); }
.payment-option:hover { border-color: rgba(180, 85, 45, 0.45); }
.payment-option:has(input:checked) {
    border-color: var(--clay);
    background: var(--clay-tint);
}

/* Fiyat rehberi + beden seçici */
.size-hint { font-size: 13px; color: var(--muted); margin: -6px 0 14px; }
.pricing-guide {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 18px;
}
.pricing-guide__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 13.5px;
}
.pricing-guide__row:last-child { border-bottom: none; }
.pricing-guide__row span { color: var(--ink-soft); }
.pricing-guide__row strong {
    font-family: var(--font-num);
    font-weight: 800;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.size-selector { display: flex; flex-direction: column; gap: 10px; }
.size-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}
.size-row > span { font-size: 14px; font-weight: 600; }
.size-row > span small { display: block; font-weight: 400; font-size: 11.5px; color: var(--muted); }
.stepper {
    display: flex;
    align-items: center;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    flex: none;
}
.size-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    font-size: 19px;
    font-weight: 600;
    color: var(--clay);
    cursor: pointer;
    transition: background 0.15s ease;
}
.size-btn:hover { background: var(--cream); }
.size-btn.minus { border-right: 1px solid var(--line); }
.size-btn.plus { border-left: 1px solid var(--line); }
.stepper input {
    width: 46px;
    height: 40px;
    border: none;
    background: transparent;
    text-align: center;
    font-family: var(--font-num);
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    font-variant-numeric: tabular-nums;
    -moz-appearance: textfield;
    appearance: textfield;
}
.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.size-total { font-size: 14px; color: var(--ink-soft); margin: 14px 0 0; }
.size-total strong { color: var(--clay); font-size: 15px; }
.form-error {
    font-size: 13.5px;
    color: #b3261e;
    margin: 10px 0 0;
}
.form-error:empty { display: none; }

/* Sipariş özeti kartı */
.summary-card {
    position: sticky;
    top: 96px;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.summary-card > img { width: 100%; aspect-ratio: 1 / 0.9; object-fit: cover; }
.summary-content { padding: 24px; }
.summary-content h3 { font-size: 23px; margin: 4px 0 14px; }
.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--line);
}
.summary-line span { color: var(--muted); }
.summary-line strong { font-weight: 700; }
.summary-total {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 0 4px;
    font-size: 15px;
    font-weight: 700;
    border-top: 2px solid var(--ink);
    margin-top: 8px;
}
.summary-total strong {
    font-family: var(--font-num);
    font-size: 27px;
    font-weight: 800;
    color: var(--clay);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.01em;
}
.summary-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 14px 0 18px;
}
.summary-trust span {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 4px 11px;
}

/* Takip / Teşekkür sayfaları */
.track-page, .thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}
.track-card, .thanks-card {
    width: min(640px, 100%);
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 44px;
    text-align: center;
    box-shadow: var(--shadow-card);
}
.track-card h1, .thanks-card h1 { font-size: clamp(26px, 3vw, 34px); }
.track-brand { justify-content: center; margin-bottom: 22px; }
.track-lead { color: var(--muted); font-size: 14.5px; }
.track-form {
    display: flex;
    gap: 10px;
    margin: 24px 0 4px;
}
.track-form input { flex: 1; }
.track-error { text-align: left; }
.track-result { margin-top: 26px; text-align: left; }
.track-status {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clay-deep);
    background: var(--clay-tint);
    border: 1px solid rgba(180, 85, 45, 0.25);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.track-details { font-size: 14.5px; }
.track-details > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 1px dashed var(--line);
}
.track-details > div:last-child { border-bottom: none; }
.track-details span { color: var(--muted); }
.track-note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
}
.track-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}
.thanks-actions { margin-top: 26px; }

/* Sunucu uyarıları */
.server-alert {
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    margin: 14px 0;
}
.server-alert-info {
    background: var(--clay-tint);
    border: 1px solid rgba(180, 85, 45, 0.3);
    color: var(--clay-deep);
}

/* ── Mobil sabit sipariş çubuğu ── */
.sticky-cta {
    display: none;
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    z-index: 50;
    background: var(--card);
    border-top: 1px solid var(--line);
    box-shadow: 0 -10px 28px -14px rgba(36, 26, 18, 0.35);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}
.sticky-cta-info small {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.sticky-cta-info strong {
    font-family: var(--font-num);
    font-size: 22px;
    font-weight: 800;
    color: var(--clay);
    line-height: 1.15;
    font-variant-numeric: tabular-nums;
}
.sticky-cta-info strong span { font-size: 13px; color: var(--ink-soft); font-weight: 600; }

/* ── Duyarlılık ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 64px; }
    .hero-visual { max-width: 480px; }
    .hero-price-chip { right: 10px; }
    .product-mosaic { grid-template-columns: repeat(2, 1fr); }
    .pm-main { grid-column: span 2; }
    .pm-note { grid-column: 1 / -1; grid-template-columns: 1fr; }
    .pm-note ul { grid-column: 1; grid-template-columns: 1fr; }
    .pm-note .cta-text { grid-column: 1; justify-self: start; }
    .quotes-rail { grid-template-columns: 1fr; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; gap: 24px; }
    .order-layout { grid-template-columns: 1fr; }
    .summary-card { position: static; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .topnav, .topbar-tel { display: none; }
    .sticky-cta { display: flex; }
    body { padding-bottom: 92px; }
    .section, .hero { padding: 56px 0; }
    .tier-row {
        grid-template-columns: 1fr auto;
        gap: 8px 16px;
        padding: 20px;
    }
    .tier-price {
        grid-row: 1;
        grid-column: 2;
        align-self: center;
    }
    .tier-note { grid-column: 1; grid-row: 2; justify-self: start; }
    .tier-order { grid-column: 1 / -1; grid-row: 3; }
    .specs-strip { grid-template-columns: repeat(2, 1fr); }
    .specs-strip > div { border-bottom: 1px solid var(--line); }
    .specs-strip > div:nth-child(2n) { border-right: none; }
    .specs-strip > div:last-child { border-bottom: none; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .last-cta-panel {
        grid-template-columns: 1fr;
        padding: 36px 28px;
    }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    .foot { padding-top: 48px; }
    .hero-mini { left: -12px; width: 108px; height: 108px; }
    .hero-price-chip { top: 12px; right: -8px; padding: 11px 15px; }
    .hero-price-chip strong { font-size: 26px; }
    .hero-facts { gap: 24px; flex-wrap: wrap; }
    .form-grid, .form-grid.compact, .payment-options { grid-template-columns: 1fr; }
    .order-form { padding: 22px 18px; }
    .track-card, .thanks-card { padding: 32px 24px; }
    .track-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .announce-dot, .pulse-dot { animation: none; }
    .pm img, .cta, .button { transition: none; }
}
