/*
 * OTORIXA — Public Vitrin Tasarım Sistemi
 * Paket 28: Ortak public vitrin katmanı.
 * Amaç: Ana sayfa, kategori, lokasyon, içerik ve forum yüzeylerinde
 * aynı premium kart, buton, ikon, yayılım ve CTA ritmini kullanmak.
 * Ağır JS yoktur; mevcut HTML ve mevcut modüler yapı korunur.
 */
:root{
  --otx-vitrine-bg:#050b14;
  --otx-vitrine-panel:rgba(9,17,29,.84);
  --otx-vitrine-panel-soft:rgba(255,255,255,.055);
  --otx-vitrine-line:rgba(230,190,103,.22);
  --otx-vitrine-line-strong:rgba(230,190,103,.44);
  --otx-vitrine-gold:#f4c86d;
  --otx-vitrine-gold-soft:#ffe3a5;
  --otx-vitrine-teal:#33d6c7;
  --otx-vitrine-cyan:#63b7ff;
  --otx-vitrine-text:#f7f4ec;
  --otx-vitrine-muted:#aeb7c4;
  --otx-vitrine-radius:24px;
  --otx-vitrine-shadow:0 24px 70px rgba(0,0,0,.32);
}
.otx-public-vitrine .hdr,
.otx-public-vitrine .drawer,
.otx-public-vitrine .ftr,
.otx-public-vitrine .dock{
  --otx-nav-gold:var(--otx-vitrine-gold);
}
.otx-public-vitrine .btn,
.otx-public-vitrine .hdr-link,
.otx-public-vitrine .drawer-link,
.otx-public-vitrine .ftr-links a{
  text-decoration:none;
}
.otx-public-vitrine .btn-primary,
.otx-public-vitrine .hdr-actions .btn-primary{
  background:linear-gradient(135deg,#ffe8aa 0%,#f4c86d 48%,#c99234 100%);
  color:#1c1407;
  border:1px solid rgba(255,233,170,.55);
  box-shadow:0 10px 28px rgba(244,200,109,.18);
}
.otx-public-vitrine .btn-secondary,
.otx-public-vitrine .btn-outline,
.otx-public-vitrine .btn-ghost{
  border-color:rgba(244,200,109,.32);
}
.otx-vitrine-section{
  position:relative;
  overflow:hidden;
  border:1px solid var(--otx-vitrine-line);
  border-radius:var(--otx-vitrine-radius);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
  box-shadow:var(--otx-vitrine-shadow);
}
.otx-vitrine-section::before{
  content:"";
  position:absolute;
  inset:-1px;
  pointer-events:none;
  background:
    radial-gradient(circle at 14% 8%,rgba(244,200,109,.18),transparent 28%),
    radial-gradient(circle at 86% 12%,rgba(51,214,199,.14),transparent 32%),
    linear-gradient(90deg,transparent,rgba(255,255,255,.06),transparent);
  opacity:.82;
}
.otx-vitrine-grid{
  display:grid;
  grid-template-columns:repeat(12,minmax(0,1fr));
  gap:18px;
}
.otx-vitrine-card,
.otx-vitrine-mini,
.otx-vitrine-channel,
.otx-vitrine-kpi{
  position:relative;
  border:1px solid var(--otx-vitrine-line);
  border-radius:20px;
  background:linear-gradient(180deg,rgba(10,20,34,.88),rgba(7,13,22,.78));
  color:var(--otx-vitrine-text);
  box-shadow:0 16px 44px rgba(0,0,0,.22);
}
.otx-vitrine-card{padding:22px;}
.otx-vitrine-mini{padding:16px;}
.otx-vitrine-card h2,
.otx-vitrine-card h3,
.otx-vitrine-mini h3,
.otx-vitrine-channel h3{margin:0 0 8px;color:var(--otx-vitrine-text);letter-spacing:-.02em;}
.otx-vitrine-card p,
.otx-vitrine-mini p,
.otx-vitrine-channel p{margin:0;color:var(--otx-vitrine-muted);line-height:1.58;}
.otx-vitrine-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--otx-vitrine-gold);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.76rem;
}
.otx-vitrine-title{
  margin:10px 0 12px;
  color:var(--otx-vitrine-text);
  font-weight:900;
  letter-spacing:-.045em;
  line-height:1.02;
}
.otx-vitrine-title .accent,
.otx-public-vitrine .accent{color:var(--otx-vitrine-gold);}
.otx-vitrine-desc{max-width:760px;color:var(--otx-vitrine-muted);font-size:1.04rem;line-height:1.72;}
.otx-vitrine-cta-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px;}
.otx-vitrine-icon{
  width:42px;height:42px;display:inline-grid;place-items:center;
  border-radius:14px;
  color:var(--otx-vitrine-gold-soft);
  background:linear-gradient(135deg,rgba(244,200,109,.20),rgba(51,214,199,.10));
  border:1px solid var(--otx-vitrine-line-strong);
}
.otx-vitrine-icon svg{width:22px;height:22px;}
.otx-ai-hub{
  position:relative;
  min-height:280px;
  display:grid;
  place-items:center;
  border-radius:28px;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 48%,rgba(51,214,199,.26),transparent 22%),
    radial-gradient(circle at 50% 48%,rgba(244,200,109,.18),transparent 38%),
    linear-gradient(135deg,rgba(7,16,28,.95),rgba(4,8,16,.88));
  border:1px solid var(--otx-vitrine-line);
}
.otx-ai-hub::before{
  content:"";position:absolute;inset:0;opacity:.55;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
  background-size:34px 34px;
  mask-image:radial-gradient(circle at 50% 50%,#000 0 60%,transparent 78%);
}
.otx-ai-core{
  position:relative;
  width:150px;height:150px;border-radius:50%;
  display:grid;place-items:center;text-align:center;
  color:var(--otx-vitrine-text);
  border:1px solid rgba(51,214,199,.52);
  background:radial-gradient(circle,rgba(51,214,199,.28),rgba(5,11,20,.96) 68%);
  box-shadow:0 0 80px rgba(51,214,199,.28), inset 0 0 48px rgba(244,200,109,.08);
}
.otx-ai-core strong{display:block;color:var(--otx-vitrine-gold);font-size:.86rem;letter-spacing:.18em;}
.otx-ai-core span{display:block;font-size:2.7rem;font-weight:900;letter-spacing:-.06em;color:#96fff4;}
.otx-ai-platforms,
.otx-distribution-platforms{
  display:grid;gap:10px;
}
.otx-platform-pill{
  display:flex;align-items:center;gap:10px;
  min-height:44px;padding:9px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.10);
  color:var(--otx-vitrine-text);
}
.otx-platform-logo{
  width:28px;height:28px;border-radius:9px;display:grid;place-items:center;
  background:rgba(255,255,255,.11);font-size:.84rem;font-weight:900;color:var(--otx-vitrine-gold);
}
.otx-propagation-map{
  display:grid;grid-template-columns:repeat(8,minmax(90px,1fr));gap:12px;align-items:stretch;
}
.otx-flow-node{
  position:relative;text-align:center;padding:16px 10px;border-radius:18px;
  background:rgba(255,255,255,.05);border:1px solid rgba(244,200,109,.22);
}
.otx-flow-node:not(:last-child)::after{
  content:"";position:absolute;top:50%;right:-13px;width:14px;height:1px;background:linear-gradient(90deg,var(--otx-vitrine-gold),transparent);
}
.otx-flow-node .otx-vitrine-icon{margin-bottom:8px;}
.otx-kpi-strip{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:1px;padding:0;overflow:hidden;}
.otx-vitrine-kpi{border:0;border-radius:0;padding:18px;background:rgba(255,255,255,.052);box-shadow:none;}
.otx-vitrine-kpi strong{display:block;color:var(--otx-vitrine-gold);font-size:1.25rem;line-height:1;}
.otx-vitrine-kpi span{display:block;color:var(--otx-vitrine-muted);margin-top:4px;font-size:.9rem;}
.otx-channel-grid{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;}
.otx-vitrine-channel{padding:16px;min-height:142px;}
.otx-vitrine-channel .otx-platform-logo{margin-bottom:10px;}
.otx-category-preview{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px;}
.otx-category-preview a,.otx-category-preview .otx-category-card{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:18px;border-radius:18px;
  border:1px solid var(--otx-vitrine-line);
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.04));
  color:var(--otx-vitrine-text);text-decoration:none;
}
.otx-vitrine-link{color:var(--otx-vitrine-gold);font-weight:800;text-decoration:none;}
.otx-vitrine-link:hover{text-decoration:underline;}
.otx-public-vitrine .ftr-badges{gap:8px;}
.otx-public-vitrine .ftr-badge{border-color:rgba(244,200,109,.24);background:rgba(244,200,109,.07);}
@media (max-width:1100px){
  .otx-vitrine-grid{grid-template-columns:repeat(6,minmax(0,1fr));}
  .otx-propagation-map{grid-template-columns:repeat(4,minmax(0,1fr));}
  .otx-channel-grid,.otx-category-preview{grid-template-columns:repeat(3,minmax(0,1fr));}
  .otx-kpi-strip{grid-template-columns:repeat(3,minmax(0,1fr));}
}
@media (max-width:720px){
  .otx-vitrine-grid{grid-template-columns:1fr;gap:12px;}
  .otx-propagation-map,.otx-channel-grid,.otx-category-preview,.otx-kpi-strip{grid-template-columns:1fr 1fr;}
  .otx-flow-node:not(:last-child)::after{display:none;}
  .otx-ai-core{width:124px;height:124px;}.otx-ai-core span{font-size:2.2rem;}
  .otx-vitrine-title{font-size:clamp(2rem,10vw,3.2rem);}
}
@media (prefers-reduced-motion:reduce){
  .otx-public-vitrine *{scroll-behavior:auto!important;animation-duration:.001ms!important;transition-duration:.001ms!important;}
}

