/* =========================
   Created by Kayra Gumus
   OHSE - UNIFIED DESIGN SYSTEM
   Production Ready - 2026
   Developer: Kayra Gumus
========================= */

/* =========================
   1) DESIGN TOKENS
   Created by Kayra Gumus
========================= */
:root{
  /* Colors */
  --bg: #0b0d10;
  --bg-2: #0f1216;
  --panel: rgba(255,255,255,.04);
  --panel-2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --stroke-2: rgba(255,255,255,.16);
  --shadow: 0 24px 80px rgba(0,0,0,.55);
  
  /* Text */
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.65);
  --muted-2: rgba(255,255,255,.48);
  --hint: rgba(255,255,255,.32);
  
  /* Accent */
  --accent: #7a2cff;
  --accent-2: rgba(122,44,255,.22);
  
  /* Radii */
  --r0: 0px;
  --r1: 6px;
  --r2: 10px;
  
  /* Spacing */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  
  /* Typography */
  --ff-body: "Inter", system-ui, -apple-system, sans-serif;
  --ff-display: "Oswald", "Space Grotesk", "Inter", sans-serif;
  --ff-elegant: "Cinzel", "Bodoni Moda", serif;
  --ff-bold: "Bebas Neue", "Rajdhani", sans-serif;
  
  /* Motion */
  --t: 220ms;
  --e: cubic-bezier(.22,1,.36,1);
  
  /* Layout */
  --max: 1200px;
}

/* =========================
   2) RESET / BASE
========================= */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit;color:inherit}
::selection{background: var(--accent-2); color: var(--text)}

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
}

/* Subtle noise + grid */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.03) 0, transparent 45%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,.02) 0, transparent 50%);
  opacity:.9;
}

/* =========================
   3) BACKGROUND LAYERS
========================= */
.city-bg{
  position:fixed;
  inset:0;
  z-index:-1;
  background: url("images/force- altust drop.png?v=2026-01-15") center/cover no-repeat;
  filter: brightness(.4) contrast(1.1) saturate(1);
  transform: scale(1.05);
  will-change: transform;
}

.bg-overlay{
  display:none !important;
}

.grid-pattern{
  display:none !important;
}

/* =========================
   4) GLOBAL LAYOUT
========================= */
.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 140px 40px 110px;
  position:relative;
  z-index:1;
}

@media (max-width: 820px){
  .container{padding: 120px 18px 90px;}
}
@media (max-width: 768px){
  .container{
    padding:100px 20px 60px;
  }
  .page-title{
    font-size:clamp(28px, 7vw, 48px);
    letter-spacing:3px;
    margin-bottom:12px;
  }
  .page-subtitle{
    font-size:clamp(12px, 1.8vw, 16px);
    letter-spacing:3px;
    margin-bottom:16px;
  }
  .page-description{
    font-size:14px;
    line-height:1.7;
    padding:0 10px;
  }
  .legal-header h1{
    font-size:clamp(28px, 7vw, 40px);
    letter-spacing:2px;
  }
  .legal-header p{
    font-size:12px;
  }
  .legal-content{
    font-size:14px;
    line-height:1.8;
  }
  .legal-content h2{
    font-size:18px;
    margin-top:24px;
    margin-bottom:12px;
  }
  .legal-content h3{
    font-size:16px;
    margin-top:20px;
    margin-bottom:10px;
  }
  .legal-content ul,
  .legal-content ol{
    padding-left:20px;
  }
  .legal-content li{
    margin-bottom:8px;
    font-size:14px;
  }
}
@media (max-width: 480px){
  .container{
    padding:90px 16px 40px;
  }
  .page-title{
    font-size:clamp(24px, 8vw, 36px);
    letter-spacing:2px;
  }
  .page-subtitle{
    font-size:clamp(11px, 2vw, 14px);
  }
  .legal-header h1{
    font-size:clamp(24px, 8vw, 32px);
  }
  .legal-content{
    font-size:13px;
  }
}

/* =========================
   5) NAVIGATION
   Created by Kayra Gumus
========================= */
nav{
  position:fixed;
  top:0; left:0; right:0;
  padding: 32px 48px;
  z-index: 100;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background: rgba(0,0,0,.3);
  backdrop-filter: blur(30px) saturate(180%);
  border-bottom:1px solid rgba(255,255,255,.1);
  transition:.3s;
  transform:translateZ(0);
  box-shadow:0 4px 30px rgba(0,0,0,.3);
}

nav::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

@media (max-width: 820px){
  nav{padding: 20px 24px;}
}
@media (max-width: 768px){
  nav{
    padding:16px 20px;
  }
  .language-selector{
    gap:6px;
  }
  .lang-btn{
    padding:6px 12px;
    font-size:9px;
  }
  .lang-divider{
    font-size:10px;
    margin:0 4px;
  }
  .auth-btn{
    padding:8px 14px;
    font-size:10px;
  }
  .cart-btn{
    top:40px;
    right:20px;
    width:44px;
    height:44px;
  }
  .cart-btn svg{
    width:18px;
    height:18px;
  }
  .user-name{
    font-size:11px;
  }
}
@media (max-width: 480px){
  nav{
    padding:14px 16px;
  }
  .language-selector{
    gap:4px;
  }
  .lang-btn{
    padding:5px 10px;
    font-size:8px;
  }
  .auth-btn{
    padding:6px 12px;
    font-size:9px;
  }
  .cart-btn{
    top:36px;
    right:16px;
    width:40px;
    height:40px;
  }
  .cart-btn svg{
    width:16px;
    height:16px;
  }
}

/* Auth buttons */
.auth-buttons{display:flex;gap:12px;align-items:center}
.auth-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8);
  font-size: 11px;
  letter-spacing: 2px;
  cursor:pointer;
  transition:.3s;
  padding:10px 20px;
  text-transform:uppercase;
  font-weight:500;
  font-family:var(--ff-body);
  border-radius:var(--r0);
}
.auth-btn:hover{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
  color:#fff;
}

.user-info{
  display:flex;align-items:center;gap:12px;
  color: rgba(255,255,255,.8);
  font-size:12px;
  font-family:var(--ff-body);
}
.user-name{font-weight:500; letter-spacing:1px;}
.logout-btn{
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7);
  font-size:10px;
  letter-spacing:1px;
  cursor:pointer;
  transition:.3s;
  padding:6px 12px;
  text-transform:uppercase;
  font-weight:400;
  font-family:var(--ff-body);
  border-radius:var(--r0);
}
.logout-btn:hover{
  background: rgba(255,255,255,.1);
  color:#fff;
}

/* Language selector */
.language-selector{
  position: fixed;
  top: 24px;
  right: 120px;
  z-index:101;
  display:flex;
  gap:12px;
  align-items:center;
}
.lang-btn{
  background: transparent;
  border:none;
  color: rgba(255,255,255,.6);
  font-size:12px;
  letter-spacing:2px;
  cursor:pointer;
  transition:.3s;
  padding:8px 12px;
  text-transform:uppercase;
  font-weight:600;
  font-family:"Rajdhani",sans-serif;
}
.lang-btn:hover{
  color: rgba(255,255,255,.9);
  transform:translateY(-2px);
}
.lang-btn.active{
  color:#fff;
  position:relative;
}
.lang-btn.active::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:60%;
  height:2px;
  background:#fff;
  animation:slideIn .3s ease-out;
}
.lang-divider{
  color: rgba(255,255,255,.3);
  font-size:12px;
}

/* Cart Button - TOP RIGHT */
.cart-btn{
  position:fixed;
  top:48px;
  right:48px;
  z-index:102;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  padding:0;
  font-size:0;
  cursor:pointer;
  transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius:50%;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 8px 32px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1);
  pointer-events:auto;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
}
.cart-btn svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:2;
  transition:transform .3s;
}
.cart-btn:hover svg{transform:scale(1.1);}
.cart-btn:hover{
  transform:scale(1.1) translateY(-2px);
  background:rgba(0,0,0,.8);
  border-color:rgba(255,255,255,.3);
  box-shadow:0 12px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.15);
}
.cart-badge{
  position:absolute;
  top:-4px;
  right:-4px;
  background:#fff;
  color:#000;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  font-weight:700;
  opacity:0;
  transform:scale(0);
  transition:.3s;
  line-height:1;
}
.cart-badge.active{
  opacity:1;
  transform:scale(1);
}

