
:root{
  --bg:#050512;
  --panel:rgba(10,10,28,.62);
  --stroke:rgba(170,120,255,.25);
  --txt:#f6f3ff;
  --muted:rgba(246,243,255,.68);
  --neon1:#b16cff; /* mor */
  --neon2:#47d7ff; /* cyan */
  --good:#7CFFB2;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--txt);
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(177,108,255,.22), transparent 60%),
    radial-gradient(800px 500px at 85% 20%, rgba(71,215,255,.16), transparent 55%),
    radial-gradient(900px 700px at 50% 110%, rgba(177,108,255,.12), transparent 65%),
    var(--bg);
  font: 15px/1.5 ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  overflow-x:hidden;
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:24px 18px}
.nav{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(5,5,18,.86), rgba(5,5,18,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:12px}
.brand{
  display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.5px;
}
.brand-dot{
  width:10px; height:10px; border-radius:999px;
  background: radial-gradient(circle, var(--neon2), var(--neon1));
  box-shadow: 0 0 18px rgba(71,215,255,.65), 0 0 26px rgba(177,108,255,.45);
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius:999px;
  color:var(--muted);
}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--txt);
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.22); }
.btn-primary{
  background: linear-gradient(135deg, rgba(177,108,255,.22), rgba(71,215,255,.18));
  border-color: rgba(177,108,255,.35);
  box-shadow: 0 0 18px rgba(177,108,255,.18), 0 0 22px rgba(71,215,255,.10);
}
.btn-primary:hover{
  box-shadow: 0 0 28px rgba(177,108,255,.30), 0 0 28px rgba(71,215,255,.18);
}
.grid{
  display:grid; gap:18px;
}
.card{
  background: var(--panel);
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  overflow:hidden;
}
.card-pad{ padding:18px; }
.h1{
  font-size:40px; line-height:1.05; margin:0;
  text-shadow: 0 0 22px rgba(177,108,255,.25);
}
.sub{color:var(--muted); margin:10px 0 0}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.badge{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--txt);
}
.badge strong{color:var(--good)}
.glowline{
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(177,108,255,.55), rgba(71,215,255,.35), transparent);
  margin:18px 0;
}
.hero{
  display:grid; grid-template-columns: 1.05fr .95fr; gap:18px;
  align-items:stretch;
}
@media(max-width:920px){ .hero{grid-template-columns:1fr} .h1{font-size:34px} }

.gallery{
  display:grid; grid-template-columns: 1fr; gap:10px;
}
.mainimg{
  width:100%; aspect-ratio: 4 / 3;
  object-fit:cover; border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 0 22px rgba(177,108,255,.12);
}
.thumbs{
  display:flex; gap:10px; overflow:auto; padding-bottom:6px;
}
.thumb{
  width:96px; height:72px; flex:0 0 auto;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.12);
  opacity:.85;
  cursor:pointer;
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.thumb:hover{ opacity:1; transform: translateY(-1px); border-color: rgba(177,108,255,.35); box-shadow: 0 0 18px rgba(177,108,255,.14); }

