
:root{
  --bg:#061022;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.10);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
  --muted2: rgba(255,255,255,.55);
  --brand: #7dd3fc;
  --brand2:#a78bfa;
  --ok:#34d399;
  --warn:#fbbf24;
  --danger:#fb7185;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,.55);
  --shadow2: 0 10px 22px rgba(0,0,0,.35);
  --max: 1180px;
  --gap: 18px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: #061022;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: linear-gradient(to bottom, rgba(7,11,18,.88), rgba(7,11,18,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
}
.topbar-inner{
  display:flex; align-items:center; gap:14px;
  padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.brand .dot{display:none;
  width:10px; height:10px; border-radius:99px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(125,211,252,.12);
}
.nav{
  margin-left:auto;
  display:flex; align-items:center; gap:10px;
}
.pill{
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
  box-shadow: var(--shadow2);
  font-weight:650;
  color: var(--text);
}
.pill:hover{background: rgba(255,255,255,.07)}
.topbar-secondary{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  flex-wrap:nowrap;
  padding: 0 0 12px 0;
}
.secondary-left{
  display:flex; align-items:center; gap:12px;
  flex:1 1 auto;
  min-width:0;
}
.crumb-inline{
  font-weight:650;
  font-size:12px;
  color: rgba(255,255,255,.78);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  padding-top: 1px;
}

/* Back button: glossy red like your reference */
.back-link{
  display:inline-flex; align-items:center; gap:8px;
  padding:5px 9px 5px 8px;
  border-radius: 8px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, #ff4a4a 0%, #b80000 100%);
  box-shadow: 0 8px 18px rgba(0,0,0,.38), inset 0 1px 0 rgba(255,255,255,.22);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  color:#fff;
  text-decoration:none;
  white-space:nowrap;
}
.back-link::before{
  content:"";
  width:18px;
  height:12px;
  background-repeat:no-repeat;
  background-size:contain;
  background-position:center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.35));
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='48' height='28' viewBox='0 0 48 28'><path fill='white' d='M19.5 14 33 3v6.2L26.7 14 33 18.8V25z'/><path fill='white' d='M9.5 14 23 3v6.2L16.7 14 23 18.8V25z'/></svg>");
}
.back-link:hover{filter: brightness(1.05)}
.back-link:active{transform: translateY(1px); filter: brightness(.98)}

.search-wrap{
  margin-left:auto;
  width:360px;
  max-width:360px;
  flex: 0 0 360px;
}
/* Glossy pill search like your reference */
.search-field{
  position:relative; width:100%;
  border-radius:999px;
  padding:3px;
  border:1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(125,211,252,.22), rgba(167,139,250,.14));
  box-shadow: 0 10px 26px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.10);
}
.search-field::before{
  content:"";
  position:absolute;
  left:4px; right:4px; top:4px;
  height: 48%;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
  pointer-events:none;
}
.search-ico{
  position:absolute; right:16px; top:50%; transform:translateY(-50%);
  width:18px; height:18px; opacity:.85; pointer-events:none;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,.45));
}
#siteSearch{
  width:100%;
  padding:10px 78px 10px 16px; /* right: clear + icon */
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.16));
  color: var(--text);
  outline:none;
  box-shadow: inset 0 2px 10px rgba(0,0,0,.35);
  height: 40px;
}
#siteSearch::placeholder{color: rgba(255,255,255,.55)}
#siteSearch:focus{
  border-color: rgba(125,211,252,.55);
  box-shadow: 0 0 0 4px rgba(125,211,252,.14), var(--shadow2);
}
.search-clear{
  position:absolute; right:44px; top:50%; transform:translateY(-50%);
  width:28px; height:28px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  display:none; align-items:center; justify-content:center;
  cursor:pointer;
}
.search-field.has-value .search-clear{display:flex;}
.search-clear:hover{background: rgba(255,255,255,.10)}
@media (max-width: 640px){
  .topbar-secondary{flex-wrap:wrap;}
  .secondary-left{width:100%;}
  .crumb-inline{max-width:none;}
  .search-wrap{max-width:none; width:100%;}
}