@media (max-width: 820px){
  .language-selector{
    right: 80px;
    gap:8px;
  }
  .lang-btn{
    font-size:11px;
    padding:6px 8px;
  }
  .auth-buttons{gap:8px;}
  .auth-btn{
    font-size:10px;
    padding:8px 14px;
    letter-spacing:1px;
  }
  .user-info{font-size:11px;}
  .logout-btn{
    font-size:9px;
    padding:5px 10px;
  }
  .cart-btn{
    top:24px;
    right:24px;
    width:56px;
    height:56px;
  }
  .cart-btn svg{
    width:20px;
    height:20px;
  }
}

/* =========================
   6) SIDEBAR
========================= */
.sidebar-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:199;
  opacity:0;
  pointer-events:none;
  transition:.3s;
}
.sidebar-overlay.active{
  opacity:1;
  pointer-events:all;
}

.sidebar-toggle{
  position:fixed;
  top:32px;
  left:48px;
  z-index:201;
  background:rgba(0,0,0,.4);
  backdrop-filter:blur(20px) saturate(180%);
  border:1px solid rgba(255,255,255,.15);
  border-radius:8px;
  color:#fff;
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight:600;
  padding:14px 24px;
  font-family:"Rajdhani",sans-serif;
  transform-style:preserve-3d;
  box-shadow:
    0 4px 20px rgba(0,0,0,.3),
    0 0 0 1px rgba(255,255,255,.05) inset;
}
.sidebar-toggle:hover{
  background:rgba(0,0,0,.6);
  border-color:rgba(255,255,255,.25);
  transform:translateX(4px) translateZ(5px);
  box-shadow:
    0 8px 30px rgba(0,0,0,.4),
    0 0 0 1px rgba(255,255,255,.1) inset;
}

.sidebar-menu{
  position:fixed;
  top:0;
  left:-280px;
  width:280px;
  height:100vh;
  background:rgba(0,0,0,.98);
  backdrop-filter:blur(30px) saturate(180%);
  border-right:1px solid rgba(255,255,255,.12);
  padding:100px 0 40px;
  z-index:200;
  display:flex;
  flex-direction:column;
  gap:8px;
  transition:.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:
    4px 0 40px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.05) inset;
  transform-style:preserve-3d;
  transform:translateX(0) translateZ(0);
}
.sidebar-menu.active{left:0}

.sidebar-link{
  font-size:12px;
  letter-spacing:3px;
  color:rgba(255,255,255,.7);
  text-decoration:none;
  padding:12px 32px;
  transition:.3s;
  text-transform:uppercase;
  font-weight:600;
  font-family:"Rajdhani",sans-serif;
  position:relative;
  border-left:2px solid transparent;
}
.sidebar-link::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:2px;
  background:#fff;
  opacity:0;
  transition:.3s;
}
.sidebar-link:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
  border-left-color:rgba(255,255,255,.3);
}
.sidebar-link:hover::before{opacity:1;}
.sidebar-link.active{
  color:#fff;
  border-left-color:#fff;
  background:rgba(255,255,255,.08);
}
.sidebar-link.active::before{opacity:1;}

.register-link{
  margin-top:16px;
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:16px;
}

@media (max-width: 768px){
  .sidebar-toggle{
    top:16px;
    left:16px;
    font-size:10px;
    padding:10px 16px;
    z-index:202;
  }
  .sidebar-menu{
    width:280px;
  }
  .sidebar-link{
    padding:14px 20px;
    font-size:12px;
  }
}
@media (max-width: 480px){
  .sidebar-toggle{
    top:12px;
    left:12px;
    font-size:9px;
    padding:8px 14px;
  }
  .sidebar-menu{
    width:260px;
  }
  .sidebar-link{
    padding:12px 18px;
    font-size:11px;
  }
}

/* =========================
   7) HERO SECTIONS
   Created by Kayra Gumus
========================= */
/* Main Hero (index.html, main.html) */
.hero{
  min-height:auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:140px 40px 60px;
  text-align:center;
  position:relative;
  z-index:1;
  max-width:1400px;
  margin:0 auto;
  overflow:visible;
}

.hero-logo-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:32px;
  margin-bottom:80px;
  animation:fadeInUp .4s ease-out;
  position:relative;
  width:100%;
}

.hero h1{
  font-family:"Oswald", "Space Grotesk", sans-serif;
  font-size:clamp(96px, 14vw, 180px);
  font-weight:400;
  letter-spacing:24px;
  margin:0;
  text-transform:uppercase;
  line-height:.9;
  position:relative;
  display:block;
  color:#fff;
  font-style:normal;
  font-variant:normal;
  font-stretch:normal;
  transition:all .4s cubic-bezier(0.23, 1, 0.32, 1);
  text-shadow:
    0 4px 20px rgba(0,0,0,.6),
    0 0 40px rgba(255,255,255,.12);
  transform-style:preserve-3d;
  will-change:transform;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  text-align:center;
  transform:skew(0deg);
}
.hero h1:hover{
  letter-spacing:28px;
  transform:translateZ(20px) scale(1.03);
  text-shadow:
    0 8px 40px rgba(0,0,0,.7),
    0 0 60px rgba(255,255,255,.18);
}

.hero-logo-container{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  margin-bottom:0;
  position:relative;
  width:100%;
  overflow:visible;
  isolation:isolate;
}
.hero-logo{
  width:clamp(440px, 32vw, 600px);
  height:auto;
  object-fit:contain;
  /* Logo şeffafsa blend-mode bozabiliyor; temiz bırak */
  filter:brightness(1.08) contrast(1.06) drop-shadow(0 10px 40px rgba(0,0,0,.55));
  transition:all .4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-logo:hover{
  transform:scale(1.05);
  filter:brightness(1.2);
}

.billboard-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  margin-top:-6px;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.billboard-text{
  font-family:"Rajdhani",sans-serif;
  font-size:clamp(14px, 1.8vw, 20px);
  font-weight:600;
  letter-spacing:6px;
  color:#ffffff;
  text-transform:uppercase;
  white-space:normal;
  margin:0;
  text-align:center;
  text-shadow:
    0 0 10px rgba(255,255,255,.35),
    0 0 24px rgba(255,255,255,.20);
}

.hero p{
  font-size:16px;
  color:rgba(255,255,255,.75);
  line-height:2;
  margin-bottom:80px;
  letter-spacing:1px;
  max-width:650px;
  font-weight:300;
}

/* Page Hero (about.html, support.html) */
.hero-section{
  text-align:center;
  margin-bottom:80px;
  padding-top:40px;
}

.page-title{
  font-family:var(--ff-display);
  font-size:clamp(42px, 6vw, 72px);
  letter-spacing:8px;
  text-transform:uppercase;
  margin-bottom:16px;
  color:#fff;
  font-weight:700;
  line-height:1.2;
}
@media (max-width: 768px){
  .hero-section{
    margin-bottom:50px;
    padding-top:30px;
  }
  .page-title{
    font-size:clamp(28px, 7vw, 48px);
    letter-spacing:4px;
    margin-bottom:12px;
  }
}
@media (max-width: 480px){
  .hero-section{
    margin-bottom:40px;
    padding-top:24px;
  }
  .page-title{
    font-size:clamp(24px, 8vw, 36px);
    letter-spacing:3px;
  }
}

.page-subtitle{
  font-family:var(--ff-body);
  font-size:clamp(14px, 2vw, 18px);
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,.6);
  margin-bottom:24px;
  font-weight:400;
}

.hero-divider{
  width:80px;
  height:2px;
  background:var(--accent);
  margin:24px auto;
}

