:root{
  --dw-primary:#00306e; --dw-primary-700:#002d59; --dw-primary-900:#002347;
  --dw-bg:#f6f8fb; --dw-card:#ffffff; --dw-text:#0f172a; --dw-muted:#475569;
  --dw-ring: rgba(0,48,110,.25);
  --radius-xl:20px;
  --shadow-lg:0 14px 45px rgba(0,0,0,.14);
  --shadow-md:0 10px 30px rgba(0,0,0,.12);
  --shadow-sm:0 6px 18px rgba(0,0,0,.10);
  --container:1200px;
  --pure:#16a34a; --aqua:#2563eb; --intense:#b91c1c;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
  color:var(--dw-text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(0,48,110,.08), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(0,48,110,.06), transparent 60%),
    var(--dw-bg);
  line-height:1.6;
}
a{color:var(--dw-primary); text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:var(--container); margin-inline:auto; padding:0 20px}

/* Header */
header{position:sticky; top:0; z-index:30; background:rgba(255,255,255,.7); backdrop-filter:saturate(140%) blur(10px); border-bottom:1px solid rgba(2,6,23,.06)}
.nav{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{display:flex; align-items:center; gap:14px}
.brand img{height:46px; width:auto; display:block}
.brandname{font-weight:800; font-size:18px; letter-spacing:.4px; color:var(--dw-primary)}
.menu{display:flex; align-items:center; gap:18px}
.pill{display:inline-flex; align-items:center; gap:8px; padding:10px 16px; border-radius:999px; font-weight:600; background:linear-gradient(180deg,#fff,#f0f4f9); border:1px solid rgba(15,23,42,.08); box-shadow:var(--shadow-sm)}
.pill:focus-visible{outline:3px solid var(--dw-ring); outline-offset:2px}

/* Hero */
.hero{padding:56px 0 24px; text-align:center}
.sr-only{position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0}
.hero-logo{width:auto; height:64px; max-width:90%; filter: drop-shadow(0 8px 16px rgba(0,0,0,.10))}
.tagline{margin:14px auto 0; max-width:900px; font-size: clamp(16px, 1.6vw, 20px); color:var(--dw-primary-900); font-weight:800; letter-spacing:.2px}
.tagline small{display:block; margin-top:6px; color:var(--dw-muted); font-weight:600}

/* Story card */
.story{margin:28px auto 0; max-width:1000px}
.story-card{background:linear-gradient(180deg,#ffffff,#f7faff); border:1px solid rgba(2,6,23,.06); border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); padding:28px 24px}
.story-card h3{margin:0 0 6px; text-align:center; font-size:24px; color:var(--dw-primary-900)}
.story-card .kicker{text-align:center; color:var(--dw-primary); font-weight:800; margin-bottom:10px}
.story-card p{margin:10px 0; color:#223047}

/* Gallery */
.gallery{margin-top:36px}
.gallery h2{margin:0 0 8px; font-size:28px; color:var(--dw-primary-900); text-align:center}
.gallery-sub{margin:0 auto 16px; max-width:820px; text-align:center; font-size:15px; color:var(--dw-muted)}
.gallery-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;
  border-radius:22px;
}
.shot{position:relative; margin:0; overflow:hidden; border-radius:16px; box-shadow:var(--shadow-md)}
.shot img{width:100%; height:auto; display:block; aspect-ratio:16/9; object-fit:cover; transform:scale(1.02); transition:transform .6s ease}
.shot:hover img{transform:scale(1.06)}
.cap{position:absolute; left:12px; bottom:12px; background:rgba(0,0,0,.45); color:#fff; padding:6px 10px; border-radius:999px; font-size:13px; backdrop-filter:blur(2px)}
@media (max-width:820px){ .gallery-grid{grid-template-columns:1fr; } }

/* ÜRÜNLER – tek satır kartlar */
.grid{display:grid; gap:24px}
.grid-products{grid-template-columns:1fr}
.urunler-title{ text-align:center; margin:0 0 16px; font-size:28px; color:var(--dw-primary-900) }

.product{
  background:var(--dw-card);
  border:1px solid rgba(15,23,42,.06);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-md);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.product:hover{transform:translateY(-3px); box-shadow:0 16px 45px rgba(0,0,0,.14); border-color:rgba(0,48,110,.14)}

/* Mobil: üst üste */
.product .product-media, .product .product-body{ padding:16px; }
.product-media{ background:#fff; display:flex; align-items:center; justify-content:flex-start }
.product-media img{ width:clamp(200px, 26vw, 360px); height:auto; display:block; object-fit:contain; filter: drop-shadow(0 12px 20px rgba(0,0,0,.16)); }
.product-body{ display:flex; flex-direction:column; gap:10px; justify-content:flex-start; }

/* Masaüstü: grid ile iki kolon ve üstten hizalama */
@media (min-width:900px){
  .product{ display:grid; grid-template-columns:22% 78%; align-items:start; }
  .product .product-media{ padding:10px 14px; }
  .product .product-body { padding:12px 18px; }
  .product-media img{ max-width:200px; }
  /* Ters kart: görsel sağda, metin solda — AYNI SATIRA ZORLA */
  .product.reverse{ grid-template-columns:78% 22%; }
  .product.reverse .product-media{ grid-column:2; grid-row:1; align-self:start; }
  .product.reverse .product-body{  grid-column:1; grid-row:1; align-self:start; }
}

/* Tipografi */
.badge{display:inline-flex; align-items:center; gap:8px; font-size:12px; font-weight:700; letter-spacing:.4px; text-transform:uppercase; color:#0b213f; background:#eaf2ff; border:1px solid rgba(0,48,110,.18); padding:6px 10px; border-radius:999px; width:max-content}
.product h3{margin:4px 0 2px; font-size:20px; line-height:1.3; color:var(--dw-primary)}
.product p{margin:4px 0 0; color:#223047; font-size:15px; line-height:1.7}
.dot{display:inline-block; width:.75em; height:.75em; border-radius:999px; vertical-align:middle; margin-right:.35em}
.dot.green{background:var(--pure)} .dot.blue{background:var(--aqua)} .dot.red{background:var(--intense)}

/* Lightbox */
dialog.lightbox{border:none; padding:0; border-radius:16px; box-shadow:var(--shadow-lg); width:min(96vw, 1000px)}
dialog.lightbox::backdrop{background:rgba(2,6,23,.55)}
.lb-wrap{position:relative; background:#000}
.lb-img{width:100%; height:auto; display:block; max-height:80vh; object-fit:contain}
.lb-bar{display:flex; justify-content:space-between; align-items:center; gap:8px; padding:10px 12px; background:#0b1220; color:#e5edf7}
.lb-actions{display:flex; gap:8px; align-items:center}
.btn{display:inline-flex; align-items:center; gap:8px; padding:9px 14px; border-radius:999px; font-weight:700; border:1px solid rgba(255,255,255,.18); background:linear-gradient(180deg,#ffffff,#eef3f9); color:#0b213f; box-shadow:var(--shadow-sm)}
.btn.whatsapp{background:linear-gradient(180deg,#ecfff3,#d9ffe7); color:#065f46; border-color:rgba(16,185,129,.35)}
.x{appearance:none; border:none; background:transparent; color:#e5edf7; font-size:22px; line-height:1; cursor:pointer; padding:6px 10px; border-radius:8px}
.x:hover{background:rgba(255,255,255,.08)}

/* İletişim */
.contact{
  background: radial-gradient(700px 320px at 80% -20%, rgba(0,48,110,.08), transparent 60%),
              linear-gradient(180deg,#ffffff,#f1f5fb);
  border:1px solid rgba(2,6,23,.06); border-radius:var(--radius-xl); box-shadow:var(--shadow-lg); padding:24px
}
.contact h2{margin:0 0 8px; font-size:26px; color:var(--dw-primary-900); text-align:center}
.rows{display:grid; gap:10px; justify-items:center; text-align:center}
.contact a{font-weight:700}
.divider{height:1px; background:rgba(2,6,23,.08); margin:14px 0}

footer{color:#23324a; font-size:13px; text-align:center; padding:24px 0 36px; opacity:.9}

/* Animasyon */
@keyframes fadeInUp{from{opacity:0; transform:translateY(10px)} to{opacity:1; transform:translateY(0)}}
.fade{animation:fadeInUp .6s ease both}
@media (prefers-reduced-motion: reduce){ .fade{animation:none} .product{transition:none} .shot img{transition:none} }




  .wg-carousel{margin:28px auto 0}
  .wg-carousel h2{font-size:22px;margin:0 0 12px}

  .wg-marquee{
    --wg-h: 160px;           /* carousel yüksekliği */
    --wg-gap: 16px;          /* kartlar arası boşluk */
    position:relative; overflow:hidden;
    border:1px solid #e6e8ec; border-radius:14px; padding:10px;
    box-shadow:0 1px 6px rgba(17,24,39,.05); background:#fff;
  }
  .wg-track{
    display:flex; align-items:center; gap:var(--wg-gap);
    will-change:transform;
  }
  .wg-item{
    flex:0 0 auto;
    height:var(--wg-h);
    min-width:clamp(220px, 36vw, 520px);
    display:flex; align-items:center; justify-content:center;
    background:#fff; border:1px solid #e6e8ec; border-radius:14px;
    box-shadow:0 1px 6px rgba(17,24,39,.05);
    text-decoration:none;
  }
  .wg-item img{
    max-height:100%; max-width:100%; object-fit:contain; display:block; background:#fff;
  }

  /* Kontroller */
  .wg-ctrl{
    position:absolute; top:50%; transform:translateY(-50%);
    width:44px; height:44px; border:0; border-radius:12px; cursor:pointer;
    background:rgba(255,255,255,.92); box-shadow:0 1px 6px rgba(17,24,39,.12);
    font-size:22px; line-height:1; color:#0b0b0c;
  }
  .wg-prev{left:12px}
  .wg-next{right:12px}

  /* Küçük ekranlarda yükseklik daha düşük */
  @media (max-width: 520px){
    .wg-marquee{padding:8px}
    .wg-marquee{--wg-h: 120px}
  }
/* === Wrestler Marquee – sade: yalnızca görsel akışı === */
:root{
  --wg-h: 220px;     /* carousel yüksekliği (desktop) */
  --wg-h-sm: 140px;  /* küçük ekran yüksekliği */
  --wg-gap: 16px;    /* öğeler arası boşluk */
  --wg-minw: 180px;  /* öğe min genişlik (akıllı clamp) */
  --wg-maxw: 680px;  /* öğe max genişlik (aşırı geniş şeritleri kısar) */
  --wg-edge: 42px;   /* kenar fade genişliği */
  --wg-btn-bg: rgba(255,255,255,.95);
  --wg-btn-ink: #0b0b0c;
}

#wg-carousel{ margin:28px auto 0; }
#wg-carousel h2{ font-size:22px; margin:0 0 12px; }

.wg-marquee{
  position:relative; overflow:hidden;
  padding:6px 0;
}

/* Kenar fade (mask gibi) */
.wg-marquee::before,
.wg-marquee::after{
  content:""; position:absolute; top:0; bottom:0; width:var(--wg-edge); pointer-events:none; z-index:2;
}
.wg-marquee::before{ left:0;
  background:linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}
.wg-marquee::after{ right:0;
  background:linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.wg-track{
  display:flex; align-items:center; gap:var(--wg-gap);
  will-change:transform;
}

.wg-item{
  flex:0 0 auto;
  height:var(--wg-h);
  /* Genişlik JS ile oran hesaplanıp atanıyor; no card, no border */
}
.wg-item img{
  width:100%; height:100%;
  object-fit:cover; object-position:center; display:block;
}

/* Kontroller (isteğe bağlı) */
.wg-ctrl{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border:0; border-radius:12px; cursor:pointer; z-index:3;
  background:var(--wg-btn-bg); color:var(--wg-btn-ink); font-size:22px; line-height:1;
  box-shadow:0 1px 6px rgba(17,24,39,.12);
}
.wg-prev{ left:10px; }
.wg-next{ right:10px; }

@media (max-width: 540px){
  .wg-item{ height:var(--wg-h-sm); }
}
/* === WRESTLER Slider (ws-*) – büyük ve sade görüntü === */
:root{
  --ws-h: 380px;     /* Desktop slayt yüksekliği */
  --ws-h-sm: 240px;  /* Mobil slayt yüksekliği */
  --ws-gap: 18px;    /* Slayt arası boşluk */
  --ws-sidefade: 64px; /* Kenar fade genişliği */
  --ws-brand: #00306e;
}

#ws-koleksiyon-ek{ margin:28px auto 0; }
#ws-koleksiyon-ek h2{ font-size:22px; margin:0 0 12px; }

/* Görsel sahnesi */
.ws-slider{ position:relative; }
.ws-viewport{
  position:relative; overflow:hidden;
  padding:6px 0;
}
.ws-viewport::before,
.ws-viewport::after{
  content:""; position:absolute; top:0; bottom:0; width:var(--ws-sidefade); z-index:2; pointer-events:none;
}
.ws-viewport::before{
  left:0; background:linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.ws-viewport::after{
  right:0; background:linear-gradient(270deg, #fff, rgba(255,255,255,0));
}

.ws-track{
  display:flex; align-items:center; gap:var(--ws-gap);
  will-change:transform;
}

/* SLIDE: kart yok, yalnızca görsel */
.ws-slide{
  flex:0 0 auto;
  height:var(--ws-h);
  border-radius:16px;
  overflow:hidden;
  display:block;
  position:relative;
}
.ws-slide img{
  width:100%; height:100%;
  object-fit:contain;   /* kırpma yok, görsel tam */
  background:#fff;
  display:block;
}

/* Aktif slayta küçük vurgu */
.ws-slide.is-active img{ filter:contrast(1.03) saturate(1.02); }
@media (prefers-reduced-motion:no-preference){
  .ws-slide{ transition:transform .25s ease; }
  .ws-slide.is-active{ transform:scale(1.02); }
}

/* Navigasyon düğmeleri */
.ws-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border:0; border-radius:12px; cursor:pointer; z-index:3;
  background:#fff; color:#0b0b0c; box-shadow:0 1px 6px rgba(17,24,39,.12);
  font-size:22px; line-height:1;
}
.ws-prev{ left:10px; }
.ws-next{ right:10px; }

/* Dots */
.ws-dots{
  display:flex; gap:8px; justify-content:center; margin-top:10px;
}
.ws-dots button{
  width:8px; height:8px; border-radius:999px; border:0; cursor:pointer; background:#d1d5db;
}
.ws-dots button.is-active{ background:var(--ws-brand); }

/* Thumbnail şerit */
.ws-thumbs{
  display:grid; grid-auto-flow:column; gap:10px; margin-top:14px;
  overflow-x:auto; padding-bottom:4px;
}
.ws-thumb{
  border:1px solid #e6e8ec; border-radius:10px; padding:3px; background:#fff; cursor:pointer;
  display:block; height:72px;
}
.ws-thumb img{ height:100%; width:auto; display:block; object-fit:contain; }
.ws-thumb.is-active{ outline:2px solid var(--ws-brand); outline-offset:2px; }

/* Küçük ekranlarda yükseklik düşür */
@media (max-width: 540px){
  .ws-slide{ height:var(--ws-h-sm); }
}
/* === WS Lightbox (yalnızca ws-* için) === */
.ws-lightbox{border:none; padding:0; max-width:min(96vw,1200px); width:96vw}
.ws-lightbox::backdrop{background:rgba(0,0,0,.7)}
.ws-lb-wrap{position:relative; background:#000; border-radius:12px; overflow:hidden}
.ws-lb-img{display:block; width:100%; height:auto; max-height:calc(100vh - 160px); object-fit:contain; background:#000}
.ws-lb-bar{display:flex; align-items:center; justify-content:space-between; gap:8px; padding:10px 12px; background:#0b0b0c; color:#fff}
.ws-lb-title{font-weight:600}
.ws-lb-count{font-size:12px; opacity:.85; margin-left:8px}
.ws-lb-x{background:#fff; color:#000; border:0; padding:6px 10px; border-radius:10px; cursor:pointer}
.ws-lb-nav{position:absolute; inset:0; display:flex; justify-content:space-between; align-items:center; pointer-events:none}
.ws-lb-nav button{pointer-events:auto; cursor:pointer; width:44px; height:44px; border:0; border-radius:12px; background:rgba(255,255,255,.9); font-size:22px; line-height:1; margin:0 8px; transition:transform .12s ease}
.ws-lb-nav button:active{transform:scale(.96)}
/* Slider sahnesi: yatay kaydırma açık (scrollbar gizli), snap hizalama */
.ws-viewport{
  position:relative;
  overflow-x:auto;
  overflow-y:hidden;
  padding:6px 0;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.ws-viewport::-webkit-scrollbar{ display:none; }

.ws-track{ display:flex; align-items:center; gap:18px; will-change:transform; }
.ws-slide{ flex:0 0 auto; scroll-snap-align:center; border-radius:16px; overflow:hidden; display:block; }
.ws-slide img{ width:100%; height:100%; object-fit:contain; background:#fff; display:block; }

/* Ok butonları (sizde varsa bunlar üzerine yazar) */
.ws-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border:0; border-radius:12px; cursor:pointer; z-index:3;
  background:#fff; color:#0b0b0c; box-shadow:0 1px 6px rgba(17,24,39,.12);
  font-size:22px; line-height:1;
}
.ws-prev{ left:10px; }
.ws-next{ right:10px; }

/* Dots */
.ws-dots{ display:flex; gap:8px; justify-content:center; margin-top:10px; }
.ws-dots button{ width:8px; height:8px; border-radius:999px; border:0; cursor:pointer; background:#d1d5db; }
.ws-dots button.is-active{ background:#00306e; }

/* Yükseklikler (dilersen artır) */
:root{ --ws-h: 380px; --ws-h-sm: 240px; }
@media (max-width:540px){ .ws-slide{ height:var(--ws-h-sm); } }
/* Sayfa zemin rengini değişkenle kullanacağız (JS set edecek) */
:root{ --ws-page: transparent; }

/* Kenar fade'leri: #fff yerine sayfa zemini */
.ws-viewport::before{
  left:0;
  background:linear-gradient(90deg, var(--ws-page), rgba(0,0,0,0));
}
.ws-viewport::after{
  right:0;
  background:linear-gradient(270deg, var(--ws-page), rgba(0,0,0,0));
}

/* Görsel arkasında beyaz istemiyoruz */
.ws-slide img{ background:transparent !important; }

/* Mobilde beyazı tamamen kapat: fade'leri gizle */
@media (max-width: 640px){
  .ws-viewport::before,
  .ws-viewport::after{ display:none !important; width:0 !important; background:none !important; }
  .ws-slide img{ background:transparent !important; }
}