.hero{
  padding:22px 0 8px;
}
.banner{
  display:flex; flex-wrap:wrap; align-items:center; gap:12px;
  padding:14px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(125,211,252,.12), rgba(167,139,250,.10));
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}
.banner .tag{
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
}
.banner .msg{color: var(--text); font-weight:650}
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--gap);
  padding: 14px 0 26px;
}
@media (max-width: 1080px){
  .grid{grid-template-columns: repeat(3, minmax(0,1fr));}
}
@media (max-width: 820px){
  .grid{grid-template-columns: repeat(2, minmax(0,1fr));}
}
@media (max-width: 620px){
  .grid{grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px;}
  .nav{gap:8px}
  .pill{padding:9px 11px}
}
@media (max-width: 340px){
  .grid{grid-template-columns: 1fr;}
}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow2);
  overflow:hidden;
  min-height: 110px;
  display:flex;
  flex-direction:column;
}
.card:hover{border-color: rgba(125,211,252,.35)}
.card-top{
  /* Ana/Alt kategori kart kapak oranı: 16:9 */
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(420px 160px at 30% 10%, rgba(125,211,252,.22), transparent 55%),
    radial-gradient(460px 180px at 85% 0%, rgba(167,139,250,.18), transparent 55%),
    rgba(0,0,0,.18);
}

.card-top{
  position: relative;
  overflow: hidden;
}
/*
  Görsel doldurma için tek tip "soft-fill" görünüm:
  - Öndeki görsel: object-fit: contain (kırpma yok)
  - Arkada: aynı görselin blur + cover versiyonu (boşluk hissi yok)
*/
.card-top::before{
  content:"";
  position:absolute; inset:0;
  z-index: 1;
  background-image: var(--bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: .38;
  pointer-events:none;
}
.card-top img{
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  box-sizing: border-box;
  padding: 0;
  display: block;
}
.card-top:after{
  content:"";
  position:absolute; inset:0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.42));
  pointer-events:none;
}

.card-body{
  position: relative;
  padding:14px 14px 16px 14px;
  display:flex; align-items:flex-start; gap:12px;
}
.card-title{
  font-size: 15px;
  font-weight: 700;
  letter-spacing:.2px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-sub{
  margin-top:4px;
  color: var(--muted2);
  font-size: 13px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.86);
  font-weight: 850;
  font-size: 13px;
  box-shadow: var(--shadow2);
}
.btn:hover{background: rgba(0,0,0,.35); color: var(--text)}

/* Cards: right-bottom label (Kategoriler / Alt kategori) removed to avoid overlaps */
.card .btn{ display:none; }

.btn:active{transform: translateY(1px)}