.page-description{
  font-size:16px;
  color:rgba(255,255,255,.8);
  line-height:1.9;
  max-width:700px;
  margin:0 auto;
  font-weight:300;
}
@media (max-width: 768px){
  .page-description{
    font-size:14px;
    line-height:1.7;
    padding:0 10px;
  }
}
@media (max-width: 480px){
  .page-description{
    font-size:13px;
    line-height:1.6;
  }
}

/* FAQ Container */
.faq-container{
  max-width:900px;
  margin:60px auto 0;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.faq-item{
  background:rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.1);
  padding:28px 32px;
  transition:.3s;
  backdrop-filter:blur(10px);
}

.faq-item:hover{
  border-color:rgba(255,255,255,.2);
  background:rgba(0,0,0,.5);
}

.faq-item strong{
  display:block;
  font-family:var(--ff-display);
  font-size:18px;
  font-weight:600;
  letter-spacing:2px;
  color:#fff;
  margin-bottom:12px;
  text-transform:uppercase;
}

.faq-item p{
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,.75);
  margin:0;
  font-weight:300;
}

.faq-item a{
  color:var(--accent);
  text-decoration:underline;
  transition:.3s;
}

.faq-item a:hover{
  color:rgba(122,44,255,.8);
}

@media (max-width: 768px){
  .faq-container{
    margin-top:40px;
    gap:20px;
  }
  .faq-item{
    padding:20px 24px;
  }
  .faq-item strong{
    font-size:16px;
  }
  .faq-item p{
    font-size:14px;
  }
}

@media (max-width: 768px){
  .hero{
    padding:100px 24px 40px;
    align-items:center;
    overflow:visible;
  }
  .hero-logo-container{
    align-items:center;
    text-align:center;
    gap:10px;
    margin-bottom:40px;
    overflow:visible;
  }
  .hero-logo{
    width:clamp(170px, 38vw, 260px);
  }
  .hero h1{
    font-size:clamp(64px, 12vw, 120px);
    letter-spacing:14px;
  }
  .hero h1:hover{letter-spacing:16px;}
  .billboard-container{
    margin-top:-2px;
    padding:0 16px;
  }
  .page-title{
    font-size:clamp(28px, 7vw, 48px);
    letter-spacing:3px;
  }
  .page-subtitle{
    font-size:clamp(12px, 1.8vw, 16px);
    letter-spacing:3px;
  }
  .hero-divider{
    width:60px;
    margin:20px auto;
  }
  .product-section{
    padding:40px 20px;
    min-height:auto;
  }
  .product-card{
    max-width:100%;
  }
  .product-info{
    padding:24px 20px;
  }
  .product-title{
    font-size:20px;
    letter-spacing:3px;
    margin-bottom:12px;
  }
  .product-price .price-current{
    font-size:20px;
  }
  .product-price .price-old{
    font-size:16px;
  }
}

/* =========================
   8) PRODUCT SECTION
   Created by Kayra Gumus
========================= */
.product-section{
  margin-top:0;
  padding:80px 40px;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:1 !important;
  transform:none !important;
  visibility:visible !important;
  min-height:70vh;
  position:relative;
  z-index:2;
  background:transparent;
}

.product-card{
  max-width:480px;
  width:100%;
  /* Arka plan görünsün diye biraz daha şeffaf */
  background:rgba(0,0,0,.28) !important;
  border:1px solid rgba(255,255,255,.12) !important;
  border-radius:0;
  overflow:visible;
  cursor:pointer !important;
  transition:all .3s ease;
  backdrop-filter:blur(14px) saturate(150%);
  position:relative;
  isolation:isolate;
  box-shadow:
    0 10px 40px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.08) inset;
  z-index:10;
  opacity:1 !important;
  visibility:visible !important;
  display:block !important;
  pointer-events:auto !important;
  transform:none !important;
}
.product-card:hover{
  transform:translateY(-8px) !important;
  box-shadow:
    0 20px 60px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.1) inset,
    0 -4px 40px rgba(0,0,0,.8),
    0 0 80px rgba(255,255,255,.05);
}
.product-card::before{
  content:"";
  position:absolute;
  /* Neon tabela hissi: SADECE beyaz dış hat + akan beyaz highlight */
  inset:-8px;
  padding:2px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.55) 18%,
    rgba(255,255,255,1) 40%,
    rgba(255,255,255,.55) 65%,
    rgba(255,255,255,.95) 100%
  );
  background-size: 240% 240%;
  animation: neonFlow 6.5s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite:xor;
  mask-composite:exclude;
  opacity:.45;
  pointer-events:none;
  z-index:-1;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.45))
    drop-shadow(0 0 18px rgba(255,255,255,.28));
  transition:opacity .4s var(--e), inset .4s var(--e), filter .4s var(--e);
}
.product-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 55%);
  opacity:0;
  transition:opacity .4s;
  pointer-events:none;
  z-index:1;
}
.product-card:hover::before{
  opacity:.75;
  inset:-10px;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.55))
    drop-shadow(0 0 26px rgba(255,255,255,.34));
}
.product-card:hover::after{opacity:1;}

.product-image{
  width:100%;
  aspect-ratio:4/5;
  overflow:hidden;
  /* City background daha görünsün */
  background:rgba(0,0,0,.15);
  position:relative;
  transform-style:preserve-3d;
  transition:transform .6s cubic-bezier(0.23, 1, 0.32, 1);
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
.product-image::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at center, rgba(255,255,255,.05) 0%, transparent 70%);
  opacity:0;
  transition:.6s;
  z-index:1;
}
.product-card:hover .product-image::before{opacity:1;}

.product-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s cubic-bezier(0.23, 1, 0.32, 1), filter .6s;
  filter:brightness(.95) contrast(1.05);
  transform:translateZ(0);
  will-change:transform;
}
.product-card:hover .product-image img{
  transform:scale(1.12) translateZ(10px);
  filter:brightness(1.05) contrast(1.15);
}
.product-cart::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #ff6a00;
  transition: width 0.3s ease;
}

.product-cart:hover::after {
  width: 100%;
}
.product-info{
  padding:32px 28px;
  position:relative;
  z-index:2;
  background:transparent;
  display:block !important;
  opacity:1 !important;
  visibility:visible !important;
}
.product-title{
  font-family:"Montserrat",sans-serif;
  font-size:26px;
  letter-spacing:4px;
  margin-bottom:14px;
  text-transform:uppercase;
  font-weight:600;
  color:#fff !important;
  opacity:1 !important;
  visibility:visible !important;
  display:block !important;
}
.product-price{
  display:flex !important;
  align-items:center;
  gap:12px;
  margin-bottom:14px;
  font-family:"Montserrat",sans-serif;
  opacity:1 !important;
  visibility:visible !important;
}
.product-price .price-current{
  font-size:24px;
  font-weight:700;
  color:#fff !important;
  letter-spacing:1px;
  opacity:1 !important;
  visibility:visible !important;
}
.product-price .price-old{
  font-size:18px;
  font-weight:400;
  color:rgba(255,255,255,.5) !important;
  text-decoration:line-through;
  letter-spacing:0.5px;
  opacity:1 !important;
  visibility:visible !important;
}
.product-stock{
  font-size:13px;
  color:rgba(255,255,255,.8) !important;
  display:flex !important;
  align-items:center;
  gap:8px;
  text-transform:uppercase;
  letter-spacing:3px;
  font-weight:500;
  font-family:"Montserrat",sans-serif;
  opacity:1 !important;
  visibility:visible !important;
}
.stock-dot{
  width:6px;
  height:6px;
  background:rgba(255,255,255,.4);
  border-radius:50%;
}

@media (max-width: 768px){
  .product-section{
    padding:40px 20px;
    justify-content:center;
  }
  .product-card{max-width:100%;}
  /* Mobilde ürün görsel alanı daha kısa olsun */
  .product-image{aspect-ratio:4/3;}
  .product-title{font-size:18px;}
  .product-price{font-size:16px;}
  .product-info{padding:32px 24px;}
}

