@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Orbitron:wght@500;700&display=swap');
html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,system-ui;
  background:#050510;
  color:#fff;
  padding-top:72px;

  /* PREMIUM FONT SMOOTHING */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

/* HEADINGS – OPSİYONEL CİLA */
h1, h2, h3, h4, h5, h6{
  text-rendering: optimizeLegibility;
}

/* HEADER */
.top{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:72px;
  z-index:50;
  background:#050510;
  display:flex;
  align-items:center;
}

/* LOGO */
.logo a{
  font-family:Orbitron;
  letter-spacing:3px;
  color:#fff;
  text-decoration:none;
  font-size:15px;
}

/* CTA */
.cta{
  padding:12px 22px;
  border-radius:999px;
  background:linear-gradient(90deg,#ff2aa1,#7b2cff);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

/* HERO */
.hero{
  height:100vh;
  position:relative;
}
.hero video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,.3),
    rgba(0,0,0,.85)
  );
}
.heroText{
  position:absolute;
  bottom:18%;
  left:8%;
  max-width:520px;
}
.heroText h1{
  font-family:Orbitron;
  font-size:42px;
}

/* PRODUCTS */
.products{
  padding:120px 8% 80px;
  margin-top:40px;
}

/* CARD */
.card{
  background:#0c0c1d;
  border-radius:18px;
  padding:16px;
}

/* PRODUCT IMAGE */
.ph{
  height:220px;
  border-radius:18px;
  overflow:visible;
  background:transparent;
  padding:0;
}
.ph img{
  width:100%;
  height:auto;
  display:block;
  object-fit:none;
  transition:transform .45s ease;
  will-change:transform;
}

/* HOVER ZOOM */
.products .card:hover .ph img{
  transform:scale(1.035);
}

/* LINK FIX */
.product-link{
  text-decoration:none;
  color:#fff;
}
.product-link *{
  color:#fff;
  text-decoration:none;
}

/* CARD TEXT */
.card h3{
  margin:14px 0 4px;
  font-family:Orbitron;
  font-size:18px;
}
.card p{
  margin:0 0 14px;
  font-size:14px;
  color:#b9b9d3;
  opacity:.75;
}

/* CARD CTA */
.buy{
  display:inline-block;
  margin-top:6px;
  padding:10px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  background:linear-gradient(90deg,#ff2aa1,#7b2cff);
  color:#fff;
}

/* GRID */
.page-home .products-inner{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:32px;
}

/* =========================
   HOME – PREMIUM POLISH
   ========================= */

.page-home .products .card{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.045),
    rgba(255,255,255,0.015)
  );
  box-shadow:0 18px 55px rgba(0,0,0,.38);
}

.page-home .products .card h3{
  font-size:1.15rem;
  letter-spacing:.35px;
}

.page-home .products .card p{
  opacity:.7;
  font-size:.9rem;
}

.page-home .products .card .buy{
  background:transparent;
  border:1px solid rgba(255,255,255,.25);
}

.page-home .products .card .buy:hover{
  background:rgba(255,255,255,.08);
}

/* =========================
   PRODUCT DETAIL
   ========================= */

.container{
  max-width:1100px;
  margin:0 auto;
  padding:24px 8%;
}

.product{
  display:grid;
  grid-template-columns:1fr;
  gap:40px;
}

@media(min-width:900px){
  .product{
    grid-template-columns:1.1fr .9fr;
    align-items:flex-start;
  }
}

.product-hero img{
  width:100%;
  border-radius:20px;
}

/* GALERİ SUNUMU */
.page-product .product-info{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,0.035),
    rgba(255,255,255,0.01)
  );
  padding:24px;
  border-radius:18px;
}

.title{
  font-family:Orbitron;
  font-size:28px;
  margin:0 0 10px;
  letter-spacing:.4px;
}

.subtitle{
  color:#b0b0c3;
  margin:0 0 18px;
  line-height:1.5;
  opacity:.75;
}