.h1{
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 900;
  margin: 16px 0 8px;
}
.h2{
  font-size: 18px;
  font-weight: 900;
  margin: 22px 0 10px;
}
.breadcrumbs{color: var(--muted2); font-size: 13px; margin: 2px 0 10px}
.section-note{color: var(--muted2); font-size: 13px; margin: 0 0 10px}
.products{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--gap);
  padding-bottom: 28px;
}
@media (max-width: 980px){ .products{grid-template-columns: repeat(3, minmax(0,1fr));} }
@media (max-width: 760px){ .products{grid-template-columns: repeat(2, minmax(0,1fr));} }
@media (max-width: 420px){ .products{grid-template-columns: 1fr;} }
.pcard{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.pimg{
  aspect-ratio: 16 / 9;
  height: auto;
  background: rgba(0,0,0,.25);
  display:flex; align-items:center; justify-content:center;
}
.pimg{ position: relative; overflow: hidden; }
.pimg::before{
  content:"";
  position:absolute; inset:0;
  z-index: 1;
  background-image: var(--bg, none);
  background-size: cover;
  background-position: center;
  filter: blur(18px);
  transform: scale(1.12);
  opacity: .38;
  pointer-events:none;
}
.pimg img{
  /* Show the whole product image (no cropping) */
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display:block;
}
.pbody{padding:12px 12px 14px}
.pname{font-weight: 750; font-size: 14px; line-height: 1.25}
.pmeta{margin-top:6px; color: var(--muted2); font-size: 12.5px}
.footer{
  border-top:1px solid rgba(255,255,255,.06);
  padding: 18px 0 26px;
  color: var(--muted2);
  font-size: 13px;
}
.whatsapp{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display:flex; align-items:center; gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.whatsapp .w-dot{
  width:10px; height:10px; border-radius:99px;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,.16);
}
.whatsapp:hover{background: rgba(0,0,0,.70)}

/* Keep floating WhatsApp on all pages. Add spacing on contact page to avoid overlap */
.page-contact main.container{ padding-bottom: 120px; }
.page-contact .form-actions{ margin-bottom: 60px; }
.article{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  padding: 16px;
}
.article p{color: var(--muted); line-height: 1.65; margin: 10px 0}
.kv{display:grid; grid-template-columns: 160px 1fr; gap: 8px 14px; color: var(--muted); font-size: 14px}
@media (max-width: 520px){ .kv{grid-template-columns: 1fr;} }
.kv b{color: var(--text)}

/* ===== Product detail page ===== */
/* PDP layout (new) */
.pdp{ display:grid; grid-template-columns: 1.05fr .95fr; gap: 18px; align-items:start; }
@media (max-width: 980px){ .pdp{ grid-template-columns: 1fr; } }

.pdp-left{ display:grid; gap: 18px; }
.pdp-right{ position: relative; }
.pdp-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: var(--shadow2);
  padding: 16px;
  position: sticky;
  top: 14px;
}
@media (max-width: 980px){ .pdp-card{ position: static; } }

.pdp-badges{ display:flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.badge{
  display:inline-flex; align-items:center; gap: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.80);
  font-size: 12.5px;
}
.badge .dot{ width:8px; height:8px; border-radius: 999px; background: rgba(125,211,252,.85); box-shadow: 0 0 0 3px rgba(125,211,252,.14); }

.pdp-cta{ display:flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }

.pdp-callout{
  margin-top: 12px;
  border-radius: 16px;
  border:1px solid rgba(125,211,252,.18);
  background: radial-gradient(520px 240px at 25% 0%, rgba(125,211,252,.16), transparent 55%),
              radial-gradient(520px 240px at 85% 0%, rgba(167,139,250,.12), transparent 55%),
              rgba(255,255,255,.05);
  padding: 14px;
}
.pdp-callout-title{ font-weight: 850; margin-bottom: 8px; }

.pdp-accord{
  margin-top: 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.pdp-accord details{ border-top:1px solid rgba(255,255,255,.08); padding: 10px 14px; }
.pdp-accord details:first-child{ border-top: none; }
.pdp-accord summary{ cursor:pointer; font-weight: 850; list-style:none; }
.pdp-accord summary::-webkit-details-marker{ display:none; }
.pdp-accord p{ color: var(--muted); line-height: 1.7; margin: 10px 0 4px; }

.pdp-list{ margin: 8px 0 0; padding-left: 18px; color: rgba(255,255,255,.78); }
.pdp-list li{ margin: 6px 0; color: rgba(255,255,255,.76); }

.pdp-media{ display:grid; gap: 14px; }
.pdp-under{ display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 760px){ .pdp-under{ grid-template-columns: 1fr; } }

.pdp-block{
  border-radius: 18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow2);
  padding: 12px;
}
.pdp-block-title{ font-weight: 850; margin-bottom: 8px; }
.pdp-hint{ margin-top: 8px; color: rgba(255,255,255,.55); font-size: 12.5px; }