/* =========================
   9) TEAM SECTION (about.html)
========================= */
.team-section{
  margin-top:80px;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-head span{
  font-family:var(--ff-body);
  font-size:11px;
  letter-spacing:4px;
  text-transform:uppercase;
  color:rgba(255,255,255,.5);
  display:block;
  margin-bottom:12px;
}

.section-head h2{
  font-family:var(--ff-display);
  font-size:clamp(36px, 5vw, 56px);
  letter-spacing:6px;
  text-transform:uppercase;
  font-weight:700;
  color:#fff;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:40px;
  max-width:1000px;
  margin:0 auto;
}

.person-card{
  background:rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.08);
  padding:40px 32px;
  text-align:center;
  transition:.4s;
  backdrop-filter:blur(8px);
}
.person-card:hover{
  border-color:rgba(255,255,255,.15);
  transform:translateY(-8px);
  box-shadow:0 12px 40px rgba(0,0,0,.4);
}

.person-avatar{
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.05);
  border:2px solid rgba(255,255,255,.1);
  margin:0 auto 24px;
  transition:.4s;
}
.person-card:hover .person-avatar{
  border-color:rgba(255,255,255,.2);
  transform:scale(1.05);
}

.person-name{
  font-family:var(--ff-display);
  font-size:20px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:8px;
  font-weight:600;
  color:#fff;
}

.person-role{
  font-family:var(--ff-body);
  font-size:13px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:12px;
  font-weight:600;
}

.person-meta{
  font-family:var(--ff-body);
  font-size:12px;
  color:rgba(255,255,255,.6);
  line-height:1.6;
}

.person-card.owner .person-role{
  color:#fff;
  font-weight:700;
}

@media (max-width: 768px){
  .team-section{
    margin-top:50px;
  }
  .section-head{
    margin-bottom:32px;
    text-align:center;
  }
  .section-head span{
    font-size:11px;
    letter-spacing:2px;
  }
  .section-head h2{
    font-size:clamp(24px, 6vw, 32px);
    letter-spacing:3px;
  }
  .team-grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .person-card{
    padding:24px 20px;
    text-align:center;
  }
  .person-avatar{
    width:100px;
    height:100px;
    margin-bottom:20px;
  }
  .person-name{
    font-size:18px;
    letter-spacing:1.5px;
  }
  .person-role{
    font-size:12px;
    margin-bottom:10px;
  }
  .person-meta{
    font-size:12px;
  }
  .person-bio{
    font-size:13px;
    line-height:1.6;
  }
}
@media (max-width: 480px){
  .team-section{
    margin-top:40px;
  }
  .section-head{
    margin-bottom:24px;
  }
  .section-head h2{
    font-size:clamp(20px, 7vw, 28px);
  }
  .team-grid{
    gap:20px;
  }
  .person-card{
    padding:20px 16px;
  }
  .person-avatar{
    width:80px;
    height:80px;
    margin-bottom:16px;
  }
  .person-name{
    font-size:16px;
  }
  .person-role{
    font-size:11px;
  }
  .person-meta{
    font-size:11px;
  }
}

/* =========================
   10) MODALS
   Created by Kayra Gumus
========================= */
/* Auth Modal */
.auth-modal{
  position:fixed;
  inset:0;
  z-index:250;
  display:none;
  align-items:center;
  justify-content:center;
  padding:40px;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
}
.auth-modal.active{
  display:flex;
  align-items:center;
  justify-content:center;
}

.auth-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.9);
  cursor:pointer;
}

.auth-modal-content{
  position:relative;
  z-index:1;
  background:rgba(10,10,10,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  max-width:480px;
  width:100%;
  padding:48px;
  backdrop-filter:blur(40px) saturate(180%);
  box-shadow:
    0 20px 80px rgba(0,0,0,.8),
    0 0 0 1px rgba(255,255,255,.05) inset;
  transform-style:preserve-3d;
  transform:translateZ(0);
  margin:0 auto;
  align-self:center;
  transition:transform .4s cubic-bezier(0.23, 1, 0.32, 1);
  animation:modalSlideIn .5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes modalSlideIn{
  from{
    opacity:0;
    transform:translateZ(-100px) scale(0.95) translateY(20px);
  }
  to{
    opacity:1;
    transform:translateZ(0) scale(1) translateY(0);
  }
}

/* Product Modal */
.product-modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:40px;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-behavior:auto;
  opacity:0;
  transition:opacity .3s ease;
  overscroll-behavior:contain;
  touch-action:pan-y;
  -ms-overflow-style:-ms-autohiding-scrollbar;
}
.product-modal.active{
  display:flex !important;
  align-items:center;
  justify-content:center;
  opacity:1 !important;
}

.product-modal-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.9);
  cursor:pointer;
  z-index:0;
}

.product-modal-content{
  position:relative;
  z-index:1;
  background:rgba(10,10,10,.98);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  max-width:1200px;
  width:100%;
  max-height:90vh;
  overflow:hidden;
  display:grid;
  grid-template-columns:1.2fr 1fr;
  backdrop-filter:blur(40px) saturate(180%);
  box-shadow:
    0 20px 80px rgba(0,0,0,.8),
    0 0 0 1px rgba(255,255,255,.05) inset;
  transform-style:preserve-3d;
  transform:translateZ(0);
  animation:productModalIn .6s cubic-bezier(0.23, 1, 0.32, 1);
  margin:0 auto;
  align-self:center;
  flex-shrink:0;
  min-height:fit-content;
  position:relative;
}

@keyframes productModalIn{
  from{
    opacity:0;
    transform:scale(0.9);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.product-modal-left{
  background:#000;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  max-height:90vh;
  position:relative;
}

.product-view-tabs{
  display:flex;
  gap:0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.product-view-tab{
  flex:1;
  background:transparent;
  border:none;
  color:rgba(255,255,255,.6);
  padding:16px;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.3s;
  font-weight:500;
  border-bottom:2px solid transparent;
}
.product-view-tab.active{
  color:#fff;
  border-bottom-color:#fff;
}
.product-view-tab:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
}

.product-image-container{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px;
  min-height:500px;
  overflow:hidden;
  position:relative;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
}
.product-image-container::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:1;
  z-index:2;
  background:
    radial-gradient(
      circle 520px at 50% -10%,
      rgba(255,255,255,.28) 0%,
      rgba(255,255,255,.14) 22%,
      rgba(255,255,255,0) 62%
    );
  mix-blend-mode:screen;
}
.product-image-container img{
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  position:relative;
  z-index:1;
}

.product-modal-right{
  padding:48px;
  display:flex;
  flex-direction:column;
  overflow-y:auto;
  overflow-x:hidden;
  max-height:90vh;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.2) transparent;
  touch-action:pan-y;
  -ms-overflow-style:-ms-autohiding-scrollbar;
}
.product-modal-right::-webkit-scrollbar{
  width:6px;
}
.product-modal-right::-webkit-scrollbar-track{
  background:transparent;
}
.product-modal-right::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.2);
  border-radius:3px;
}
.product-modal-right::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,.3);
}

.product-modal-title{
  font-family:var(--ff-bold);
  font-size:36px;
  letter-spacing:4px;
  margin-bottom:12px;
  text-transform:uppercase;
  font-weight:400;
}
.product-modal-meta{
  font-size:12px;
  color:rgba(255,255,255,.6);
  margin-bottom:24px;
  letter-spacing:1px;
}
.product-modal-price{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.product-modal-price .price-current{
  font-size:36px;
  font-weight:700;
  color:#fff;
  letter-spacing:1px;
}
.product-modal-price .price-old{
  font-size:22px;
  font-weight:400;
  color:rgba(255,255,255,.4);
  text-decoration:line-through;
  letter-spacing:0.5px;
}
.product-modal-price .discount-badge{
  display:inline-block;
  padding:6px 12px;
  background:rgba(74,222,128,.2);
  border:1px solid rgba(74,222,128,.4);
  color:rgba(74,222,128,1);
  font-size:11px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;
  border-radius:4px;
}
.product-modal-stock{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:32px;
  padding:12px 16px;
  background:rgba(74,222,128,.1);
  border:1px solid rgba(74,222,128,.2);
  border-radius:6px;
  font-size:13px;
}
.product-modal-description{
  font-size:14px;
  color:rgba(255,255,255,.8);
  line-height:1.8;
  margin-bottom:32px;
}

/* Açılır Beden Tablosu */
details.size-chart{
  margin-top:32px;
  padding:0;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  border-radius:8px;
  overflow:hidden;
}
details.size-chart > summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  font-weight:700;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.78);
  display:flex;
  align-items:center;
  justify-content:space-between;
}
details.size-chart > summary::-webkit-details-marker{display:none;}
details.size-chart > summary::after{
  content:"+";
  font-weight:800;
  opacity:.7;
}
details.size-chart[open] > summary::after{content:"–";}
details.size-chart .size-chart-body{padding:0 18px 18px;}

