/* =========================================================
   akilligozluk.online — vitrin teması
   Eski telefon uyumu: flex gap yerine margin, inset yerine
   uzun yazım, aspect-ratio yerine padding-bottom yedeği,
   clamp() öncesi sabit değer.
   ========================================================= */

:root {
    --bg: #FFFFFF;
    --bg-2: #F5F7FB;
    --surface: #FFFFFF;
    --ink: #111318;
    --ink-2: #5B6270;
    --line: #E4E8EF;
    --brand: #1F3FE8;
    --brand-ink: #FFFFFF;
    --brand-soft: #EAF0FF;
    --sky-a: #EAF3FF;
    --sky-b: #CFE3FF;
    --sky-c: #F3E9FF;
    --good: #149A6B;
    --good-soft: #E3F7EE;
    --sale: #E0262B;
    --sale-soft: #FDE9E9;
    --warn: #B76E00;
    --warn-soft: #FFF1D6;
    --shadow: 0 24px 60px -28px rgba(17, 19, 24, .35);
    --display: 'Poppins', system-ui, -apple-system, sans-serif;
    --body: 'Manrope', system-ui, -apple-system, sans-serif;
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme="light"]) {
        --bg: #0C0E14;
        --bg-2: #12151E;
        --surface: #161A24;
        --ink: #F1F3F8;
        --ink-2: #A0A8B8;
        --line: #262B38;
        --brand: #5D7BFF;
        --brand-ink: #0C0E14;
        --brand-soft: #1A2350;
        --sky-a: #152039;
        --sky-b: #1B2A55;
        --sky-c: #231C45;
        --good: #3FD59F;
        --good-soft: #123527;
        --sale: #FF5A5F;
        --sale-soft: #3A1717;
        --warn: #F5B94A;
        --warn-soft: #3A2A0E;
        --shadow: 0 24px 60px -28px rgba(0, 0, 0, .8);
    }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: var(--body);
    font-size: 16px;
    line-height: 1.6;
    padding: 0 0 96px;
}

h1, h2, h3 { font-family: var(--display); line-height: 1.06; margin: 0; letter-spacing: -.03em; }
p { margin: 0; }
a { color: inherit; }
img, svg { max-width: 100%; }
ul { margin: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; padding: 0 clamp(16px, 4vw, 40px); }
.eyebrow { font: 700 12px/1 var(--body); letter-spacing: .16em; text-transform: uppercase; color: var(--brand); }
.muted { color: var(--ink-2); }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.big { font-size: 40px; font-size: clamp(30px, 5vw, 60px); font-weight: 800; }
.mid { font-size: 34px; font-size: clamp(26px, 4vw, 46px); font-weight: 800; }
.lead { font-size: 17px; max-width: 56ch; margin-top: 16px; color: var(--ink-2); }
.hidden { display: none !important; }

.chip { display: inline-block; background: var(--bg-2); border: 1px solid var(--line); border-radius: 999px; padding: 7px 13px; font: 700 12.5px var(--body); }
.tags { display: flex; flex-wrap: wrap; margin-top: 18px; }
.tags > * { margin: 0 8px 8px 0; }

.pill { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 12px; font: 800 12px var(--body); }
.pill-good { background: var(--good-soft); color: var(--good); }
.pill-sale { background: var(--sale); color: #fff; }
.pill-warn { background: var(--warn-soft); color: var(--warn); }
.pillrow { display: flex; flex-wrap: wrap; }
.pillrow > * { margin: 0 8px 8px 0; }

.photo { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- duyuru + üst bar ---------- */
.announce {
    background: var(--sale); color: #fff; text-align: center;
    font: 800 13px var(--body); letter-spacing: .03em; padding: 10px 16px;
}
.announce b { background: #fff; color: var(--sale); border-radius: 6px; padding: 2px 8px; margin: 0 4px; }

.header { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.logo {
    font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -.04em;
    text-decoration: none; display: flex; align-items: center; color: var(--ink);
}
.logo b { font-weight: 800; color: var(--brand); }
.logo-mark {
    width: 11px; height: 11px; border-radius: 3px; background: var(--brand);
    transform: rotate(45deg); display: inline-block; margin-right: 10px; font-style: normal;
}
.topnav { display: flex; font: 700 14px var(--body); }
.topnav a { text-decoration: none; color: var(--ink-2); margin-right: 24px; }
.topnav a:last-child { margin-right: 0; }
.topnav a:hover { color: var(--ink); }
@media (max-width: 880px) { .topnav { display: none; } }

.btn-cta {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--sale); color: #fff; border: 0; border-radius: 14px;
    padding: 15px 26px; font: 800 15px var(--body); text-decoration: none; cursor: pointer;
    transition: transform .15s, filter .15s;
}
.btn-cta i { margin-right: 8px; }
.btn-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }
.header-cta { padding: 11px 18px; font-size: 14px; border-radius: 12px; }
.pulse { animation: cta-pulse 2.4s ease-in-out infinite; }
@keyframes cta-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 38, 43, .45); }
    50% { box-shadow: 0 0 0 14px rgba(224, 38, 43, 0); }
}