.swatches{ display:flex; flex-wrap: wrap; gap: 10px; }
.swatch{ display:flex; align-items:center; gap: 10px; padding: 8px 10px; border-radius: 999px; border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05); }
.swatch .c{ width: 16px; height: 16px; border-radius: 999px; border:1px solid rgba(255,255,255,.28); box-shadow: inset 0 0 0 2px rgba(0,0,0,.18); }
.swatch span{ font-size: 13px; color: rgba(255,255,255,.80); }

.hi-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 760px){ .hi-grid{ grid-template-columns: 1fr 1fr; } }
.hi{
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.20);
  padding: 10px;
}
.hi b{ display:block; font-size: 12px; color: rgba(255,255,255,.60); margin-bottom: 4px; }
.hi div{ font-weight: 850; }

.pdp-section-title{ font-weight: 850; margin: 4px 0 10px; }

.product-main-image{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.product-main-image img{
  width: 100%;
  height: 100%;
  /* Ürün detay ana görsel yüksekliği (daha kompakt) */
  max-height: 360px;
  object-fit: contain;
  display:block;
  background: rgba(255,255,255,.05);
}
.product-title{ font-size: 22px; margin:0 0 10px; }
.product-meta{ color: rgba(255,255,255,.65); font-size: 13.5px; margin-bottom: 4px; }

.product-gallery{ display:grid; grid-template-columns: repeat(6, 1fr); gap: 10px; }
@media (max-width: 1000px){ .product-gallery{ grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px){ .product-gallery{ grid-template-columns: repeat(3, 1fr); } }

/* product gallery thumbs (buttons) */
.pgThumb{
  padding: 0;
  border: none;
  text-align: left;
  border-radius: 14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  box-shadow: var(--shadow2);
  transition: transform .12s ease, border-color .12s ease;
}
.pgThumb:hover{ transform: translateY(-2px); border-color: rgba(125,211,252,.35); }
.pgThumb img{ width:100%; height: 78px; object-fit: contain; display:block; 
  background: rgba(0,0,0,.18);
  box-sizing: border-box;
  padding: 4px;}
.pgMore{ align-self: center; justify-self: start; color: rgba(255,255,255,.60); font-size: 13px; padding: 6px 2px; }



/* ===== Visual polish for product images ===== */
.pcard{
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.pcard:hover{
  transform: translateY(-3px);
  border-color: rgba(125,211,252,.35);
  background: rgba(255,255,255,.06);
}
.pimg{
  /* Ürün kartı görsel oranı: 16:9 */
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(420px 220px at 30% 20%, rgba(125,211,252,.16), transparent 55%),
    radial-gradient(520px 260px at 85% 0%, rgba(167,139,250,.14), transparent 55%),
    rgba(0,0,0,.28);
}

/* Product card images: show the whole image (no crop / no zoom) */
.pimg img{
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  position: relative;
  z-index: 2;
  display: block;
  transform: none !important;
  transition: filter .22s ease;
  filter: saturate(1.05) contrast(1.03);
  box-sizing: border-box;
  padding: 0;
  background: transparent;
}
.pcard:hover .pimg img{
  transform: none !important;
  filter: saturate(1.08) contrast(1.06);
}

/* soft top/bottom fade for readability */
.pimg::after{
  content:"";
  position:absolute; inset:0;
  z-index: 3;
  background: linear-gradient(to bottom, rgba(0,0,0,.18), transparent 40%, rgba(0,0,0,.32));
  pointer-events:none;
}

/* placeholder shimmer */
.pimg .ph{
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.72);
  font-weight: 750;
  letter-spacing: .2px;
}
.pimg .ph::before{
  content:"";
  position:absolute; inset:-40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
  transform: rotate(12deg);
  animation: shimmer 1.5s infinite linear;
}
@keyframes shimmer{
  0%{ transform: translateX(-40%) rotate(12deg); }
  100%{ transform: translateX(40%) rotate(12deg); }
}

/* tighter caption styling */
.pbody{ padding: 12px 12px 14px; }
.pname{ font-weight: 750; }
.pmeta{ color: rgba(255,255,255,.60); }



/* ===== Per-card accent (less monotone) ===== */
.card{ --h: 210; }
.card-top{
  background:
    radial-gradient(520px 210px at 20% 10%, hsla(var(--h), 95%, 70%, .22), transparent 58%),
    radial-gradient(540px 240px at 90% 0%, hsla(calc(var(--h) + 60), 90%, 70%, .16), transparent 60%),
    rgba(0,0,0,.18);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.045));
}
.banner{
  background: linear-gradient(135deg, rgba(125,211,252,.14), rgba(167,139,250,.12));
}