/* Mobil/tablet: beden tablosu başlığı parlak/göze çarpsın */
@media (max-width: 900px){
  details.size-chart > summary{
    color:#fff;
    font-weight:800;
    background:linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
    border-bottom:1px solid rgba(255,255,255,.10);
    text-shadow:
      0 0 12px rgba(255,255,255,.45),
      0 0 34px rgba(255,255,255,.22);
  }
  details.size-chart > summary .size-chart-unit{
    color:#fff;
    opacity:1;
    text-shadow:
      0 0 12px rgba(255,255,255,.55),
      0 0 38px rgba(255,255,255,.25);
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,.55);
    text-underline-offset: 3px;
  }
  details.size-chart > summary::after{
    opacity:1;
    text-shadow:0 0 12px rgba(255,255,255,.55);
  }
}

.product-size-section{
  margin-bottom:24px;
}
.product-size-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:12px;
  display:block;
  font-weight:500;
}
.product-size-grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:8px;
}
.product-size-btn{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  padding:12px;
  font-size:13px;
  cursor:pointer;
  transition:all .3s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight:500;
  text-align:center;
  border-radius:4px;
  transform-style:preserve-3d;
  position:relative;
}
.product-size-btn:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.2);
  transform:translateY(-2px) translateZ(5px);
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.product-size-btn.selected{
  background:rgba(255,255,255,.15);
  color:#fff;
  border-color:#fff;
  transform:translateZ(5px);
  box-shadow:
    0 4px 16px rgba(255,255,255,.1),
    0 0 0 1px rgba(255,255,255,.2) inset;
}

.product-quantity-section{
  margin-bottom:32px;
}
.product-quantity-label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  margin-bottom:12px;
  display:block;
  font-weight:500;
}
.product-quantity-controls{
  display:flex;
  align-items:center;
  gap:16px;
}
.product-qty-btn{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
  font-size:20px;
  border-radius:4px;
}
.product-qty-btn:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.2);
}
.product-qty-display{
  font-size:20px;
  font-weight:600;
  min-width:40px;
  text-align:center;
}

.product-add-to-cart{
  width:100%;
  background:#fff;
  color:#000;
  border:none;
  max-width: 100%;
  display: flex;
  align-items: center;   
  justify-content: center;  

  padding:20px;
  font-size:17px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s cubic-bezier(0.23, 1, 0.32, 1);
  font-weight:600;
  border-radius:6px;
  font-family:var(--ff-bold);
  transform-style:preserve-3d;
  position:relative;
  overflow:hidden;
}
.product-add-to-cart:hover{
  background:rgba(255,255,255,.95);
  transform:translateY(-2px) translateZ(5px);
  box-shadow:0 8px 24px rgba(255,255,255,.2);
}
.product-add-to-cart:active{transform:translateY(0) translateZ(0);}

.product-close-modal{
  position:absolute;
  top:20px;
  right:20px;
  background:rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.3s;
  z-index:1001;
  font-size:20px;
}
.product-close-modal:hover{
  background:rgba(0,0,0,.8);
  border-color:rgba(255,255,255,.2);
}

@media (max-width: 768px){
  .product-modal{
    padding:16px 12px;
  }
  .product-modal-content{
    grid-template-columns:1fr;
    max-height:95vh;
    border-radius:12px;
    padding:0;
  }
  .product-modal-left{
    max-height:40vh;
  }
  .product-image-container{
    min-height:180px;
    padding:10px;
  }
  .product-image-container img{
    max-height:46vh;
  }
  .product-view-tabs{
    padding:8px 12px;
    gap:8px;
  }
  .product-view-tab{
    font-size:10px;
    padding:6px 12px;
  }
  .product-modal-right{
    max-height:55vh;
    padding:20px 16px;
    overflow-y:auto;
  }
  .product-modal-title{
    font-size:22px;
    letter-spacing:2px;
    margin-bottom:8px;
  }
  .product-modal-meta{
    font-size:10px;
    margin-bottom:14px;
  }
  .product-modal-price{
    margin-bottom:16px;
  }
  .product-modal-price .price-current{
    font-size:26px;
  }
  .product-modal-price .price-old{
    font-size:16px;
  }
  .product-modal-description{
    font-size:12px;
    line-height:1.6;
    margin-bottom:20px;
  }
  .product-modal-description p{
    margin-bottom:10px;
  }
  .product-modal-description ul{
    padding-left:20px;
    margin:8px 0;
  }
  .product-modal-description li{
    font-size:12px;
    margin-bottom:6px;
  }
  .product-size-section{
    margin-bottom:16px;
  }
  .product-size-label{
    font-size:11px;
    margin-bottom:10px;
  }
  .product-size-grid{
    grid-template-columns:repeat(5, 1fr);
    gap:6px;
  }
  .product-size-btn{
    padding:10px 6px;
    font-size:11px;
  }
  .product-quantity-section{
    margin-bottom:20px;
  }
  .product-quantity-label{
    font-size:11px;
    margin-bottom:10px;
  }
  .product-quantity-controls{
    gap:10px;
  }
  .product-qty-btn{
    width:38px;
    height:38px;
    font-size:16px;
  }
  .product-qty-display{
    font-size:18px;
  }
  .product-add-to-cart{
    padding:12px;
    font-size:14px;
  }
  .product-close-modal{
    top:12px;
    right:12px;
    width:36px;
    height:36px;
    font-size:20px;
  }
}
@media (max-width: 480px){
  .product-modal{
    padding:12px 8px;
  }
  .product-modal-content{
    max-height:98vh;
    border-radius:8px;
  }
  .product-modal-left{
    max-height:35vh;
  }
  .product-image-container{
    min-height:150px;
    padding:12px;
  }
  .product-modal-right{
    max-height:63vh;
    padding:16px 12px;
  }
  .product-modal-title{
    font-size:18px;
    letter-spacing:1.5px;
  }
  .product-modal-meta{
    font-size:9px;
  }
  .product-modal-price .price-current{
    font-size:22px;
  }
  .product-modal-price .price-old{
    font-size:14px;
  }
  .product-modal-description{
    font-size:11px;
    margin-bottom:16px;
  }
  .product-size-grid{
    gap:4px;
  }
  .product-size-btn{
    padding:8px 4px;
    font-size:10px;
  }
  .product-qty-btn{
    width:34px;
    height:34px;
    font-size:14px;
  }
  .product-add-to-cart{
    padding:20px;
    font-size:14px;
  }
}

/* =========================
   11) CART DRAWER (SYNA.STORE STYLE)
   Created by Kayra Gumus
========================= */
.cart-drawer-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:1001;
  opacity:0;
  pointer-events:none;
  visibility:hidden;
  display:none;
  transition:opacity .3s ease, visibility .3s ease;
  backdrop-filter:blur(2px);
}
.cart-drawer-overlay.active{
  opacity:1;
  pointer-events:all;
  visibility:visible;
  display:block;
}

.cart-drawer{
  position:fixed;
  right:0;
  top:0;
  bottom:0;
  width:100%;
  max-width:420px;
  z-index:1002;
  background:#000;
  border-left:1px solid rgba(255,255,255,.1);
  display:none;
  flex-direction:column;
  transform:translateX(100%);
  transition:transform .4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow:-4px 0 40px rgba(0,0,0,.5);
  overflow:hidden;
}
.cart-drawer.active{
  transform:translateX(0);
}

