/* Alila Shop — vitrin stilleri */
:root {
  --ink: #1c1917;
  --ink-2: #44403c;
  --muted: #57534e;
  --line: #e7e5e4;
  --line-2: #d6d3d1;
  --bg: #ffffff;
  --bg-soft: #f7f6f3;
  --bg-side: #f2f1ee;
  --sand: #efebe4;
  --cta: #177a45;
  --cta-hover: #12663a;
  --cta-soft: #e8f3ec;
  --gold: #a16207;
  --danger: #b91c1c;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(28, 25, 23, .06), 0 8px 24px rgba(28, 25, 23, .06);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); font-size: 16px; line-height: 1.55; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h1, h2 { font-family: var(--serif); font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 6px; z-index: 100; }
.skip:focus { left: 8px; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.container.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.muted-sm { color: var(--muted); font-size: 13px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 600; color: var(--muted); margin-bottom: 14px; }
.section { padding: 64px 0; }
.page-title { font-size: clamp(32px, 5vw, 44px); margin-bottom: 24px; }
.i { flex-shrink: 0; }

/* ---------- Butonlar ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 0 22px; border-radius: var(--radius); border: 1px solid var(--line-2); background: #fff; font-weight: 600; font-size: 15px; text-decoration: none; cursor: pointer; transition: background .2s var(--ease), color .2s, border-color .2s, transform .1s; }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-dark { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-cta { background: var(--cta); border-color: var(--cta); color: #fff; }
.btn-cta:hover { background: var(--cta-hover); }
.btn-line { background: transparent; }
.btn-line:hover { border-color: var(--ink); }
.btn-soft { background: var(--line); border-color: var(--line); color: var(--ink-2); }
.btn-soft:hover { background: var(--line-2); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: 14px; }
.btn-lg { min-height: 56px; font-size: 17px; }
.btn-block { width: 100%; }
.btn.loading { pointer-events: none; opacity: .75; }
.btn.loading::after { content: ""; width: 16px; height: 16px; border: 2px solid currentColor; border-right-color: transparent; border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.icon-btn { background: none; border: 0; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer; border-radius: 50%; }
.icon-btn:hover { background: var(--bg-soft); }
.link-sm { background: none; border: 0; padding: 0; font-size: 13px; color: var(--muted); text-decoration: underline; cursor: pointer; }
.link-arrow { font-weight: 600; text-decoration: none; border-bottom: 1px solid currentColor; }

/* ---------- Üst bant & header ---------- */
.topbar { background: var(--ink); color: #f5f5f4; font-size: 13px; overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { display: inline-flex; gap: 28px; white-space: nowrap; padding: 9px 0; animation: marquee 40s linear infinite; }
.marquee-track .dot { opacity: .5; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.logo img { height: 40px; width: auto; }
.main-nav { display: flex; gap: 32px; font-size: 14px; font-weight: 500; }
.main-nav a { text-decoration: none; padding: 8px 0; border-bottom: 1px solid transparent; transition: border-color .2s; }
.main-nav a:hover { border-color: var(--ink); }
.cart-btn { position: relative; background: none; border: 0; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer; border-radius: 50%; }
.cart-btn:hover { background: var(--bg-soft); }
.cart-count { position: absolute; top: 3px; right: 1px; min-width: 19px; height: 19px; padding: 0 5px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; }
.cart-count.bump { animation: bump .35s var(--ease); }
@keyframes bump { 50% { transform: scale(1.35); } }
.site-header.minimal { position: static; }
.site-header.minimal .header-row { max-width: 1100px; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(180deg, var(--bg-soft), #fff); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 40px; min-height: 560px; padding-top: 40px; padding-bottom: 40px; }
.hero h1 { font-size: clamp(40px, 5.6vw, 68px); font-weight: 600; margin-bottom: 20px; }
.hero .lead { font-size: 18px; color: var(--ink-2); max-width: 520px; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin: 28px 0; }
.hero-offer { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--cta); background: var(--cta-soft); padding: 10px 14px; border-radius: 999px; }
.hero-trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; color: var(--muted); }
.hero-trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero-visual { position: relative; height: 480px; }
.hero-disc { position: absolute; inset: 6% 4%; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #fff 0%, var(--sand) 55%, #e3ddd2 100%); }
.hero-p { position: absolute; width: 56%; filter: drop-shadow(0 24px 30px rgba(28, 25, 23, .18)); animation: float 7s ease-in-out infinite; }
.hero-p.hp0 { left: 22%; top: 14%; z-index: 3; width: 60%; }
.hero-p.hp1 { left: -2%; top: 38%; z-index: 2; width: 44%; animation-delay: -2s; }
.hero-p.hp2 { right: -4%; top: 34%; z-index: 1; width: 46%; animation-delay: -4s; }
@keyframes float { 50% { transform: translateY(-10px); } }

.bundle-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.bundle-strip-grid { display: grid; grid-template-columns: repeat(3, auto) 1fr; gap: 12px 40px; align-items: center; padding-top: 22px; padding-bottom: 22px; }
.bundle-strip-grid div { display: flex; flex-direction: column; }
.bundle-strip-grid strong { font-family: var(--serif); font-size: 24px; font-weight: 600; }
.bundle-strip-grid span { font-size: 13px; color: var(--muted); }
.bundle-strip-grid .hl span, .bundle-strip-grid .hl2 span { color: var(--cta); font-weight: 600; }
.bundle-strip-grid p { margin: 0; font-size: 14px; color: var(--muted); text-align: right; }

/* ---------- Ürün kartları ---------- */
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(32px, 4vw, 44px); margin: 0; }
.section-head p { margin: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.p-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: #fff; transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.p-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.p-media { position: relative; display: block; aspect-ratio: 1; background: var(--bg-soft); }
.p-media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .4s var(--ease); }
.p-card:hover .p-media img { transform: scale(1.04); }
.badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; padding: 5px 9px; border-radius: 6px; }
.p-body { display: flex; flex-direction: column; flex: 1; padding: 16px 16px 18px; }
.p-body h3 { font-size: 17px; font-weight: 600; margin: 0 0 4px; }
.p-body h3 a { text-decoration: none; }
.p-sub { font-size: 13px; color: var(--muted); margin: 0 0 8px; line-height: 1.4; min-height: 36px; }
.p-rating { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin-bottom: 6px; }
.p-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.p-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.p-price strong { font-size: 18px; }
.p-price s { color: var(--muted); font-size: 14px; }
.p-deal { font-size: 12.5px; color: var(--cta); margin: 4px 0 12px; }
.p-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; }

.stars { display: inline-flex; gap: 1px; vertical-align: middle; }
.stars .on { color: #d4a017; }
.stars .on svg { fill: currentColor; }
.stars .off { color: var(--line-2); }

/* ---------- Özellikler ---------- */
.features { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.feature h3 { font-size: 17px; margin: 14px 0 6px; font-family: var(--sans); font-weight: 600; }
.feature p { color: var(--muted); font-size: 14px; margin: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.about-grid h2 { font-size: clamp(30px, 4vw, 42px); }
.about-grid p { color: var(--ink-2); font-size: 17px; }

/* ---------- SSS / akordeon ---------- */
.faq { margin-top: 28px; border-top: 1px solid var(--line); }
.faq details, .accordion details { border-bottom: 1px solid var(--line); }
.faq summary, .accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; cursor: pointer; font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker, .accordion summary::-webkit-details-marker { display: none; }
.faq summary .i, .accordion summary .i { transition: transform .25s var(--ease); }
.faq details[open] summary .i-plus { transform: rotate(45deg); }
.accordion details[open] summary .i-chevron { transform: rotate(180deg); }
.faq details p { color: var(--ink-2); padding-bottom: 18px; margin: 0; }

/* ---------- Ürün detayı ---------- */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: var(--muted); padding: 18px 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: start; padding-bottom: 48px; }
.pdp-gallery { position: sticky; top: 96px; }
.pdp-main { position: relative; aspect-ratio: 1; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; }
.pdp-main img { width: 100%; height: 100%; object-fit: contain; padding: 28px; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.thumb { width: 76px; height: 76px; padding: 4px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-soft); cursor: pointer; }
.thumb.active { border-color: var(--ink); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.pdp-info h1 { font-size: clamp(34px, 4vw, 46px); margin-bottom: 6px; }
.pdp-sub { color: var(--muted); margin-bottom: 10px; }
.pdp-rating { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 10px; }
.pdp-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 12px; margin: 8px 0 18px; }
.pdp-price strong { font-size: 28px; font-weight: 700; }
.pdp-price s { color: var(--muted); font-size: 17px; }
.checks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 8px; }
.checks li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.checks .i { color: var(--cta); margin-top: 3px; }

.bundles { border: 0; padding: 0; margin: 0 0 16px; display: grid; gap: 10px; }
.bundles legend { font-weight: 600; font-size: 14px; margin-bottom: 10px; padding: 0; }
.bundle { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 16px 16px; border: 1.5px solid var(--line-2); border-radius: 12px; cursor: pointer; transition: border-color .2s, background .2s; }
.bundle:hover { border-color: var(--ink-2); }
.bundle.selected { border-color: var(--ink); background: #fcfcfb; box-shadow: 0 0 0 1px var(--ink); }
.bundle input { position: absolute; opacity: 0; pointer-events: none; }
.bundle input:focus-visible + .radio { outline: 2px solid var(--ink); outline-offset: 2px; }
.radio { width: 20px; height: 20px; border-radius: 50%; border: 1.5px solid var(--line-2); display: grid; place-items: center; background: #fff; }
.selected .radio, .pay-opt input:checked + .radio { border-color: var(--ink); }
.selected .radio::after, .pay-opt input:checked + .radio::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.b-main { display: flex; flex-direction: column; gap: 2px; }
.b-title { font-weight: 700; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.b-off { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--cta); background: var(--cta-soft); padding: 3px 7px; border-radius: 5px; }
.b-note { font-size: 13px; color: var(--muted); }
.b-price { text-align: right; display: flex; flex-direction: column; }
.b-price strong { font-size: 16px; }
.b-price s { font-size: 12.5px; color: var(--muted); }
.b-flag { position: absolute; top: -10px; right: 14px; background: var(--ink); color: #fff; font-size: 11px; font-weight: 600; padding: 3px 8px; border-radius: 5px; }
.b-flag.best { background: var(--cta); }
.buy-actions { display: grid; gap: 10px; }
.pdp-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 22px 0 14px; }
.pdp-trust div { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; font-weight: 600; padding: 12px; background: var(--bg-soft); border-radius: var(--radius); }
.pdp-trust span { display: flex; flex-direction: column; }
.pdp-trust small { font-weight: 400; color: var(--muted); font-size: 12px; }
.pdp-cards { display: flex; justify-content: center; margin-bottom: 20px; }
.accordion { border-top: 1px solid var(--line); }
.accordion details > *:not(summary) { margin-bottom: 18px; }
.accordion p { color: var(--ink-2); font-size: 15px; }
.ing-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.ing-table td { padding: 9px 0; border-bottom: 1px dashed var(--line); }
.ing-table td:last-child { text-align: right; font-weight: 600; white-space: nowrap; padding-left: 12px; }
.ing-table .head th { text-align: left; padding: 14px 0 6px; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.plain { list-style: none; padding: 0; margin: 0 0 18px; display: grid; gap: 6px; font-size: 15px; color: var(--ink-2); }
.prose { font-size: 17px; color: var(--ink-2); }
.prose h2 { font-size: 30px; color: var(--ink); margin-top: 1.4em; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 6px; }
.pdp-desc { background: var(--bg-soft); }

.rev-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.rev-head h2 { font-size: 34px; }
.rev-head p { display: flex; align-items: center; gap: 8px; margin: 0; }
.review-form { display: grid; gap: 12px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); margin-bottom: 24px; }
.rating-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.rating-input input { position: absolute; opacity: 0; }
.rating-input label { color: var(--line-2); cursor: pointer; }
.rating-input label svg { fill: currentColor; }
.rating-input input:checked ~ label, .rating-input label:hover, .rating-input label:hover ~ label { color: #d4a017; }
.rating-input input:focus-visible + label { outline: 2px solid var(--ink); border-radius: 4px; }
.hp { position: absolute; left: -9999px; }
.rev { padding: 18px 0; border-bottom: 1px solid var(--line); }
.rev-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.rev p { margin: 0; color: var(--ink-2); }

.others h2 { font-size: 34px; margin-bottom: 20px; }
.h-scroll { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 220px); gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
.mini-card { scroll-snap-align: start; text-decoration: none; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 12px; display: flex; flex-direction: column; gap: 6px; transition: box-shadow .2s; }
.mini-card:hover { box-shadow: var(--shadow); }
.mini-card img { aspect-ratio: 1; object-fit: contain; background: var(--bg-soft); border-radius: var(--radius); padding: 10px; }
.mc-name { font-size: 14px; font-weight: 600; }
.mc-price { font-size: 14px; color: var(--muted); }

.sticky-buy { display: none; }

/* ---------- Form alanları (yüzen etiket) ---------- */
.field { position: relative; margin-bottom: 12px; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 22px 14px 8px; border: 1px solid var(--line-2); border-radius: var(--radius); font: inherit; font-size: 15.5px; background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.field textarea { resize: vertical; padding-top: 26px; }
.field label { position: absolute; left: 15px; top: 17px; font-size: 15px; color: var(--muted); pointer-events: none; transition: all .15s var(--ease); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field.select label { top: 7px; font-size: 12px; }
.field.select select { padding-right: 40px; cursor: pointer; }
.field.select .i { position: absolute; right: 14px; top: 19px; pointer-events: none; color: var(--muted); }
.field select:disabled { background: var(--bg-soft); color: var(--muted); cursor: not-allowed; }
.field-icon { position: absolute; right: 14px; top: 17px; color: var(--muted); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field-err { color: var(--danger); font-size: 13px; margin: -6px 0 12px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 12px; }
.check { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; cursor: pointer; margin: 6px 0 12px; line-height: 1.4; }
.check input { position: absolute; opacity: 0; }
.check .box { flex-shrink: 0; width: 20px; height: 20px; border: 1.5px solid var(--line-2); border-radius: 5px; background: #fff; display: grid; place-items: center; margin-top: 0; transition: background .15s, border-color .15s; }
.check input:checked + .box { background: var(--ink); border-color: var(--ink); }
.check input:checked + .box::after { content: ""; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.check input:focus-visible + .box { outline: 2px solid var(--ink); outline-offset: 2px; }
.check.invalid .box { border-color: var(--danger); }
.check a { text-decoration: underline; }
.alert { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: 12px 14px; border-radius: var(--radius); font-size: 14px; margin-bottom: 18px; }

/* ---------- Ödeme sayfası ---------- */
.checkout-page { background: #fff; }
.checkout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - 73px); }
.co-main { border-right: 1px solid var(--line); display: flex; justify-content: flex-end; }
.co-side { background: var(--bg-side); display: flex; justify-content: flex-start; }
.co-inner { width: 100%; max-width: 580px; padding: 40px 40px 48px; }
.co-side .co-inner { position: sticky; top: 0; align-self: flex-start; }
.co-form section { margin-bottom: 30px; }
.co-form h2 { font-family: var(--sans); font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.co-form h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.ship-box { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px; border: 1.5px solid var(--ink); border-radius: var(--radius); background: var(--bg-soft); font-weight: 700; font-size: 14.5px; }
.ship-box small { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.pay-methods { border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.pay-opt { position: relative; display: flex; align-items: center; gap: 12px; padding: 16px; cursor: pointer; border-bottom: 1px solid var(--line); }
.pay-opt:has(input:checked) { background: var(--bg-soft); box-shadow: inset 0 0 0 1.5px var(--ink); border-radius: var(--radius) var(--radius) 0 0; }
.pay-opt input { position: absolute; opacity: 0; }
.po-title { font-weight: 700; font-size: 15px; flex: 1; }
.pay-detail { display: flex; gap: 12px; padding: 16px; background: var(--bg-soft); font-size: 14px; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.pay-detail p { margin: 0; }
.pay-detail .i { color: var(--cta); margin-top: 2px; }
.terms { margin: 4px 0 18px; }
.secure-note { display: flex; justify-content: center; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); margin-top: 12px; }
.co-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 13px; }
.co-links a { text-decoration: underline; color: var(--ink-2); }
.corp { margin-bottom: 8px; }
.note-toggle summary { cursor: pointer; font-size: 14px; color: var(--ink-2); text-decoration: underline; margin: 6px 0 12px; list-style: none; }
.co-mobile-sum { display: none; }
.back-link { display: inline-flex; align-items: center; gap: 4px; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 16px; }
.deliver-to { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 22px; font-size: 14px; }
.deliver-to div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
.deliver-to div:last-child { border: 0; }
.deliver-to small { color: var(--muted); font-size: 13px; }
.paytr-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

/* Özet */
.sum-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.sum-thumb { position: relative; width: 64px; height: 64px; border: 1px solid var(--line-2); border-radius: var(--radius); background: #fff; }
.sum-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 5px; border-radius: var(--radius); }
.sum-qty { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; padding: 0 6px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; border-radius: 11px; display: grid; place-items: center; }
.sum-name { display: flex; flex-direction: column; gap: 3px; font-size: 14.5px; }
.sum-disc { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; color: var(--muted); letter-spacing: .02em; }
.sum-price { text-align: right; font-size: 14.5px; display: flex; flex-direction: column; white-space: nowrap; }
.sum-price s { color: var(--muted); font-size: 12.5px; }
.stepper { display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }
.stepper button:not(.link-sm) { width: 30px; height: 30px; border: 1px solid var(--line-2); background: #fff; border-radius: 7px; display: grid; place-items: center; cursor: pointer; }
.stepper button:not(.link-sm):hover { border-color: var(--ink); }
.stepper span { min-width: 26px; text-align: center; font-weight: 600; font-size: 14px; }
.stepper .link-sm { margin-left: 10px; }
.upsell { margin-top: 8px; background: var(--cta-soft); color: var(--cta); border: 1px dashed #9fcfb2; border-radius: 8px; padding: 7px 10px; font-size: 12.5px; text-align: left; cursor: pointer; }
.upsell:hover { background: #dcefe3; }
.coupon { margin: 22px 0; }
.coupon-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.coupon-row .field { margin: 0; }
.coupon-row .btn { min-height: 54px; }
.coupon-on { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--cta); }
.coupon .field-err { margin-top: 8px; }
.sum-totals .row { display: flex; justify-content: space-between; font-size: 14.5px; margin-bottom: 8px; }
.sum-totals .row.total { margin-top: 16px; font-size: 20px; font-weight: 700; }
.sum-totals .row.total strong { font-size: 22px; }
.save-total { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; letter-spacing: .03em; margin-top: 6px; color: var(--cta); }
.empty-cart .i { margin: 0 auto 12px; color: var(--muted); }

.done-card { text-align: center; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 28px; }
.done-icon { width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--cta); color: #fff; display: grid; place-items: center; }
.done-icon.fail { background: var(--danger); }
.done-card h1 { font-size: 38px; }
.done-card .lead { color: var(--ink-2); }
.order-no { font-size: 18px; }
.done-items { text-align: left; max-width: 460px; margin: 22px auto 14px; border-top: 1px solid var(--line); padding-top: 12px; }
.done-items .row { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: 15px; }
.done-items .row.total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 12px; font-size: 17px; }
.done-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.bank-box { text-align: left; background: var(--bg-soft); border-radius: var(--radius); padding: 18px; margin: 18px auto; max-width: 460px; }
.track-form { max-width: 420px; margin: 0 auto 24px; }
.track-result { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.steps { list-style: none; padding: 0; margin: 20px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; font-size: 13px; text-align: center; color: var(--muted); }
.steps li span { display: block; height: 4px; background: var(--line); border-radius: 2px; margin-bottom: 8px; }
.steps li.done { color: var(--ink); font-weight: 600; }
.steps li.done span { background: var(--cta); }

/* ---------- Kart logoları ---------- */
.cards { display: inline-flex; gap: 5px; align-items: center; }
.card { display: inline-grid; place-items: center; width: 40px; height: 26px; border-radius: 4px; font-size: 10px; font-weight: 800; letter-spacing: .02em; border: 1px solid var(--line); background: #fff; }
.c-visa { background: #1a1f71; color: #fff; border-color: #1a1f71; font-style: italic; font-size: 11px; }
.c-mc { position: relative; background: #fff; grid-auto-flow: column; }
.c-mc i { width: 14px; height: 14px; border-radius: 50%; background: #eb001b; display: block; }
.c-mc i + i { background: #f79e1b; margin-left: -6px; mix-blend-mode: multiply; }
.c-troy { color: #00a0a8; font-size: 11px; text-transform: lowercase; }
.c-amex { background: #2e77bc; color: #fff; border-color: #2e77bc; font-size: 9px; }

/* ---------- Footer ---------- */
.site-footer { background: #171412; color: #d6d3d1; padding: 56px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h3 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--sans); }
.site-footer a { display: flex; align-items: center; gap: 8px; text-decoration: none; font-size: 14px; padding: 4px 0; color: #d6d3d1; }
.site-footer a:hover { color: #fff; }
.f-brand img { height: 50px; width: auto; margin-bottom: 16px; }
.f-brand p { font-size: 14px; color: #a8a29e; max-width: 320px; }
.social { width: 40px; height: 40px; border: 1px solid #44403c; border-radius: 50%; justify-content: center; }
.site-footer .muted-sm { color: #a8a29e; margin-top: 8px; }
.footer-bottom { border-top: 1px solid #292524; margin-top: 40px; padding-top: 22px; }
.disclaimer { font-size: 12.5px; color: #a8a29e; max-width: 900px; }
.fb-row { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #a8a29e; }
.pay-note { display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 45; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(0, 0, 0, .18); transition: transform .2s var(--ease); }
.wa-float:hover { transform: scale(1.06); }

/* ---------- Sepet çekmecesi ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(12, 10, 9, .45); z-index: 60; opacity: 0; transition: opacity .25s; }
.drawer-backdrop.show { opacity: 1; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%); background: #fff; z-index: 61; display: flex; flex-direction: column; transform: translateX(100%); transition: transform .3s var(--ease); visibility: hidden; }
.drawer.open { transform: none; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 14px 22px; border-bottom: 1px solid var(--line); }
.drawer-head h2 { font-size: 26px; margin: 0; }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 22px 22px; background: #fff; }
.drawer-foot .row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 6px; }
.save-line { display: flex; align-items: center; gap: 6px; color: var(--cta); font-size: 13.5px; margin: 8px 0 14px; }
.drawer-foot .btn { margin-top: 10px; }
.drawer-secure { display: flex; justify-content: center; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); margin: 10px 0 0; }
.d-item { display: grid; grid-template-columns: 76px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.d-item img { width: 76px; height: 76px; object-fit: contain; background: var(--bg-soft); border-radius: var(--radius); padding: 6px; }
.d-item a { font-weight: 600; text-decoration: none; font-size: 15px; }
.d-line { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 8px; }
.d-price { text-align: right; font-size: 14.5px; font-weight: 600; }
.d-price s { display: block; font-weight: 400; color: var(--muted); font-size: 12.5px; }
.d-disc { font-size: 12px; color: var(--cta); margin-top: 3px; }
.d-empty { text-align: center; padding: 48px 12px; color: var(--muted); }
.d-empty .i { margin: 0 auto 10px; }
.free-bar { font-size: 13px; background: var(--cta-soft); color: var(--cta); padding: 10px 12px; border-radius: 8px; margin-bottom: 8px; }

.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 10px; font-size: 14px; z-index: 80; opacity: 0; pointer-events: none; transition: all .25s var(--ease); max-width: calc(100% - 32px); }
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { background: var(--danger); }

.reveal { animation: rise .6s var(--ease) both; }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } }

/* ---------- Duyarlı ---------- */
@media (max-width: 1080px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 8px; padding-top: 28px; }
  .hero-visual { height: 340px; order: -1; }
  .bundle-strip-grid { grid-template-columns: repeat(3, 1fr); text-align: center; gap: 10px; }
  .bundle-strip-grid div { align-items: center; }
  .bundle-strip-grid p { grid-column: 1 / -1; text-align: center; font-size: 13px; }
  .pdp { grid-template-columns: 1fr; gap: 24px; }
  .pdp-gallery { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 8px; }
  .checkout { grid-template-columns: 1fr; }
  .co-main { border: 0; justify-content: center; }
  .co-side { display: none; }
  .co-inner { max-width: 640px; padding: 20px 16px 40px; }
  .co-mobile-sum { display: block; margin: -20px -16px 22px; background: var(--bg-side); border-bottom: 1px solid var(--line); }
  .co-mobile-sum > summary { display: flex; justify-content: space-between; align-items: center; padding: 16px; cursor: pointer; list-style: none; font-size: 14px; }
  .co-mobile-sum > summary span { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-2); }
  .co-mobile-sum[open] > summary .i-chevron { transform: rotate(180deg); }
  .co-sum-mobile { padding: 4px 16px 18px; }
  .sticky-buy { position: fixed; left: 0; right: 0; bottom: 0; z-index: 44; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0, 0, 0, .06); transform: translateY(110%); transition: transform .3s var(--ease); }
  .sticky-buy.show { transform: none; }
  .sb-info { display: flex; flex-direction: column; font-size: 13px; min-width: 0; }
  .sb-info b { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .product-page .wa-float { bottom: 84px; }
}
@media (max-width: 640px) {
  .section { padding: 44px 0; }
  .header-row { height: 62px; }
  .logo img { height: 34px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-body { padding: 12px; }
  .p-body h3 { font-size: 15px; }
  .p-sub { font-size: 12px; min-height: 0; }
  .p-actions { grid-template-columns: 1fr; }
  .p-actions .btn-line { display: none; }
  .p-media img { padding: 10px; }
  .feature-grid { grid-template-columns: 1fr; gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .pdp-trust { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .bundle { padding: 14px 12px; gap: 10px; }
  .hero .lead { font-size: 16px; }
  .steps { font-size: 11.5px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* Beyaz zeminli ürün fotoğraflarını açık zemine kaynaştır */
.p-media img, .pdp-main img, .thumb img, .mini-card img, .hero-p, .d-item img, .sum-thumb img { mix-blend-mode: multiply; }
.hero-p { filter: none; }
.pdp > *, .hero-grid > *, .checkout > *, .about-grid > *, .product-grid > * { min-width: 0; }
.pdp-sub { overflow-wrap: anywhere; }
html, body { overflow-x: hidden; }
@media (max-width: 900px) { .pdp { grid-template-columns: minmax(0, 1fr); } }
.hero-p { -webkit-mask-image: radial-gradient(closest-side, #000 72%, transparent 100%); mask-image: radial-gradient(closest-side, #000 72%, transparent 100%); }

/* ---------- Dil menüsü ---------- */
.header-actions { display: flex; align-items: center; gap: 4px; }
.lang-menu { position: relative; }
.lang-menu summary { list-style: none; display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 10px; border-radius: 22px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--ink-2); }
.lang-menu summary::-webkit-details-marker { display: none; }
.lang-menu summary:hover, .lang-menu[open] summary { background: var(--bg-soft); }
.lang-menu ul { position: absolute; top: calc(100% + 6px); inset-inline-end: 0; z-index: 50; min-width: 160px; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); }
.lang-menu a { display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none; font-size: 14px; }
.lang-menu a:hover { background: var(--bg-soft); }
.lang-menu a[aria-current] { font-weight: 700; background: var(--bg-soft); }
.notice { display: flex; align-items: flex-start; gap: 8px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 10px 12px; font-size: 13.5px; color: var(--ink-2); margin-bottom: 14px; }
.notice .i { margin-top: 2px; flex-shrink: 0; }
.prose .notice { font-size: 14px; }

/* Uzun dillerde (DE, RU, FR) başlık ve düğmeler taşmasın */
.lang-de .hero h1, .lang-ru .hero h1, .lang-fr .hero h1 { font-size: clamp(36px, 5vw, 60px); }
.btn { text-align: center; line-height: 1.2; }
.p-actions .btn { padding: 8px 12px; min-height: 42px; height: auto; }
.lang-ru .main-nav, .lang-de .main-nav, .lang-fr .main-nav { gap: 22px; }

/* ---------- Arapça (sağdan sola) ---------- */
[dir="rtl"] body { font-family: "Noto Kufi Arabic", var(--sans); }
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] .bundle-strip-grid strong, [dir="rtl"] .drawer-head h2 { font-family: "Noto Naskh Arabic", "Noto Kufi Arabic", serif; font-weight: 700; }
[dir="rtl"] *, [dir="rtl"] .eyebrow, [dir="rtl"] .site-footer h3, [dir="rtl"] .ing-table .head th, [dir="rtl"] .badge { letter-spacing: 0 !important; }
[dir="rtl"] .hero h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.35; }
[dir="rtl"] .pdp-info h1, [dir="rtl"] .page-title { line-height: 1.4; }
[dir="rtl"] .marquee { direction: ltr; }
[dir="rtl"] .marquee-track span { direction: rtl; unicode-bidi: isolate; }
[dir="rtl"] .drawer { right: auto; left: 0; transform: translateX(-100%); }
[dir="rtl"] .drawer.open { transform: none; }
[dir="rtl"] .cart-count { right: auto; left: 1px; }
[dir="rtl"] .badge { left: auto; right: 12px; }
[dir="rtl"] .b-flag { right: auto; left: 14px; }
[dir="rtl"] .sum-qty { right: auto; left: -8px; }
[dir="rtl"] .wa-float { right: auto; left: 18px; }
[dir="rtl"] .field label { left: auto; right: 15px; }
[dir="rtl"] .field-icon, [dir="rtl"] .field.select .i { right: auto; left: 14px; }
[dir="rtl"] .field.select select { padding-right: 14px; padding-left: 40px; }
[dir="rtl"] .field input[dir="ltr"] { text-align: right; }
[dir="rtl"] .b-price, [dir="rtl"] .sum-price, [dir="rtl"] .d-price { text-align: left; }
[dir="rtl"] .ing-table td:last-child { text-align: left; padding-left: 0; padding-right: 12px; }
[dir="rtl"] .ing-table .head th { text-align: right; }
[dir="rtl"] .co-main { border-right: 0; border-left: 1px solid var(--line); }
[dir="rtl"] .stepper .link-sm { margin-left: 0; margin-right: 10px; }
[dir="rtl"] .prose ul, [dir="rtl"] .prose ol { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .i-back { transform: scaleX(-1); }
[dir="rtl"] .upsell, [dir="rtl"] .done-items { text-align: right; }
[dir="rtl"] .bundle-strip-grid p { text-align: left; }
[dir="rtl"] .hero-p.hp1 { left: auto; right: -2%; }
[dir="rtl"] .hero-p.hp2 { right: auto; left: -4%; }
[dir="rtl"] .hero-p.hp0 { left: auto; right: 22%; }
[dir="rtl"] .check .box::after { transform: rotate(45deg) translate(-1px, -1px); }
@media (max-width: 900px) {
  [dir="rtl"] .co-main { border: 0; }
  [dir="rtl"] .bundle-strip-grid p { text-align: center; }
  [dir="rtl"] .product-page .wa-float { bottom: 84px; }
}
@media (max-width: 640px) {
  .lang-menu summary { padding: 0 8px; }
  .lang-menu summary span { font-size: 12px; }
}

/* ---------- Eczane (satış kapalı) ---------- */
.p-pharmacy { display: inline-flex; align-items: center; gap: 6px; margin: auto 0 12px; align-self: flex-start; font-size: 13px; font-weight: 600; color: var(--cta); background: var(--cta-soft); padding: 6px 10px; border-radius: 999px; }
.p-actions.single { grid-template-columns: 1fr; }
.p-actions.single .btn-line { display: inline-flex !important; }
.pharmacy-box { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border: 1.5px solid var(--cta); background: var(--cta-soft); border-radius: var(--radius-lg); margin: 4px 0 24px; }
.pharmacy-box .ph-icon { width: 52px; height: 52px; flex-shrink: 0; border-radius: 50%; background: var(--cta); color: #fff; display: grid; place-items: center; }
.pharmacy-box h2 { font-family: var(--sans); font-size: 20px; font-weight: 700; margin: 4px 0 6px; }
.pharmacy-box p { color: var(--ink-2); margin-bottom: 14px; }
.ph-actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 640px) { .pharmacy-box { flex-direction: column; padding: 18px; } .ph-actions .btn { width: 100%; } }

/* Erişilebilirlik bağlantısı: yöne bağlı olmadan gizle (RTL'de sayfa taşmasın) */
.skip { left: 8px; top: 8px; clip-path: inset(50%); width: 1px; height: 1px; overflow: hidden; white-space: nowrap; }
.skip:focus { left: 8px; clip-path: none; width: auto; height: auto; overflow: visible; }
[dir="rtl"] .skip, [dir="rtl"] .skip:focus { left: auto; right: 8px; }

/* Uzun (çevrilmiş) alan etiketleri taşmasın */
.field label { max-width: calc(100% - 30px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.field:has(.field-icon) label, .field.select label { max-width: calc(100% - 60px); }
.field:has(.field-icon) input { padding-right: 44px; }
[dir="rtl"] .field:has(.field-icon) input { padding-right: 14px; padding-left: 44px; }