/* ===== Banner (campaign/announcement) ===== */
.banner{
  padding: 18px 18px;
  gap: 14px;
  align-items: stretch;
  background: rgba(255,255,255,.06);
}
.banner .tag{
  background: rgba(0,0,0,.35);
}
.banner-inner{
  display:flex;
  gap:14px;
  width:100%;
  align-items:stretch;
}
.banner-left{
  flex: 1 1 360px;
  min-width: 260px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.banner-title{
  font-weight: 900;
  font-size: 16px;
  letter-spacing:.2px;
}
.banner-msg{
  color: rgba(255,255,255,.78);
  font-weight: 600;
  line-height: 1.55;
}
.banner-actions{
  display:flex; gap:10px; flex-wrap:wrap;
}
.banner-btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(255,255,255,.82);
  font-weight: 700;
  font-size: 13px;
}
.banner-btn:hover{ background: rgba(0,0,0,.35); color: var(--text); }

.banner-media{
  flex: 0 1 460px;
  min-width: 280px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  overflow:hidden;
  position: relative;
}
.banner-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10), rgba(0,0,0,.28));
  pointer-events:none;
}
.banner-media img{
  width: 100%;
  height: 100%;
  display:block;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}
.banner-media .ph{
  aspect-ratio: 16 / 9;
  display:flex;
  align-items:center;
  justify-content:center;
  color: rgba(255,255,255,.70);
  font-weight: 750;
}
@media (max-width: 900px){
  .banner-inner{ flex-direction: column; }
  .banner-media{ width: 100%; min-width: 0; }
}


/* ===== Image-only Campaign Banner ===== */
.banner-image-only{
  padding:0;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  position: relative;
  /* Desktop banner target: 1920x600 (3.2:1). Mobilde de aynı görsel orantılı küçülür. */
  aspect-ratio: 16 / 5;
  /* JS sets this to the active slide's src */
  --hero-bg: none;
  background: rgba(0,0,0,.25);
}
.banner-image-only::before{
  content:"";
  position:absolute;
  inset:-34px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(18px) brightness(.65) saturate(1.05);
  transform: scale(1.12);
  opacity: .95;
}
.banner-image-only::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 120% at 10% 20%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(60% 120% at 90% 10%, rgba(120,90,255,.14), transparent 55%),
              linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.35));
  pointer-events: none;
}

/* Subtle helper text only on hover */
.banner-image-only .hero-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.banner-image-only:hover .hero-overlay{ opacity: 1; }
.banner-image-only .hero-overlay-inner{
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  backdrop-filter: blur(8px);
}
.banner-image-only img{
  width: 100%;
  height: 100%;
  display: block;
  /* Mobilde kırpma olmasın: webdeki gibi orantılı küçülüp sığsın */
  object-fit: contain;
  object-position: center center;
  position: relative;
  z-index: 1;
  padding: 0;
}
/* Small help overlay for empty campaign images (shows on hover) */
.hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:flex-end;
  justify-content:flex-start;
  padding: 14px;
  opacity:0;
  transition: opacity .2s ease;
  z-index: 2;
  pointer-events:none;
}
.banner-image-only:hover .hero-overlay{ opacity: 1; }
.hero-overlay .hero-overlay-inner{
  background: rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(255,255,255,.80);
  font-size: 13px;
}