/* Paket 30 — Kompakt AI ve Sosyal İkon Vitrini */
.otx-compact-ai-social{position:relative;overflow:hidden;}
.otx-compact-vitrine{
  display:grid;grid-template-columns:minmax(0,.86fr) minmax(420px,1.14fr);gap:26px;align-items:center;
  padding:28px;border-radius:30px;border:1px solid rgba(244,200,109,.22);
  background:radial-gradient(circle at 72% 26%,rgba(51,214,199,.16),transparent 34%),linear-gradient(135deg,rgba(8,14,28,.96),rgba(12,18,31,.90));
  box-shadow:0 24px 80px rgba(0,0,0,.28);color:var(--otx-vitrine-text,#fff);
}
.otx-compact-copy h2{margin:.35rem 0 .7rem;font-size:clamp(1.8rem,3.6vw,3.35rem);letter-spacing:-.055em;line-height:.98;}
.otx-compact-copy p{max-width:680px;color:var(--otx-vitrine-muted,rgba(255,255,255,.74));font-size:1.02rem;line-height:1.68;}
.otx-compact-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px;}
.otx-compact-hub{position:relative;min-height:430px;border-radius:26px;border:1px solid rgba(255,255,255,.10);background:rgba(255,255,255,.035);overflow:hidden;}
.otx-compact-hub:before{content:"";position:absolute;inset:18px;border-radius:50%;border:1px dashed rgba(51,214,199,.24);box-shadow:0 0 70px rgba(51,214,199,.08) inset;}
.otx-compact-hub:after{content:"";position:absolute;inset:0;background-image:radial-gradient(circle,rgba(244,200,109,.24) 1px,transparent 1.5px);background-size:32px 32px;opacity:.16;mask-image:radial-gradient(circle at 50% 50%,#000 0 58%,transparent 82%);}
.otx-compact-core{position:absolute;z-index:2;left:50%;top:50%;transform:translate(-50%,-50%);width:158px;height:158px;border-radius:50%;display:grid;place-items:center;text-align:center;padding:18px;border:1px solid rgba(51,214,199,.55);background:radial-gradient(circle,rgba(51,214,199,.28),rgba(6,12,22,.98) 68%);box-shadow:0 0 92px rgba(51,214,199,.32),inset 0 0 36px rgba(244,200,109,.12);}
.otx-compact-core strong{font-size:.72rem;letter-spacing:.22em;color:var(--otx-vitrine-gold,#f4c86d);}
.otx-compact-core span{display:block;font-size:3.1rem;font-weight:950;letter-spacing:-.08em;color:#9ffff7;line-height:.82;}
.otx-compact-core em{font-style:normal;font-size:.72rem;color:rgba(255,255,255,.72);}
.otx-compact-ring{position:absolute;z-index:3;display:grid;gap:9px;width:210px;}
.otx-compact-ai-list{left:20px;top:22px;}
.otx-compact-social-list{right:20px;bottom:22px;}
.otx-mini-platform{display:grid;grid-template-columns:34px 1fr;column-gap:10px;align-items:center;min-height:52px;padding:9px 10px;border-radius:15px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.12);backdrop-filter:blur(10px);}
.otx-mini-platform b{grid-row:1/3;width:34px;height:34px;border-radius:11px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(244,200,109,.92),rgba(51,214,199,.78));color:#07101d;font-size:.75rem;font-weight:950;letter-spacing:-.03em;}
.otx-mini-platform span{font-weight:850;font-size:.86rem;color:#fff;line-height:1.05;}
.otx-mini-platform small{font-size:.72rem;color:rgba(255,255,255,.66);line-height:1.15;}
.otx-compact-spread{margin-top:14px;display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:8px;}
.otx-compact-spread span{position:relative;display:flex;align-items:center;justify-content:center;gap:7px;padding:11px 8px;border-radius:14px;background:rgba(10,18,31,.82);border:1px solid rgba(244,200,109,.18);color:rgba(255,255,255,.86);font-size:.84rem;font-weight:750;}
.otx-compact-spread span:not(:last-child):after{content:"";position:absolute;right:-8px;top:50%;width:8px;height:1px;background:linear-gradient(90deg,rgba(244,200,109,.75),transparent);}
.otx-compact-spread i{font-style:normal;width:24px;height:24px;border-radius:8px;display:grid;place-items:center;background:rgba(51,214,199,.12);color:#9ffff7;font-size:.72rem;font-weight:950;}
@media(max-width:1100px){.otx-compact-vitrine{grid-template-columns:1fr}.otx-compact-spread{grid-template-columns:repeat(4,minmax(0,1fr));}.otx-compact-hub{min-height:400px;}}
@media(max-width:720px){.otx-compact-vitrine{padding:18px;border-radius:24px}.otx-compact-hub{min-height:auto;padding:18px;display:grid;gap:12px}.otx-compact-hub:before,.otx-compact-hub:after{display:none}.otx-compact-core,.otx-compact-ring{position:relative;left:auto;right:auto;top:auto;bottom:auto;transform:none;width:auto}.otx-compact-core{height:auto;border-radius:22px}.otx-compact-ai-list,.otx-compact-social-list{width:auto}.otx-compact-spread{grid-template-columns:1fr 1fr}.otx-compact-spread span:after{display:none}.otx-mini-platform{grid-template-columns:32px 1fr;}}


/* Paket 30B — Çift vitrin temizliği + gerçek ikon kalite düzeltmesi */
.otx-public-vitrine .hero-flagship{display:none!important;}
.otx-primary-vitrine{padding-top:clamp(28px,4vw,64px);}
.otx-primary-vitrine .otx-compact-vitrine{
  grid-template-columns:minmax(0,1fr) minmax(460px,1.06fr);
  padding:clamp(22px,3.4vw,42px);
  min-height:520px;
  background:
    radial-gradient(circle at 78% 16%,rgba(51,214,199,.20),transparent 32%),
    radial-gradient(circle at 18% 22%,rgba(244,200,109,.14),transparent 28%),
    linear-gradient(135deg,rgba(7,13,24,.98),rgba(13,19,32,.93));
}
.otx-primary-vitrine .otx-compact-copy h1{
  margin:.42rem 0 .8rem;
  font-size:clamp(2.25rem,5vw,5rem);
  line-height:.94;
  letter-spacing:-.07em;
  color:#fff;
  text-wrap:balance;
}
.otx-primary-vitrine .otx-compact-copy p{font-size:1.06rem;max-width:760px;}
.otx-primary-vitrine .otx-compact-actions .btn{min-height:46px;}
.otx-primary-vitrine .otx-compact-hub{min-height:470px;}
.otx-mini-platform b img{width:25px;height:25px;display:block;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(0,0,0,.22));}
.otx-mini-platform b{
  background:linear-gradient(135deg,rgba(255,255,255,.96),rgba(236,247,255,.82));
  border:1px solid rgba(255,255,255,.30);
  color:#07101d;
}
.otx-compact-ai-list .otx-mini-platform:nth-child(1) b{background:#ffffff;}
.otx-compact-ai-list .otx-mini-platform:nth-child(2) b{background:linear-gradient(135deg,#e9d7ff,#a7f3ff);}
.otx-compact-ai-list .otx-mini-platform:nth-child(3) b{background:linear-gradient(135deg,#fff0d8,#ffd29a);}
.otx-compact-ai-list .otx-mini-platform:nth-child(4) b{background:linear-gradient(135deg,#d8e9ff,#d6fff2);}
.otx-compact-ai-list .otx-mini-platform:nth-child(5) b{background:linear-gradient(135deg,#d7fff8,#f2ffff);}
.otx-compact-ai-list .otx-mini-platform:nth-child(6) b{background:linear-gradient(135deg,#e6e3ff,#d7f7ff);}
.otx-compact-social-list .otx-mini-platform:nth-child(1) b{background:linear-gradient(135deg,#ffdc80,#f77737,#c13584,#833ab4);}
.otx-compact-social-list .otx-mini-platform:nth-child(2) b{background:#1877f2;}
.otx-compact-social-list .otx-mini-platform:nth-child(3) b{background:#0a66c2;}
.otx-compact-social-list .otx-mini-platform:nth-child(4) b{background:#fff;}
.otx-compact-social-list .otx-mini-platform:nth-child(5) b{background:#ff0033;}
.otx-compact-social-list .otx-mini-platform:nth-child(6) b{background:#e60023;}
.otx-compact-spread{position:relative;}
.otx-compact-spread:before{
  content:"";position:absolute;left:16px;right:16px;top:50%;height:1px;
  background:linear-gradient(90deg,transparent,rgba(244,200,109,.52),rgba(51,214,199,.44),transparent);
  pointer-events:none;
}
.otx-compact-spread span{z-index:1;backdrop-filter:blur(10px);}
.otx-quality-grid,.feature-grid,.intent-grid,.otx-intent-grid,.otx-social-visual-grid{content-visibility:auto;contain-intrinsic-size:1px 420px;}
.otx-index-trust .otx-quality-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
.otx-index-flow .feature-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
.index-intent-section .intent-grid,.otx-intent-surface .otx-intent-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
.otx-social-visual-home .otx-social-visual-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
@media(max-width:1100px){
  .otx-primary-vitrine .otx-compact-vitrine{grid-template-columns:1fr;min-height:auto;}
  .otx-index-trust .otx-quality-grid,.otx-index-flow .feature-grid,.index-intent-section .intent-grid,.otx-intent-surface .otx-intent-grid,.otx-social-visual-home .otx-social-visual-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:720px){
  .otx-primary-vitrine{padding-top:18px;}
  .otx-primary-vitrine .otx-compact-copy h1{font-size:clamp(2rem,12vw,3.2rem);}
  .otx-index-trust .otx-quality-grid,.otx-index-flow .feature-grid,.index-intent-section .intent-grid,.otx-intent-surface .otx-intent-grid,.otx-social-visual-home .otx-social-visual-grid{grid-template-columns:1fr;}
}


/* Paket 30C — Odaklı AI/Sosyal vitrin alanı: mobil, ikon, CSS/JS kalite dokunuşu */
.otx-focus-vitrine{padding-top:clamp(22px,4vw,58px);}
.otx-focus-vitrine-shell{
  grid-template-columns:minmax(0,.9fr) minmax(520px,1.1fr);
  gap:clamp(18px,3vw,34px);
  isolation:isolate;
  background:
    radial-gradient(circle at 80% 12%,rgba(59,225,210,.24),transparent 30%),
    radial-gradient(circle at 18% 8%,rgba(245,202,112,.17),transparent 32%),
    linear-gradient(135deg,#07101d 0%,#0c1628 54%,#070d18 100%);
  border-color:rgba(245,202,112,.28);
}
.otx-focus-copy h1{
  margin:.44rem 0 .82rem;
  font-size:clamp(2.2rem,5.4vw,5.2rem);
  line-height:.93;
  letter-spacing:-.075em;
  text-wrap:balance;
  color:#fff;
}
.otx-focus-copy p{font-size:clamp(1rem,1.3vw,1.13rem);line-height:1.72;color:rgba(255,255,255,.78);}
.otx-focus-microcopy{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0 2px;}
.otx-focus-microcopy span{padding:8px 11px;border-radius:999px;background:rgba(245,202,112,.1);border:1px solid rgba(245,202,112,.24);color:#ffe2a0;font-size:.78rem;font-weight:900;letter-spacing:.02em;}
.otx-focus-stage{
  position:relative;min-height:520px;border-radius:30px;overflow:hidden;padding:18px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.028));
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.035),0 28px 80px rgba(0,0,0,.22);
}
.otx-focus-stage:before{content:"";position:absolute;inset:0;background:
  linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px),
  linear-gradient(180deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:42px 42px;opacity:.2;mask-image:radial-gradient(circle at 50% 50%,#000 0 45%,transparent 82%);
}
.otx-focus-stage:after{content:"";position:absolute;inset:22px;border-radius:50%;border:1px dashed rgba(59,225,210,.28);box-shadow:0 0 120px rgba(59,225,210,.10) inset;}
.otx-focus-orbit{position:absolute;inset:76px;border-radius:50%;background:conic-gradient(from 90deg,rgba(245,202,112,.0),rgba(245,202,112,.42),rgba(59,225,210,.35),rgba(245,202,112,.0));filter:blur(.2px);opacity:.42;animation:otxOrbit 18s linear infinite;}
.otx-focus-core{width:176px;height:176px;box-shadow:0 0 110px rgba(59,225,210,.42),inset 0 0 42px rgba(245,202,112,.12);}
.otx-focus-core strong{font-size:.74rem;}
.otx-focus-core span{font-size:3.5rem;}
.otx-focus-stack{position:absolute;z-index:4;display:grid;gap:9px;width:min(238px,37%);}
.otx-stack-title{padding:8px 11px;border-radius:999px;background:rgba(7,14,26,.72);border:1px solid rgba(255,255,255,.13);color:#ffe2a0;font-size:.72rem;font-weight:950;text-transform:uppercase;letter-spacing:.11em;text-align:center;}
.otx-focus-stack-ai{left:18px;top:18px;}
.otx-focus-stack-social{right:18px;bottom:18px;}
.otx-focus-vitrine .otx-mini-platform{position:relative;min-height:58px;padding:10px 11px;border-color:rgba(255,255,255,.16);background:rgba(7,14,26,.76);box-shadow:0 12px 34px rgba(0,0,0,.18);transition:transform .22s ease,border-color .22s ease,background .22s ease;}
.otx-focus-vitrine .otx-mini-platform:hover,.otx-focus-vitrine .otx-mini-platform.is-focus{transform:translateY(-2px);border-color:rgba(245,202,112,.46);background:rgba(10,21,38,.86);}
.otx-focus-vitrine .otx-mini-platform b{width:38px;height:38px;border-radius:14px;}
.otx-focus-vitrine .otx-mini-platform b img{width:28px;height:28px;}
.otx-focus-vitrine .otx-mini-platform span{font-size:.88rem;}
.otx-focus-vitrine .otx-mini-platform small{font-size:.71rem;color:rgba(255,255,255,.68);}
.otx-focus-card-row{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:14px;}
.otx-focus-info-card{display:grid;grid-template-columns:44px 1fr;gap:10px;align-items:start;padding:16px;border-radius:20px;border:1px solid rgba(245,202,112,.18);background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.03));color:#fff;}
.otx-focus-info-card h2{margin:0 0 5px;font-size:1rem;letter-spacing:-.02em;}
.otx-focus-info-card p{margin:0;color:rgba(255,255,255,.68);font-size:.9rem;line-height:1.45;}
.otx-focus-info-icon,.otx-focus-reach i{width:36px;height:36px;border-radius:13px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(245,202,112,.20),rgba(59,225,210,.13));border:1px solid rgba(255,255,255,.12);}
.otx-focus-info-icon:before,.otx-focus-reach i:before{content:"✦";color:#9ffff7;font-weight:900;}
.otx-focus-info-icon[data-icon="content"]:before{content:"✍"}.otx-focus-info-icon[data-icon="calendar"]:before{content:"◷"}.otx-focus-info-icon[data-icon="shield"]:before{content:"✓"}
.otx-focus-spread{margin-top:12px;}
.otx-focus-reach{display:grid;grid-template-columns:repeat(8,minmax(0,1fr));gap:8px;margin-top:10px;}
.otx-focus-reach span{display:flex;align-items:center;justify-content:center;gap:7px;min-height:46px;padding:9px 7px;border-radius:15px;background:rgba(255,255,255,.045);border:1px solid rgba(255,255,255,.10);color:rgba(255,255,255,.82);font-size:.8rem;font-weight:820;text-align:center;}
.otx-focus-reach i{width:26px;height:26px;border-radius:9px;flex:0 0 auto;}
.otx-focus-reach i[data-icon="web"]:before{content:"⌘"}.otx-focus-reach i[data-icon="blog"]:before{content:"¶"}.otx-focus-reach i[data-icon="share"]:before{content:"↗"}.otx-focus-reach i[data-icon="forum"]:before{content:"❞"}.otx-focus-reach i[data-icon="dict"]:before{content:"Aa";font-size:.68rem}.otx-focus-reach i[data-icon="image"]:before{content:"▧"}.otx-focus-reach i[data-icon="pin"]:before{content:"⌖"}.otx-focus-reach i[data-icon="grid"]:before{content:"▦"}
@keyframes otxOrbit{to{transform:rotate(360deg)}}
@media(max-width:1180px){
  .otx-focus-vitrine-shell{grid-template-columns:1fr;}
  .otx-focus-stage{min-height:auto;display:grid;grid-template-columns:1fr 1fr;gap:12px;padding:16px;}
  .otx-focus-stage:after,.otx-focus-orbit{display:none;}
  .otx-focus-core{position:relative;left:auto;top:auto;transform:none;width:auto;height:auto;min-height:126px;border-radius:24px;grid-column:1/-1;}
  .otx-focus-stack{position:relative;left:auto;right:auto;top:auto;bottom:auto;width:auto;}
  .otx-focus-reach{grid-template-columns:repeat(4,minmax(0,1fr));}
}
@media(max-width:720px){
  .otx-focus-vitrine-shell{padding:18px;border-radius:26px;}
  .otx-focus-copy h1{font-size:clamp(2rem,11.8vw,3.35rem);letter-spacing:-.065em;}
  .otx-focus-copy p{font-size:.98rem;line-height:1.62;}
  .otx-focus-stage{grid-template-columns:1fr;}
  .otx-focus-card-row{grid-template-columns:1fr;}
  .otx-focus-reach{grid-template-columns:1fr 1fr;}
  .otx-focus-vitrine .otx-mini-platform{min-height:56px;}
}
@media(prefers-reduced-motion:reduce){.otx-focus-orbit{animation:none!important;}}

/* Paket 30D — Public index başlık, ikon alt/title, renk uyumu, mobil kalite ve PageSpeed dokunuşu */
.otx-focus-vitrine{
  --otx-ai-green:#10a37f;
  --otx-ai-violet:#8b5cf6;
  --otx-ai-amber:#d97706;
  --otx-ai-blue:#2563eb;
  --otx-ai-teal:#00a6a6;
  --otx-social-pink:#e1306c;
  --otx-social-blue:#1877f2;
  --otx-social-linkedin:#0a66c2;
  --otx-social-red:#ff0033;
  color-scheme:dark;
}
.otx-focus-vitrine-shell{content-visibility:auto;contain-intrinsic-size:1px 760px;}
.otx-focus-copy .eyebrow{color:#ffe2a0;text-shadow:0 0 18px rgba(245,202,112,.12);}
.otx-focus-copy h1{max-width:860px;}
.otx-focus-copy h1::after{
  content:"";display:block;width:min(220px,52vw);height:3px;margin:18px 0 0;border-radius:999px;
  background:linear-gradient(90deg,#f6cf7b,#45e4d5,transparent);
  box-shadow:0 0 28px rgba(69,228,213,.18);
}
.otx-focus-quality-line{
  display:flex;flex-wrap:wrap;gap:7px;margin:12px 0 2px;
}
.otx-focus-quality-line span{
  position:relative;padding:7px 10px 7px 25px;border-radius:999px;
  background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  border:1px solid rgba(255,255,255,.10);
  color:rgba(255,255,255,.78);font-size:.74rem;font-weight:850;
}
.otx-focus-quality-line span::before{
  content:"";position:absolute;left:10px;top:50%;width:7px;height:7px;border-radius:50%;transform:translateY(-50%);
  background:#45e4d5;box-shadow:0 0 16px rgba(69,228,213,.58);
}
.otx-focus-stage{contain:layout paint;}
.otx-focus-vitrine .otx-mini-platform{
  overflow:hidden;
  isolation:isolate;
}
.otx-focus-vitrine .otx-mini-platform::after{
  content:"";position:absolute;inset:auto 12px 0;height:1px;
  background:linear-gradient(90deg,transparent,var(--brand-color,rgba(245,202,112,.5)),transparent);
  opacity:.6;
}
.otx-focus-vitrine .otx-mini-platform b{
  box-shadow:0 12px 32px color-mix(in srgb,var(--brand-color,#45e4d5) 22%,transparent), inset 0 0 0 1px rgba(255,255,255,.16);
}
.otx-focus-vitrine .otx-mini-platform[data-brand="chatgpt"]{--brand-color:var(--otx-ai-green);}
.otx-focus-vitrine .otx-mini-platform[data-brand="gemini"]{--brand-color:var(--otx-ai-violet);}
.otx-focus-vitrine .otx-mini-platform[data-brand="claude"]{--brand-color:var(--otx-ai-amber);}
.otx-focus-vitrine .otx-mini-platform[data-brand="copilot"]{--brand-color:var(--otx-ai-blue);}
.otx-focus-vitrine .otx-mini-platform[data-brand="perplexity"]{--brand-color:var(--otx-ai-teal);}
.otx-focus-vitrine .otx-mini-platform[data-brand="midjourney"]{--brand-color:#5865f2;}
.otx-focus-vitrine .otx-mini-platform[data-brand="instagram"]{--brand-color:var(--otx-social-pink);}
.otx-focus-vitrine .otx-mini-platform[data-brand="facebook"]{--brand-color:var(--otx-social-blue);}
.otx-focus-vitrine .otx-mini-platform[data-brand="linkedin"]{--brand-color:var(--otx-social-linkedin);}
.otx-focus-vitrine .otx-mini-platform[data-brand="google-business"]{--brand-color:#34a853;}
.otx-focus-vitrine .otx-mini-platform[data-brand="youtube-shorts"]{--brand-color:var(--otx-social-red);}
.otx-focus-vitrine .otx-mini-platform[data-brand="pinterest"]{--brand-color:#e60023;}
.otx-focus-vitrine .otx-mini-platform:hover,
.otx-focus-vitrine .otx-mini-platform.is-focus,
.otx-focus-vitrine .otx-mini-platform.is-active{
  border-color:color-mix(in srgb,var(--brand-color,#f6cf7b) 58%,rgba(255,255,255,.14));
  box-shadow:0 14px 36px color-mix(in srgb,var(--brand-color,#45e4d5) 14%,transparent);
}
.otx-focus-vitrine .otx-mini-platform:focus-within{outline:2px solid color-mix(in srgb,var(--brand-color,#45e4d5) 70%,#fff);outline-offset:3px;}
.otx-focus-info-card h3{margin:0 0 5px;font-size:1rem;letter-spacing:-.02em;color:#fff;line-height:1.18;}
.otx-focus-info-card h2{font-size:1rem;}
.otx-focus-info-card{transition:transform .18s ease,border-color .18s ease,background .18s ease;}
.otx-focus-info-card:hover{transform:translateY(-2px);border-color:rgba(69,228,213,.28);background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));}
.otx-focus-reach span{transition:border-color .18s ease,transform .18s ease;background:rgba(7,14,26,.56);}
.otx-focus-reach span:hover{transform:translateY(-1px);border-color:rgba(245,202,112,.28);}
@media(max-width:720px){
  .otx-focus-vitrine{padding-top:12px;}
  .otx-focus-vitrine-shell{padding:16px;border-radius:24px;gap:16px;}
  .otx-focus-copy .eyebrow{font-size:.7rem;letter-spacing:.08em;}
  .otx-focus-copy h1{line-height:.98;margin-top:.55rem;}
  .otx-focus-copy h1::after{margin-top:14px;width:160px;}
  .otx-focus-quality-line span{font-size:.7rem;padding:6px 9px 6px 22px;}
  .otx-focus-microcopy span{padding:7px 9px;font-size:.72rem;}
  .otx-compact-actions{gap:9px;}
  .otx-compact-actions .btn{width:100%;justify-content:center;min-height:44px;}
  .otx-focus-stage{padding:13px;border-radius:22px;}
  .otx-focus-core{min-height:108px;}
  .otx-focus-core span{font-size:2.55rem;}
  .otx-stack-title{font-size:.66rem;letter-spacing:.08em;}
  .otx-focus-vitrine .otx-mini-platform{grid-template-columns:34px 1fr;min-height:52px;padding:9px;}
  .otx-focus-vitrine .otx-mini-platform b{width:34px;height:34px;border-radius:12px;}
  .otx-focus-vitrine .otx-mini-platform b img{width:25px;height:25px;}
  .otx-focus-vitrine .otx-mini-platform small{display:none;}
  .otx-focus-reach{grid-template-columns:1fr 1fr;}
  .otx-focus-reach span{min-height:42px;font-size:.74rem;}
}
@media(max-width:420px){
  .otx-focus-reach,.otx-compact-spread{grid-template-columns:1fr;}
  .otx-focus-quality-line{display:grid;grid-template-columns:1fr 1fr;}
}
@supports not (content-visibility:auto){.otx-focus-vitrine-shell{contain:layout paint;}}

/* Paket 30E — Vitrin altı içerik üretim akışı toparlama */
.otx-flow-refined{position:relative;z-index:1;}
.otx-flow-refined .otx-flow-shell{
  display:grid;
  grid-template-columns:minmax(0,.86fr) minmax(420px,1.14fr);
  gap:clamp(18px,3vw,34px);
  align-items:stretch;
  padding:clamp(18px,3.2vw,34px);
  border-radius:32px;
  border:1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 12% 10%,rgba(245,202,112,.14),transparent 30%),
    radial-gradient(circle at 88% 22%,rgba(59,225,210,.13),transparent 34%),
    linear-gradient(135deg,rgba(7,14,26,.96),rgba(13,21,36,.88));
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  overflow:hidden;
  content-visibility:auto;
  contain-intrinsic-size:1px 520px;
}
.otx-flow-refined .otx-flow-shell::before{
  content:"";
  position:absolute;
  inset:auto -8% -42% 36%;
  height:260px;
  background:radial-gradient(circle,rgba(59,225,210,.16),transparent 70%);
  pointer-events:none;
}
.otx-flow-copy{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;max-width:690px;}
.otx-flow-copy h2{margin:.55rem 0 .82rem;font-size:clamp(1.85rem,3vw,3.2rem);line-height:1.03;letter-spacing:-.055em;color:#fff;text-wrap:balance;}
.otx-flow-copy p{margin:0;color:rgba(255,255,255,.76);font-size:clamp(.98rem,1.15vw,1.08rem);line-height:1.68;}
.otx-flow-proof{display:flex;flex-wrap:wrap;gap:8px;margin-top:18px;}
.otx-flow-proof span{display:inline-flex;align-items:center;gap:7px;padding:8px 10px;border-radius:999px;border:1px solid rgba(245,202,112,.24);background:rgba(245,202,112,.09);color:#ffe6ad;font-size:.76rem;font-weight:900;letter-spacing:.015em;}
.otx-flow-proof span::before{content:"✓";display:grid;place-items:center;width:17px;height:17px;border-radius:999px;background:rgba(59,225,210,.16);color:#9ffff7;font-size:.72rem;}
.otx-flow-visual{position:relative;z-index:1;display:grid;grid-template-columns:1fr 1fr;gap:12px;}
.otx-flow-visual::before{content:"";position:absolute;left:50%;top:18px;bottom:18px;width:1px;background:linear-gradient(180deg,transparent,rgba(245,202,112,.42),rgba(59,225,210,.36),transparent);opacity:.75;}
.otx-flow-step-card{position:relative;min-height:154px;padding:17px 17px 16px;border-radius:24px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.035));box-shadow:0 16px 42px rgba(0,0,0,.16);transition:transform .2s ease,border-color .2s ease,background .2s ease;}
.otx-flow-step-card:hover{transform:translateY(-2px);border-color:rgba(59,225,210,.34);background:linear-gradient(180deg,rgba(255,255,255,.09),rgba(255,255,255,.045));}
.otx-flow-step-no{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:16px;margin-bottom:14px;background:linear-gradient(135deg,rgba(245,202,112,.95),rgba(59,225,210,.78));color:#07101d;font-size:.82rem;font-weight:1000;box-shadow:0 14px 34px rgba(59,225,210,.18);}
.otx-flow-step-card h3{margin:0 0 7px;color:#fff;font-size:1.03rem;line-height:1.18;letter-spacing:-.025em;}
.otx-flow-step-card p{margin:0;color:rgba(255,255,255,.67);font-size:.88rem;line-height:1.48;}
@media(max-width:980px){
  .otx-flow-refined .otx-flow-shell{grid-template-columns:1fr;border-radius:28px;}
  .otx-flow-copy{max-width:none;}
  .otx-flow-visual::before{display:none;}
}
@media(max-width:640px){
  .otx-flow-refined .otx-flow-shell{padding:16px;border-radius:24px;gap:15px;}
  .otx-flow-copy h2{font-size:clamp(1.65rem,8vw,2.35rem);letter-spacing:-.052em;}
  .otx-flow-copy p{font-size:.96rem;line-height:1.58;}
  .otx-flow-proof{display:grid;grid-template-columns:1fr 1fr;gap:7px;}
  .otx-flow-proof span{justify-content:flex-start;font-size:.7rem;padding:7px 8px;}
  .otx-flow-visual{grid-template-columns:1fr;gap:10px;}
  .otx-flow-step-card{min-height:0;padding:14px 14px 13px;border-radius:20px;display:grid;grid-template-columns:38px 1fr;gap:12px;align-items:start;}
  .otx-flow-step-no{width:38px;height:38px;margin:0;border-radius:14px;}
  .otx-flow-step-card h3{font-size:.98rem;}
  .otx-flow-step-card p{font-size:.82rem;line-height:1.42;}
}


/* Paket 30F — yalnızca vitrin altı üçlü odak kartı dokunuşu */
.otx-focus-card-row{
  gap:14px;
  align-items:stretch;
}
.otx-focus-info-card{
  position:relative;
  overflow:hidden;
  grid-template-columns:48px 1fr;
  min-height:142px;
  padding:18px;
  border-radius:24px;
  border-color:rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 18% 0%,rgba(245,202,112,.16),transparent 34%),
    linear-gradient(180deg,rgba(255,255,255,.074),rgba(255,255,255,.032));
  box-shadow:0 18px 44px rgba(2,8,23,.18);
}
.otx-focus-info-card::after{
  content:"";
  position:absolute;
  inset:auto 14px 0 14px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,rgba(245,202,112,.75),rgba(59,225,210,.58),transparent);
  opacity:.72;
}
.otx-focus-info-copy{position:relative;z-index:1;min-width:0;}
.otx-focus-info-copy > span{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:0 0 7px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#ffe5ad;
  font-size:.68rem;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
}
.otx-focus-info-card h3{
  margin:0 0 7px;
  font-size:clamp(1rem,1.1vw,1.12rem);
  line-height:1.14;
  letter-spacing:-.03em;
  text-wrap:balance;
}
.otx-focus-info-card p{
  color:rgba(255,255,255,.74);
  font-size:.92rem;
  line-height:1.56;
}
.otx-focus-info-icon{
  width:42px;
  height:42px;
  border-radius:16px;
  box-shadow:0 14px 30px rgba(0,0,0,.16);
}
.otx-focus-info-icon[data-icon="content"]{background:linear-gradient(135deg,rgba(245,202,112,.28),rgba(255,255,255,.06));border-color:rgba(245,202,112,.28);}
.otx-focus-info-icon[data-icon="calendar"]{background:linear-gradient(135deg,rgba(59,225,210,.24),rgba(255,255,255,.05));border-color:rgba(59,225,210,.26);}
.otx-focus-info-icon[data-icon="shield"]{background:linear-gradient(135deg,rgba(96,165,250,.22),rgba(245,202,112,.10));border-color:rgba(96,165,250,.22);}
.otx-focus-info-icon[data-icon="content"]:before{content:"✦";color:#ffd98a;}
.otx-focus-info-icon[data-icon="calendar"]:before{content:"◷";color:#9ffff7;}
.otx-focus-info-icon[data-icon="shield"]:before{content:"✓";color:#b9d7ff;}
@media (max-width:720px){
  .otx-focus-card-row{gap:10px;margin-top:12px;}
  .otx-focus-info-card{
    grid-template-columns:42px 1fr;
    gap:11px;
    min-height:0;
    padding:14px;
    border-radius:20px;
  }
  .otx-focus-info-icon{width:38px;height:38px;border-radius:14px;}
  .otx-focus-info-copy > span{font-size:.62rem;padding:4px 7px;margin-bottom:6px;}
  .otx-focus-info-card h3{font-size:.98rem;margin-bottom:5px;}
  .otx-focus-info-card p{font-size:.84rem;line-height:1.45;}
}

/* Paket 30G — index tekrar temizliği ve kategori kart denge dokunuşu */
.intent-grid{align-items:stretch;}
.intent-card{min-height:unset;display:flex;flex-direction:column;gap:.72rem;}
.intent-card strong{font-size:clamp(1rem,.95rem + .28vw,1.18rem);line-height:1.18;letter-spacing:-.015em;text-transform:none;}
.intent-card span{font-size:.94rem;line-height:1.58;color:rgba(234,242,255,.78);}
.intent-card em{margin-top:auto;font-style:normal;font-weight:800;color:var(--otx-gold,#d7ad55);}
.card-premium h3{display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.card-premium .card-body p{display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden;}
@media (max-width: 720px){
 .intent-grid{grid-template-columns:1fr;gap:.85rem;}
 .intent-card{padding:1rem;}
 .cta-banner .cta-checklist{grid-template-columns:1fr;}
}

/* Paket 30I — Yalnızca mobil yayılım/kanal şeridi düzeltmesi
   Kapsam: .otx-compact-spread ve .otx-focus-reach
   Amaç: mobilde alt alta sarkmayı önlemek, kompakt yatay chip şeridi sağlamak. */
@media (max-width:720px){
  .otx-compact-spread.otx-focus-spread,
  .otx-focus-reach{
    display:flex !important;
    grid-template-columns:none !important;
    gap:8px !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    -webkit-overflow-scrolling:touch;
    scroll-snap-type:x proximity;
    scrollbar-width:none;
    padding:2px 4px 8px !important;
    margin-left:-4px;
    margin-right:-4px;
  }
  .otx-compact-spread.otx-focus-spread::-webkit-scrollbar,
  .otx-focus-reach::-webkit-scrollbar{display:none;}
  .otx-compact-spread.otx-focus-spread span,
  .otx-focus-reach span{
    flex:0 0 auto !important;
    width:auto !important;
    min-width:92px !important;
    max-width:138px !important;
    min-height:38px !important;
    padding:8px 10px !important;
    border-radius:999px !important;
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:6px !important;
    font-size:.72rem !important;
    line-height:1.15 !important;
    white-space:nowrap !important;
    text-align:center !important;
    scroll-snap-align:start;
    background:linear-gradient(135deg,rgba(7,14,26,.88),rgba(255,255,255,.055)) !important;
    border-color:rgba(244,200,109,.20) !important;
  }
  .otx-compact-spread.otx-focus-spread span:after,
  .otx-compact-spread.otx-focus-spread span:not(:last-child):after{display:none !important;}
  .otx-compact-spread.otx-focus-spread i,
  .otx-focus-reach i{
    flex:0 0 22px !important;
    width:22px !important;
    height:22px !important;
    border-radius:8px !important;
    font-size:.62rem !important;
    margin:0 !important;
  }
  .otx-focus-reach i:before{font-size:.62rem !important;}
  .otx-compact-spread.otx-focus-spread span:first-child,
  .otx-focus-reach span:first-child{margin-left:2px;}
  .otx-compact-spread.otx-focus-spread span:last-child,
  .otx-focus-reach span:last-child{margin-right:14px;}
}
@media (max-width:420px){
  .otx-compact-spread.otx-focus-spread span,
  .otx-focus-reach span{
    min-width:84px !important;
    max-width:118px !important;
    padding:7px 9px !important;
    font-size:.68rem !important;
  }
  .otx-compact-spread.otx-focus-spread i,
  .otx-focus-reach i{
    width:20px !important;
    height:20px !important;
  }
}

/* Paket 30J — Public Genel Renk Uyum Katmanı
   Header, footer, drawer, mobil dock ve public kartların renk dilini
   ana Otorixa AI vitriniyle aynı premium sisteme bağlar.
   Admin paneli hedeflenmez; yalnız body.otx-public-vitrine altındaki public yüzeyler etkilenir. */
body.otx-public-vitrine{
  --otx-public-ink:#f8f4eb;
  --otx-public-muted:#b8c2cf;
  --otx-public-soft:#d8e1ec;
  --otx-public-bg:#050914;
  --otx-public-bg-2:#08111f;
  --otx-public-panel:rgba(8,15,28,.84);
  --otx-public-panel-2:rgba(255,255,255,.055);
  --otx-public-border:rgba(244,200,109,.22);
  --otx-public-border-strong:rgba(244,200,109,.42);
  --otx-public-gold:#f4c86d;
  --otx-public-gold-2:#ffe5aa;
  --otx-public-teal:#34d7c8;
  --otx-public-cyan:#6ab9ff;
  --otx-public-blue:#5b8cff;
  --otx-public-danger:#ff5f6f;
  --otx-public-success:#47d78c;
  --otx-public-radius:22px;
  --otx-public-shadow:0 22px 64px rgba(0,0,0,.30);
  background:
    radial-gradient(circle at 18% 0%,rgba(244,200,109,.10),transparent 28%),
    radial-gradient(circle at 88% 10%,rgba(52,215,200,.095),transparent 30%),
    linear-gradient(180deg,#050914 0%,#07101e 42%,#050914 100%);
  color:var(--otx-public-ink);
}

/* Header — tüm public sayfalarda aynı premium renk dengesi */
body.otx-public-vitrine .hdr{
  background:linear-gradient(180deg,rgba(5,9,20,.92),rgba(5,9,20,.74));
  border-bottom:1px solid rgba(244,200,109,.18);
  box-shadow:0 10px 34px rgba(0,0,0,.20);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
body.otx-public-vitrine .hdr-inner{color:var(--otx-public-ink);}
body.otx-public-vitrine .hdr-logo{
  color:#12100b;
  background:linear-gradient(135deg,#fff2c8 0%,#f4c86d 48%,#c99532 100%);
  border:1px solid rgba(255,236,177,.60);
  box-shadow:0 14px 34px rgba(244,200,109,.22), inset 0 1px 0 rgba(255,255,255,.38);
}
body.otx-public-vitrine .hdr-brand-name,
body.otx-public-vitrine .hdr-brand-title,
body.otx-public-vitrine .hdr-brand strong{color:var(--otx-public-ink);}
body.otx-public-vitrine .hdr-brand-tag{color:var(--otx-public-muted);}
body.otx-public-vitrine .hdr-link{
  color:rgba(248,244,235,.78);
  border:1px solid transparent;
  transition:color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
body.otx-public-vitrine .hdr-link:hover,
body.otx-public-vitrine .hdr-link.is-active{
  color:var(--otx-public-gold-2);
  background:rgba(244,200,109,.075);
  border-color:rgba(244,200,109,.20);
}
body.otx-public-vitrine .hdr-burger{
  color:var(--otx-public-ink);
  border-color:rgba(244,200,109,.24);
  background:rgba(255,255,255,.055);
}
body.otx-public-vitrine .hdr-burger-line{background:var(--otx-public-gold-2);}

/* Butonlar — public genel CTA rengi */
body.otx-public-vitrine .btn-primary,
body.otx-public-vitrine .hdr-actions .btn-primary,
body.otx-public-vitrine .site-fab{
  background:linear-gradient(135deg,#fff1bf 0%,#f4c86d 45%,#c78d2e 100%);
  color:#191105;
  border:1px solid rgba(255,238,184,.58);
  box-shadow:0 18px 42px rgba(244,200,109,.22), inset 0 1px 0 rgba(255,255,255,.38);
}
body.otx-public-vitrine .btn-primary:hover,
body.otx-public-vitrine .site-fab:hover{filter:saturate(1.06) brightness(1.03);transform:translateY(-1px);}
body.otx-public-vitrine .btn-secondary,
body.otx-public-vitrine .btn-outline,
body.otx-public-vitrine .btn-ghost{
  color:var(--otx-public-ink);
  background:rgba(255,255,255,.055);
  border-color:rgba(244,200,109,.27);
}
body.otx-public-vitrine .btn-secondary:hover,
body.otx-public-vitrine .btn-outline:hover,
body.otx-public-vitrine .btn-ghost:hover{
  color:var(--otx-public-gold-2);
  background:rgba(244,200,109,.08);
  border-color:rgba(244,200,109,.40);
}

/* Drawer — mobil menü aynı renk ailesinde */
body.otx-public-vitrine .drawer{
  background:
    radial-gradient(circle at 20% 0%,rgba(244,200,109,.14),transparent 30%),
    linear-gradient(180deg,rgba(7,13,25,.98),rgba(4,8,16,.98));
  color:var(--otx-public-ink);
  border-left:1px solid rgba(244,200,109,.20);
}
body.otx-public-vitrine .drawer-section-label{color:var(--otx-public-gold);}
body.otx-public-vitrine .drawer-link{
  color:rgba(248,244,235,.82);
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.07);
}
body.otx-public-vitrine .drawer-link:hover,
body.otx-public-vitrine .drawer-link.is-active{
  color:var(--otx-public-gold-2);
  background:rgba(244,200,109,.075);
  border-color:rgba(244,200,109,.24);
}
body.otx-public-vitrine .drawer-close{color:var(--otx-public-ink);border-color:rgba(244,200,109,.22);}
body.otx-public-vitrine .drawer-overlay{background:rgba(0,0,0,.58);backdrop-filter:blur(8px);}

/* Footer — index vitriniyle aynı premium kapanış */
body.otx-public-vitrine .ftr{
  background:
    radial-gradient(circle at 12% 0%,rgba(244,200,109,.12),transparent 32%),
    radial-gradient(circle at 88% 10%,rgba(52,215,200,.10),transparent 32%),
    linear-gradient(180deg,#07101e 0%,#050914 100%);
  border-top:1px solid rgba(244,200,109,.20);
  color:var(--otx-public-ink);
}
body.otx-public-vitrine .ftr-desc,
body.otx-public-vitrine .ftr-bottom,
body.otx-public-vitrine .ftr-bottom-tag{color:var(--otx-public-muted);}
body.otx-public-vitrine .ftr-col-title{
  color:var(--otx-public-gold-2);
  letter-spacing:.02em;
}
body.otx-public-vitrine .ftr-links a,
body.otx-public-vitrine .ftr-link-all-locations{
  color:rgba(248,244,235,.76);
  transition:color .18s ease, transform .18s ease;
}
body.otx-public-vitrine .ftr-links a:hover,
body.otx-public-vitrine .ftr-link-all-locations:hover{
  color:var(--otx-public-gold-2);
  transform:translateX(2px);
}
body.otx-public-vitrine .ftr-badge{
  color:var(--otx-public-soft);
  background:linear-gradient(135deg,rgba(244,200,109,.10),rgba(52,215,200,.055));
  border:1px solid rgba(244,200,109,.23);
}
body.otx-public-vitrine .ftr-contact a{color:var(--otx-public-gold-2);}

/* Mobil dock — footer/header ile aynı marka rengi */
body.otx-public-vitrine .dock{
  background:linear-gradient(180deg,rgba(6,12,23,.90),rgba(5,9,20,.96));
  border-top:1px solid rgba(244,200,109,.22);
  box-shadow:0 -14px 34px rgba(0,0,0,.28);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
body.otx-public-vitrine .dock-item{color:rgba(248,244,235,.70);}
body.otx-public-vitrine .dock-item.is-active,
body.otx-public-vitrine .dock-item:hover{color:var(--otx-public-gold-2);}
body.otx-public-vitrine .dock-item--cta .dock-cta-ring{
  background:linear-gradient(135deg,#fff0bd,#f4c86d 48%,#bd8128);
  color:#171008;
  box-shadow:0 12px 30px rgba(244,200,109,.27);
}
body.otx-public-vitrine .dock-cta-pulse{border-color:rgba(244,200,109,.44);}

/* Public kartlar — kategori, lokasyon, içerik, forum, iletişim gibi tüm yüzeylerde ortak premium dokunuş */
body.otx-public-vitrine :where(.card,.category-card,.location-card,.content-card,.forum-card,.topic-card,.service-card,.feature-card,.stat-card,.info-card,.post-card,.article-card,.form-card,.contact-card){
  border-color:rgba(244,200,109,.16);
  background:linear-gradient(180deg,rgba(255,255,255,.070),rgba(255,255,255,.035));
  box-shadow:0 16px 46px rgba(0,0,0,.18);
}
body.otx-public-vitrine :where(.card,.category-card,.location-card,.content-card,.forum-card,.topic-card,.service-card,.feature-card,.stat-card,.info-card,.post-card,.article-card,.form-card,.contact-card) :where(h1,h2,h3,h4){
  color:var(--otx-public-ink);
}
body.otx-public-vitrine :where(.card,.category-card,.location-card,.content-card,.forum-card,.topic-card,.service-card,.feature-card,.stat-card,.info-card,.post-card,.article-card,.form-card,.contact-card) :where(p,li,small){
  color:var(--otx-public-muted);
}
body.otx-public-vitrine :where(a:not(.btn):not(.hdr-link):not(.drawer-link):not(.dock-item):not(.hdr-brand)){
  text-underline-offset:3px;
}
body.otx-public-vitrine main :where(a:not(.btn):not(.hdr-link):not(.drawer-link):not(.dock-item):not(.hdr-brand)){
  color:var(--otx-public-gold-2);
}
body.otx-public-vitrine main :where(a:not(.btn):not(.hdr-link):not(.drawer-link):not(.dock-item):not(.hdr-brand)):hover{
  color:#fff1c8;
}

/* Form ve iletişim public rengi */
body.otx-public-vitrine :where(input,textarea,select){
  background:rgba(255,255,255,.055);
  border-color:rgba(244,200,109,.18);
  color:var(--otx-public-ink);
}
body.otx-public-vitrine :where(input,textarea,select):focus{
  border-color:rgba(52,215,200,.48);
  box-shadow:0 0 0 3px rgba(52,215,200,.12);
  outline:none;
}
body.otx-public-vitrine :where(label,.form-label){color:var(--otx-public-soft);}

/* PageSpeed ve erişilebilirlik: animasyon düşük, kontrast yüksek, mobil dengeli */
@media (max-width:720px){
  body.otx-public-vitrine .hdr{
    background:linear-gradient(180deg,rgba(5,9,20,.97),rgba(5,9,20,.88));
  }
  body.otx-public-vitrine .ftr{padding-bottom:calc(84px + env(safe-area-inset-bottom));}
  body.otx-public-vitrine .ftr-grid{gap:22px;}
  body.otx-public-vitrine .ftr-badges{display:flex;flex-wrap:wrap;gap:8px;}
  body.otx-public-vitrine .ftr-badge{font-size:.82rem;}
}
@media (prefers-reduced-motion:reduce){
  body.otx-public-vitrine .hdr-link,
  body.otx-public-vitrine .btn,
  body.otx-public-vitrine .ftr-links a{transition:none!important;}
}

/* ────────────────────────────────────────────────────────────────
   Paket 30K — Public logo premiumlaştırma + iletişim link yoğunluğu azaltma
   Amaç: tüm public yüzeylerde tek marka dili, mobilde tek sabit CTA.
   Admin paneli etkilenmez; yalnız body.otx-public-vitrine hedeflenir.
   ──────────────────────────────────────────────────────────────── */
body.otx-public-vitrine .hdr-brand{
  gap:12px;
  min-width:0;
}
body.otx-public-vitrine .hdr-logo{
  position:relative;
  overflow:hidden;
  width:46px;
  height:46px;
  border-radius:16px;
  background:
    radial-gradient(circle at 28% 18%,rgba(255,255,255,.80),transparent 18%),
    linear-gradient(135deg,#fff4cd 0%,#f4c86d 42%,#b97821 100%);
  box-shadow:
    0 16px 40px rgba(244,200,109,.25),
    0 0 0 1px rgba(255,235,170,.58) inset,
    0 0 0 6px rgba(244,200,109,.055);
}
body.otx-public-vitrine .hdr-logo::before{
  content:"";
  position:absolute;
  inset:4px;
  border-radius:13px;
  border:1px solid rgba(20,16,8,.22);
  background:linear-gradient(135deg,rgba(255,255,255,.18),transparent 48%);
  pointer-events:none;
}
body.otx-public-vitrine .hdr-logo::after{
  content:"AI";
  position:absolute;
  right:5px;
  bottom:4px;
  display:grid;
  place-items:center;
  min-width:18px;
  height:16px;
  padding:0 4px;
  border-radius:999px;
  color:#07111c;
  background:linear-gradient(135deg,#58f0df,#dffdf8);
  font-size:9px;
  font-weight:900;
  letter-spacing:.02em;
  box-shadow:0 5px 14px rgba(52,215,200,.22);
}
body.otx-public-vitrine .hdr-logo svg,
body.otx-public-vitrine .hdr-logo img{
  position:relative;
  z-index:2;
  width:29px;
  height:29px;
  object-fit:contain;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.22));
}
body.otx-public-vitrine .hdr-brand-text strong,
body.otx-public-vitrine .hdr-brand-name,
body.otx-public-vitrine .hdr-brand-title{
  font-weight:900;
  letter-spacing:-.035em;
  background:linear-gradient(135deg,#fff5d4 0%,#f4c86d 52%,#aeefff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent!important;
}
body.otx-public-vitrine .hdr-brand-tag{
  max-width:360px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  font-size:.82rem;
}

/* İletişim yoğunluğu: tek sabit CTA mantığı */
body.otx-public-vitrine .site-fab{display:none!important;}
body.otx-public-vitrine .drawer-bottom{display:none!important;}
body.otx-public-vitrine .ftr-contact{
  display:flex;
  flex-wrap:wrap;
  gap:8px 12px;
  margin-top:14px;
}
body.otx-public-vitrine .ftr-contact span,
body.otx-public-vitrine .ftr-contact a{
  color:rgba(248,244,235,.68)!important;
  text-decoration:none!important;
  font-size:.92rem;
}
body.otx-public-vitrine .ftr-contact svg{opacity:.82;}

/* Mobil dock: tek iletişim noktası merkezdeki Bilgi Al */
body.otx-public-vitrine .dock{
  --otx-dock-slots:5;
}
body.otx-public-vitrine .dock-item--cta .dock-label{
  font-weight:900;
  color:var(--otx-public-gold-2);
}
body.otx-public-vitrine .dock-item:not(.dock-item--cta) .dock-label{
  font-size:.72rem;
}

/* Sayfa içindeki gereksiz tekrar iletişim linkleri görsel olarak ikinci plana iner;
   gerçek linkler korunur, ancak birincil CTA gibi bağırmaz. */
body.otx-public-vitrine main a[href="/iletisim"]:not(.btn):not(.otx-vitrine-focus-link),
body.otx-public-vitrine main a[href$="/iletisim"]:not(.btn):not(.otx-vitrine-focus-link){
  color:rgba(248,244,235,.78);
  text-decoration-style:dotted;
}
body.otx-public-vitrine main a[href="/iletisim"].btn:not(.btn-primary),
body.otx-public-vitrine main a[href$="/iletisim"].btn:not(.btn-primary){
  opacity:.88;
}

@media (max-width:720px){
  body.otx-public-vitrine .hdr-logo{width:42px;height:42px;border-radius:14px;}
  body.otx-public-vitrine .hdr-logo svg,
  body.otx-public-vitrine .hdr-logo img{width:26px;height:26px;}
  body.otx-public-vitrine .hdr-brand-tag{max-width:190px;font-size:.74rem;}
  body.otx-public-vitrine .hdr-actions{display:none!important;}
  body.otx-public-vitrine .dock{grid-template-columns:repeat(5,minmax(0,1fr));}
  body.otx-public-vitrine .dock-item--cta .dock-cta-ring{width:50px;height:50px;}
}

/* Paket 32C — /lokasyonlar premium vitrin yeniden kurulum */
body.otx-public-vitrine .otx-locations-hub{
  --loc-bg:#07111f;
  --loc-card:rgba(255,255,255,.055);
  --loc-card-2:rgba(255,255,255,.025);
  --loc-border:rgba(231,200,115,.18);
  --loc-border-soft:rgba(148,163,184,.14);
  --loc-gold:#e7c873;
  --loc-teal:#14b8a6;
  --loc-text:#f8fafc;
  --loc-muted:rgba(226,232,240,.76);
  display:grid;
  gap:clamp(16px,2.5vw,30px);
  padding:clamp(16px,3vw,34px) 0 clamp(46px,7vw,78px);
}
body.otx-public-vitrine .otx-locations-breadcrumb{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;color:rgba(226,232,240,.70);font-size:.86rem;
}
body.otx-public-vitrine .otx-locations-breadcrumb a{color:inherit;text-decoration:none}
body.otx-public-vitrine .otx-locations-breadcrumb a:hover{color:var(--loc-gold)}
body.otx-public-vitrine .otx-locations-hero{
  position:relative;overflow:hidden;display:grid;grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);gap:clamp(18px,3vw,30px);align-items:stretch;
  padding:clamp(24px,4.5vw,54px);border-radius:30px;border:1px solid var(--loc-border);
  background:radial-gradient(circle at 16% 0%,rgba(231,200,115,.18),transparent 34%),radial-gradient(circle at 90% 12%,rgba(20,184,166,.17),transparent 34%),linear-gradient(145deg,rgba(7,17,31,.98),rgba(10,26,44,.94));
  box-shadow:0 28px 90px rgba(2,6,23,.34);
}
body.otx-public-vitrine .otx-locations-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(0deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:38px 38px;mask-image:linear-gradient(90deg,rgba(0,0,0,.42),transparent 78%);pointer-events:none}
body.otx-public-vitrine .otx-locations-hero__content,
body.otx-public-vitrine .otx-locations-hero__panel{position:relative;z-index:1}
body.otx-public-vitrine .otx-locations-eyebrow{display:inline-flex;align-items:center;gap:8px;margin-bottom:12px;color:var(--loc-gold);font-size:.76rem;font-weight:900;letter-spacing:.10em;text-transform:uppercase}
body.otx-public-vitrine .otx-locations-eyebrow:before{content:"";width:8px;height:8px;border-radius:999px;background:var(--loc-teal);box-shadow:0 0 0 6px rgba(20,184,166,.12)}
body.otx-public-vitrine .otx-locations-hero h1{max-width:820px;margin:0 0 12px;color:#fff;font-size:clamp(1.85rem,4.8vw,4rem);line-height:.98;letter-spacing:-.055em}
body.otx-public-vitrine .otx-locations-hero p{max-width:780px;margin:0;color:var(--loc-muted);font-size:clamp(.98rem,1.35vw,1.12rem);line-height:1.72}
body.otx-public-vitrine .otx-locations-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:22px}
body.otx-public-vitrine .otx-locations-btn{display:inline-flex;align-items:center;justify-content:center;min-height:46px;padding:0 18px;border-radius:999px;text-decoration:none;font-weight:900;font-size:.92rem;transition:transform .18s ease,border-color .18s ease,background .18s ease}
body.otx-public-vitrine .otx-locations-btn:hover{transform:translateY(-1px)}
body.otx-public-vitrine .otx-locations-btn--primary{background:linear-gradient(135deg,var(--loc-gold),var(--loc-teal));color:#07111f;box-shadow:0 16px 36px rgba(20,184,166,.16)}
body.otx-public-vitrine .otx-locations-btn--ghost{border:1px solid rgba(231,200,115,.26);background:rgba(255,255,255,.045);color:#fff}
body.otx-public-vitrine .otx-locations-hero__panel{display:grid;align-content:center;gap:12px;padding:22px;border-radius:24px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.030));box-shadow:inset 0 1px 0 rgba(255,255,255,.08)}
body.otx-public-vitrine .otx-locations-ai-orb{width:64px;height:64px;display:grid;place-items:center;border-radius:22px;background:radial-gradient(circle at 30% 24%,#fff7d7,transparent 24%),linear-gradient(135deg,var(--loc-gold),var(--loc-teal));color:#07111f;font-weight:1000;letter-spacing:-.05em;box-shadow:0 18px 38px rgba(20,184,166,.20)}
body.otx-public-vitrine .otx-locations-hero__panel strong{color:#fff;font-size:1.12rem;line-height:1.2}
body.otx-public-vitrine .otx-locations-hero__panel p{font-size:.92rem;line-height:1.58;color:rgba(226,232,240,.76)}
body.otx-public-vitrine .otx-locations-stat-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:4px}
body.otx-public-vitrine .otx-locations-stat-row span{display:inline-flex;gap:6px;align-items:center;min-height:32px;padding:6px 10px;border-radius:999px;border:1px solid rgba(20,184,166,.22);background:rgba(20,184,166,.08);color:#d1fae5;font-size:.78rem;font-weight:800}
body.otx-public-vitrine .otx-locations-stat-row b{color:#fff}
body.otx-public-vitrine .otx-locations-flow{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
body.otx-public-vitrine .otx-locations-flow article,
body.otx-public-vitrine .otx-locations-markets article,
body.otx-public-vitrine .otx-location-city-card-v2{border:1px solid var(--loc-border-soft);background:linear-gradient(180deg,var(--loc-card),var(--loc-card-2));border-radius:22px;box-shadow:0 18px 50px rgba(2,6,23,.14)}
body.otx-public-vitrine .otx-locations-flow article{padding:18px;display:grid;gap:8px}
body.otx-public-vitrine .otx-locations-flow article>span{width:38px;height:38px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(135deg,rgba(231,200,115,.22),rgba(20,184,166,.12));color:var(--loc-gold);font-weight:900}
body.otx-public-vitrine .otx-locations-flow strong{color:#fff;font-size:.98rem}
body.otx-public-vitrine .otx-locations-flow p{margin:0;color:rgba(203,213,225,.78);font-size:.88rem;line-height:1.54}
body.otx-public-vitrine .otx-locations-category-strip{display:grid;grid-template-columns:minmax(0,.85fr) minmax(0,1.15fr);gap:18px;align-items:center;padding:22px;border-radius:24px;border:1px solid rgba(231,200,115,.15);background:linear-gradient(135deg,rgba(231,200,115,.065),rgba(20,184,166,.035))}
body.otx-public-vitrine .otx-locations-category-strip h2,
body.otx-public-vitrine .otx-location-directory__head h2{margin:0;color:#fff;font-size:clamp(1.28rem,2.4vw,2rem);letter-spacing:-.035em;line-height:1.08}
body.otx-public-vitrine .otx-locations-category-strip p,
body.otx-public-vitrine .otx-location-directory__head p{margin:8px 0 0;color:rgba(226,232,240,.74);line-height:1.58;font-size:.94rem}
body.otx-public-vitrine .otx-locations-category-chips{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
body.otx-public-vitrine .otx-locations-category-chips a,
body.otx-public-vitrine .otx-location-district-rail a,
body.otx-public-vitrine .otx-location-district-rail span{display:inline-flex;align-items:center;justify-content:center;min-height:32px;padding:6px 11px;border-radius:999px;border:1px solid rgba(148,163,184,.14);background:rgba(2,6,23,.30);color:#e5f3ff;text-decoration:none;font-size:.82rem;font-weight:800;white-space:nowrap}
body.otx-public-vitrine .otx-locations-category-chips a:hover,
body.otx-public-vitrine .otx-location-district-rail a:hover{border-color:rgba(231,200,115,.32);background:rgba(231,200,115,.10);color:#fff}
body.otx-public-vitrine .otx-locations-markets{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px}
body.otx-public-vitrine .otx-locations-markets article{padding:16px}
body.otx-public-vitrine .otx-locations-markets span{display:inline-grid;place-items:center;width:38px;height:38px;border-radius:14px;background:rgba(20,184,166,.10);border:1px solid rgba(20,184,166,.22);color:#a7f3d0;font-weight:950;margin-bottom:10px}
body.otx-public-vitrine .otx-locations-markets strong{display:block;color:#fff;font-size:.96rem;margin-bottom:5px}
body.otx-public-vitrine .otx-locations-markets p{margin:0;color:rgba(203,213,225,.76);font-size:.86rem;line-height:1.5}
body.otx-public-vitrine .otx-location-directory{display:grid;gap:14px}
body.otx-public-vitrine .otx-location-directory__head{display:flex;align-items:end;justify-content:space-between;gap:18px;padding:0 2px}
body.otx-public-vitrine .otx-location-directory__head p{max-width:520px;text-align:right}
body.otx-public-vitrine .otx-location-city-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(290px,1fr));gap:14px}
body.otx-public-vitrine .otx-location-city-card-v2{padding:18px}
body.otx-public-vitrine .otx-location-city-card-v2__top{display:flex;gap:12px;align-items:flex-start;margin-bottom:14px}
body.otx-public-vitrine .otx-location-city-icon{flex:0 0 auto;width:42px;height:42px;display:grid;place-items:center;border-radius:16px;background:linear-gradient(135deg,rgba(231,200,115,.20),rgba(20,184,166,.14));color:var(--loc-gold);font-weight:900}
body.otx-public-vitrine .otx-location-city-card-v2 h3{margin:0;color:#fff;font-size:1.18rem;line-height:1.15}
body.otx-public-vitrine .otx-location-city-card-v2 h3 a{color:inherit;text-decoration:none}
body.otx-public-vitrine .otx-location-city-card-v2 h3 a:hover{color:var(--loc-gold)}
body.otx-public-vitrine .otx-location-city-card-v2__top p{margin:5px 0 0;color:rgba(203,213,225,.74);font-size:.86rem}
body.otx-public-vitrine .otx-location-district-rail{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 14px}
body.otx-public-vitrine .otx-location-district-rail span{color:var(--loc-gold);background:rgba(231,200,115,.08)}
body.otx-public-vitrine .otx-location-city-card-v2__foot{display:flex;justify-content:space-between;align-items:center;gap:12px;border-top:1px solid rgba(148,163,184,.12);padding-top:12px;color:rgba(203,213,225,.70);font-size:.82rem}
body.otx-public-vitrine .otx-location-city-card-v2__foot a{color:var(--loc-gold);text-decoration:none;font-weight:900}
body.otx-public-vitrine .otx-location-empty{padding:22px;border-radius:20px;border:1px solid rgba(231,200,115,.16);background:rgba(255,255,255,.04);color:rgba(226,232,240,.82)}
@media(max-width:940px){body.otx-public-vitrine .otx-locations-hero{grid-template-columns:1fr}body.otx-public-vitrine .otx-locations-flow,body.otx-public-vitrine .otx-locations-markets{grid-template-columns:repeat(2,minmax(0,1fr))}body.otx-public-vitrine .otx-locations-category-strip{grid-template-columns:1fr}body.otx-public-vitrine .otx-locations-category-chips{justify-content:flex-start}body.otx-public-vitrine .otx-location-directory__head{display:grid}body.otx-public-vitrine .otx-location-directory__head p{text-align:left;max-width:100%}}
@media(max-width:620px){body.otx-public-vitrine .otx-locations-hub{gap:14px;padding-top:12px}body.otx-public-vitrine .otx-locations-hero{padding:20px 16px;border-radius:22px}body.otx-public-vitrine .otx-locations-hero h1{font-size:1.68rem;line-height:1.04}body.otx-public-vitrine .otx-locations-hero p{font-size:.93rem;line-height:1.58}body.otx-public-vitrine .otx-locations-actions{display:grid;grid-template-columns:1fr;gap:8px}body.otx-public-vitrine .otx-locations-btn{min-height:44px;width:100%}body.otx-public-vitrine .otx-locations-hero__panel{padding:16px;border-radius:18px}body.otx-public-vitrine .otx-locations-stat-row{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:3px}body.otx-public-vitrine .otx-locations-stat-row span{flex:0 0 auto}body.otx-public-vitrine .otx-locations-flow{display:flex;overflow-x:auto;gap:10px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;margin-right:-12px;padding-bottom:4px}body.otx-public-vitrine .otx-locations-flow article{min-width:76%;scroll-snap-align:start;padding:15px}body.otx-public-vitrine .otx-locations-markets{display:flex;overflow-x:auto;gap:10px;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;margin-right:-12px;padding-bottom:4px}body.otx-public-vitrine .otx-locations-markets article{min-width:74%;scroll-snap-align:start}body.otx-public-vitrine .otx-locations-category-strip{padding:17px;border-radius:20px}body.otx-public-vitrine .otx-locations-category-chips{flex-wrap:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:4px;margin-right:-10px}body.otx-public-vitrine .otx-locations-category-chips a{flex:0 0 auto}body.otx-public-vitrine .otx-location-city-grid{grid-template-columns:1fr}body.otx-public-vitrine .otx-location-city-card-v2{padding:15px;border-radius:18px}body.otx-public-vitrine .otx-location-district-rail{flex-wrap:nowrap;overflow-x:auto;scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;padding-bottom:5px;margin-right:-10px}body.otx-public-vitrine .otx-location-district-rail a,body.otx-public-vitrine .otx-location-district-rail span{flex:0 0 auto;scroll-snap-align:start;min-height:31px;font-size:.79rem}body.otx-public-vitrine .otx-location-city-card-v2__foot{display:grid;gap:5px}body.otx-public-vitrine .otx-locations-flow::-webkit-scrollbar,body.otx-public-vitrine .otx-locations-markets::-webkit-scrollbar,body.otx-public-vitrine .otx-locations-category-chips::-webkit-scrollbar,body.otx-public-vitrine .otx-location-district-rail::-webkit-scrollbar{height:4px}body.otx-public-vitrine .otx-locations-flow::-webkit-scrollbar-thumb,body.otx-public-vitrine .otx-locations-markets::-webkit-scrollbar-thumb,body.otx-public-vitrine .otx-locations-category-chips::-webkit-scrollbar-thumb,body.otx-public-vitrine .otx-location-district-rail::-webkit-scrollbar-thumb{background:rgba(231,200,115,.32);border-radius:999px}}

/* Paket 32F — /lokasyonlar ülke modülü ve mobil sağ taşma düzeltmesi */
body.otx-public-vitrine .otx-location-country-scope{display:grid;gap:14px}
body.otx-public-vitrine .otx-location-country-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
body.otx-public-vitrine .otx-location-country-card{display:grid;gap:8px;padding:18px;border-radius:22px;border:1px solid rgba(148,163,184,.14);background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.025));box-shadow:0 18px 50px rgba(2,6,23,.14);color:#fff;text-decoration:none;transition:transform .18s ease,border-color .18s ease,background .18s ease}
body.otx-public-vitrine .otx-location-country-card small{color:var(--loc-gold,#e7c873);font-size:.76rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
body.otx-public-vitrine .otx-location-country-card strong{font-size:1.08rem;line-height:1.2;color:#fff}
body.otx-public-vitrine .otx-location-country-card span{color:rgba(203,213,225,.74);font-size:.88rem;line-height:1.48}
body.otx-public-vitrine .otx-location-country-card:hover{border-color:rgba(231,200,115,.30);background:linear-gradient(180deg,rgba(231,200,115,.08),rgba(20,184,166,.035));transform:translateY(-2px)}

@media(max-width:620px){
  body.otx-public-vitrine .otx-locations-hub{width:100%;max-width:100%;overflow-x:clip;padding-inline:0;gap:14px;padding-top:12px}
  body.otx-public-vitrine .otx-locations-hub *{min-width:0;box-sizing:border-box}
  body.otx-public-vitrine .otx-locations-stat-row{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));overflow:visible;padding-bottom:0;width:100%;gap:8px}
  body.otx-public-vitrine .otx-locations-stat-row span{flex:initial;width:100%;white-space:normal;text-align:center;justify-content:center}
  body.otx-public-vitrine .otx-locations-flow,
  body.otx-public-vitrine .otx-locations-markets{display:grid!important;grid-template-columns:minmax(0,1fr)!important;overflow:visible!important;gap:10px;scroll-snap-type:none!important;-webkit-overflow-scrolling:auto!important;margin-right:0!important;padding-bottom:0!important;width:100%;max-width:100%}
  body.otx-public-vitrine .otx-locations-flow article,
  body.otx-public-vitrine .otx-locations-markets article{min-width:0!important;width:100%;scroll-snap-align:none!important;padding:15px;max-width:100%;overflow:hidden}
  body.otx-public-vitrine .otx-locations-category-chips,
  body.otx-public-vitrine .otx-location-district-rail{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));flex-wrap:wrap!important;overflow:visible!important;-webkit-overflow-scrolling:auto!important;padding-bottom:0!important;margin-right:0!important;width:100%;max-width:100%;gap:8px;scroll-snap-type:none!important}
  body.otx-public-vitrine .otx-locations-category-chips a,
  body.otx-public-vitrine .otx-location-district-rail a,
  body.otx-public-vitrine .otx-location-district-rail span{flex:initial!important;width:100%;min-width:0;white-space:normal;text-align:center;overflow-wrap:anywhere;scroll-snap-align:none!important}
  body.otx-public-vitrine .otx-location-country-grid{grid-template-columns:minmax(0,1fr)!important}
  body.otx-public-vitrine .otx-location-country-card{padding:16px;border-radius:18px;max-width:100%;overflow:hidden}
  body.otx-public-vitrine .otx-location-country-card:hover{transform:none}
}
@media(max-width:390px){
  body.otx-public-vitrine .otx-locations-stat-row,
  body.otx-public-vitrine .otx-locations-category-chips,
  body.otx-public-vitrine .otx-location-district-rail{grid-template-columns:minmax(0,1fr)}
}

/* Paket 33 — Public index hizası: lokasyon dizini + lokasyon detay tek vitrin ritmi
   Hedef: Ana sayfadaki .container / .section-tight / intent-card ölçüsünü lokasyon yüzeylerine taşımak. */
body.otx-public-vitrine .otx-location-unified-index,
body.otx-public-vitrine .otx-location-unified{
  --loc-gold:#e7c873;
  --loc-teal:#14b8a6;
  --loc-card-bg:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.022));
  --loc-card-border:rgba(148,163,184,.145);
  --loc-card-shadow:0 18px 42px rgba(0,0,0,.18);
}

body.otx-public-vitrine .otx-location-unified-index{
  padding-top:28px;
  padding-bottom:60px;
  gap:28px;
}
body.otx-public-vitrine .otx-location-unified-index .otx-locations-hero,
body.otx-public-vitrine .otx-location-unified .landing-hero-grid{
  border-radius:30px;
  border:1px solid rgba(231,200,115,.20);
  background:
    radial-gradient(circle at 16% 0%,rgba(231,200,115,.18),transparent 34%),
    radial-gradient(circle at 90% 12%,rgba(20,184,166,.17),transparent 34%),
    linear-gradient(145deg,rgba(7,17,31,.98),rgba(10,26,44,.94));
  box-shadow:0 24px 80px rgba(0,0,0,.28);
}
body.otx-public-vitrine .otx-location-unified-index .otx-locations-flow article,
body.otx-public-vitrine .otx-location-unified-index .otx-locations-markets article,
body.otx-public-vitrine .otx-location-unified-index .otx-location-city-card-v2,
body.otx-public-vitrine .otx-location-unified-index .otx-location-country-card{
  min-height:100%;
  border-radius:22px;
  background:var(--loc-card-bg);
  border-color:var(--loc-card-border);
  box-shadow:var(--loc-card-shadow);
}
body.otx-public-vitrine .otx-location-unified-index .otx-location-city-grid{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}
body.otx-public-vitrine .otx-location-unified-index .otx-location-directory__head,
body.otx-public-vitrine .otx-location-unified-index .otx-locations-category-strip{
  align-items:end;
}

body.otx-public-vitrine .otx-location-unified .landing-breadcrumb,
body.otx-public-vitrine .otx-location-unified .landing-hero-grid,
body.otx-public-vitrine .otx-location-unified .landing-section,
body.otx-public-vitrine .otx-location-unified .landing-trust-strip,
body.otx-public-vitrine .otx-location-unified .landing-cta-block{
  width:min(var(--max,1180px),calc(100% - 36px));
  max-width:var(--max,1180px);
  margin-left:auto;
  margin-right:auto;
  padding-left:0;
  padding-right:0;
}
body.otx-public-vitrine .otx-location-unified .landing-section--narrow{
  width:min(920px,calc(100% - 36px));
  max-width:920px;
}
body.otx-public-vitrine .otx-location-unified .landing-hero{
  padding:28px 0 0;
  background:transparent;
  border-bottom:0;
  overflow:visible;
}
body.otx-public-vitrine .otx-location-unified .landing-hero-grid{
  padding:28px;
  align-items:stretch;
}
body.otx-public-vitrine .otx-location-unified .landing-hero-aside{
  background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.030));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
body.otx-public-vitrine .otx-location-unified .landing-section{
  padding-top:28px;
  padding-bottom:28px;
}
body.otx-public-vitrine .otx-location-unified .landing-trust-strip{
  margin-top:14px;
  padding-top:0;
  padding-bottom:0;
  gap:14px;
}
body.otx-public-vitrine .otx-location-unified .landing-trust-card,
body.otx-public-vitrine .otx-location-unified .landing-related > a,
body.otx-public-vitrine .otx-location-unified .otx-location-authority-grid > article,
body.otx-public-vitrine .otx-location-unified .otx-location-decision-grid > article,
body.otx-public-vitrine .otx-location-unified .otx-location-service-grid > a,
body.otx-public-vitrine .otx-location-unified .otx-location-social-grid > article,
body.otx-public-vitrine .otx-location-unified .otx-location-answer,
body.otx-public-vitrine .otx-location-unified .otx-location-copy,
body.otx-public-vitrine .otx-location-unified .otx-visual-spec-card,
body.otx-public-vitrine .otx-location-unified .otx-location-faq-list details{
  border-radius:22px;
  background:var(--loc-card-bg);
  border:1px solid var(--loc-card-border);
  box-shadow:var(--loc-card-shadow);
}
body.otx-public-vitrine .otx-location-unified .landing-related,
body.otx-public-vitrine .otx-location-unified .otx-location-authority-grid,
body.otx-public-vitrine .otx-location-unified .otx-location-decision-grid,
body.otx-public-vitrine .otx-location-unified .otx-location-service-grid,
body.otx-public-vitrine .otx-location-unified .otx-location-social-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:14px;
  align-items:stretch;
}
body.otx-public-vitrine .otx-location-unified .landing-related > a,
body.otx-public-vitrine .otx-location-unified .otx-location-service-grid > a{
  min-height:100%;
  transition:transform .22s ease,border-color .22s ease,background .22s ease;
}
body.otx-public-vitrine .otx-location-unified .landing-related > a:hover,
body.otx-public-vitrine .otx-location-unified .otx-location-service-grid > a:hover,
body.otx-public-vitrine .otx-location-unified-index .otx-location-city-card-v2:hover,
body.otx-public-vitrine .otx-location-unified-index .otx-location-country-card:hover{
  transform:translateY(-2px);
  border-color:rgba(231,200,115,.30);
  background:linear-gradient(180deg,rgba(231,200,115,.09),rgba(20,184,166,.04));
}
body.otx-public-vitrine .otx-location-unified .otx-location-answer,
body.otx-public-vitrine .otx-location-unified .otx-location-copy{
  padding:22px;
}
body.otx-public-vitrine .otx-location-unified .otx-google-visual-section{
  padding-top:28px!important;
  padding-bottom:0!important;
}
body.otx-public-vitrine .otx-location-unified .landing-cta-block{
  margin-top:28px;
  margin-bottom:60px;
  padding:26px 28px;
  border-radius:28px;
  background:linear-gradient(135deg,rgba(212,152,46,.10),rgba(10,22,40,.96) 40%);
  border:1px solid rgba(255,196,95,.16);
  box-shadow:var(--loc-card-shadow);
}
body.otx-public-vitrine .otx-location-unified .landing-h2{
  text-transform:none;
  letter-spacing:-.03em;
}
body.otx-public-vitrine .otx-location-unified .landing-lead{
  color:rgba(226,232,240,.78);
}

@media(max-width:940px){
  body.otx-public-vitrine .otx-location-unified .landing-hero-grid{
    grid-template-columns:minmax(0,1fr);
  }
  body.otx-public-vitrine .otx-location-unified-index .otx-location-directory__head,
  body.otx-public-vitrine .otx-location-unified-index .otx-locations-category-strip{
    align-items:start;
  }
}
@media(max-width:640px){
  body.otx-public-vitrine .otx-location-unified-index,
  body.otx-public-vitrine .otx-location-unified .landing-breadcrumb,
  body.otx-public-vitrine .otx-location-unified .landing-hero-grid,
  body.otx-public-vitrine .otx-location-unified .landing-section,
  body.otx-public-vitrine .otx-location-unified .landing-trust-strip,
  body.otx-public-vitrine .otx-location-unified .landing-cta-block{
    width:min(100%,calc(100vw - 22px));
    max-width:calc(100vw - 22px);
  }
  body.otx-public-vitrine .otx-location-unified-index{
    padding-top:18px;
    padding-bottom:42px;
    gap:16px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-hero{
    padding-top:18px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-hero-grid{
    padding:20px 16px;
    border-radius:22px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-section{
    padding-top:18px;
    padding-bottom:18px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-trust-strip,
  body.otx-public-vitrine .otx-location-unified .landing-related,
  body.otx-public-vitrine .otx-location-unified .otx-location-authority-grid,
  body.otx-public-vitrine .otx-location-unified .otx-location-decision-grid,
  body.otx-public-vitrine .otx-location-unified .otx-location-service-grid,
  body.otx-public-vitrine .otx-location-unified .otx-location-social-grid{
    grid-template-columns:minmax(0,1fr)!important;
    gap:10px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-trust-card,
  body.otx-public-vitrine .otx-location-unified .landing-related > a,
  body.otx-public-vitrine .otx-location-unified .otx-location-authority-grid > article,
  body.otx-public-vitrine .otx-location-unified .otx-location-decision-grid > article,
  body.otx-public-vitrine .otx-location-unified .otx-location-service-grid > a,
  body.otx-public-vitrine .otx-location-unified .otx-location-social-grid > article,
  body.otx-public-vitrine .otx-location-unified .otx-location-answer,
  body.otx-public-vitrine .otx-location-unified .otx-location-copy{
    border-radius:18px;
    padding:16px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-cta-block{
    margin-top:18px;
    margin-bottom:42px;
    padding:20px;
    border-radius:22px;
  }
  body.otx-public-vitrine .otx-location-unified .landing-hero-actions{
    display:grid;
    grid-template-columns:minmax(0,1fr);
  }
  body.otx-public-vitrine .otx-location-unified .landing-hero-actions a,
  body.otx-public-vitrine .otx-location-unified-index .otx-locations-actions a{
    width:100%;
    justify-content:center;
    text-align:center;
  }
}