/* BUY BUTTON – DOKUNULMADI */
.buy-btn{
  display:inline-block;
  padding:14px 28px;
  background:linear-gradient(90deg,#ff2aa1,#7b2cff);
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  margin-top:18px;
}

.note{
  margin-top:8px;
  font-size:13px;
  color:#8a8aa3;
}

/* SECTIONS */
.section{
  margin-top:36px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.section h3{
  font-family:Orbitron;
  font-size:18px;
  margin:0 0 12px;
}
.section p,
.section li{
  color:#c9c9d8;
  line-height:1.65;
}
.section ul{
  margin:0;
  padding-left:18px;
}

/* FADE-UP */
.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s ease, transform .6s ease;
}
.fade-up.show{
  opacity:1;
  transform:none;
}

/* FADE-UP PASİF – HOME DIŞI */
body:not(.page-home) .fade-up{
  opacity:1;
  transform:none;
}

/* LEGAL */
.legal-footer a{
  background:none;
  padding:0;
  border-radius:0;
  font-weight:400;
}

/* BUY BUTTON ALT METİN BOŞLUK FIX */
.page-product .buy-btn + p,
.page-product .buy-btn + .note{
  margin-top:12px;
}

/* =========================
   GLOBAL CTA VERTICAL RHYTHM
   ========================= */

.cta,
.buy,
.buy-btn{
  margin-top:16px;
  margin-bottom:16px;
}

/* HERO CTA özel */
.page-home .heroText .cta{
  margin-top:20px;
  margin-bottom:0;
}

/* PRODUCT CTA özel */
.page-product .buy-btn{
  margin-top:18px;
  margin-bottom:18px;
}

/* =========================
   CTA FINAL FIX
   ========================= */

.heroText p{
  margin-bottom:10px;
}

.heroText .cta{
  margin-top:18px;
  display:inline-block;
}

.page-product .buy-btn{
  display:inline-block;
  margin-bottom:16px;
}

/* =========================
   CARD – MICRO GLOW + DEPTH
   ========================= */

.page-home .products .card{
  position: relative;
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

/* çok hafif ambient glow */
.page-home .products .card::after{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:20px;
  pointer-events:none;
  opacity:.0;
  transition:opacity .35s ease;
  box-shadow:
    0 0 0 rgba(0,0,0,0);
}

/* hover */
.page-home .products .card:hover{
  transform:translateY(-4px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.45);
}

.page-home .products .card:hover::after{
  opacity:.55;
  box-shadow:
    0 0 28px rgba(123,44,255,.18),
    0 0 18px rgba(255,42,161,.12);
}

/* =========================
   CARD TEXT – SHARPEN ILLUSION
   ========================= */

.page-home .products .card h3,
.page-home .products .card p{
  transition:
    opacity .25s ease,
    text-shadow .25s ease;
}

.page-home .products .card:hover h3{
  opacity:1;
  text-shadow:0 0 1px rgba(255,255,255,.35);
}

.page-home .products .card:hover p{
  opacity:.9;
}

/* =========================
   HERO TEXT – PREMIUM CONTRAST
   ========================= */

.heroText h1,
.heroText p{
  text-shadow:
    0 2px 8px rgba(0,0,0,.45),
    0 0 22px rgba(0,0,0,.25);
}

.heroText{
  backdrop-filter:none;
}

.title{
  font-family: "Orbitron", system-ui, sans-serif;
}

/* =========================
   GLOBAL FADE-UP
   ANASAYFA İLE AYNI
   ========================= */

.fade-up{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   FADE-UP FIX – HOME DIŞI
   ========================= */

body:not(.page-home) .fade-up{
  opacity: 0;
  transform: translateY(24px);
}

body:not(.page-home) .fade-up.show{
  opacity: 1;
  transform: translateY(0);
}

/* CONTACT PAGE – HEADER OFFSET FIX */

.page-contact{
  padding-top:0;
}

/* CONTACT PAGE – CONTENT OFFSET */

.page-contact .contact-wrap{
  max-width:640px;
  margin:0 auto;
  padding-top:72px; /* header kadar */
}