/* Home campaign slider */
[data-slider]{ position: relative; }
/* specificity fix: .banner-image-only img{} would otherwise override display:none */
.banner-image-only img.hero-slide{ display:none; width:100%; height:100%; }
.banner-image-only img.hero-slide.active{ display:block; }
.slider-dots{
  position:absolute;
  left:50%;
  bottom:10px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.slider-dots .dot{
  width:8px;
  height:8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(0,0,0,.25);
}
.slider-dots .dot.active{ background: rgba(255,255,255,.65); }

/* ===== Kampanya Slider - tam alan kullanımı + mobil otomatik ölçek ===== */
.banner-image-only{
  position: relative;
  padding: 0 !important;
  overflow: hidden;
  border-radius: var(--radius);
}
.banner-image-only img.hero-slide{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  padding: 0 !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  display:none;
}
.banner-image-only img.hero-slide.active{ display:block; }
.brand-logo{display:flex;align-items:center}
.brand-logo .logo{
 height:36px;
 width:auto;
 display:block;
}
@media(max-width:520px){
 .brand-logo .logo{height:28px}
}


/* ===== Header logo (image) ===== */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}
.brand .logo{ height:52px;
  width: auto;
  display:block;
}
@media (max-width: 520px){
  .brand .logo{ height:36px; }
}

/* ===== Mobile-first responsiveness tweaks (stable) ===== */
@media (max-width: 720px){
  .topbar-inner{ flex-wrap: wrap; gap: 10px; }
  .nav{ margin-left: 0; width: 100%; justify-content: space-between; }
  .pill{ padding: 9px 11px; font-size: 13px; }
}

@media (max-width: 520px){
  .container{ padding: 0 12px; }

  /* cards: avoid button overlap and let titles wrap */
  .card-body{ padding: 12px; }
  .card-title{ white-space: normal; line-height: 1.25; }

  /* hero banner: keep clean edge-to-edge on phones */
  .banner-image-only img{ min-height: 0; padding: 0; }

  /* PDP: keep main image and text balanced on phones */
  #mainImg{ max-height: 240px; }
  .pdp-card{ padding: 14px; }
  .product-title{ font-size: 20px; }
  .footer{ font-size: 12.5px; }
}

@media (max-width: 420px){
  /* floating WhatsApp: compact on tiny screens */
  .whatsapp{ right: 12px; bottom: 12px; padding: 10px 12px; gap: 8px; }
  .whatsapp span:last-child{ display: none; }
}

.section-note:empty{display:none}
.h1:empty{display:none}


/* Home page: hide the big title/note (requested), but keep them visible on other pages */
body[data-page="home"] .h1,
body[data-page="home"] .section-note { display:none !important; }


/* ===== Fixes (v13): Campaign slider edge fix (no side "white bars") + slow smooth transition ===== */
/*
  Problem: object-fit: contain can leave side gaps; previously we used a BLURRED background
  that could show as vertical light bands depending on the SVG artwork.
  Solution: keep the banner looking like desktop by:
  - using the SAME active slide as a cover background behind the contain image (no blur)
  - using a gentle crossfade + subtle zoom (no 3D flip)
*/

/* Use the active slide as the banner background so any empty area is never "white" */
.banner-image-only{
  perspective: none !important;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0b1020;
}
/* Disable the blurred background layer (it caused the visible vertical light bands) */
.banner-image-only::before{ display:none !important; }
/* Keep only a subtle dark overlay (no light radial spots) */
.banner-image-only::after{
  opacity: 1 !important;
  background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.32)) !important;
}