/* ---------- kayan şerit ---------- */
.scrolling-banner {
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    padding: 11px 0; margin-bottom: 22px;
}
.scrolling-content { display: inline-block; animation: ticker 34s linear infinite; }
.scrolling-content span { margin: 0 26px; font: 800 13px var(--body); letter-spacing: .05em; color: var(--ink-2); text-transform: uppercase; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); grid-gap: 36px; gap: 36px; align-items: start; padding: 4px 0 28px; }
.hero > * { min-width: 0; }
@media (max-width: 960px) { .hero { grid-template-columns: 1fr; } }

.slider {
    position: relative; width: 100%; border-radius: 26px; overflow: hidden;
    box-shadow: var(--shadow); background: #0B0D13; color: #fff;
    height: 0; padding-bottom: 80%;
}
@supports (aspect-ratio: 1/1) { .slider { height: auto; padding-bottom: 0; aspect-ratio: 5/4; } }

.slide { position: absolute; top: 0; right: 0; bottom: 0; left: 0; opacity: 0; transition: opacity .9s ease; pointer-events: none; }
.slide.on { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; display: block; }
.slide[data-banner] img { object-fit: contain; object-position: 50% 50%; }
.slide::after {
    content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 45%, rgba(0, 0, 0, .7) 100%);
}
.slide[data-banner]::after { display: none; }

.cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 26px 26px; z-index: 2; }
.cap .k { display: block; font: 800 11.5px var(--body); letter-spacing: .18em; text-transform: uppercase; color: #9FB4FF; margin-bottom: 8px; }
.cap h2 { font-size: 28px; font-size: clamp(22px, 3vw, 36px); font-weight: 800; color: #fff; max-width: 14ch; }
.cap p { font: 600 14.5px/1.5 var(--body); color: rgba(255, 255, 255, .85); max-width: 44ch; margin-top: 8px; }
.cap .tags { margin-top: 10px; }
.cap .tags span {
    border: 1px solid rgba(255, 255, 255, .4); border-radius: 999px; padding: 5px 11px;
    font: 800 11.5px var(--body); color: #fff;
}

.badge { position: absolute; top: 20px; left: 20px; z-index: 3; display: flex; transition: opacity .4s ease; }
.badge span { background: #fff; color: #111318; border-radius: 999px; padding: 7px 13px; font: 800 12px var(--body); margin-right: 8px; }
.badge span:last-child { margin-right: 0; }
.badge .s { background: var(--sale); color: #fff; }
.slider.banner-on .badge { opacity: 0; pointer-events: none; }

.dots { position: absolute; right: 20px; top: 20px; z-index: 3; display: flex; }
.dots button { width: 32px; height: 4px; border: 0; border-radius: 2px; background: rgba(255, 255, 255, .35); cursor: pointer; padding: 0; overflow: hidden; position: relative; margin-right: 6px; }
.dots button:last-child { margin-right: 0; }
.dots button i { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: #fff; transform: scaleX(0); transform-origin: left; }
.dots button.on i { animation: dot-fill 6s linear forwards; }
@keyframes dot-fill { to { transform: scaleX(1); } }

.arrows { position: absolute; bottom: 24px; right: 20px; z-index: 3; display: flex; transition: bottom .3s ease, right .3s ease; }
.arrows button {
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .45);
    background: rgba(0, 0, 0, .28); color: #fff; font-size: 18px; cursor: pointer; margin-right: 8px;
}
.arrows button:last-child { margin-right: 0; }
.arrows button:hover { background: #fff; color: #111; }
.slider.banner-on .arrows { bottom: 9px; right: 11px; }
.slider.banner-on .arrows button { width: 34px; height: 34px; font-size: 15px; background: rgba(0, 0, 0, .45); }

.hero-content h1 { font-size: 26px; font-size: clamp(22px, 2.6vw, 31px); font-weight: 800; line-height: 1.16; margin: 10px 0 0; }
.rating { display: flex; align-items: center; font: 700 13px var(--body); color: var(--ink-2); margin: 10px 0 14px; }
.rating .stars { color: #F5A623; letter-spacing: 2px; margin-right: 10px; }
.rating a { color: var(--brand); }

.dealbox {
    background: linear-gradient(135deg, var(--sale), #B3121A); color: #fff; border-radius: 20px;
    padding: 18px 20px; display: block;
}
.dealbox .pct {
    display: inline-block; background: rgba(255, 255, 255, .22); border-radius: 999px;
    padding: 5px 13px; font: 800 13px var(--body); letter-spacing: .02em; margin-bottom: 10px;
}
.dealbox .now { font: 800 36px/1.05 var(--display); font-size: clamp(30px, 4vw, 42px); letter-spacing: -.03em; }
.dealbox .was { font: 700 14px var(--body); opacity: .9; margin-top: 4px; }
.dealbox .was s { margin-right: 8px; }
.dealbox .save {
    background: rgba(255, 255, 255, .18); border-radius: 10px; padding: 8px 12px; margin-top: 12px;
    font: 800 13px var(--body); display: flex; justify-content: space-between;
}
.dealbox .save > * { margin-right: 10px; }
.dealbox .save > *:last-child { margin-right: 0; text-align: right; }

.timer {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--warn-soft); color: var(--warn); border-radius: 12px;
    padding: 10px 14px; font: 800 13px var(--body); margin-top: 12px;
}
.timer i { margin-right: 6px; }
.timer b { font: 800 18px var(--display); letter-spacing: .02em; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 10px; gap: 10px; margin: 14px 0; }
.benefit { display: flex; align-items: center; background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 11px 13px; font: 700 13.5px var(--body); }
.benefit i { color: var(--brand); margin-right: 10px; width: 18px; text-align: center; }

.hero-content .btn-cta { width: 100%; margin: 4px 0 14px; }

.ship { background: var(--bg-2); border-radius: 14px; padding: 14px 16px; font: 600 13.5px var(--body); color: var(--ink-2); }
.ship div { display: flex; align-items: flex-start; margin-bottom: 8px; }
.ship div:last-child { margin-bottom: 0; }
.ship i { color: var(--good); margin-right: 10px; margin-top: 4px; width: 18px; text-align: center; }
.ship b { color: var(--ink); }

/* ---------- bölümler ---------- */
section { padding: 48px 0; }

.story { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 40px; gap: 40px; align-items: center; }
@media (max-width: 880px) { .story { grid-template-columns: 1fr; } }

.pic { border-radius: 26px; min-height: 460px; position: relative; overflow: hidden; box-shadow: var(--shadow); background: var(--bg-2); }
.pic .photo { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }
.pic .frame { position: absolute; top: 24px; right: 24px; bottom: 24px; left: 24px; border: 2px solid rgba(255, 255, 255, .7); border-radius: 16px; }
.pic .frame b { position: absolute; width: 24px; height: 24px; border: 3px solid #fff; border-radius: 4px; }
.pic .frame b:nth-child(1) { top: -3px; left: -3px; border-right: 0; border-bottom: 0; }
.pic .frame b:nth-child(2) { top: -3px; right: -3px; border-left: 0; border-bottom: 0; }
.pic .frame b:nth-child(3) { bottom: -3px; left: -3px; border-right: 0; border-top: 0; }
.pic .frame b:nth-child(4) { bottom: -3px; right: -3px; border-left: 0; border-top: 0; }
.hud { position: absolute; font: 800 12px var(--body); letter-spacing: .12em; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, .6); }
.hud-tr { top: 44px; right: 44px; }
.hud-bl { bottom: 44px; left: 44px; }
.rec { position: absolute; top: 40px; left: 44px; display: flex; align-items: center; font: 800 13px var(--body); letter-spacing: .14em; color: #fff; text-shadow: 0 1px 4px rgba(0, 0, 0, .6); }
.rec i { width: 11px; height: 11px; border-radius: 50%; background: #FF3B3B; box-shadow: 0 0 0 4px rgba(255, 59, 59, .3); margin-right: 8px; animation: rec-blink 1.2s infinite; }
@keyframes rec-blink { 50% { opacity: .25; } }
@media (max-width: 880px) { .pic { min-height: 340px; } }

.panel-sky {
    background: linear-gradient(120deg, var(--sky-a), var(--sky-b) 55%, var(--sky-c));
    border-radius: 30px; padding: 34px 24px; padding: clamp(26px, 5vw, 54px); margin: 24px 0;
}
.panel-sky h2 { text-align: center; }
.panel-sky .lead { text-align: center; color: var(--ink-2); }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 16px; gap: 16px; margin-top: 32px; }
@media (max-width: 860px) { .features-grid { grid-template-columns: 1fr; } }
.feature-card { background: var(--surface); border-radius: 20px; padding: 26px 24px; box-shadow: 0 10px 30px -22px rgba(17, 19, 24, .4); }
.feature-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--brand); color: var(--brand-ink); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.feature-text h3 { font-size: 19px; margin: 15px 0 8px; }
.feature-text p { font-size: 15px; color: var(--ink-2); }

.duo { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 20px; gap: 20px; }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }
.duo > div { border-radius: 30px; padding: 30px; padding: clamp(24px, 4vw, 46px); min-height: 500px; position: relative; overflow: hidden; }
.talk { background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; }
.talk h2 { font-size: 32px; font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; margin-top: 10px; }
.talk .muted { margin-top: 12px; max-width: 40ch; }
.convo { margin-top: 26px; }
.bubble { border-radius: 18px 18px 18px 6px; padding: 12px 16px; max-width: 84%; font: 600 14.5px/1.45 var(--body); background: var(--bg-2); margin-bottom: 10px; }
.bubble small { display: block; font: 800 10.5px var(--body); letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 4px; }
.bubble.me { border-radius: 18px 18px 6px 18px; background: var(--brand); color: var(--brand-ink); margin-left: auto; }
.bubble.me small { color: inherit; opacity: .78; }
.deep { color: #fff; padding: 0 !important; display: flex; flex-direction: column; justify-content: flex-end; }
.deep .photo { position: absolute; top: 0; right: 0; bottom: 0; left: 0; object-position: 80% 50%; }
.deep::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: linear-gradient(180deg, rgba(11, 21, 70, .05) 20%, rgba(11, 21, 70, .92) 100%); }
.deep .txt { position: relative; z-index: 2; padding: 30px; padding: clamp(24px, 4vw, 46px); }
.deep h2 { font-size: 34px; font-size: clamp(28px, 4vw, 50px); font-weight: 800; }
.deep p { margin-top: 14px; max-width: 44ch; color: rgba(255, 255, 255, .86); }
.langs { position: absolute; top: 26px; left: 26px; z-index: 2; display: flex; flex-wrap: wrap; max-width: 72%; }
.langs span { background: rgba(255, 255, 255, .9); color: #111318; border-radius: 999px; padding: 5px 11px; font: 800 11.5px var(--body); margin: 0 8px 8px 0; }

.wear { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 40px; gap: 40px; align-items: center; }
@media (max-width: 880px) { .wear { grid-template-columns: 1fr; } }
.wear .pic { min-height: 560px; }
@media (max-width: 880px) { .wear .pic { min-height: 400px; } }
.wear .card {
    position: absolute; left: 24px; right: 24px; bottom: 24px;
    background: rgba(255, 255, 255, .93); color: #111318; border-radius: 18px; padding: 15px 18px;
    display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 10px; gap: 10px;
}
.wear .card div { font: 700 12px var(--body); color: #5B6270; }
.wear .card b { display: block; font: 800 20px var(--display); color: #111318; letter-spacing: -.02em; }

.specgrid { display: grid; grid-template-columns: repeat(2, 1fr); grid-gap: 12px; gap: 12px; margin-top: 28px; }
@media (max-width: 640px) { .specgrid { grid-template-columns: 1fr; } }
.specgrid div { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 15px 18px; font: 700 15px var(--body); }
.specgrid i { width: 36px; height: 36px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-right: 14px; flex: none; }

.boxsection .mid { margin-top: 8px; }
.box { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 14px; gap: 14px; margin-top: 28px; }
@media (max-width: 820px) { .box { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .box { grid-template-columns: 1fr; } }
.box > div { background: var(--bg-2); border-radius: 18px; padding: 20px; font: 600 14px var(--body); color: var(--ink-2); }
.box b { display: block; font: 800 17px var(--display); color: var(--ink); margin-bottom: 6px; letter-spacing: -.02em; }
.box .free { background: var(--good-soft); }
.box .free b { color: var(--good); }
.box .img { grid-column: 1/-1; padding: 0; overflow: hidden; position: relative; height: 0; padding-bottom: 40.17%; background: var(--bg-2); }
@supports (aspect-ratio: 1/1) { .box .img { height: auto; padding-bottom: 0; aspect-ratio: 1800/723; } }
.box .img .photo { position: absolute; top: 0; right: 0; bottom: 0; left: 0; }

/* ---------- SSS ---------- */
.faq .acc { max-width: 840px; margin: 22px auto 0; }
.acc details { border-top: 1px solid var(--line); padding: 14px 0; }
.acc details:last-child { border-bottom: 1px solid var(--line); }
.acc summary { cursor: pointer; font: 800 15px var(--body); list-style: none; display: flex; justify-content: space-between; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-family: var(--display); font-size: 20px; color: var(--brand); line-height: 1; margin-left: 12px; }
.acc details[open] summary::after { content: "–"; }
.acc p { margin-top: 8px; font-size: 14.5px; color: var(--ink-2); max-width: 66ch; }
.no-details details > * { display: none; }
.no-details details > summary { display: flex; }
.no-details details.is-open > * { display: block; }
.no-details details.is-open > summary { display: flex; }

/* ---------- bilgi kartları / kampanya ---------- */
.info-sections { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 18px; gap: 18px; margin: 10px 0 30px; }
@media (max-width: 880px) { .info-sections { grid-template-columns: 1fr; } }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 26px 24px; }
.info-card h3 { font-size: 20px; margin-bottom: 14px; }
.info-card h3 i { color: var(--brand); margin-right: 8px; }
.info-card ul { list-style: none; padding: 0; }
.info-card li { position: relative; padding-left: 22px; margin-bottom: 10px; font-size: 14.5px; color: var(--ink-2); }
.info-card li::before { content: "✓"; position: absolute; left: 0; color: var(--good); font-weight: 800; }
.info-card li strong { color: var(--ink); }

.campaign-note {
    display: flex; align-items: flex-start; background: var(--warn-soft); color: var(--ink);
    border-radius: 18px; padding: 18px 20px; margin: 10px 0 34px; font: 600 15px var(--body);
}
.campaign-note i { color: var(--warn); font-size: 20px; margin-right: 14px; margin-top: 3px; }
.gift-highlight { color: var(--sale); font-weight: 800; }

/* ---------- sipariş bölümü ---------- */
.order-section {
    background: var(--surface); border: 1px solid var(--line); border-radius: 30px;
    padding: 28px 22px; padding: clamp(22px, 4vw, 44px); box-shadow: var(--shadow); margin-bottom: 34px;
}
.section-title { font-size: 28px; font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; text-align: center; }

.progress-steps { display: flex; justify-content: center; margin: 26px 0 22px; }
.step {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%; background: var(--bg-2); color: var(--ink-2);
    font: 800 15px var(--body); margin: 0 34px 0 0; position: relative;
}
.step:last-child { margin-right: 0; }
.step::after { content: ""; position: absolute; left: 100%; top: 50%; width: 34px; height: 2px; background: var(--line); }
.step:last-child::after { display: none; }
.step.active { background: var(--brand); color: var(--brand-ink); }
.step-label { position: absolute; top: 46px; white-space: nowrap; font: 700 11.5px var(--body); color: var(--ink-2); }
.progress-steps { padding-bottom: 22px; }

.live-stats { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 10px; gap: 10px; margin: 26px 0 22px; }
.live-stats .stat { background: var(--bg-2); border-radius: 16px; padding: 14px 10px; text-align: center; }
.live-stats .stat i { color: var(--brand); font-size: 15px; }
.live-stats .count { font: 800 24px var(--display); letter-spacing: -.02em; }
.live-stats .label { font: 700 11.5px var(--body); color: var(--ink-2); }

/* paketler */
.packages { display: grid; grid-gap: 12px; gap: 12px; margin-bottom: 18px; }
.package { border: 2px solid var(--line); border-radius: 18px; padding: 16px; cursor: pointer; position: relative; transition: border-color .15s, background .15s; background: var(--surface); }
.package.has-label { padding-top: 26px; }
.package.selected { border-color: var(--brand); background: var(--brand-soft); }
.package-label-stack { position: absolute; top: -12px; left: 16px; display: flex; }
.package-label-stack > * { margin-right: 8px; }
.package-ribbon { background: var(--brand); color: var(--brand-ink); border-radius: 999px; padding: 5px 12px; font: 800 11.5px var(--body); }
.package-discount { background: var(--sale); color: #fff; border-radius: 999px; padding: 5px 12px; font: 800 11.5px var(--body); }
.package-content { display: flex; align-items: center; }
.package-radio {
    width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--line); flex: none;
    display: flex; align-items: center; justify-content: center; margin-right: 14px;
    font-size: 13px; font-weight: 800; color: var(--brand-ink);
}
.package.selected .package-radio { background: var(--brand); border-color: var(--brand); }
.package-details { flex: 1; min-width: 0; }
.package-title { font: 800 15.5px var(--body); }
.package-badge { background: var(--good-soft); color: var(--good); border-radius: 999px; padding: 3px 9px; font: 800 11px var(--body); margin-left: 8px; }
.package-desc { font: 600 13px var(--body); color: var(--ink-2); margin-top: 3px; }
.package-meta { font: 700 12.5px var(--body); color: var(--ink-2); margin-top: 6px; }
.package-list { list-style: none; padding: 0; margin: 4px 0 0; }
.package-list li { position: relative; padding-left: 16px; }
.package-list li::before { content: "•"; position: absolute; left: 0; color: var(--brand); }
.package-price { text-align: right; margin-left: 12px; flex: none; }
.price-main { font: 800 19px var(--display); letter-spacing: -.02em; color: var(--sale); }
.price-old { font: 700 12.5px var(--body); color: var(--ink-2); text-decoration: line-through; }

/* varyasyonlar */
.variation-section { margin-bottom: 20px; }
.variation-group { margin-bottom: 16px; }
.variation-group-header { display: flex; justify-content: space-between; align-items: center; }
.variation-counter { font: 700 12.5px var(--body); color: var(--ink-2); }
.variation-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); grid-gap: 10px; gap: 10px; margin-top: 10px; }
.variation-card { border: 2px solid var(--line); border-radius: 16px; padding: 12px; text-align: center; background: var(--surface); }
.variation-card.selected { border-color: var(--brand); background: var(--brand-soft); }
.variation-image-wrap { margin-bottom: 8px; }
.variation-image { width: 100%; height: 76px; object-fit: cover; border-radius: 10px; display: block; }
.variation-image-placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg-2); font: 800 24px var(--display); color: var(--ink-2); }
.variation-name { font: 800 12.5px var(--body); }
.variation-actions { display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.variation-btn { width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line); background: var(--bg-2); color: var(--ink); font-size: 15px; cursor: pointer; }
.variation-qty { min-width: 30px; text-align: center; font: 800 14px var(--body); }

/* form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 14px; gap: 14px; margin-bottom: 8px; }
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-group.full { grid-column: 1/-1; }
.form-label { display: block; font: 800 13.5px var(--body); margin: 12px 0 6px; }
.input-wrapper { position: relative; }
.input-icon { position: absolute; left: 14px; top: 17px; color: var(--ink-2); font-size: 14px; }
.form-input {
    width: 100%; font: 600 15px var(--body); padding: 14px 14px 14px 40px;
    border: 1.5px solid var(--line); border-radius: 12px; background: var(--bg-2); color: var(--ink);
}
.form-input:focus { outline: none; border-color: var(--brand); }
textarea.form-input { min-height: 92px; resize: vertical; padding-top: 14px; }
.form-select { appearance: none; -webkit-appearance: none; }
.select-wrapper::after { content: "▾"; position: absolute; right: 16px; top: 14px; color: var(--ink-2); pointer-events: none; }
.input-error { border-color: var(--sale) !important; background: var(--sale-soft) !important; }
.error-text { color: var(--sale); font: 700 12.5px var(--body); margin-top: 5px; }
.help-text { color: var(--ink-2); font: 600 12.5px var(--body); margin-top: 5px; }
.cargo-note, .address-format-note { display: flex; align-items: flex-start; background: var(--bg-2); border-radius: 12px; padding: 12px 14px; font: 600 13px var(--body); color: var(--ink-2); margin-bottom: 10px; }
.cargo-note i, .address-format-note i { color: var(--brand); margin-right: 10px; margin-top: 3px; }

.payment-options { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 12px; gap: 12px; margin-bottom: 8px; }
@media (max-width: 560px) { .payment-options { grid-template-columns: 1fr; } }
.payment-option { border: 2px solid var(--line); border-radius: 16px; padding: 16px; text-align: center; cursor: pointer; background: var(--surface); }
.payment-option.selected { border-color: var(--brand); background: var(--brand-soft); }
.payment-icon { font-size: 20px; color: var(--brand); }
.payment-name { font: 800 14.5px var(--body); margin-top: 6px; }
.cargo-option-desc { font: 600 12.5px var(--body); color: var(--ink-2); margin-top: 2px; }

.payment-box { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; margin-bottom: 14px; }
.payment-box-header { display: flex; align-items: center; background: var(--good-soft); color: var(--good); padding: 13px 16px; font: 800 14px var(--body); }
.payment-box-icon { margin-right: 10px; }
.payment-box-body { padding: 14px 16px; }
.payment-box-row { display: flex; align-items: flex-start; font: 600 13.5px var(--body); color: var(--ink-2); margin-bottom: 8px; }
.payment-box-row:last-child { margin-bottom: 0; }
.payment-box-row i { color: var(--good); margin-right: 10px; margin-top: 3px; }

.submit-btn {
    width: 100%; border: 0; border-radius: 16px; background: var(--sale); color: #fff;
    padding: 18px 24px; font: 800 17px var(--body); cursor: pointer; margin-top: 12px;
    transition: transform .15s, filter .15s;
}
.submit-btn i { margin-right: 8px; }
.submit-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.submit-btn.ready-to-submit { background: var(--good); animation: cta-pulse 2.4s ease-in-out infinite; }

/* ---------- yorumlar ---------- */
.reviews-section { padding: 46px 0; }
.reviews-header { text-align: center; margin-bottom: 26px; }
.reviews-header h2 { font-size: 30px; font-size: clamp(24px, 3.4vw, 42px); font-weight: 800; }
.reviews-header h2 i { color: #F5A623; margin-right: 8px; }
.stars-overview { font: 700 14px var(--body); color: var(--ink-2); margin-top: 8px; }
.stars-overview .rating { display: inline; font: 800 18px var(--display); color: var(--ink); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-gap: 14px; gap: 14px; }
@media (max-width: 880px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; padding: 20px; box-shadow: 0 10px 30px -26px rgba(17, 19, 24, .5); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.reviewer-name { font: 800 14px var(--body); }
.review-date { font: 600 12px var(--body); color: var(--ink-2); }
.review-stars { color: #F5A623; font-size: 12.5px; letter-spacing: 1px; }
.review-text { font: 600 14.5px/1.6 var(--body); color: var(--ink); }
.review-images { display: flex; flex-wrap: wrap; margin-top: 10px; }
.review-image { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; margin: 0 8px 8px 0; }
.reviews-show-more { text-align: center; margin-top: 22px; }
.btn-show-all-reviews, .btn-close-modal {
    border: 1.5px solid var(--line); background: var(--surface); color: var(--ink);
    border-radius: 14px; padding: 14px 26px; font: 800 14.5px var(--body); cursor: pointer;
}
.btn-show-all-reviews i, .btn-close-modal i { margin-right: 8px; color: var(--brand); }
.btn-show-all-reviews:hover { border-color: var(--brand); }

.reviews-modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; background: rgba(8, 10, 16, .6); z-index: 90; display: none; padding: 20px; }
.reviews-modal.visible { display: block; }
.reviews-modal-content { background: var(--bg); border-radius: 22px; max-width: 900px; margin: 20px auto; max-height: 86vh; overflow: auto; }
.reviews-modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--line); position: sticky; position: -webkit-sticky; top: 0; background: var(--bg); }
.reviews-modal-header h3 { font-size: 20px; }
.reviews-modal-close { border: 0; background: var(--bg-2); color: var(--ink); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 16px; }
.reviews-modal-grid { display: grid; grid-template-columns: 1fr 1fr; grid-gap: 14px; gap: 14px; padding: 20px 24px; }
@media (max-width: 720px) { .reviews-modal-grid { grid-template-columns: 1fr; } }
.reviews-modal-footer { text-align: center; padding: 0 24px 24px; }

/* ---------- alt bar / popup / footer ---------- */
.stick {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; background: var(--surface);
    border-top: 1px solid var(--line); padding: 11px 16px; box-shadow: 0 -12px 40px -26px rgba(0, 0, 0, .55);
    transition: transform .25s ease;
}
.stick.hidden { display: block !important; transform: translateY(110%); }
.stick-in { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.stick-info strong { display: block; font: 800 14px var(--body); }
.stick-p { display: flex; align-items: baseline; }
.stick-p .price { font: 800 21px var(--display); color: var(--sale); letter-spacing: -.02em; margin-right: 8px; }
.stick-p s { font: 700 13px var(--body); color: var(--ink-2); }
@media (max-width: 600px) { .stick-info strong { display: none; } }

.sales-popup {
    position: fixed; left: 16px; bottom: 96px; z-index: 60; display: none;
    background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
    padding: 10px 14px; box-shadow: var(--shadow); max-width: 300px;
}
.sales-popup.visible { display: flex; align-items: center; }
.popup-image { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; margin-right: 12px; }
.popup-content p { font: 800 13.5px var(--body); margin: 0; }
.popup-content span { font: 600 12px var(--body); color: var(--ink-2); }

.footer { border-top: 1px solid var(--line); padding: 28px 0 10px; text-align: center; color: var(--ink-2); font: 600 13.5px var(--body); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.footer-link { color: var(--ink-2); text-decoration: none; margin: 0 14px 8px 0; font-weight: 700; }
.footer-link:hover { color: var(--brand); }

/* ---------- sözleşme sayfaları ---------- */
.policy-page { background: var(--bg-2); }
.policy-header { border-bottom: 1px solid var(--line); margin-bottom: 22px; }
.policy-logo { text-decoration: none; }
.policy-logo i { color: var(--brand); margin-right: 10px; }
.policy-back-link { text-decoration: none; font: 800 13.5px var(--body); color: var(--brand); }
.policy-page-card { background: var(--surface); border: 1px solid var(--line); border-radius: 22px; padding: 28px 24px; padding: clamp(22px, 4vw, 44px); }
.policy-page-title { font-size: 28px; font-size: clamp(24px, 3.4vw, 38px); font-weight: 800; margin-bottom: 18px; }
.policy-page-content { font-size: 15px; color: var(--ink-2); }
.policy-page-content h2, .policy-page-content h3 { color: var(--ink); margin: 26px 0 10px; font-size: 19px; }
.policy-page-content p, .policy-page-content li { margin-bottom: 10px; }
.policy-page-content table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.policy-page-content td, .policy-page-content th { border: 1px solid var(--line); padding: 10px 12px; text-align: left; font-size: 14px; }
.footer-business-info { margin-bottom: 14px; font-size: 13px; }
.footer-business-info strong { color: var(--ink); }
.policy-footer { text-align: center; }

/* ---------- sipariş tamamlandı ---------- */
.success-card { background: var(--surface); border: 1px solid var(--line); border-radius: 26px; padding: 30px 24px; padding: clamp(24px, 4vw, 46px); margin: 26px 0; box-shadow: var(--shadow); }
.success-header { text-align: center; margin-bottom: 22px; }
.success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--good-soft); color: var(--good); display: flex; align-items: center; justify-content: center; font-size: 30px; margin: 0 auto 16px; }
.success-title { font-size: 28px; font-size: clamp(24px, 3.4vw, 36px); font-weight: 800; }
.success-subtitle { color: var(--ink-2); margin-top: 8px; }
.order-summary, .info-section { background: var(--bg-2); border-radius: 18px; padding: 20px; margin-bottom: 14px; }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font: 600 14.5px var(--body); }
.summary-row:last-child { border-bottom: 0; }
.product-card { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; padding: 14px; margin-bottom: 10px; }
.product-details { flex: 1; min-width: 0; }
.product-name { font: 800 15px var(--body); }
.product-variation, .product-quantity { font: 600 13px var(--body); color: var(--ink-2); }
.product-price { font: 800 17px var(--display); color: var(--sale); }
.info-item { display: flex; align-items: flex-start; font: 600 14px var(--body); color: var(--ink-2); margin-bottom: 10px; }
.info-icon { color: var(--brand); margin-right: 10px; margin-top: 3px; }
.js-whatsapp-confirm { display: inline-flex; align-items: center; justify-content: center; background: #25D366; color: #fff; border-radius: 14px; padding: 15px 26px; font: 800 15px var(--body); text-decoration: none; }

/* ---------- hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
    .scrolling-content, .dots button.on i, .rec i, .pulse { animation: none; }
    html { scroll-behavior: auto; }
}