.price{
  display:flex; align-items:baseline; gap:10px; margin-top:12px;
}
.price .now{font-size:28px; font-weight:850}
.price .was{color:rgba(246,243,255,.55); text-decoration: line-through}
.kpi{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:12px; margin-top:14px;
}
@media(max-width:920px){ .kpi{grid-template-columns:1fr} }
.kpi .k{
  padding:12px; border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.k .t{font-weight:800}
.k .d{color:var(--muted); margin-top:4px; font-size:13px}

.form input, .form textarea, .form select{
  width:100%;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  padding:12px 12px;
  color:var(--txt);
  outline:none;
}
.form textarea{min-height:92px; resize:vertical}
.form label{display:block; margin:12px 0 8px; color:var(--muted); font-size:13px}
.row{display:grid; grid-template-columns:1fr 1fr; gap:12px}
@media(max-width:720px){ .row{grid-template-columns:1fr} }

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
}
.table th{color:var(--muted); font-weight:700; text-align:left; font-size:13px}
.table td{
  padding:12px;
  background: rgba(255,255,255,.05);
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.table tr td:first-child{border-left:1px solid rgba(255,255,255,.08); border-radius:14px 0 0 14px}
.table tr td:last-child{border-right:1px solid rgba(255,255,255,.08); border-radius:0 14px 14px 0}
.small{font-size:13px; color:var(--muted)}

/* NAV LINKS */
.nav-links{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.nav-link{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(246,243,255,.82);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.nav-link:hover{transform: translateY(-1px); border-color: rgba(255,255,255,.22)}
.nav-link-primary{
  border-color: rgba(177,108,255,.35);
  box-shadow: 0 0 18px rgba(177,108,255,.14);
}

/* HOME HERO */
.hero2{padding:18px; position:relative; overflow:hidden}
.hero2-inner{
  display:grid; gap:18px; align-items:center;
  grid-template-columns: 1.1fr .9fr;
}
@media(max-width:920px){ .hero2-inner{grid-template-columns:1fr} }
.hero2-title{
  margin:0;
  font-size:46px; line-height:1.02;
  text-shadow: 0 0 26px rgba(177,108,255,.22);
}
@media(max-width:920px){ .hero2-title{font-size:36px} }
.hero2-sub{color:rgba(246,243,255,.72); margin:12px 0 0}
.hero2-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:16px}
.strike{margin-left:10px; opacity:.6; text-decoration:line-through}

/* ticker banner */
.ticker{
  display:flex; gap:14px; flex-wrap:wrap;
  margin-bottom:14px;
}
.ticker span{
  font-size:13px;
  padding:9px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(246,243,255,.82);
}

/* hero media */
.hero2-media{position:relative; border-radius:18px; overflow:hidden; border:1px solid rgba(255,255,255,.10)}
.hero2-img{width:100%; height:auto; display:block; transform: scale(1.03)}
.hero2-glow{
  position:absolute; inset:-40%;
  background: radial-gradient(circle at 30% 20%, rgba(71,215,255,.22), transparent 60%),
              radial-gradient(circle at 70% 40%, rgba(177,108,255,.25), transparent 60%);
  filter: blur(16px);
  pointer-events:none;
}
.hero2-badges{position:absolute; left:14px; bottom:14px; display:flex; gap:8px; flex-wrap:wrap}
.pill{
  padding:9px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(5,5,18,.55);
  backdrop-filter: blur(10px);
  font-size:13px;
}

/* Sections */
.section{margin-top:22px}
.section-title{font-size:22px; margin:0 0 12px; text-shadow: 0 0 16px rgba(177,108,255,.12)}
.section-head{display:flex; justify-content:space-between; align-items:center; gap:10px; flex-wrap:wrap}
.section-actions{display:flex; gap:8px}

/* Feature cards row (mobile: yatay kayar, desktop: 4’lü) */
.feature-row{
  display:grid; gap:12px;
  grid-template-columns: repeat(4, 1fr);
}
@media(max-width:920px){
  .feature-row{
    grid-template-columns: 1fr;
  }
}
.feature-card{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.feature-ico{font-size:22px}
.feature-t{margin-top:10px; font-weight:850}
.feature-d{margin-top:6px; color:rgba(246,243,255,.68); font-size:13px}

/* Showcase */
.showcase{display:grid; gap:16px; grid-template-columns: 1fr 1fr; padding:18px}
@media(max-width:920px){ .showcase{grid-template-columns:1fr} }
.showcase-img{width:100%; border-radius:16px; border:1px solid rgba(255,255,255,.10); display:block}

/* Reviews carousel */
.review-carousel{
  display:flex; gap:12px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:6px;
}
.review-card{
  min-width: 320px;
  max-width: 360px;
  scroll-snap-align:start;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
@media(max-width:520px){ .review-card{min-width: 86vw} }
.review-img img{width:100%; height:220px; object-fit:cover; display:block}
.review-body{padding:14px}
.review-name{font-weight:850; display:flex; gap:8px; align-items:center}
.verify{color: rgba(124,255,178,.95)}
.stars{letter-spacing:2px; margin-top:6px}
.review-text{margin-top:8px; color:rgba(246,243,255,.72); font-size:13px}

/* Final CTA */
.final-cta{
  display:flex; justify-content:space-between; align-items:center; gap:12px;
  padding:18px;
}
@media(max-width:920px){ .final-cta{flex-direction:column; align-items:flex-start} }

/* Reveal animations */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .5s ease, transform .5s ease}
.reveal.is-in{opacity:1; transform: translateY(0)}

/* ============ Global layout fixes (daha ferah mobil) ============ */
.container{max-width:1120px; margin:0 auto; padding:28px 18px}
@media(max-width:720px){ .container{padding:18px 16px} }
.page{padding-top:18px}

/* ========== PRO HEADER OVERRIDE (kurumsal/sade) ========== */

/* container: topbar'da padding'i daha kontrollü yap */
.topbar .container{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* topbar yükseklik + hizalama */
.topbar-inner{
  min-height: 64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* logo daha temiz */
.brand-dot{
  width:10px; height:10px;
  box-shadow:none !important;
  background: linear-gradient(135deg, rgba(177,108,255,.9), rgba(71,215,255,.9));
}
.brand-text{font-size:15px; letter-spacing:.6px}
.brand-dim{opacity:.55}

/* desktop menü: buton gibi değil, sade link */
.nav-desktop{
  display:flex;
  align-items:center;
  gap:22px;
}

.nav-link{
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow:none !important;
  color: rgba(246,243,255,.78) !important;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}

.nav-link:hover{
  transform:none !important;
  color: rgba(246,243,255,.95) !important;
}

/* hover underline */
.nav-link::after{
  content:"";
  position:absolute;
  left:0; right:0;
  bottom:-10px;
  height:1px;
  background: linear-gradient(90deg, transparent, rgba(177,108,255,.65), transparent);
  opacity:0;
  transform: translateY(2px);
  transition: opacity .18s ease, transform .18s ease;
}
.nav-link:hover::after{opacity:1; transform: translateY(0)}

/* aktif/primary link: sade ama net */
.nav-link-primary{
  color: rgba(246,243,255,.95) !important;
}
.nav-link-primary::after{
  opacity:1;
  transform: translateY(0);
}

/* hamburger daha minimal */
.hamburger{
  border-radius: 12px;
  width:42px; height:42px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
}
.hamburger span{
  width:18px;
  opacity:.9;
}

/* mobile menü: daha şık açılır panel */
.mobile-menu{
  background: rgba(5,5,18,.92) !important;
  backdrop-filter: blur(14px);
}
.mobile-menu-inner{
  padding: 12px 16px 16px;
  gap:10px;
}

.mobile-link{
  background: rgba(255,255,255,.04) !important;
  border:1px solid rgba(255,255,255,.10) !important;
  color: rgba(246,243,255,.85) !important;
  font-weight:600;
}
.mobile-link-primary{
  border-color: rgba(177,108,255,.28) !important;
}

/* responsive: desktop menü kapanıp hamburger açılır */
@media(max-width:920px){
  .nav-desktop{display:none}
}

/* Mobile menu */
.mobile-menu{
  display:none;
  border-top:1px solid rgba(255,255,255,.08);
  background: rgba(5,5,18,.75);
}
.mobile-menu.is-open{display:block}
.mobile-menu-inner{
  padding:10px 18px 16px;
  display:grid; gap:10px;
}
.mobile-link{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(246,243,255,.86);
}
.mobile-link-primary{
  border-color: rgba(177,108,255,.30);
  box-shadow: 0 0 16px rgba(177,108,255,.12);
}

/* Responsive navbar switching */
@media(max-width:920px){
  .nav-desktop{display:none}
  .hamburger{display:inline-flex; align-items:center; justify-content:center}
}

/* ============ Home hero: daha kurumsal + ferah ============ */
.hero2{padding:22px}
.hero2-title{
  margin:0;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-.2px;
}
.hero2-sub{margin-top:12px; font-size:15px; line-height:1.6; max-width:56ch}
.ticker{gap:10px}
.ticker span{
  font-size:12.5px;
  padding:9px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  color: rgba(246,243,255,.78);
}

/* CTA butonları mobilde alt alta, sıkışma yok */
.hero2-cta{margin-top:18px}
@media(max-width:720px){
  .hero2{padding:16px}
  .hero2-title{font-size:32px}
  .hero2-sub{font-size:14px}
  .hero2-cta{flex-direction:column; align-items:stretch}
  .hero2-cta .btn{width:100%}
}

/* Görsel tarafı mobilde daha iyi oran */
.hero2-media{border-radius:18px}
.hero2-img{aspect-ratio: 16 / 10; object-fit:cover}
@media(max-width:720px){
  .hero2-img{aspect-ratio: 16 / 12}
  .hero2-badges{left:12px; bottom:12px}
  .pill{font-size:12px; padding:8px 10px}
}

/* Feature cards mobilde çok sıkışmasın */
.feature-row{gap:12px}
.feature-card{padding:16px}
@media(max-width:720px){
  .feature-card{padding:16px; border-radius:18px}
}

/* Reviews: mobilde kartlar daha geniş + daha az yükseklik */
.review-card{min-width:340px}
@media(max-width:520px){
  .review-card{min-width:88vw}
  .review-img img{height:200px}
}

/* Final CTA mobil */
@media(max-width:720px){
  .final-cta{padding:16px}
}

/* ===== Header polish + hamburger fix (EN ALTA EKLE) ===== */

.topbar-inner{
  min-height: 64px;
  padding: 0;              /* container padding'i zaten var */
}

.brand-text{font-size:14.5px}
.brand-dot{
  box-shadow:none !important;  /* kurumsal görünüm */
}

/* Desktop linkleri çok "buton" gibi olmasın */
.nav-desktop{gap:18px}
.nav-link{
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow:none !important;
  font-weight: 600;
  color: rgba(246,243,255,.78) !important;
}
.nav-link:hover{color: rgba(246,243,255,.95) !important; transform:none !important}

/* Hamburger: ÇİZGİLER NET GÖRÜNSÜN */
.hamburger{
  display:none;                 /* desktop'ta gizli */
  width:42px; height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  align-items:center;
  justify-content:center;
  flex-direction:column;        /* üst üste çizgiler */
  gap:5px;
}
.hamburger span{
  display:block;
  width:20px;
  height:2px;
  border-radius:999px;
  background: rgba(246,243,255,.92); /* çizgi rengi */
  opacity:1;
}

/* Mobilde: desktop menü kapanır hamburger açılır */
@media(max-width:920px){
  .nav-desktop{display:none}
  .hamburger{display:flex}
}

/* ===== Brand + hamburger spacing polish (EN ALTA EKLE) ===== */

/* Logo bloğunu biraz sağa al (çok ortada durmasın) */
.brand{
  padding-left: 6px;              /* istersen 10px yap */
}

/* Yazıyı daha tatlı bir font yap (sistem fontu, dış kütüphane yok) */
.brand-text{
  font-family: ui-rounded, "Segoe UI", "SF Pro Rounded", system-ui, -apple-system, Arial;
  font-weight: 800;
  letter-spacing: .8px;
  font-size: 15px;
}

/* Brand dot ile yazı arası azıcık açılsın */
.brand{ gap: 11px; }

/* Hamburger sağa yapışmasın: sağdan boşluk + dokunma alanı */
.hamburger{
  margin-right: 6px;              /* istersen 10px yap */
}

/* Container'ın sağ-sol padding'i zaten var ama ekstra güvenlik */
.topbar-inner{
  padding-left: 2px;
  padding-right: 2px;
}

/* ===== Product buybox (galaxycover benzeri) ===== */
.product-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:18px;
  align-items:start;
}
@media(max-width:920px){
  .product-grid{grid-template-columns:1fr}
}

.buybox{ position: sticky; top: 86px; }
@media(max-width:920px){ .buybox{position:relative; top:auto} }

.buyhead{display:flex; flex-direction:column; gap:8px}
.buytitle{margin:0; font-size:28px; line-height:1.12}
.buyrating{display:flex; align-items:center; gap:10px; color:rgba(246,243,255,.78)}
.buyrating .stars{letter-spacing:2px}
.ratecount{opacity:.75; font-size:13px}

.buyprice{
  display:flex;
  align-items:baseline;
  gap:10px;
  margin-top:12px;
  flex-wrap:wrap;
}
.p-now{font-size:28px; font-weight:900}
.p-was{opacity:.55; text-decoration:line-through}
.p-badge{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(177,108,255,.30);
  background: rgba(177,108,255,.10);
  font-weight:800;
  font-size:12px;
}

.buy-perks{
  margin-top:12px;
  display:grid;
  gap:8px;
  color: rgba(246,243,255,.84);
  font-size:13px;
}
.buybullets{display:grid; gap:8px; color: rgba(246,243,255,.78); font-size:14px}

/* Qty */
.buyform{margin-top:14px}
.qtyrow{display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:12px}
.qtylabel{color: rgba(246,243,255,.70); font-size:13px; font-weight:700}
.qty{
  display:flex; align-items:center;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  border-radius:14px;
  overflow:hidden;
}
.qtybtn{
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border:0; background:transparent;
  color: rgba(246,243,255,.92);
  font-size:20px;
  cursor:pointer;
}
.qtybtn:hover{background: rgba(255,255,255,.06)}
.qtyinput{
  width:64px;
  text-align:center;
  border:0 !important;
  background:transparent !important;
  color: var(--txt);
  font-weight:800;
  outline:none;
}
.qtyinput::-webkit-outer-spin-button,
.qtyinput::-webkit-inner-spin-button{ -webkit-appearance: none; margin:0; }

.btn-buy{width:100%; padding:14px 16px; border-radius:16px; font-weight:900}


/* ===== Checkout professional UI ===== */
.checkout-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
@media(max-width:920px){
  .checkout-grid{grid-template-columns:1fr}
}

.checkout-title{margin:0; font-size:22px; font-weight:950}
.checkout-sub{margin:8px 0 0; color:rgba(246,243,255,.72)}

.trust-row{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.trust-pill{
  padding:9px 11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: rgba(246,243,255,.82);
  font-size:13px;
}

.payhint{
  margin-top:8px;
  font-size:12.5px;
  color: rgba(246,243,255,.70);
  line-height:1.45;
}

.checkout-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
@media(max-width:720px){
  .checkout-actions{flex-direction:column; align-items:stretch}
  .checkout-actions .btn{width:100%}
}

.fineprint{
  margin-top:12px;
  font-size:12.5px;
  color: rgba(246,243,255,.62);
  line-height:1.5;
}

.checkout-side{position:sticky; top:86px}
@media(max-width:920px){ .checkout-side{position:relative; top:auto} }

.side-title{font-weight:950; font-size:16px}
.side-list{display:grid; gap:12px; margin-top:12px}
.side-item{display:flex; gap:12px; align-items:flex-start}
.side-ico{width:34px; height:34px; display:flex; align-items:center; justify-content:center;
  border-radius:12px; border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
}
.side-h{font-weight:900}
.side-d{margin-top:3px; color:rgba(246,243,255,.70); font-size:13px; line-height:1.5}

/* FIX: reveal gizliyorsa her zaman göster */
.reveal{
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* PRODUCT PAGE FIX: buybox görünmeme sorununu çöz */
.product-page .product-grid{
  display:grid !important;
  grid-template-columns: minmax(0, 1fr) 360px !important;
  gap: 20px !important;
  align-items: start !important;
}

.product-page .product-left{ min-width:0 !important; }

.product-page .buybox{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}

@media (max-width: 920px){
  .product-page .product-grid{
    grid-template-columns: 1fr !important;
  }
  .product-page .buybox{
    width: 100% !important;
  }
}

/* Product sayfasında sağ satın alma kutusu görünür olsun */
.product-page .buybox{
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
  transform:none !important;
}

/* Eğer grid/float bozuluyorsa yan yana zorla */
.product-page .product-grid{
  display:grid !important;
  grid-template-columns:minmax(0,1fr) 360px !important;
  gap:20px !important;
  align-items:start !important;
}

@media (max-width: 920px){
  .product-page .product-grid{ grid-template-columns:1fr !important; }
}

/* Ödeme yöntemi kutuları beyaz kalıp yazı kaybolmasın */
.paybox{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px;
}

.payopt{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  margin-top:10px;
}

/* select yazıları görünür olsun */
select{
  color: var(--txt);
}
option{
  color:#000; /* dropdown açılınca okunaklı */
}