/* Crossfade + gentle zoom (looks smooth and slower) */
.banner-image-only img.hero-slide{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: contain !important;   /* keep desktop look on all screens */
  object-position: center !important;
  background: transparent !important;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1.6s ease-in-out, transform 1.6s ease-in-out;
  will-change: transform, opacity;
  z-index: 1;
}
.banner-image-only img.hero-slide.active{
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
/* If any legacy classes exist, neutralize them */
.banner-image-only img.hero-slide.enter,
.banner-image-only img.hero-slide.exit{
  opacity: 0 !important;
  transform: scale(1.02) !important;
}


/* ===== Contact page ===== */
.contact-title{ font-weight:900; font-size:18px; margin-bottom:12px; }
.contact-list{ display:grid; gap:10px; margin-bottom:14px; }
.contact-row{ display:flex; gap:10px; align-items:flex-start; padding:10px 12px; border:1px solid rgba(255,255,255,.10); border-radius:14px; background: rgba(255,255,255,.04); }
.contact-icon{ width:26px; height:26px; border-radius:10px; background: rgba(125,211,252,.15); display:flex; align-items:center; justify-content:center; flex: 0 0 auto; }
.contact-label{ font-size:12px; opacity:.75; }
.contact-value{ font-weight:700; }
.contact-actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.contact-map{ width:100%; height:360px; border:0; border-radius:14px; }
@media (max-width: 900px){ .contact-map{ height:300px; } }


/* ===== Corporate page (Kurumsal) ===== */
.pageTitle{
  font-size: 22px;
  font-weight: 950;
  margin: 12px 0 16px;
  letter-spacing: .2px;
}

.corp-grid{
  grid-template-columns: 1.08fr .92fr;
  gap: 16px;
}

.article.corp-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}

.corp-head{
  display:flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}
.corp-badge{
  display:inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(125,211,252,.12);
  border: 1px solid rgba(125,211,252,.18);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: .3px;
}
.corp-mini{
  opacity: .72;
  font-size: 13px;
  line-height: 1.35;
}

.corp-kv{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.corp-kv-item{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px 12px;
}
.corp-kv-item .k{ font-size: 12px; opacity: .75; margin-bottom: 4px; }
.corp-kv-item .v{ font-weight: 850; }

.corp-section{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.corp-section-title{
  font-weight: 950;
  margin-bottom: 8px;
  font-size: 14px;
}
.corp-p{ margin: 0; opacity: .88; line-height: 1.55; }

.corp-chips{ display:flex; flex-wrap:wrap; gap: 8px; margin-top: 12px; }
.chip{
  display:inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 12px;
  font-weight: 800;
  opacity: .92;
}

@media (max-width: 900px){
  .corp-grid{ grid-template-columns: 1fr; }
  .corp-kv{ grid-template-columns: 1fr; }
}


/* PDP alternative products */
.pdp-alt{ margin-top: 18px; }
.alt-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.alt-card{
  background: rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  text-decoration:none;
  color: inherit;
}
.alt-card:hover{
  transform: translateY(-2px);
  border-color: rgba(120,180,255,.35);
  box-shadow: 0 0 0 1px rgba(120,180,255,.15), 0 10px 26px rgba(0,0,0,.35);
}
.alt-card .img{
  width:100%;
  /* Alt ürün görsellerinde gereksiz dikey boşluğu azalt */
  height: 78px;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.alt-card img{
  width:100%;
  height:100%;
  object-fit: contain;
  display:block;
  /* Ürün görsellerinin kendi içindeki beyaz kenar boşluklarını biraz kırp */
  transform: scale(1.18);
  transform-origin: center;
}
.alt-card .t{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  color: rgba(255,255,255,.92);
  text-align:center;
  min-height: 32px;
}
@media (max-width: 980px){
  .alt-grid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px){
  .alt-grid{ grid-template-columns: repeat(2, 1fr); }
}



/* PDP main image sizing */
#mainImg{
  width:100%;
  max-height:300px;
  object-fit:contain;
}


/* ===== Contact page polish (v1) ===== */
.article.contact-card{
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.contact-sub{
  opacity: .7;
  margin-top: -6px;
  margin-bottom: 14px;
  font-size: 13px;
}
.contact-row{
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.contact-row:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.contact-value a{ color: rgba(255,255,255,.92); text-decoration: none; }
.contact-value a:hover{ text-decoration: underline; }
}


/* Contact form */
.hp{position:absolute;left:-9999px;opacity:0;height:0;width:0;pointer-events:none;}
.form-card .contact-sub{margin-bottom:12px;}
.form-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:10px;
}
.form-field label{
  display:block;
  font-size:12px;
  opacity:.7;
  margin: 0 0 6px 2px;
}
.input{
  width:100%;
  border-radius:12px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.92);
  outline:none;
  transition: border-color .15s ease, background .15s ease;
}
.input:focus{
  border-color: rgba(130,170,255,.55);
  background: rgba(0,0,0,.26);
}
.textarea{resize:vertical; min-height:120px;}
.form-field.full{grid-column: span 2;}
.form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
  align-items:center;
}
.btn-primary{
  border-color: rgba(130,170,255,.55);
  background: rgba(130,170,255,.12);
}
.btn-primary:hover{background: rgba(130,170,255,.18);}
.form-note{
  margin-top:10px;
  font-size:12px;
  opacity:.65;
}