.cart-drawer-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:20px 24px;
  border-bottom:1px solid rgba(255,255,255,.1);
  flex-shrink:0;
}
.cart-drawer-title{
  font-family:var(--ff-display);
  font-size:20px;
  font-weight:500;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#fff;
  margin:0;
}
.cart-drawer-close{
  background:none;
  border:none;
  color:rgba(255,255,255,.7);
  cursor:pointer;
  padding:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
  border-radius:4px;
}
.cart-drawer-close:hover{
  color:#fff;
  background:rgba(255,255,255,.05);
}

.cart-drawer-content{
  flex:1;
  overflow-y:auto;
  overflow-x:hidden;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  padding:16px 24px;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.2) transparent;
  max-height:calc(100vh - 200px);
}
.cart-drawer-content::-webkit-scrollbar{
  width:6px;
}
.cart-drawer-content::-webkit-scrollbar-track{
  background:transparent;
}
.cart-drawer-content::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.2);
  border-radius:3px;
}
.cart-drawer-content::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,.3);
}

.cart-empty-state{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
  text-align:center;
  min-height:300px;
}
.cart-empty-state svg{
  color:rgba(255,255,255,.3);
  margin-bottom:24px;
}
.cart-empty-text{
  font-size:16px;
  font-weight:500;
  color:rgba(255,255,255,.8);
  margin:0 0 8px 0;
}
.cart-empty-subtext{
  font-size:13px;
  color:rgba(255,255,255,.5);
  margin:0;
}

.cart-item{
  display:flex;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.cart-item:last-child{
  border-bottom:none;
}
.cart-item-image{
  width:60px;
  height:75px;
  object-fit:cover;
  border-radius:4px;
  background:rgba(255,255,255,.05);
  flex-shrink:0;
}
.cart-item-info{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-width:0;
}
.cart-item-name{
  font-size:13px;
  font-weight:500;
  color:#fff;
  line-height:1.3;
  margin:0;
}
.cart-item-variant{
  font-size:11px;
  color:rgba(255,255,255,.6);
  margin:0;
}
.cart-item-size{
  font-size:10px;
  color:rgba(255,255,255,.5);
  margin:0;
}
.cart-item-price-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-top:6px;
}
.cart-item-price{
  font-size:14px;
  font-weight:600;
  color:#fff;
}
.cart-item-remove{
  background:none;
  border:none;
  color:rgba(255,255,255,.4);
  cursor:pointer;
  padding:4px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.3s;
  width:24px;
  height:24px;
  flex-shrink:0;
}
.cart-item-remove:hover{
  color:rgba(255,255,255,.8);
}

.cart-drawer-footer{
  padding:20px 24px;
  border-top:1px solid rgba(255,255,255,.1);
  background:rgba(0,0,0,.3);
  flex-shrink:0;
}
.cart-drawer-summary{
  margin-bottom:20px;
}
.cart-summary-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:10px;
  font-size:13px;
}
.cart-summary-row:last-child{
  margin-bottom:0;
}
.cart-summary-label{
  color:rgba(255,255,255,.7);
  font-weight:400;
}
.cart-summary-value{
  color:#fff;
  font-weight:500;
}
.cart-summary-divider{
  height:1px;
  background:rgba(255,255,255,.1);
  margin:12px 0;
}
.cart-total .cart-summary-label,
.cart-total .cart-summary-value{
  font-size:15px;
  font-weight:600;
  color:#fff;
}

.cart-checkout-button{
  width:100%;
  background:#fff;
  color:#000;
  border:none;
  padding:14px 20px;
  font-size:12px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
  cursor:pointer;
  transition:all .3s ease;
  border-radius:0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--ff-body);
}
.cart-checkout-button:hover:not(:disabled){
  background:rgba(255,255,255,.95);
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(255,255,255,.15);
}
.cart-checkout-button:disabled{
  opacity:.5;
  cursor:not-allowed;
  transform:none;
}
.cart-checkout-button svg{
  transition:transform .3s ease;
}
.cart-checkout-button:hover:not(:disabled) svg{
  transform:translateX(2px);
}

@media (max-width: 768px){
  .cart-drawer{
    max-width:100%;
    width:100%;
  }
  .cart-drawer-header{
    padding:16px 20px;
  }
  .cart-drawer-title{
    font-size:18px;
    letter-spacing:1.5px;
  }
  .cart-drawer-content{
    padding:12px 16px;
    max-height:calc(100vh - 180px);
  }
  .cart-item{
    padding:12px 0;
    gap:10px;
  }
  .cart-item-image{
    width:50px;
    height:65px;
  }
  .cart-item-name{
    font-size:12px;
  }
  .cart-item-variant{
    font-size:10px;
  }
  .cart-item-size{
    font-size:9px;
  }
  .cart-item-price{
    font-size:13px;
  }
  .cart-drawer-footer{
    padding:16px 20px;
  }
  .cart-drawer-summary{
    margin-bottom:16px;
  }
  .cart-summary-row{
    margin-bottom:8px;
    font-size:12px;
  }
  .cart-total .cart-summary-label,
  .cart-total .cart-summary-value{
    font-size:14px;
  }
  .cart-checkout-button{
    padding:12px 16px;
    font-size:11px;
  }
  .cart-empty-state{
    padding:40px 20px;
  }
  .cart-empty-state svg{
    width:48px;
    height:48px;
  }
  .cart-empty-text{
    font-size:14px;
  }
  .cart-empty-subtext{
    font-size:12px;
  }
}
@media (max-width: 480px){
  .cart-drawer-header{
    padding:14px 16px;
  }
  .cart-drawer-content{
    padding:10px 12px;
    max-height:calc(100vh - 160px);
  }
  .cart-item{
    padding:10px 0;
    gap:8px;
  }
  .cart-item-image{
    width:45px;
    height:60px;
  }
  .cart-item-name{
    font-size:11px;
  }
  .cart-item-variant{
    font-size:9px;
  }
  .cart-item-size{
    font-size:8px;
  }
  .cart-item-price{
    font-size:12px;
  }
  .cart-drawer-footer{
    padding:14px 16px;
  }
  .cart-checkout-button{
    padding:10px 14px;
    font-size:10px;
  }
}

/* =========================
   12) FORMS
========================= */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select{
  background:rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  padding:14px 16px;
  font-size:14px;
  font-family:inherit;
  transition:all 0.3s;
  width:100%;
  border-radius:var(--r0);
}
input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--accent);
  background:rgba(0,0,0,.4);
}
input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,.4);
}

label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  font-weight:600;
  margin-bottom:8px;
  display:block;
}

button[type="submit"]{
  background:#fff;
  color:#000;
  border:none;
  padding:16px;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:900;
  cursor:pointer;
  transition:all 0.3s;
  margin-top:8px;
  border-radius:var(--r0);
  font-family:var(--ff-bold);
}
button[type="submit"]:hover{
  background:rgba(255,255,255,.95);
  transform:translateY(-2px);
}

/* =========================
   13) LEGAL PAGES
========================= */
.legal-page{
  max-width:900px;
  margin:0 auto;
  padding:140px 40px 120px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  position:relative;
  z-index:1;
}

