/* ============================================================
   CAMTABLOLAR.COM — tasarım katmanı (app.css üzerine yüklenir)
   Kaynak: design_handoff_camtablolar_ecommerce (README tokens)
   Tek font: Manrope. Mürekkep: #141414. Pill butonlar.
   ============================================================ */

:root {
  /* Zeminler */
  --bg-base: #FFFFFF;
  --bg-elev-1: #F9F9F7;
  --bg-elev-2: #FFFFFF;
  --bg-elev-3: #F5F5F3;
  --bg-tint: #F0F5F3;
  --bg-ink: #141414;
  --bg-ink-2: #23201B;
  --bg-foot: #F7F6F3;

  /* Kenarlar */
  --br-faint: rgba(20,20,20,0.04);
  --br-subtle: #EDEDED;
  --br-default: #DBDBDB;
  --br-strong: #141414;
  --br-foot: #E7E5E0;

  /* Metin */
  --fg-primary: #141414;
  --fg-secondary: #5C5C5C;
  --fg-tertiary: #767676;
  --fg-muted: #9A9A9A;
  --fg-faint: #C9C9C4;
  --fg-on-accent: #FFFFFF;
  --fg-on-ink: #FFFFFF;

  /* Aksan = mürekkep (birincil butonlar siyah) */
  --accent: #141414;
  --accent-hi: #2B2B2B;
  --accent-lo: #000000;
  --accent-deep: #000000;
  --accent-soft: #F5F5F3;
  --accent-soft-2: #EDEDED;
  --accent-ring: rgba(20,20,20,0.12);

  /* Marka yeşili & durumlar */
  --green: #4E8F86;
  --green-deep: #28564F;
  --ok: #28564F;
  --warn: #B26A00;
  --bad: #B0443C;
  --info: #28564F;
  --star: #D9A441;
  --wa: #3E9A6C;

  /* Tipografi */
  --font-sans: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;

  /* Köşeler */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 16px;
  --r-pill: 999px;

  /* Gölgeler */
  --shadow-1: 0 1px 2px rgba(20,20,20,.04);
  --shadow-2: 0 4px 14px rgba(20,20,20,.06);
  --shadow-3: 0 12px 32px rgba(20,20,20,.10);
  --shadow-pop: 0 24px 56px rgba(20,20,20,.16), 0 0 0 1px var(--br-subtle);
  --shadow-orange: 0 10px 24px rgba(20,20,20,0.18);

  /* Cam efekti */
  --glass-gloss: linear-gradient(115deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 45%);
  --glass-inset: inset 0 0 0 1px rgba(255,255,255,0.3);
  --glass-shadow: 0 12px 24px rgba(0,0,0,0.22);
  --glass-shadow-lg: 0 32px 64px rgba(30,26,16,0.38);

  /* Hero koyu zemin */
  --hero-bg: linear-gradient(180deg,#23201B 0%, #3A342B 55%, #4A4136 100%);
  --hero-glow: radial-gradient(90% 70% at 72% 30%, rgba(226,203,160,0.28), rgba(0,0,0,0) 60%);
  --hero-eyebrow: #D8C9A8;
}

/* ---- Genel ---- */
body { font-family: var(--font-sans); color: var(--fg-primary); -webkit-font-smoothing: antialiased; }
.shell { max-width: 1440px; padding: 0 clamp(18px, 3.9vw, 56px); }
.mono { font-family: var(--font-sans); }

.h1 { font-size: clamp(34px, 4vw, 58px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.05; }
.h2 { font-size: clamp(22px, 2vw, 26px); font-weight: 800; letter-spacing: -0.015em; line-height: 1.15; }
.h3 { font-weight: 800; letter-spacing: -0.01em; }
.h4 { font-weight: 800; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg-tertiary); }

/* ---- Butonlar: pill ---- */
.btn { border-radius: var(--r-pill); font-weight: 700; }
.btn-primary, .btn-accent, .btn-dark { --bg: #141414; --fg: #fff; --br: #141414; font-weight: 800; }
.btn-primary:hover, .btn-accent:hover, .btn-dark:hover { --bg: #2B2B2B; --br: #2B2B2B; }
.btn-outline { --br: #141414; --fg: #141414; }
.btn-sm { border-radius: var(--r-pill); }
.btn-lg { border-radius: var(--r-pill); height: 52px; padding: 0 28px; }
.kbd { font-family: var(--font-sans); }

/* ---- Rozetler ---- */
.badge { border-radius: var(--r-pill); font-weight: 700; }
.badge-accent { background: var(--bg-elev-3); color: var(--fg-primary); border-color: var(--br-subtle); }
.badge-ok { background: #F0F5F3; color: var(--green-deep); border-color: #C9E2D5; }
.surface-tint { background: var(--bg-tint); border-color: #C9E2D5; }

/* ---- Duyuru bandı ---- */
.cam-announce { background: #141414; color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-align: center; padding: 9px 24px; }

/* ---- Header ---- */
.cam-header { background: #fff; border-bottom: 1px solid var(--br-subtle); position: sticky; top: 0; z-index: 60; }
.cam-header-in { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.cam-logo { margin-left: -6px; }
.cam-logo img { height: 36px; width: auto; display: block; }
.cam-nav { display: flex; gap: clamp(12px, 1.6vw, 24px); font-size: 14px; font-weight: 600; }
.cam-nav a { color: var(--fg-tertiary); padding-bottom: 2px; border-bottom: 2px solid transparent; transition: color 160ms ease; white-space: nowrap; }
.cam-nav a:hover { color: #141414; }
.cam-nav a.active { color: #141414; border-bottom-color: #141414; }

/* Kişiye Özel — vurgulu menü ögesi (marka amber alt çizgi + sparkles) */
.cam-nav a.cam-nav-custom { position: relative; display: inline-flex; align-items: center; gap: 6px; color: var(--fg-primary); font-weight: 800; border-bottom-color: transparent; }
.cam-nav a.cam-nav-custom.active { border-bottom-color: transparent; }
.cam-nav a.cam-nav-custom svg { color: #FEB906; flex: none; margin-top: -1px; transition: transform 220ms ease; }
.cam-nav a.cam-nav-custom:hover svg { transform: rotate(12deg) scale(1.12); }
.cam-nav a.cam-nav-custom::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; border-radius: 999px; background: linear-gradient(90deg, #FEB906 0%, #FFD35C 60%, rgba(254,185,6,0) 100%); transform: scaleX(0.55); transform-origin: left; transition: transform 220ms ease; }
.cam-nav a.cam-nav-custom:hover::after, .cam-nav a.cam-nav-custom.active::after { transform: scaleX(1); }
.cam-actions { display: flex; gap: 18px; align-items: center; }
.cam-actions a, .cam-actions button { background: none; border: 0; padding: 0; cursor: pointer; color: #141414; display: inline-flex; position: relative; }
.cam-cart-count { position: absolute; top: -7px; right: -9px; background: #141414; color: #fff; font-size: 9.5px; font-weight: 800; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 999px; display: flex; align-items: center; justify-content: center; }

/* ---- Dil & para birimi (tetikleyici + modal) ---- */
.cam-actions .cam-locale-btn, .cam-locale-btn { display: inline-flex; align-items: center; gap: 7px; background: #fff; border: 1px solid var(--br-default); border-radius: 10px; padding: 7px 12px 7px 8px; font: inherit; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; color: #141414; cursor: pointer; transition: border-color 160ms ease; white-space: nowrap; }
.cam-locale-btn:hover { border-color: #141414; }
.cam-locale-btn > svg:last-child { color: var(--fg-muted); }
.cam-locale-back { position: fixed; inset: 0; z-index: 149; background: rgba(12,12,12,0.45); backdrop-filter: blur(3px); }
.cam-locale-back[hidden] { display: none; }
.cam-locale-modal { position: fixed; z-index: 150; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(400px, calc(100vw - 32px)); max-height: min(620px, calc(100vh - 48px)); overflow-y: auto; background: #fff; border: 1px solid var(--br-subtle); border-radius: 18px; box-shadow: var(--shadow-pop); padding: 10px 10px 14px; }
.cam-locale-modal[hidden] { display: none; }
.cam-locale-head { display: flex; align-items: center; justify-content: space-between; padding: 8px 6px 6px 14px; font-size: 14px; font-weight: 800; letter-spacing: -0.01em; }
.cam-locale-head button { background: none; border: 0; cursor: pointer; color: var(--fg-muted); display: inline-flex; padding: 7px; border-radius: 999px; }
.cam-locale-head button:hover { background: var(--bg-elev-3); color: #141414; }
.cam-locale-sec { font-size: 10.5px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--fg-muted); padding: 12px 14px 6px; }
.cam-locale-row { display: flex; align-items: center; gap: 11px; padding: 10px 14px; border-radius: 12px; font-size: 13.5px; color: var(--fg-primary); }
.cam-locale-row:hover { background: var(--bg-elev-1); }
.cam-locale-row.on { background: var(--bg-elev-3); }
.cam-locale-code { font-weight: 800; min-width: 54px; letter-spacing: 0.02em; }
.cam-locale-name { color: var(--fg-secondary); font-weight: 600; border-left: 1px solid var(--br-default); padding-left: 11px; }
.cam-locale-cur { margin-left: auto; font-size: 11.5px; font-weight: 700; color: var(--fg-muted); white-space: nowrap; }
.cam-locale-check { color: var(--green-deep); display: inline-flex; }
.cam-locale-note { padding: 10px 14px 4px; font-size: 11.5px; color: var(--fg-muted); }

/* ---- Ürün kartı ---- */
.cam-card { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.cam-card-media { background: var(--bg-elev-3); border-radius: 10px 10px 0 0; display: block; overflow: hidden; position: relative; aspect-ratio: 1 / 1.05; transition: box-shadow 180ms ease; }
.cam-card:hover .cam-card-media { box-shadow: var(--shadow-2); }
.cam-card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.cam-card-img-alt { opacity: 0; transition: opacity 220ms ease; }
.cam-card:hover .cam-card-img-alt, .cam-card-media:focus-visible .cam-card-img-alt { opacity: 1; }
.cam-card-glass { position: relative; border-radius: 3px; box-shadow: var(--glass-shadow), var(--glass-inset); max-width: 62%; max-height: 76%; }
.cam-card-glass img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.cam-card-glass::after { content: ''; position: absolute; inset: 0; border-radius: inherit; background: var(--glass-gloss); pointer-events: none; }
.cam-card-glass.round, .cam-card-glass.round img { border-radius: 999px; }
.cam-card-body { display: flex; flex-direction: column; gap: 4px; padding: 0 12px 14px; }
.cam-card-title { font-size: 13px; font-weight: 700; line-height: 1.3; color: var(--fg-primary); }
.cam-card-price { font-size: 13.5px; font-weight: 800; margin-top: 2px; }
.cam-card-meta { font-size: 12px; color: var(--fg-tertiary); }

/* Form oranları — kart içindeki cam panel */
.cam-glass-dikey     { aspect-ratio: 5 / 7; width: 52%; }
.cam-glass-yatay     { aspect-ratio: 7 / 5; width: 72%; }
.cam-glass-kare      { aspect-ratio: 1 / 1; width: 60%; }
.cam-glass-yuvarlak  { aspect-ratio: 1 / 1; width: 60%; }
.cam-glass-panoramik { aspect-ratio: 11 / 4; width: 84%; }
.cam-glass-oval      { aspect-ratio: 5 / 7; width: 52%; }
.cam-glass-oval, .cam-glass-oval img, .cam-glass-oval::after { border-radius: 50%; }

/* ---- Form vitrini (anasayfa kategori şeridi) ----
   Her form kendi oranındaki cam panelde eser görseliyle stüdyo duvarında. */
.cam-form-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 22px; }
.cam-form-card { display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.cam-form-stage { position: relative; aspect-ratio: 1 / 1.06; border-radius: 14px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #F4F2EE 0%, #ECE8E1 76%, #DFD9CE 76%);
  transition: background 200ms ease; }
/* Hover'da panelin arkasında beliren spot ışığı */
.cam-form-stage::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(58% 44% at 50% 40%, rgba(255,255,255,0.65), rgba(255,255,255,0) 72%);
  opacity: 0; transition: opacity 320ms ease; }
.cam-form-card:hover .cam-form-stage::before { opacity: 1; }
.cam-form-stage .cam-card-glass { max-width: 92%; max-height: 84%;
  transition: transform 380ms cubic-bezier(.22,.7,.18,1), box-shadow 380ms ease; }
.cam-form-stage .cam-card-glass:not(.round) { border-radius: 0; }   /* cam tablo köşeleri keskin */
.cam-form-stage .cam-card-glass.cam-glass-oval { border-radius: 50%; }  /* oval: elips kesim */
/* Sahne içinde formlar büyük durur (liste kartlarındaki %52-72 oranlarından geniş) */
.cam-form-stage .cam-glass-dikey { width: 60%; }
.cam-form-stage .cam-glass-yatay { width: 84%; }
.cam-form-stage .cam-glass-kare, .cam-form-stage .cam-glass-yuvarlak { width: 70%; }
.cam-form-stage .cam-glass-oval { width: 60%; }
.cam-form-stage .cam-glass-panoramik { width: 92%; }
.cam-form-card:hover .cam-form-stage { background: linear-gradient(180deg, #F0EDE7 0%, #E7E2D9 76%, #D8D1C4 76%); }
/* Hover: showroom hissi — panel perspektifle açılı döner, hafif büyür */
.cam-form-card:hover .cam-card-glass { transform: perspective(700px) rotateY(-16deg) rotateX(5deg) translateY(-6px) scale(1.03);
  box-shadow: 26px 30px 50px rgba(0,0,0,0.34), var(--glass-inset); }
/* Cam üzerinden geçen parlama süpürmesi */
.cam-form-shine { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; pointer-events: none; }
.cam-form-shine::before { content: ''; position: absolute; top: -25%; bottom: -25%; left: -45%; width: 36%;
  background: linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-16deg); opacity: 0; }
.cam-form-card:hover .cam-form-shine::before { animation: cam-form-shine 780ms ease 100ms; }
@keyframes cam-form-shine {
  0%   { transform: skewX(-16deg) translateX(0); opacity: 0; }
  12%  { opacity: 1; }
  100% { transform: skewX(-16deg) translateX(520%); opacity: 0; }
}
.cam-form-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 0 2px; }
.cam-form-meta > span:first-child { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.cam-form-name { font-size: 13.5px; font-weight: 800; color: var(--fg-primary); letter-spacing: -0.01em; }
.cam-form-count { font-size: 11.5px; font-weight: 600; color: var(--fg-muted); }
.cam-form-arrow { width: 28px; height: 28px; border-radius: 999px; border: 1px solid var(--br-default);
  display: inline-flex; align-items: center; justify-content: center; color: #141414; flex-shrink: 0;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease, color 180ms ease; }
.cam-form-card:hover .cam-form-arrow { opacity: 1; transform: none; background: #141414; color: #fff; border-color: #141414; }
@media (hover: none) { .cam-form-arrow { display: none; } }
@media (max-width: 1100px) {
  .cam-form-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 640px) {
  /* Mobil: yatay kaydırma yok — 2 sütunlu sabit grid (6 kart = 3 sıra) */
  .cam-form-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 18px; }
  .cam-form-name { font-size: 12.5px; }
  .cam-form-count { font-size: 11px; }
}

/* ---- Bölüm başlığı ---- */
.cam-sec { padding: 76px 0 0; }
@media (max-width: 640px) {
  .cam-sec { padding: 52px 0 0; }
}
.cam-sec-head { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.cam-sec-title { font-size: clamp(21px, 1.9vw, 26px); font-weight: 800; letter-spacing: -0.015em; }
.cam-sec-link { font-size: 13px; font-weight: 700; color: var(--fg-tertiary); white-space: nowrap; }
.cam-sec-link:hover { color: #141414; }

/* ---- Çipler / boyut seçici ---- */
.cam-chip { border: 1px solid var(--br-default); font-size: 13px; font-weight: 600; padding: 12px 16px; border-radius: 10px; color: var(--fg-secondary); cursor: pointer; background: #fff; transition: border-color 140ms ease; }
.cam-chip:hover { border-color: #141414; color: #141414; }
.cam-chip.selected { border: 2px solid #141414; font-weight: 800; color: #141414; padding: 11px 15px; }
.cam-pill-tab { border: 1px solid var(--br-default); font-size: 12.5px; font-weight: 600; padding: 10px 20px; border-radius: 999px; color: var(--fg-secondary); cursor: pointer; background: #fff; }
.cam-pill-tab.active { background: #141414; color: #fff; border-color: #141414; font-weight: 700; }

/* ---- Form girişleri ---- */
.cam-input { width: 100%; border: 1px solid var(--br-default); border-radius: 12px; padding: 13px 16px; font-size: 14px; font-family: var(--font-sans); background: #fff; outline: none; transition: border-color 140ms ease; }
.cam-input:focus { border-color: #141414; }
textarea.cam-input { resize: vertical; min-height: 96px; }
.cam-label { font-size: 12.5px; font-weight: 800; margin-bottom: 7px; display: block; }

/* ---- Akordeon ---- */
.cam-acc { border-top: 1px solid var(--br-subtle); }
.cam-acc summary { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; font-size: 13.5px; font-weight: 800; cursor: pointer; list-style: none; }
.cam-acc summary::-webkit-details-marker { display: none; }
.cam-acc summary::after { content: '+'; font-size: 16px; color: var(--fg-muted); font-weight: 400; }
.cam-acc[open] summary::after { content: '−'; }
.cam-acc-body { font-size: 13px; line-height: 1.65; color: var(--fg-secondary); padding-bottom: 14px; }
.cam-acc-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.cam-acc-list li { display: flex; align-items: flex-start; gap: 10px; }
.cam-acc-list li svg { flex: 0 0 auto; margin-top: 3px; color: var(--green-deep); }
.cam-acc-list li strong { color: #141414; font-weight: 700; }

/* ---- Yıldızlar ---- */
.cam-stars { color: var(--star); font-size: 13px; letter-spacing: 2px; }

/* ---- Hero ---- */
.cam-hero { position: relative; overflow: hidden; background: var(--hero-bg); }
.cam-hero-mob { display: none; }   /* mobil slaytlar (home_hero_mobile) yalnız 880px altında */
.cam-hero-slide { position: relative; height: clamp(420px, 39vw, 560px); overflow: hidden; }
.cam-hero-glow { position: absolute; inset: 0; background: var(--hero-glow); pointer-events: none; }
.cam-hero-floor { position: absolute; bottom: 0; left: 0; right: 0; height: 90px; background: linear-gradient(180deg, rgba(20,17,13,0) 0%, rgba(20,17,13,0.55) 100%); pointer-events: none; }
.cam-hero-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--hero-eyebrow); }
.cam-hero-title { font-size: clamp(30px, 4vw, 58px); line-height: 1.05; font-weight: 800; letter-spacing: -0.02em; color: #fff; margin-top: 14px; white-space: pre-line; }
.cam-hero-sub { font-size: clamp(14px, 1.1vw, 16px); line-height: 1.6; color: rgba(255,255,255,0.78); margin-top: 14px; max-width: 420px; }
.cam-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,13,10,0.72) 0%, rgba(15,13,10,0.35) 48%, rgba(15,13,10,0.05) 75%); }
.cam-hero-shell { position: relative; height: 100%; }
.cam-hero-copy { position: absolute; left: clamp(18px, 3.9vw, 56px); top: 0; bottom: 0; display: flex; flex-direction: column; justify-content: center; max-width: 520px; z-index: 2; }
.cam-hero-panels { position: absolute; right: clamp(40px, 10vw, 150px); top: 74px; display: flex; gap: 36px; align-items: flex-end; }
.cam-hero-panel.p-side { width: 180px; height: 252px; margin-bottom: 36px; }
.cam-hero-panel.p-mid { width: 240px; height: 336px; }
.cam-hero-ctas { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }
.cam-hero-cta { background: #fff; color: #141414; font-size: 14px; font-weight: 800; padding: 15px 30px; border-radius: 999px; display: inline-block; }
.cam-hero-cta2 { border: 1px solid rgba(255,255,255,0.5); color: #fff; font-size: 14px; font-weight: 600; padding: 15px 26px; border-radius: 999px; display: inline-block; }
/* Noktalar shell sarmalayıcıda: geniş ekranlarda da içerik container'ıyla hizalı kalır */
.cam-hero-dots-wrap { position: absolute; left: 0; right: 0; bottom: 26px; z-index: 3; pointer-events: none; }
.cam-hero-dots { display: flex; gap: 7px; pointer-events: auto; }
.cam-hero-dots button { height: 5px; width: 10px; border-radius: 999px; background: rgba(255,255,255,0.4); border: 0; padding: 0; cursor: pointer; transition: all 300ms ease; }
.cam-hero-dots button.active { width: 22px; background: #fff; }
.cam-hero-panel { position: relative; box-shadow: 0 34px 66px rgba(0,0,0,0.55), var(--glass-inset); }
.cam-hero-panel::after { content: ''; position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 46%); pointer-events: none; }
.cam-hero-panel img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- Footer (10a açık ton) ---- */
.cam-footer { background: var(--bg-foot); color: var(--fg-secondary); margin-top: 76px; }
.cam-footer a { color: inherit; }
.cam-footer a:hover { color: #141414; }
/* Güven şeridi — ikon + amber el çizimi vurgulu başlık + alt satır */
.cam-trust { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; padding: 40px 0 34px; border-bottom: 1px solid var(--br-foot); }
.cam-trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; }
.cam-trust-ico { color: #141414; margin-bottom: 8px; }
.cam-trust-title { position: relative; display: inline-block; font-size: 17px; font-weight: 800; color: #141414; letter-spacing: -0.01em; padding-bottom: 9px; }
.cam-trust-line { position: absolute; left: 0; bottom: 0; width: 100%; height: 9px; overflow: visible; fill: none; stroke: #FEB906; stroke-width: 3.2; stroke-linecap: round; }
.cam-trust-sub { font-size: 13px; color: var(--fg-tertiary); }
.cam-foot-news { display: flex; justify-content: space-between; align-items: center; gap: 40px; padding: 36px 0; border-bottom: 1px solid var(--br-foot); flex-wrap: wrap; }
/* Bülten bandı — footer'ın en üstünde tam genişlik marka amber'i */
.cam-foot-newsband { background: #FEB906; color: #141414; }
.cam-foot-newsband .cam-foot-news { border-bottom: 0; }
.cam-foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 44px; padding: 44px 0 36px; }
.cam-foot-col { display: flex; flex-direction: column; gap: 10px; font-size: 12.5px; }
.cam-foot-head { font-weight: 800; color: #141414; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.cam-foot-bottom { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-top: 1px solid var(--br-foot); gap: 16px; flex-wrap: wrap; }
.cam-pay-badge { font-size: 10px; font-weight: 700; border: 1px solid #DDDBD4; background: #fff; border-radius: 5px; padding: 4px 9px; color: var(--fg-secondary); }
.cam-soc { width: 36px; height: 36px; border-radius: 999px; border: 1px solid #DDDBD4; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: #141414; }

/* ---- Mobil menü (10c) ---- */
.mnav { font-family: var(--font-sans); }
.mnav-link.accent { color: var(--green-deep); }

/* ---- Sepet drawer ---- */
.cart-drawer { border-radius: 0; }

/* ---- Ürün galerisi rozetleri ---- */
.cam-tagpill { position: absolute; top: 14px; left: 16px; background: rgba(20,20,20,0.6); color: #fff; font-size: 10.5px; font-weight: 700; padding: 5px 11px; border-radius: 999px; z-index: 2; }
.cam-zoom-hint { position: absolute; bottom: 16px; right: 18px; display: flex; align-items: center; gap: 6px; background: rgba(20,20,20,0.75); color: #fff; font-size: 11.5px; font-weight: 700; padding: 7px 13px; border-radius: 999px; z-index: 2; }

/* ---- Lightbox (10b) ---- */
.cam-lightbox { position: fixed; inset: 0; background: rgba(12,12,12,0.92); z-index: 200; display: none; flex-direction: column; align-items: center; justify-content: center; }
.cam-lightbox.open { display: flex; }
.cam-lightbox img { max-width: min(86vw, 1100px); max-height: 74vh; object-fit: contain; border-radius: 4px; box-shadow: 0 40px 80px rgba(0,0,0,0.6); }
.cam-lb-btn { position: absolute; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.cam-lb-strip { display: flex; gap: 10px; margin-top: 22px; }
.cam-lb-strip button { width: 56px; height: 56px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; cursor: pointer; background: #222; }
.cam-lb-strip button.active { border-color: #fff; }
.cam-lb-strip img { width: 100%; height: 100%; object-fit: cover; }

/* ---- WhatsApp yüzen buton ---- */
.cam-wa-fab { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid #C9E2D5; border-radius: 999px; padding: 12px 20px; box-shadow: var(--shadow-3); color: var(--green-deep); font-weight: 800; font-size: 13px; }

/* ---- Ödeme adımları ---- */
.cam-steps { display: flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 700; }
.cam-step { display: flex; align-items: center; gap: 7px; color: var(--fg-muted); }
.cam-step.done, .cam-step.active { color: #141414; }
.cam-step-dot { width: 22px; height: 22px; border-radius: 999px; border: 1.5px solid var(--fg-faint); display: flex; align-items: center; justify-content: center; font-size: 11px; }
.cam-step.done .cam-step-dot { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.cam-step.active .cam-step-dot { border-color: #141414; color: #141414; }

/* ---- Sipariş takip çizelgesi (9h) ---- */
.cam-track { display: flex; align-items: flex-start; }
.cam-track-step { flex: 1; text-align: center; position: relative; }
.cam-track-step::before { content: ''; position: absolute; top: 11px; left: -50%; width: 100%; height: 2px; background: var(--br-subtle); }
.cam-track-step:first-child::before { display: none; }
.cam-track-step.done::before { background: var(--green-deep); }
.cam-track-dot { width: 24px; height: 24px; border-radius: 999px; background: #fff; border: 2px solid var(--br-default); margin: 0 auto; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; }
.cam-track-step.done .cam-track-dot { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }
.cam-track-label { font-size: 11.5px; font-weight: 700; margin-top: 8px; color: var(--fg-muted); }
.cam-track-step.done .cam-track-label { color: var(--green-deep); }

/* ---- Ücretsiz kargo bandı ---- */
.cam-shipbar { border-radius: 12px; background: var(--bg-elev-3); padding: 14px 18px; font-size: 12.5px; font-weight: 700; }
.cam-shipbar.won { background: #F0F5F3; color: var(--green-deep); }
.cam-shipbar-track { height: 6px; border-radius: 999px; background: #E3E3DF; margin-top: 9px; overflow: hidden; }
.cam-shipbar-fill { height: 100%; border-radius: 999px; background: var(--green); transition: width 400ms ease; }

/* ---- Sayfalama ---- */
.cam-pager { display: flex; gap: 8px; align-items: center; justify-content: center; }
.cam-pager a, .cam-pager span { min-width: 38px; height: 38px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--fg-secondary); border: 1px solid transparent; }
.cam-pager a:hover { border-color: var(--br-default); }
.cam-pager .current { background: #141414; color: #fff; }

/* ---- İçerik sayfası (hukuki) ---- */
.cam-legal { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.cam-legal-nav { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 2px; font-size: 13px; }
.cam-legal-nav a { padding: 9px 14px; border-radius: 999px; color: var(--fg-secondary); font-weight: 600; }
.cam-legal-nav a.active { background: var(--bg-elev-3); color: #141414; font-weight: 800; }
.prose { font-size: 13.5px; line-height: 1.75; color: var(--fg-secondary); }
.prose h3 { font-size: 16px; font-weight: 800; color: #141414; margin: 22px 0 8px; }

/* ---- Dokunmatik davranış: çift dokunma zoom'u kapalı (kaydırma ve pinch zoom korunur) ---- */
a, button, input, select, textarea, label, summary { touch-action: manipulation; }
@media (pointer: coarse) { * { touch-action: manipulation; } }

/* ---- Form elemanları: cihazın (iOS/Safari) varsayılan görünümü kalksın ---- */
input:not([type="checkbox"]):not([type="radio"]),
textarea, button { -webkit-appearance: none; appearance: none; }

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .cam-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cam-nav { display: none; }
}
@media (max-width: 880px) {
  .cam-header-in { height: 62px; }
  .cam-logo { margin-left: 0; }
  .cam-logo img { height: 26px; }
  .cam-legal { grid-template-columns: 1fr; }
  .cam-legal-nav { position: static; flex-direction: row; flex-wrap: wrap; }
  .cam-foot-news { padding: 28px 0; }
  .cam-foot-grid { padding: 28px 0; }
  .cam-trust { grid-template-columns: repeat(3, 1fr); gap: 26px 16px; padding: 30px 0 26px; }
  .cam-trust-title { font-size: 15.5px; }

  /* iOS otomatik zoom engeli: 16px altı font'a odaklanınca Safari yakınlaştırır.
     Satır-içi (inline) font-size değerlerini de ezmek için !important gerekli. */
  input:not([type="checkbox"]):not([type="radio"]),
  select, textarea { font-size: 16px !important; }

  /* Duyuru bandı: tek satır, kompakt — alt satıra düşmez */
  .cam-announce { font-size: 11px; letter-spacing: 0.03em; padding: 8px 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* ===== Hero — mobil kurgu: metin üstte, cam paneller altta şerit ===== */
  .cam-hero-desk { display: none; }      /* mobil slayt varsa masaüstü hero gizlenir */
  .cam-hero-mob { display: block; }
  .cam-hero-slide { height: auto; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 58px; }
  .cam-hero-shell { order: 1; height: auto !important; }
  .cam-hero-copy { position: relative; left: 0; top: auto; bottom: auto; padding: 38px 0 0; max-width: none; }
  .cam-hero-eyebrow { font-size: 10.5px; letter-spacing: 0.18em; }
  .cam-hero-title { font-size: clamp(27px, 7.4vw, 36px); margin-top: 10px; }
  .cam-hero-sub { font-size: 13.5px; margin-top: 10px; max-width: none; }
  .cam-hero-ctas { margin-top: 20px; gap: 10px; }
  .cam-hero-cta { padding: 13px 24px; font-size: 13.5px; }
  .cam-hero-cta2 { padding: 13px 22px; font-size: 13.5px; }
  .cam-hero-panels { position: static; order: 2; justify-content: center; align-items: flex-end; gap: 14px; margin-top: 30px; }
  .cam-hero-panel.p-side { width: min(24vw, 110px); height: auto; aspect-ratio: 5 / 7; margin-bottom: 14px; }
  .cam-hero-panel.p-mid { width: min(31vw, 142px); height: auto; aspect-ratio: 5 / 7; }
  .cam-hero-floor { height: 56px; }
  /* Görselli slaytta okunabilirlik: yatay degrade yerine dikey karartma */
  .cam-hero-shade { background: linear-gradient(180deg, rgba(15,13,10,0.62) 0%, rgba(15,13,10,0.34) 55%, rgba(15,13,10,0.58) 100%); }
  .cam-hero-dots-wrap { bottom: 20px; }
}
@media (max-width: 640px) {
  /* Footer: 2 kolonlu mimari — marka bloğu ve iletişim tam genişlik */
  .cam-foot-grid { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .cam-foot-col:first-child, .cam-foot-col:last-child { grid-column: 1 / -1; }
  /* Güven şeridi: 2 kolon, tek kalan öğe tam genişlik ortalanır */
  .cam-trust { grid-template-columns: 1fr 1fr; }
  .cam-trust-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
}
@media (max-width: 400px) {
  .cam-announce { font-size: 10px; letter-spacing: 0.02em; }
}

/* Çok kolonlu bölüm gridleri — mobil kırılımlar */
@media (max-width: 1100px) {
  .cam-grid-resp { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 880px) {
  .cam-grid-resp { grid-template-columns: repeat(2, 1fr) !important; }
  .cam-split-resp { grid-template-columns: 1fr !important; }
  .cam-split-resp > div[style*="min-height:560px"] { min-height: 420px !important; }
}

/* Yatay taşma koruması */
html, body { overflow-x: clip; }