.info-card .mini-list{margin-top:8px; display:grid; gap:8px;}
.mini-row{display:flex; justify-content:space-between; gap:10px; padding:10px 12px; border-radius:12px; background: rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.08);}
.mini-k{opacity:.7; font-size:12px;}
.mini-v{font-weight:600; font-size:12px; text-align:right;}
.info-note{margin-top:10px; font-size:12px; opacity:.7;}

@media (max-width: 900px){
  .contact-extra{grid-template-columns:1fr !important;}
  .form-grid{grid-template-columns:1fr;}
  .form-field.full{grid-column: span 1;}
}


/* search bar width tweaks */
@media (max-width: 720px){
  .search-wrap{ width: 280px; max-width: 280px; flex-basis: 280px; }
}
@media (max-width: 520px){
  .search-wrap{ width: 240px; max-width: 240px; flex-basis: 240px; }
  .back-link{ padding:6px 10px 6px 9px; font-size:12.5px; }
}

/* ===== Mobile fix: proportional images, no giant crops ===== */
@media (max-width: 768px){
  /* Campaign/banner: keep proportional and smaller, show full image */
  .banner-image-only{ height: clamp(170px, 42vw, 240px) !important; }
  .banner-image-only img.hero-slide{
    object-fit: contain !important;
    background: rgba(0,0,0,.22);
  }
}
@media (max-width: 520px){
  /* Product cards: keep 16:9 */
  .pimg{ aspect-ratio: 16 / 9 !important; height: auto !important; }
  /* Keep full image visible on small screens too */
  .pimg img{ object-fit: contain !important; }
  /* Keep grid readable on small phones */
  .products{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}


/* ===== Fixes (v9): campaign on mobile + hide helper text + compact mobile grids ===== */

/* Campaign banner: never crop on mobile; match desktop look by scaling down */
.banner-image-only{ height: auto !important; aspect-ratio: 16 / 5 !important; }
.banner-image-only img.hero-slide{
  width: 100% !important;
  height: 100% !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  min-height: 0 !important;
}

/* Remove the campaign helper overlay text entirely */
.banner-image-only .hero-overlay,
.hero-overlay{ display:none !important; }

/* Mobile: keep category + product cards readable (2 columns) */
@media (max-width: 520px){
  .grid{ gap: 10px; padding-top: 10px; }
  .products{ grid-template-columns: repeat(2, minmax(0,1fr)) !important; gap: 10px; }
  .card-body{ padding: 12px 12px 14px 12px; }
  .card-title{ font-size: 14px; }
  .card-sub{ font-size: 12.5px; }
}

/* Very small phones: allow single column if needed */
@media (max-width: 340px){
  .products{ grid-template-columns: 1fr !important; }
}