.legal-header{
  margin-bottom:48px;
  padding-bottom:24px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.legal-header h1{
  font-family:var(--ff-display);
  font-size:42px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:12px;
  color:#fff;
  font-weight:700;
  word-wrap:break-word;
  overflow-wrap:break-word;
  line-height:1.2;
}

.legal-header p{
  color:rgba(255,255,255,.65);
  font-size:14px;
  letter-spacing:1px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  margin-bottom:8px;
}

.legal-content{
  color:rgba(255,255,255,.82);
  line-height:1.95;
  font-size:15px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  width:100%;
  box-sizing:border-box;
}

.legal-content h2{
  font-family:var(--ff-display);
  font-size:24px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-top:40px;
  margin-bottom:20px;
  color:#fff;
  font-weight:700;
  word-wrap:break-word;
  overflow-wrap:break-word;
  line-height:1.3;
}

.legal-content h3{
  font-size:18px;
  margin-top:32px;
  margin-bottom:16px;
  color:rgba(255,255,255,.9);
  font-weight:600;
  word-wrap:break-word;
  overflow-wrap:break-word;
  line-height:1.4;
}

.legal-content p{
  margin-bottom:16px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  max-width:100%;
}

.legal-content ul,
.legal-content ol{
  margin:16px 0;
  padding-left:28px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  max-width:100%;
}

.legal-content li{
  margin-bottom:12px;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

.legal-content strong{
  color:#fff;
  font-weight:600;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

.legal-content a{
  color:var(--accent);
  text-decoration:underline;
  transition:.3s;
}
.legal-content a:hover{
  color:#fff;
}

.legal-contact{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.10);
  padding:24px;
  margin-top:32px;
  word-wrap:break-word;
  overflow-wrap:break-word;
  max-width:100%;
  box-sizing:border-box;
}

.legal-contact h3{
  margin-top:0;
  margin-bottom:16px;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

.legal-contact p{
  margin-bottom:8px;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

@media (max-width: 768px){
  .legal-page{
    padding:100px 20px 60px;
    max-width:100%;
  }
  .legal-header{
    margin-bottom:32px;
    padding:24px 0;
  }
  .legal-header h1{
    font-size:clamp(24px, 7vw, 32px);
    letter-spacing:2px;
    line-height:1.3;
  }
  .legal-header p{
    font-size:12px;
    margin-top:12px;
  }
  .legal-content{
    font-size:14px;
    line-height:1.8;
    padding:0;
  }
  .legal-content h2{
    font-size:18px;
    margin-top:28px;
    margin-bottom:14px;
    line-height:1.4;
  }
  .legal-content h3{
    font-size:16px;
    margin-top:20px;
    margin-bottom:12px;
  }
  .legal-content p{
    margin-bottom:14px;
  }
  .legal-content ul,
  .legal-content ol{
    padding-left:20px;
    margin:14px 0;
  }
  .legal-content li{
    margin-bottom:10px;
    font-size:14px;
  }
  .legal-contact{
    padding:20px;
    margin-top:24px;
  }
  .legal-contact h3{
    font-size:16px;
    margin-bottom:12px;
  }
  .legal-contact p{
    font-size:13px;
    margin-bottom:8px;
  }
}
@media (max-width: 480px){
  .legal-page{
    padding:90px 16px 50px;
  }
  .legal-header{
    margin-bottom:24px;
    padding:20px 0;
  }
  .legal-header h1{
    font-size:clamp(20px, 8vw, 28px);
    letter-spacing:1.5px;
  }
  .legal-header p{
    font-size:11px;
  }
  .legal-content{
    font-size:13px;
    line-height:1.7;
  }
  .legal-content h2{
    font-size:16px;
    margin-top:24px;
    margin-bottom:12px;
  }
  .legal-content h3{
    font-size:15px;
    margin-top:18px;
    margin-bottom:10px;
  }
  .legal-content p{
    margin-bottom:12px;
  }
  .legal-content ul,
  .legal-content ol{
    padding-left:18px;
    margin:12px 0;
  }
  .legal-content li{
    margin-bottom:8px;
    font-size:13px;
  }
  .legal-contact{
    padding:16px;
    margin-top:20px;
  }
  .legal-contact h3{
    font-size:15px;
  }
  .legal-contact p{
    font-size:12px;
  }
}

/* =========================
   14) FOOTER
========================= */
.site-footer{
  margin-top:120px;
  padding:80px 40px 50px;
  border-top:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, transparent 0%, rgba(11,13,16,.6) 20%, rgba(11,13,16,.85) 100%);
  backdrop-filter:blur(30px) saturate(180%);
  position:relative;
  overflow:hidden;
  z-index:1;
}

.site-footer::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(122,44,255,.4), transparent);
}

.footer-content{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1fr;
  gap:60px;
  margin-bottom:60px;
  position:relative;
  z-index:1;
}

.footer-section{
  position:relative;
}

.footer-section h3{
  font-family:var(--ff-display);
  font-size:13px;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:28px;
  color:#fff;
  font-weight:800;
  position:relative;
  padding-bottom:12px;
}

.footer-section h3::after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:40px;
  height:2px;
  background:var(--accent);
}

