/* Kameram teması — güvenlik kamerası mağazası.
   Kimlik: logodaki koyu lacivert + çok koyu navy zemin + cyan teknoloji aksanı + REC kırmızısı.
   Görünüm: modern/teknik — yuvarlatılmış hero kartı, cyan ışıma, gölge tabanlı kartlar. */
.theme-kameram {
  --k-navy: #14418f;        /* logo mavisi */
  --k-navy-dark: #0d2c66;
  --k-blue: #1d6ae5;        /* degrade ortağı */
  --k-ink: #0a1730;         /* çok koyu zemin (header/footer) */
  --k-ink-2: #0e2044;       /* koyu degrade ortağı */
  --k-cyan: #22d3ee;        /* teknoloji aksanı */
  --k-cyan-dark: #0891b2;
  --k-rec: #ef4444;         /* kayıt/canlı kırmızısı */
  --c-primary: #14418f;
  --c-primary-dark: #0d2c66;
  --c-text: #101828;
  --c-muted: #667085;
  --c-border: #e7eaf2;
  --c-bg: #ffffff;
  --c-bg-soft: #f4f6fb;
  --c-success: #12b76a;
  --c-error: #ef4444;
  --radius: 14px;
  --k-shadow: 0 1px 2px rgba(10,23,48,.05), 0 4px 16px rgba(10,23,48,.06);
  --k-shadow-lg: 0 8px 30px rgba(10,23,48,.13);
}
body.theme-kameram { background: #fafbfe; }
.theme-kameram a:hover { color: var(--k-cyan-dark); }

/* CTA — degrade + ışıma */
.theme-kameram .btn-cta {
  display: inline-block; background: linear-gradient(135deg, var(--k-navy), var(--k-blue));
  color: #fff; border: 0; padding: 14px 34px; border-radius: 999px;
  font-weight: 700; letter-spacing: .03em; cursor: pointer; font-size: 1rem; text-align: center;
  box-shadow: 0 6px 20px rgba(20,65,143,.28); transition: transform .16s, box-shadow .16s, filter .16s;
}
.theme-kameram .btn-cta:hover {
  color: #fff; filter: brightness(1.08); transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(20,65,143,.36);
}

/* ---- Üst şerit (çok koyu navy + REC) ---- */
.theme-kameram .top-strip { background: var(--k-ink); color: #cdd7ea; font-size: .82rem; }
.theme-kameram .top-strip-inner { display: flex; align-items: center; gap: 14px; padding: 0 16px; min-height: 38px; }
.theme-kameram .top-left, .theme-kameram .top-right { display: flex; align-items: center; gap: 14px; white-space: nowrap; }
.theme-kameram .top-right a { color: #cdd7ea; font-weight: 500; display: inline-flex; align-items: center; gap: 5px; }
.theme-kameram .top-right a:hover { color: var(--k-cyan); }
.theme-kameram .top-announce { flex: 1; text-align: center; color: #fff; font-weight: 600; }
.rec-chip {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 700; letter-spacing: .08em;
  font-size: .74rem; color: #fff; background: rgba(255,255,255,.07);
  padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(255,255,255,.14);
}
.rec-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--k-rec); display: inline-block;
  box-shadow: 0 0 8px rgba(239,68,68,.9); animation: k-blink 1.4s ease-in-out infinite;
}
@keyframes k-blink { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

/* Dil açılır (üst şerit) */
.theme-kameram .lang-dd summary { color: #cdd7ea; cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: 5px; }
.theme-kameram .lang-dd summary::-webkit-details-marker { display: none; }
.theme-kameram .lang-dd { position: relative; }
.theme-kameram .lang-dd ul { position: absolute; top: 100%; left: 0; z-index: 90; background: #fff; border: 1px solid var(--c-border); border-radius: 10px; min-width: 150px; box-shadow: var(--k-shadow-lg); padding: 4px 0; }
.theme-kameram .lang-dd li a { display: flex; gap: 8px; padding: 8px 14px; color: var(--c-text); }
.theme-kameram .lang-dd li a:hover { background: var(--c-bg-soft); }

/* ---- Header (beyaz — lacivert logo net görünür) ---- */
.theme-kameram .site-header { border-bottom: 0; background: #fff; }
.theme-kameram .header-inner { padding: 18px 16px; gap: 28px; }
.theme-kameram .logo { display: flex; align-items: center; gap: 10px; }
.theme-kameram .logo img { max-height: 56px; }
.theme-kameram .logo-mark { color: var(--k-navy); display: inline-flex; }
.theme-kameram .logo-text { font-size: 1.5rem; font-weight: 800; color: var(--k-navy); letter-spacing: -.01em; }

/* Arama: hap formlu, teknik */
.theme-kameram .tech-search { max-width: 620px; }
.theme-kameram .tech-search input {
  border: 2px solid var(--c-border); border-right: 0; border-radius: 999px 0 0 999px;
  padding: 12px 22px; background: var(--c-bg-soft); transition: border-color .15s, background .15s, box-shadow .15s;
}
.theme-kameram .tech-search input:focus {
  border-color: var(--k-navy); background: #fff; outline: none;
  box-shadow: 0 0 0 4px rgba(34,211,238,.14);
}
.theme-kameram .tech-search button {
  border-radius: 0 999px 999px 0; padding: 0 26px;
  background: linear-gradient(135deg, var(--k-navy), var(--k-blue)); color: #fff; border: 0;
}
.theme-kameram .tech-search button:hover { filter: brightness(1.1); }

.theme-kameram .header-actions { gap: 20px; }
.theme-kameram .action-item { font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 7px; color: var(--c-text); }
.theme-kameram .action-icon { position: relative; display: flex; align-items: center; gap: 6px; color: var(--c-text); }
.theme-kameram .cart-badge {
  position: absolute; top: -8px; left: 12px; background: var(--k-rec); color: #fff;
  min-width: 18px; height: 18px; line-height: 18px; padding: 0 4px; font-size: .72rem;
  border-radius: 9px; text-align: center; font-weight: 700;
}
.theme-kameram .cart-amount { font-size: .92rem; font-weight: 700; color: var(--k-navy); }

/* ---- Ana nav (koyu navy şerit) ---- */
.theme-kameram .main-nav { background: linear-gradient(90deg, var(--k-ink), var(--k-ink-2)); border: 0; }
.theme-kameram .nav-row { display: flex; align-items: stretch; gap: 20px; }
.theme-kameram .cat-menu { position: relative; }
.theme-kameram .cat-menu-btn {
  background: linear-gradient(135deg, var(--k-navy), var(--k-blue)); color: #fff; border: 0; cursor: pointer;
  padding: 14px 24px; font-weight: 700; font-size: .93rem;
  display: flex; gap: 10px; align-items: center; min-width: 250px; border-radius: 0;
}
.theme-kameram .cat-menu-btn:hover { filter: brightness(1.1); }
.theme-kameram .cat-menu-btn .caret { margin-left: auto; }
.theme-kameram .cat-menu-panel {
  display: none; position: absolute; top: 100%; left: 0; z-index: 80; width: 250px;
  background: #fff; border: 1px solid var(--c-border); border-radius: 0 0 14px 14px;
  overflow: hidden; box-shadow: var(--k-shadow-lg);
}
.theme-kameram .cat-menu:hover .cat-menu-panel, .theme-kameram .cat-menu:focus-within .cat-menu-panel { display: block; }
.theme-kameram .cat-menu-panel > li { position: relative; border-bottom: 1px solid var(--c-bg-soft); }
.theme-kameram .cat-menu-panel > li > a { display: block; padding: 12px 18px; font-weight: 500; color: var(--c-text); }
.theme-kameram .cat-menu-panel > li:hover > a { color: var(--k-navy); background: var(--c-bg-soft); box-shadow: inset 3px 0 0 var(--k-cyan); }
.theme-kameram .cat-sub {
  display: none; position: absolute; left: 100%; top: 0; min-width: 220px; background: #fff;
  border: 1px solid var(--c-border); border-radius: 0 12px 12px 12px; overflow: hidden; box-shadow: var(--k-shadow-lg);
}
.theme-kameram .cat-menu-panel > li:hover .cat-sub { display: block; }
.theme-kameram .cat-sub a { display: block; padding: 11px 16px; color: var(--c-text); }
.theme-kameram .nav-center { display: flex; gap: 4px; align-items: center; flex: 1; list-style: none; }
.theme-kameram .nav-center a {
  padding: 14px 15px; font-weight: 600; font-size: .92rem; display: block; color: #cdd7ea;
  border-bottom: 2px solid transparent;
}
.theme-kameram .nav-center a:hover { color: #fff; border-bottom-color: var(--k-cyan); }
.theme-kameram .nav-shop { display: flex; align-items: center; font-weight: 700; gap: 7px; color: var(--k-cyan); }
.theme-kameram .nav-shop:hover { color: #fff; }
.cat-ico { vertical-align: middle; margin-right: 5px; }
.theme-kameram .cat-menu.cat-fixed .cat-menu-panel { display: block; }
.theme-kameram .cat-menu.cat-fixed .cat-menu-btn .caret { display: none; }

/* ---- Hero: yuvarlatılmış kart + cyan ışıma + teknik ızgara dokusu ---- */
.kameram-hero {
  margin: 26px auto 0; border-radius: 22px; overflow: hidden; position: relative;
  --hero-accent: var(--k-cyan); --hero-title: #fff; --hero-sub: #dbe4f5;
  box-shadow: 0 18px 44px rgba(10,23,48,.22);
}
.kameram-hero .hero-slide {
  background-color: var(--k-ink);
  background-image:
    radial-gradient(ellipse 900px 480px at 82% -10%, rgba(34,211,238,.16), transparent 60%),
    radial-gradient(ellipse 700px 420px at -8% 110%, rgba(29,106,229,.22), transparent 60%),
    linear-gradient(120deg, var(--k-ink) 30%, var(--k-ink-2) 100%);
}
.kameram-hero .hero-slide::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 70% 30%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 90% at 70% 30%, #000 30%, transparent 75%);
}
.kameram-hero .sl-caption h2 { font-weight: 800; letter-spacing: -.015em; }
.kameram-hero .btn-cta { border-radius: 999px; }
.theme-kameram .hero-dot { background: rgba(255,255,255,.35); }
.theme-kameram .hero-dot.active { background: var(--k-cyan); box-shadow: 0 0 10px rgba(34,211,238,.8); }

/* ---- Güven şeridi: ikon rozetli, gölgeli modern kartlar ---- */
.k-trust-band {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px;
  margin: 30px 0 54px;
}
.k-trust-item {
  display: flex; align-items: center; gap: 14px; background: #fff;
  border: 1px solid rgba(231,234,242,.8); border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--k-shadow); transition: transform .18s, box-shadow .18s;
}
.k-trust-item:hover { transform: translateY(-3px); box-shadow: var(--k-shadow-lg); }
.k-trust-item svg {
  flex-shrink: 0; width: 50px; height: 50px; padding: 12px; border-radius: 14px; color: var(--k-navy);
  background: linear-gradient(135deg, rgba(34,211,238,.16), rgba(20,65,143,.1));
}
.k-trust-item strong { display: block; font-size: .96rem; color: var(--c-text); }
.k-trust-item span { color: var(--c-muted); font-size: .82rem; }

/* ---- Bölüm başlıkları (sola hizalı + degrade çizgi) ---- */
.k-section { margin: 58px 0; }
.k-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.k-title {
  font-size: 1.65rem; font-weight: 800; color: var(--c-text); letter-spacing: -.015em;
  position: relative; padding-bottom: 12px;
}
.k-title::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--k-cyan), rgba(34,211,238,0)); border-radius: 2px;
}
.k-more { font-weight: 700; color: var(--k-navy); display: inline-flex; align-items: center; gap: 6px; font-size: .92rem; }
.k-more:hover { color: var(--k-cyan-dark); gap: 9px; transition: gap .15s; }
.k-overline { color: var(--k-cyan); letter-spacing: .2em; font-size: .78rem; font-weight: 700; margin-bottom: 10px; }

/* ---- Kategori kartları ---- */
.k-cat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.k-cat-card {
  position: relative; display: block; border-radius: 18px; overflow: hidden;
  aspect-ratio: 4/3; background: var(--k-ink); box-shadow: var(--k-shadow);
  transition: transform .22s, box-shadow .22s;
}
.k-cat-card:hover { transform: translateY(-4px); box-shadow: var(--k-shadow-lg); }
.k-cat-card img { width: 100%; height: 100%; object-fit: cover; opacity: .94; transition: transform .35s; }
.k-cat-card:hover img { transform: scale(1.07); }
.k-cat-card span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 38px 18px 15px;
  background: linear-gradient(transparent, rgba(10,23,48,.92));
  color: #fff; font-weight: 700; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between;
}
.k-cat-arrow { opacity: 0; transform: translateX(-8px); transition: all .22s; color: var(--k-cyan); }
.k-cat-card:hover .k-cat-arrow { opacity: 1; transform: none; }

/* ---- Koleksiyon sekmeleri (hap grubu) ---- */
.k-tabs { display: flex; gap: 4px; background: #fff; border: 1px solid var(--c-border); border-radius: 999px; padding: 4px; box-shadow: var(--k-shadow); }
.theme-kameram .tab-btn {
  border: 0; background: transparent; padding: 9px 20px;
  font-weight: 700; font-size: .88rem; cursor: pointer; border-radius: 999px;
  color: var(--c-muted); transition: all .15s;
}
.theme-kameram .tab-btn:hover { color: var(--k-navy); }
.theme-kameram .tab-btn.active {
  background: linear-gradient(135deg, var(--k-navy), var(--k-blue)); color: #fff;
  box-shadow: 0 3px 10px rgba(20,65,143,.3);
}

/* ---- Ürün kartı (gölge tabanlı, cyan ışımalı hover) ---- */
.k-grid { gap: 18px; }
.k-card {
  position: relative; border: 1px solid rgba(231,234,242,.8); border-radius: var(--radius);
  background: #fff; box-shadow: var(--k-shadow); overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.k-card:hover {
  border-color: rgba(34,211,238,.5); transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(10,23,48,.14), 0 0 0 4px rgba(34,211,238,.08);
}
.k-card-img { position: relative; display: block; overflow: hidden; background: var(--c-bg-soft); }
.k-card-img img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: opacity .3s, transform .3s; }
.k-card:hover .img-main { transform: scale(1.04); }
.k-card-img .img-hover { position: absolute; inset: 0; opacity: 0; }
.k-card:hover .img-hover { opacity: 1; }
.k-badge {
  position: absolute; top: 12px; left: 12px; background: var(--k-rec); color: #fff;
  font-size: .78rem; font-weight: 800; padding: 4px 10px; border-radius: 999px;
  box-shadow: 0 3px 8px rgba(239,68,68,.35);
}
.k-quick {
  position: absolute; left: 0; right: 0; bottom: -48px; background: rgba(10,23,48,.94);
  color: #fff; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-align: center;
  padding: 13px; transition: bottom .22s; display: flex; align-items: center; justify-content: center; gap: 7px;
  border-top: 2px solid var(--k-cyan);
}
.k-card:hover .k-quick { bottom: 0; }
.k-fav { position: absolute; top: 12px; right: 12px; z-index: 5; }
.k-fav button {
  width: 38px; height: 38px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.94); box-shadow: 0 2px 8px rgba(10,23,48,.14);
  cursor: pointer; color: var(--c-muted); display: flex; align-items: center; justify-content: center;
  transition: color .15s, transform .15s;
}
.k-fav button:hover { color: var(--k-rec); transform: scale(1.1); }
.k-card-body { padding: 16px 18px 18px; }
.k-cat { color: var(--k-cyan-dark); font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.k-card-body h3 { font-size: .98rem; font-weight: 600; min-height: 2.6em; margin-bottom: 7px; line-height: 1.35; }
.k-card-body h3 a { color: var(--c-text); }
.k-rating { color: #f59e0b; font-size: .85rem; margin-bottom: 4px; }
.k-rating span { color: var(--c-muted); }
.k-price { display: flex; gap: 9px; align-items: baseline; }
.k-price del { color: var(--c-muted); font-size: .85rem; }
.k-price strong { font-size: 1.22rem; color: var(--k-navy); font-weight: 800; letter-spacing: -.01em; }
.k-stock { display: inline-flex; align-items: center; gap: 5px; color: var(--c-success); font-size: .8rem; font-weight: 600; margin-top: 7px; }

/* ---- Neden Biz (ışıma + ızgara dokulu koyu blok) ---- */
.k-why {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 44px; align-items: center;
  background:
    radial-gradient(ellipse 700px 420px at 88% -20%, rgba(34,211,238,.15), transparent 60%),
    radial-gradient(ellipse 600px 380px at -10% 120%, rgba(29,106,229,.2), transparent 60%),
    linear-gradient(120deg, var(--k-ink), var(--k-ink-2));
  border-radius: 24px; padding: 54px 50px; margin: 64px 0; color: #fff;
  position: relative; overflow: hidden; box-shadow: 0 18px 44px rgba(10,23,48,.2);
}
.k-why::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse 80% 90% at 80% 20%, #000 20%, transparent 70%);
          mask-image: radial-gradient(ellipse 80% 90% at 80% 20%, #000 20%, transparent 70%);
}
.k-why > * { position: relative; }
.k-why-text h2 { font-size: 1.85rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -.015em; }
.k-why-text > p { color: #b9c6de; line-height: 1.75; margin-bottom: 20px; }
.k-why-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.k-why-list li { display: flex; align-items: center; gap: 11px; color: #dbe4f5; font-weight: 500; }
.k-why-list svg { color: var(--k-cyan); flex-shrink: 0; }
.k-why .btn-cta {
  background: linear-gradient(135deg, var(--k-cyan), #4ade80); color: var(--k-ink);
  box-shadow: 0 8px 24px rgba(34,211,238,.32);
}
.k-why .btn-cta:hover { color: var(--k-ink); }
.k-why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.k-stat {
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px; padding: 26px 18px; text-align: center;
  backdrop-filter: blur(4px); transition: transform .2s, border-color .2s;
}
.k-stat:hover { transform: translateY(-3px); border-color: rgba(34,211,238,.4); }
.k-stat strong {
  display: block; font-size: 1.85rem; font-weight: 800;
  background: linear-gradient(135deg, var(--k-cyan), #7dd3fc);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.k-stat span { color: #b9c6de; font-size: .85rem; }

/* ---- Yorumlar ---- */
.k-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.theme-kameram .review-card {
  background: #fff; border: 1px solid rgba(231,234,242,.8); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--k-shadow); position: relative;
  transition: transform .18s, box-shadow .18s;
}
.theme-kameram .review-card:hover { transform: translateY(-3px); box-shadow: var(--k-shadow-lg); }
.theme-kameram .review-card::before {
  content: '\201C'; position: absolute; top: 6px; right: 18px; font-size: 4.4rem; line-height: 1;
  color: rgba(34,211,238,.16); font-family: Georgia, serif; pointer-events: none;
}
.theme-kameram .review-card .stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 9px; }
.theme-kameram .review-card p { line-height: 1.68; }
.k-rev-author { color: var(--c-muted); margin-top: 11px; }
.theme-kameram .review-card .rev-photo { width: 100%; max-height: 190px; object-fit: cover; border-radius: 10px; margin-bottom: 12px; }

/* ---- Bülten bandı ---- */
.theme-kameram .newsletter-band {
  background:
    radial-gradient(ellipse 640px 300px at 85% -30%, rgba(34,211,238,.22), transparent 60%),
    linear-gradient(120deg, var(--k-navy), var(--k-blue));
  color: #fff; margin-top: 64px;
}
.theme-kameram .newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 36px 16px; flex-wrap: wrap; }
.theme-kameram .newsletter-band h3 { font-size: 1.3rem; letter-spacing: -.01em; }
.theme-kameram .newsletter-band .small { color: #c3d3f2; }
.theme-kameram .newsletter-form { display: flex; gap: 10px; }
.theme-kameram .newsletter-form input {
  min-width: 300px; padding: 13px 22px; border: 0; border-radius: 999px; font: inherit;
}
.theme-kameram .newsletter-form .btn-cta {
  background: var(--k-cyan); color: var(--k-ink); font-weight: 800;
  box-shadow: 0 6px 18px rgba(10,23,48,.25);
}
.theme-kameram .newsletter-form .btn-cta:hover { color: var(--k-ink); }

/* ---- Footer (çok koyu + cyan üst çizgi) ---- */
.theme-kameram .site-footer {
  background: var(--k-ink); color: #b9c6de; margin-top: 0;
  border-top: 3px solid; border-image: linear-gradient(90deg, var(--k-cyan), var(--k-navy)) 1;
}
.theme-kameram .footer-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 28px; padding: 48px 16px 32px; }
.theme-kameram .footer-col h4 { color: #fff; margin-bottom: 13px; font-size: 1rem; }
.theme-kameram .footer-col p, .theme-kameram .footer-col li { margin: 6px 0; font-size: .9rem; }
.theme-kameram .footer-col a { color: #b9c6de; }
.theme-kameram .footer-col a:hover { color: var(--k-cyan); }
.theme-kameram .footer-col ul { list-style: none; }
.theme-kameram .pay-row { display: flex; gap: 7px; flex-wrap: wrap; }
.theme-kameram .footer-bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 16px 0; font-size: .84rem; color: #7e8db0; }

/* ---- Ürün detay tema aksanları ---- */
.theme-kameram .product-info h1 { color: var(--c-text); font-weight: 800; }
.theme-kameram .price-box strong { color: var(--k-navy); }
.theme-kameram .btn-primary { background: linear-gradient(135deg, var(--k-navy), var(--k-blue)); border-color: var(--k-navy); }
.theme-kameram .btn-primary:hover { filter: brightness(1.08); }
.theme-kameram .trust-list .trust-ico { color: var(--k-navy); }
.theme-kameram .page-current { background: var(--k-navy); border-color: var(--k-navy); }

/* ---- Mobil ---- */
.theme-kameram .mobile-menu-btn { display: none; background: none; border: 0; cursor: pointer; color: var(--k-navy); }
.theme-kameram .mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 300px; max-width: 84vw; z-index: 400;
  background: #fff; overflow-y: auto; box-shadow: 4px 0 24px rgba(10,23,48,.2);
}
.theme-kameram .drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 16px; border-bottom: 1px solid var(--c-border); background: var(--k-ink); color: #fff; }
.theme-kameram .drawer-head button { background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: #fff; }
.theme-kameram .mobile-drawer nav a { display: block; padding: 13px 18px; border-bottom: 1px solid var(--c-bg-soft); font-weight: 500; color: var(--c-text); }
.theme-kameram .drawer-overlay { position: fixed; inset: 0; background: rgba(10,23,48,.5); z-index: 390; }

.theme-kameram .mobile-bottom-nav {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: var(--k-ink); grid-template-columns: repeat(4, 1fr);
  box-shadow: 0 -4px 16px rgba(10,23,48,.25);
}
.theme-kameram .mobile-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 8px 4px 10px; font-size: .7rem; font-weight: 600; position: relative; color: #b9c6de;
}
.theme-kameram .mobile-bottom-nav a span { display: flex; }
.theme-kameram .bottom-badge {
  position: absolute; top: 4px; right: 22%; background: var(--k-rec); color: #fff;
  border-radius: 10px; min-width: 17px; height: 17px; line-height: 17px; text-align: center;
  font-size: .68rem; font-style: normal;
}

@media (max-width: 900px) {
  .theme-kameram .mobile-menu-btn { display: block; }
  .theme-kameram .main-nav, .theme-kameram .top-left, .theme-kameram .top-right { display: none; }
  /* Mobil header: üst satır menü+logo+ikonlar, alt satır tam genişlik arama */
  .theme-kameram .header-inner { gap: 10px 12px; padding: 12px 14px; flex-wrap: wrap; }
  .theme-kameram .logo { flex: 1; min-width: 0; }
  .theme-kameram .logo img { max-height: 40px; }
  .theme-kameram .header-actions { margin-left: auto; flex-shrink: 0; }
  .theme-kameram .tech-search { order: 5; flex: 1 1 100%; max-width: none; }
  .theme-kameram .action-item span { display: none; }
  .theme-kameram .mobile-bottom-nav { display: grid; }
  body.theme-kameram { padding-bottom: 64px; }
  .theme-kameram .whatsapp-fab { bottom: 76px; }
  .kameram-hero { margin-top: 14px; border-radius: 16px; }
  .k-why { grid-template-columns: 1fr; padding: 34px 26px; gap: 28px; }
  .k-trust-band { grid-template-columns: 1fr 1fr; margin-bottom: 40px; }
  .k-section { margin: 44px 0; }
  .theme-kameram .newsletter-form { width: 100%; }
  .theme-kameram .newsletter-form input { min-width: 0; flex: 1; }
  #purchase-row { margin-top: 8px; }
}
@media (max-width: 540px) {
  .k-trust-band { grid-template-columns: 1fr; }
  .k-title-row { flex-direction: column; align-items: flex-start; }
  .k-tabs { width: 100%; justify-content: space-between; }
}