.footer-links{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.footer-link{
  color:rgba(255,255,255,.7);
  font-size:13px;
  letter-spacing:0.8px;
  transition:all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position:relative;
  display:inline-block;
  width:fit-content;
  padding-left:0;
  text-decoration:none;
}

.footer-link::before{
  content:"→";
  position:absolute;
  left:-20px;
  opacity:0;
  transform:translateX(-10px);
  transition:all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  color:var(--accent);
}

.footer-link:hover{
  color:#fff;
  padding-left:20px;
  transform:translateX(4px);
}

.footer-link:hover::before{
  opacity:1;
  transform:translateX(0);
}

.footer-info{
  color:rgba(255,255,255,.65);
  font-size:13px;
  line-height:2;
  margin-bottom:16px;
  letter-spacing:0.3px;
}

.footer-info p{
  margin-bottom:8px;
}

.footer-bottom{
  max-width:1400px;
  margin:0 auto;
  padding-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:32px;
  position:relative;
  z-index:1;
}

.footer-copyright{
  color:rgba(255,255,255,.5);
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
  font-weight:600;
}

.footer-legal-links{
  display:flex;
  gap:32px;
  flex-wrap:wrap;
}

.footer-legal-link{
  color:rgba(255,255,255,.6);
  font-size:10px;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position:relative;
  font-weight:600;
  text-decoration:none;
}

.footer-legal-link::after{
  content:"";
  position:absolute;
  bottom:-4px;
  left:0;
  width:0;
  height:1px;
  background:var(--accent);
  transition:width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.footer-legal-link:hover{
  color:#fff;
}

.footer-legal-link:hover::after{
  width:100%;
}

@media (max-width: 1024px){
  .footer-content{
    grid-template-columns:1fr 1fr;
    gap:48px;
  }
}

@media (max-width: 768px){
  .site-footer{
    padding:50px 24px 30px;
    margin-top:60px;
  }
  .footer-content{
    grid-template-columns:1fr;
    gap:32px;
    margin-bottom:40px;
  }
  .footer-section{
    text-align:center;
  }
  .footer-section h3{
    margin-bottom:16px;
    font-size:16px;
  }
  .footer-link{
    font-size:13px;
    padding:6px 0;
  }
  .footer-info{
    font-size:13px;
    line-height:1.6;
  }
  .footer-bottom{
    flex-direction:column;
    text-align:center;
    gap:16px;
    padding-top:24px;
  }
  .footer-copyright{
    font-size:12px;
  }
  .footer-legal-links{
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
  }
  .footer-legal-link{
    font-size:11px;
    padding:4px 8px;
  }
}
@media (max-width: 480px){
  .site-footer{
    padding:40px 16px 24px;
    margin-top:50px;
  }
  .footer-content{
    gap:24px;
    margin-bottom:32px;
  }
  .footer-section h3{
    font-size:15px;
    margin-bottom:14px;
  }
  .footer-link{
    font-size:12px;
  }
  .footer-info{
    font-size:12px;
  }
  .footer-copyright{
    font-size:11px;
  }
  .footer-legal-link{
    font-size:10px;
    padding:3px 6px;
  }
}

/* =========================
   15) ANIMATIONS
========================= */
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(15px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes slideIn{
  from{width:0;}
  to{width:60%;}
}

@keyframes slideInLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes neonFlow{
  0%{background-position: 0% 50%;}
  50%{background-position: 100% 50%;}
  100%{background-position: 0% 50%;}
}

@keyframes scaleIn{
  from{
    opacity:0;
    transform:scale(.8) translateZ(-50px) rotateY(-5deg);
  }
  to{
    opacity:1;
    transform:scale(1) translateZ(0) rotateY(0deg);
  }
}

/* =========================
   16) SCROLLBAR
========================= */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:#000}
::-webkit-scrollbar-thumb{background:rgba(255,255,255,.2)}
::-webkit-scrollbar-thumb:hover{background:rgba(255,255,255,.3)}

/* =========================
   17) AUTH MODAL STYLES
========================= */
.auth-modal-header{
  margin-bottom:32px;
  text-align:center;
}
.auth-modal-header h2{
  font-family:var(--ff-display);
  font-size:28px;
  font-weight:500;
  letter-spacing:4px;
  text-transform:uppercase;
  margin-bottom:8px;
  color:#fff;
}
.auth-modal-header p{
  font-size:12px;
  color:rgba(255,255,255,.5);
  letter-spacing:2px;
  text-transform:uppercase;
}
.auth-form{
  display:flex;
  flex-direction:column;
  gap:20px;
}
.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.form-group label{
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  font-weight:500;
  font-family:var(--ff-body);
}
.form-group input{
  background:rgba(0,0,0,.3);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  padding:14px 16px;
  font-size:14px;
  font-family:var(--ff-body);
  transition:.3s;
  border-radius:var(--r0);
}
.form-group input:focus{
  outline:none;
  border-color:rgba(255,255,255,.3);
  background:rgba(0,0,0,.5);
}
.form-group input::placeholder{
  color:rgba(255,255,255,.3);
}
.auth-submit-btn{
  background:transparent;
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  padding:14px 24px;
  font-size:11px;
  letter-spacing:2px;
  text-transform:uppercase;
  cursor:pointer;
  transition:.3s;
  font-weight:500;
  font-family:var(--ff-body);
  margin-top:8px;
  border-radius:var(--r0);
}
.auth-submit-btn:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.3);
}
.auth-switch{
  text-align:center;
  margin-top:24px;
  font-size:12px;
  color:rgba(255,255,255,.5);
}
.auth-switch a{
  color:rgba(255,255,255,.8);
  text-decoration:none;
  margin-left:8px;
  cursor:pointer;
  transition:.3s;
}
.auth-switch a:hover{
  color:#fff;
}
.auth-error{
  background:rgba(255,0,0,.1);
  border:1px solid rgba(255,0,0,.3);
  color:rgba(255,255,255,.9);
  padding:12px;
  font-size:12px;
  text-align:center;
  margin-bottom:16px;
  display:none;
}
.auth-error.active{
  display:block;
}
.auth-success{
  background:rgba(0,255,0,.1);
  border:1px solid rgba(0,255,0,.3);
  color:rgba(255,255,255,.9);
  padding:12px;
  font-size:12px;
  text-align:center;
  margin-bottom:16px;
  display:none;
}
.auth-success.active{
  display:block;
}
.close-auth-modal{
  position:absolute;
  top:16px;
  right:16px;
  background:transparent;
  border:none;
  color:rgba(255,255,255,.6);
  font-size:32px;
  cursor:pointer;
  transition:.3s;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
}
.close-auth-modal:hover{
  color:#fff;
}

/* =========================
   18) LIFE OF RULES BUTTON
========================= */
.life-of-rules{
  font-family:"Rajdhani",sans-serif;
  font-size:clamp(16px, 2.5vw, 24px);
  font-weight:600;
  letter-spacing:8px;
  color:rgba(255,255,255,.9);
  margin-top:40px;
  text-transform:uppercase;
  position:relative;
  display:inline-block;
  padding:12px 32px;
  border:2px solid rgba(255,255,255,.3);
  border-radius:var(--r0);
  background:rgba(0,0,0,.3);
  backdrop-filter:blur(10px);
  transition:.4s;
}
.life-of-rules::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.05);
  transform:scaleX(0);
  transform-origin:left;
  transition:.4s;
  z-index:-1;
}
.life-of-rules:hover{
  border-color:rgba(255,255,255,.6);
  transform:translateY(-4px) translateZ(10px);
  box-shadow:
    0 8px 32px rgba(0,0,0,.5),
    0 0 20px rgba(255,255,255,.1);
}
.life-of-rules:hover::before{
  transform:scaleX(1);
}

/* =========================
   19) PRODUCT MODAL ADDITIONAL STYLES
========================= */
.product-modal.active .product-modal-content{
  margin:auto;
  position:relative;
  transform:translateZ(0);
  align-self:center;
  flex-shrink:0;
}
.product-modal.active .product-modal-right,
.product-modal.active .product-image-container{
  touch-action:pan-y;
  -webkit-overflow-scrolling:touch;
}

/* =========================
   20) LOGO LINK
========================= */
.logo-link{
  position:fixed;
  top:32px;
  left:48px;
  z-index:100;
  transition:.3s;
  text-decoration:none;
  display:block;
}
.logo-link img{
  width:100px;
  height:auto;
  filter:brightness(1.1);
  transition:.3s;
}
.logo-link:hover img{
  transform:scale(1.05);
  opacity:.9;
}

@media (max-width: 768px){
  .logo-link{
    top:16px;
    left:16px;
  }
  .logo-link img{
    width:80px;
  }
}
@media (max-width: 480px){
  .logo-link{
    top:12px;
    left:12px;
  }
  .logo-link img{
    width:70px;
  }
}

/* =========================
   21) COUNTDOWN SECTION
========================= */
.countdown-section{
  margin-top:60px;
  opacity:0;
  transform:translateY(40px);
  transition:opacity .8s ease, transform .8s ease;
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  animation:fadeInUp .6s ease-out .4s both;
}
.countdown-section.visible{
  opacity:1;
  transform:translateY(0);
}
.countdown{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  width:100%;
  max-width:800px;
  padding:40px;
  background:rgba(255,255,255,.02);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(20px);
  border-radius:var(--r0);
}
.time-box{
  display:flex;
  flex-direction:column;
  gap:12px;
  align-items:center;
  text-align:center;
  padding:20px;
  background:rgba(0,0,0,.2);
  border:1px solid rgba(255,255,255,.08);
  transition:.4s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}
.time-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.02);
  transform:scaleY(0);
  transform-origin:bottom;
  transition:.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index:-1;
}
.time-box:hover{
  border-color:rgba(255,255,255,.15);
  transform:translateY(-4px);
  box-shadow:0 8px 24px rgba(0,0,0,.4);
}
.time-box:hover::before{
  transform:scaleY(1);
}
.time{
  font-family:var(--ff-bold);
  font-size:clamp(40px, 8vw, 72px);
  letter-spacing:4px;
  color:#fff;
  font-weight:400;
  line-height:1;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.label{
  font-size:11px;
  letter-spacing:3px;
  text-transform:uppercase;
  color:rgba(255,255,255,.7);
  font-weight:500;
  font-family:var(--ff-body);
}

@media (max-width: 768px){
  .countdown-section{
    margin-top:40px;
    padding:0 16px;
    width:100%;
  }
  .countdown{
    grid-template-columns:repeat(4,1fr);
    gap:6px;
    padding:20px 8px;
  }
  .time-box{
    padding:12px 4px;
    gap:4px;
    flex-direction:row;
    align-items:center;
    justify-content:center;
  }
  .time{
    font-size:clamp(20px, 6vw, 36px);
    letter-spacing:1px;
    margin-right:4px;
  }
  .label{
    font-size:7px;
    letter-spacing:1px;
    white-space:nowrap;
    text-align:left;
  }
}
@media (max-width: 480px){
  .countdown-section{
    margin-top:32px;
    padding:0 12px;
  }
  .countdown{
    gap:4px;
    padding:16px 6px;
  }
  .time-box{
    padding:10px 2px;
  }
  .time{
    font-size:clamp(18px, 7vw, 28px);
  }
  .label{
    font-size:6px;
  }
}

/* =========================
   22) REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce){
  *{
    transition:none !important;
    scroll-behavior:auto !important;
    animation:none !important;
  }
}
.footer-logo-band {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: center;
}

.footer-logo-band img {
  max-width: 420px;
  width: 100%;
  opacity: 0.9;
}
