/* Base */
:root{
  --bg:#0f1115; /* koyu gri-mavi */
  --card:#151924;
  --text:#e7e9ee;
  --muted:#b8bdc7;
  --brand:#48a868; /* doğal yeşil */
  --brand-2:#2f855a;
  --accent:#c8f169;
  /* Mobile Grid Variables */
  --mobile-columns: 2;
  --mobile-gap: 12px;
  --item-width: calc(50% - 6px);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
html,body{margin:0;padding:0;overflow-x:hidden;height:100%}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:linear-gradient(180deg,#0e1014 0%, #0d0f13 100%);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
img{max-width:100%;display:block;height:auto}
.container{width:100%;max-width:1200px;margin:0 auto;padding:0 20px}
.section{padding:72px 0;border-bottom:1px solid oklab(30.118000000000002% 0 -0.00003)}
.section:last-child{border-bottom:none}
.main-content{flex:1}

/* Header */
.site-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  background:#0d0f13;
  backdrop-filter:saturate(140%) blur(12px);
  -webkit-backdrop-filter:saturate(140%) blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 2px 20px rgba(0,0,0,.15);
  transition:all .3s ease;
}
.site-header::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(72,168,104,.03) 0%,transparent 100%);
  pointer-events:none;
}

/* Header ile içerik arasında boşluk bırakmak için */
.header-spacer {
  width: 100%;
  height: 72px; /* header yüksekliği ile aynı olmalı */
  display: block;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:72px;
  position:relative;
  z-index:1;
}
.logo{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.5px;
  touch-action:manipulation;
  transition:transform .3s ease,opacity .3s ease;
  display:flex;
  align-items:center;
}
.logo:hover{
  transform:translateY(-1px);
  opacity:.9;
}
.logo .brand-logo{
  position:relative;
  padding:4px 0;
}
.logo .brand-logo h3{
  color:var(--text);
  font-size:1.5rem;
  font-weight:700;
  margin:0;
  background:linear-gradient(135deg,var(--accent) 0%,#ff8c42 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  letter-spacing:-.5px;
}
.logo .brand-accent{
  width:45px;
  height:3px;
  background:
    linear-gradient(90deg,var(--accent) 0%,#ff8c42 100%),
    linear-gradient(90deg,rgba(20,24,30,0.7) 0%,rgba(20,24,30,0.7) 100%);
  border-radius:2px;
  margin-top:4px;
  transition:width .3s ease;
  box-shadow:0 1px 6px rgba(20,24,30,0.18);
}
.logo:hover .brand-accent{
  width:55px;
}
.nav-links{
  display:flex;
  gap:8px;
  align-items:center;
}
.nav-links a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:.95rem;
  transition:all .3s ease;
  touch-action:manipulation;
  padding:8px 16px;
  border-radius:8px;
  position:relative;
  background:transparent;
}
.nav-links a::before{
  content:'';
  position:absolute;
  bottom:6px;
  left:50%;
  transform:translateX(-50%) scaleX(0);
  width:calc(100% - 32px);
  height:2px;
  background:linear-gradient(90deg,var(--accent),#ff8c42);
  border-radius:2px;
  transition:transform .3s ease;
}
.nav-links a:hover{
  color:#fff;
  background:rgba(255,255,255,.1);
  font-weight:700;
}
.nav-links a:hover::before{
  transform:translateX(-50%) scaleX(1);
}
.nav-links a.active{
  color:#fff;
  background:rgba(255,255,255,.15);
  font-weight:700;
}
.nav-links a.active::before{
  transform:translateX(-50%) scaleX(1);
}
.cta-ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 18px;
  border:1.5px solid rgba(255,255,255,.3);
  border-radius:10px;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  font-size:.9rem;
  transition:all .3s ease;
  touch-action:manipulation;
  background:transparent;
  box-shadow:none;
  position:relative;
  overflow:hidden;
}
.cta-ghost svg{
  width:18px;
  height:18px;
  transition:transform .3s ease;
  flex-shrink:0;
}
.cta-ghost span{
  position:relative;
  z-index:1;
}
.cta-ghost:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.4);
  transform:translateY(-1px);
}
.cta-ghost:hover svg{
  transform:scale(1.05);
}
.cta-ghost:active{
  transform:translateY(0);
}
.hamburger{
  display:none;
  width:44px;
  height:44px;
  border:1.5px solid rgba(255,255,255,.15);
  border-radius:10px;
  background:rgba(255,255,255,.04);
  color:#fff;
  align-items:center;
  justify-content:center;
  transition:all .3s ease;
  touch-action:manipulation;
  cursor:pointer;
}
.hamburger:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.25);
  transform:scale(1.05);
}
.hamburger:active{
  transform:scale(.95);
}
.hamburger span{
  display:block;
  width:20px;
  height:2px;
  background:#fff;
  margin:3px 0;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  border-radius:2px;
}
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
  transform:translateX(-10px);
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(7px,-6px);
}

/* Hero */
.hero{
  position:relative;
  min-height:70vh;
  display:grid;
}
.hero-media{position:absolute;inset:0;overflow:hidden;z-index:-1}
.hero-media img{width:100%;height:100%;object-fit:cover}
.hero-content{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:70vh;
  max-width:1100px;
  margin:0 auto;
}
.hero h1{font-size:clamp(32px,5vw,56px);margin:0 0 12px}
.hero p{
  display:inline-flex;
  align-items:center;
  max-width:none;
  color:var(--accent);
  margin:0 0 10px;
  padding:8px 20px;
  font-size:1.05rem;
  font-weight:700;
  line-height:1.5;
  letter-spacing:0.15em;
  text-transform:uppercase;
  border-radius:999px;
  background:rgba(0,0,0,0.6);
  border:1px solid rgba(200,241,105,0.35);
  box-shadow:0 14px 40px rgba(0,0,0,0.7);
}
.hero p + p{
  opacity:0.95;
  font-size:0.98rem;
  letter-spacing:0.18em;
}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}
.hero-brand .brand-logo{margin-bottom:16px;position:relative;display:inline-block}
.hero-brand .brand-logo h3{
  font-size:clamp(2.4rem,5vw,3.4rem);
  color:#fff;
  background:linear-gradient(120deg,#e9ff9a 0%,#ffd27a 40%,#ff9b5a 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-brand .brand-accent{
  height:4px;
  width:130px;
  background:linear-gradient(90deg,#e9ff9a,#ff9b5a);
  border-radius:2px;
  margin-top:8px;
}

.btn-primary,.btn-secondary{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:12px 16px;border-radius:12px;text-decoration:none;font-weight:600;transition:all .2s ease;touch-action:manipulation;cursor:pointer}
/* Primary buton artık kırmızı ve secondary ile benzer şeffaf/çizgili stile sahip */
.btn-primary{
  background:rgba(255,75,75,0.32);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.btn-primary:hover{
  background:rgba(255,75,75,0.5);
  transform:translateY(-1px);
  border-color:rgba(255,255,255,.26);
}
.btn-secondary{border:1px solid rgba(255,255,255,.16);color:#fff}
.btn-secondary:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.24)}

/* About */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:stretch;min-height:400px}
.grid-2 > div{display:flex;flex-direction:column;justify-content:center}
.grid-2 .about-media{display:flex;align-items:center;justify-content:center}
.grid-2 .about-media img{width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.single-column{max-width:800px;margin:0 auto;text-align:center}
.about .about-media img{width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
.checklist{list-style:none;padding:0;margin:16px 0 0;display:grid;gap:8px}
.checklist li{position:relative;padding-left:26px}
.checklist li:before{content:"✔";position:absolute;left:0;color:var(--accent)}

/* About Custom Layout */
.about-custom-layout{display:flex;flex-direction:column;gap:24px}
.about-intro-text{width:100%;margin-bottom:8px}
.about-content-grid{display:grid;grid-template-columns:1fr 1fr;gap:32px;align-items:stretch}
.about-features{display:flex;flex-direction:column;justify-content:center}
.feature-highlights{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.highlight-item{display:flex;gap:12px;align-items:flex-start;background:var(--card);border:1px solid rgba(255,255,255,.06);padding:16px;border-radius:14px}
.highlight-icon{font-size:22px;flex-shrink:0}
.about-content-grid .about-media{display:flex;align-items:center;justify-content:center}
.about-content-grid .about-media img{width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 10px 30px rgba(0,0,0,.35)}

/* Cards (Products) */
.cards:not(.modern-cards){display:grid;grid-template-columns:repeat(2,1fr);gap:24px;margin-top:20px}
.card{background:var(--card);border:1px solid rgba(255,255,255,.06);border-radius:14px;overflow:hidden;transition:transform .2s ease, box-shadow .2s ease}
.card:hover{transform:translateY(-4px);box-shadow:0 12px 30px rgba(0,0,0,.25)}
.card img{aspect-ratio:3/2;object-fit:cover;height:280px}
.card h3{margin:20px 20px 8px;font-size:22px}
.card p{margin:0 20px 20px;color:var(--muted);font-size:16px}

/* Features */
.feature-list{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.feature-item{display:flex;gap:12px;align-items:flex-start;background:var(--card);border:1px solid rgba(255,255,255,.06);padding:16px;border-radius:14px}
.icon{font-size:22px}

/* Gallery */
.masonry{columns:4 260px;column-gap:12px}
.masonry img{width:100%;margin:0 0 12px;border-radius:12px;border:1px solid rgba(255,255,255,.06);break-inside:avoid;object-fit:cover}

/* Calculator */
.calc-form{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:20px;max-width:100%;width:100%}
.calc-form label{
  display:flex;
  flex-direction:column;
  gap:8px;
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  padding:16px;
  border-radius:14px;
  transition:all .2s ease;
  position:relative;
}
.calc-form label:hover{
  border-color:rgba(200,241,105,.3);
  background:rgba(21,25,36,.8);
}
.calc-form label span{
  color:var(--muted);
  font-size:14px;
  font-weight:500;
  margin-bottom:4px;
}
.calc-form input{
  height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(15,20,27,.8);
  color:#fff;
  padding:0 14px;
  font-size:16px;
  font-weight:500;
  transition:all .2s ease;
  touch-action:manipulation;
}
.calc-form input:focus{
  outline:none;
  border-color:var(--accent);
  background:rgba(15,20,27,1);
  box-shadow:0 0 0 3px rgba(200,241,105,.1);
}
.calc-form input::placeholder{
  color:var(--muted);
  opacity:.7;
}
.calc-form button{
  grid-column:span 3;
  height:48px;
  margin-top:8px;
  font-size:16px;
  font-weight:600;
  border-radius:14px;
  border:none;
  cursor:pointer;
  transition:all .2s ease;
  position:relative;
  overflow:hidden;
}
.calc-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(72,168,104,.3);
}
.calc-form button:active{
  transform:scale(0.98);
}
.calc-form button:focus{
  outline:none;
  box-shadow:0 0 0 3px rgba(200,241,105,.3);
}
.calc-result{
  margin-top:20px;
  padding:20px;
  background:var(--card);
  border:1px solid rgba(200,241,105,.2);
  border-radius:14px;
  color:var(--accent);
  font-weight:600;
  font-size:15px;
  line-height:1.5;
  min-height:60px;
  display:flex;
  align-items:center;
}
.calc-result:empty{display:none}
.calc-media{display:flex;align-items:center;justify-content:center}
.calc-media img{width:100%;height:100%;object-fit:cover;border-radius:16px;box-shadow:0 8px 24px rgba(0,0,0,.15)}

/* Contact */
.contact-list{list-style:none;padding:0;margin:10px 0 20px;display:grid;gap:6px}
.contact-list a{color:#fff;text-decoration:none}
.contact-form{display:grid;gap:12px}
.contact-form label{display:flex;flex-direction:column;gap:6px}
.contact-form input,.contact-form textarea,.contact-form select{border-radius:10px;border:1px solid rgba(255,255,255,.1);background:#0f141b;color:#fff;padding:10px}
.form-note{color:var(--muted);font-size:13px}

/* Contact Info */
.contact-info{display:grid;gap:16px;margin:20px 0}
.contact-item{display:flex;gap:12px;align-items:flex-start;background:var(--card);border:1px solid rgba(255,255,255,.06);padding:16px;border-radius:14px}
.contact-item .icon{font-size:20px;margin-top:4px}
.contact-item h4{margin:0 0 4px;font-size:16px}
.contact-item p{margin:0 0 4px}
.contact-item small{color:var(--muted);font-size:12px}

/* Product Features */
.product-features{list-style:none;padding:0;margin:12px 0 0;display:grid;gap:4px}
.product-features li{position:relative;padding-left:20px;font-size:14px;color:var(--muted)}
.product-features li:before{content:"•";position:absolute;left:0;color:var(--accent)}

/* Process Steps */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:20px}
.step{text-align:center;background:var(--card);border:1px solid rgba(255,255,255,.06);padding:20px;border-radius:14px}
.step-number{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;background:var(--brand);color:#061309;border-radius:50%;font-weight:700;margin-bottom:12px}
.step h4{margin:0 0 8px;font-size:16px}
.step p{margin:0;color:var(--muted);font-size:14px}

/* FAQ */
.faq{margin-top:20px}
.faq h4{margin:16px 0 8px;font-size:16px;color:var(--accent)}
.faq p{margin:0 0 12px;color:var(--muted);font-size:14px}


/* Product Grid - Base with Flexbox Fallback */
.product-grid{
  /* Flexbox fallback */
  display: flex;
  flex-wrap: wrap;
  /* Grid primary */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

/* Flexbox fallback items */
@supports not (display: grid) {
  .product-grid .product-item {
    width: calc(50% - 10px);
    flex: 0 0 calc(50% - 10px);
  }
}

/* Desktop Overrides */
.product-grid.six-cols{
  grid-template-columns: repeat(5, 1fr);
  gap: 24px 20px;
}

/* 10 ürün için responsive grid */
@media (min-width: 1400px) {
  .product-grid.six-cols {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .product-grid.six-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 992px) {
  .product-grid.six-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) and (min-width: 769px) {
  .product-grid.six-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-grid.three-cols{
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* === PRODUCT ITEM STYLES === */

.product-item{
  background: var(--card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 280px;
  width: 100%;
  /* max-width kaldırıldı - bu 2 sütunu engelliyordu */
  box-shadow: 0 2px 8px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  position: relative;
  cursor: pointer;
  touch-action: manipulation;
}

/* CSS Animation Force for Mobile */
@keyframes forceTwoColumns {
  0% { width: 100%; }
  100% { width: calc(50% - 4px); }
}

@media (max-width: 480px) {
  .product-item {
    animation: forceTwoColumns 0.1s forwards !important;
  }
}

/* Three Cols Specific Styles */
.product-grid.three-cols .product-item{
  max-width:none !important;
  height:auto !important;
  min-height:650px !important;
  padding:0 !important;
  width:100% !important;
  flex:1 !important;
  display:flex !important;
  flex-direction:column !important;
}

.product-grid.three-cols .product-item img{
  height:250px !important;
  width:100% !important;
  object-fit:cover !important;
}

.product-grid.three-cols .product-info{
  padding:24px !important;
  flex:1 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:space-between !important;
}

.product-grid.three-cols .product-info h3{
  font-size:20px !important;
  margin-bottom:16px !important;
  text-align:left !important;
  font-weight:600 !important;
}

.product-description{
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  margin-bottom:20px;
}

.product-features{
  list-style:none;
  padding:0;
  margin:20px 0;
  flex:1;
}

.product-features li{
  color:var(--text);
  font-size:15px;
  margin:8px 0;
  position:relative;
  padding-left:28px;
  /* Arka planı site ile uyumlu koyu tona çektik */
  background:rgba(15,17,21,0.9);
  border-radius:8px;
  font-weight:500;
  display:flex;
  align-items:center;
  min-height:32px;
}

.product-features li::before{
  content:"✔";
  position:absolute;
  left:6px;
  color:var(--accent);
  font-weight:bold;
  font-size:18px;
}

.product-grid.three-cols .btn-primary{
  margin-top:auto !important;
  width:100% !important;
  padding:14px 0 !important;
  text-align:center !important;
  font-size:17px !important;
  border-radius:12px !important;
  background:linear-gradient(90deg,var(--accent),var(--brand));
  color:#222 !important;
  font-weight:700 !important;
  box-shadow:0 2px 12px rgba(72,168,104,0.12);
  transition:background .2s,box-shadow .2s;
}
.product-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 32px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.15);
  border-color:rgba(200,241,105,.4);
  background:rgba(21,25,36,1) !important;
  background:linear-gradient(90deg,var(--brand),var(--accent));
  color:#fff !important;
  box-shadow:0 4px 24px rgba(72,168,104,0.18);
}
.product-item img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease;
}
.product-item:hover img{
  transform:scale(1.02);
}
.product-info{
  padding:12px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.product-info h3{
  margin:0 0 8px;
  font-size:15px;
  color:#fff;
  text-align:center;
  font-weight:600;
  line-height:1.3;
}
.specs-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  margin-top:12px;
  background:rgba(20,24,30,0.95);
  border-radius:8px;
  overflow:hidden;
  font-size:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}
.specs-table td{
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
  font-size:12px;
  line-height:1.4;
  vertical-align:middle;
  color:#ffffff;
}
.specs-table tr:last-child td{border-bottom:none}
.specs-table .spec-label{
  color:#8B9DC3;
  font-weight:500;
  width:45%;
}
.specs-table .spec-value{
  color:#ffffff;
  font-weight:600;
  text-align:right;
}
.spec-label{
  color:var(--muted);
  font-size:11px;
  font-weight:500;
  width:55%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.spec-value{
  color:#fff;
  font-size:11px;
  font-weight:600;
  text-align:right;
  width:45%;
  white-space:nowrap;
}


/* Color Grid */
.color-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;margin-top:32px}
.color-grid.six-cols{
  grid-template-columns:repeat(6,1fr);
  gap:24px 20px;
  max-width:100%;
}
.color-item{
  background:var(--card);
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  overflow:hidden;
  transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
  display:flex;
  flex-direction:column;
  height:250px;
  box-shadow:0 2px 8px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  position:relative;
  cursor:pointer;
  touch-action:manipulation;
}
.color-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 32px rgba(0,0,0,.25), 0 6px 16px rgba(0,0,0,.15);
  border-color:rgba(200,241,105,.4);
  background:rgba(21,25,36,1) !important;
}
.color-item img{
  width:100%;
  height:100px;
  object-fit:cover;
  border-bottom:1px solid rgba(255,255,255,.06);
  transition:transform .3s ease;
}
.color-item:hover img{
  transform:scale(1.02);
}
.color-info{
  padding:12px;
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.color-info h3{
  margin:0 0 8px;
  font-size:15px;
  color:#fff;
  text-align:center;
  font-weight:600;
  line-height:1.3;
}

/* Specs Table */
.specs-table{display:grid;gap:8px;margin-top:12px}
.spec-row{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid rgba(255,255,255,.1)}
.spec-row:last-child{border-bottom:none}
.spec-label{color:var(--muted);font-size:14px;font-weight:500}
.spec-value{color:#fff;font-size:14px;font-weight:600}

/* Footer */
.site-footer{border-top:1px solid rgba(255,255,255,.06);padding:32px 0;background:rgba(0,0,0,.25);width:100vw;margin:0;margin-left:calc(-50vw + 50%);box-sizing:border-box;min-height:fit-content}
.footer-content{margin-bottom:24px;width:100%}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr 1fr;gap:24px;align-items:flex-start}
.footer-nav{display:grid;gap:10px}
.footer-nav a{color:var(--muted);text-decoration:none;transition:color .2s ease}
.footer-nav a:hover{color:#fff}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:20px;padding-bottom:0;margin-bottom:0}
.bottom-content{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:16px}
.credits{color:var(--muted);font-size:14px}

/* Responsive - Profesyonel Mobil Tasarım */
@media (max-width: 1200px){
  .product-grid.six-cols{
    grid-template-columns:repeat(4,1fr);
    gap:24px 18px;
  }
  .product-grid.three-cols{
    grid-template-columns:repeat(3,1fr) !important;
    gap:20px !important;
  }
  .product-grid.three-cols .product-item{
    min-height:600px !important;
  }
  .product-grid.three-cols .product-item img{
    height:220px !important;
  }
  .color-grid.six-cols{
    grid-template-columns:repeat(4,1fr);
    gap:20px 16px;
  }
  .container{padding:0 24px}
}

@media (max-width: 1024px){
  .cards{grid-template-columns:repeat(2,1fr);gap:20px}
  .modern-cards{grid-template-columns:repeat(2,1fr);gap:28px}
  .modern-card{height:520px !important}
  .modern-card .card-image{height:320px !important}
  .modern-card .card-content{padding:28px !important}
  .modern-card .card-content h3{font-size:22px !important}
  .modern-card .card-content p{font-size:16px !important}
  .feature-list{grid-template-columns:repeat(2,1fr);gap:18px}
  .grid-2{grid-template-columns:1fr;gap:24px;min-height:auto}
  .grid-2 > div{min-height:auto}
  .product-grid.three-cols .btn-primary {
    padding: 10px 0 !important;
    font-size: 15px !important;
    border-radius: 10px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-shadow: 0 2px 8px rgba(72,168,104,0.10);
  }
  .process-steps{grid-template-columns:repeat(2,1fr);gap:20px}
  .section{padding:56px 0}
  
  .product-grid.six-cols{
    grid-template-columns:repeat(3,1fr);
    gap:20px 16px;
  }
  .product-grid.three-cols{
    grid-template-columns:repeat(2,1fr) !important;
    gap:24px !important;
  }
  .product-grid.three-cols .product-item{
    min-height:580px !important;
  }
  .product-grid.three-cols .product-item img{
    height:240px !important;
  }
  .product-grid.three-cols .product-info{
    padding:24px !important;
  }
  
  .product-item{height:280px;max-width:none}
  .product-item img{height:130px}
  .product-info{padding:16px}
  .product-info h3{font-size:16px}
  .specs-table{font-size:12px}
  
  .color-grid.six-cols{
    grid-template-columns:repeat(3,1fr);
    gap:18px 14px;
  }
  .color-item{height:260px}
  .color-item img{height:120px}
  
  /* Calculator Tablet */
  .calc-form{
    grid-template-columns:1fr 1fr !important;
    gap:20px !important;
    width:100% !important;
  }
  .calc-form label{
    width:100% !important;
    box-sizing:border-box !important;
  }
  .calc-form label:nth-child(3){
    grid-column:span 2 !important;
  }
  .calc-form input{
    width:100% !important;
    box-sizing:border-box !important;
  }
  .calc-form button{
    grid-column:span 2 !important;
    height:50px !important;
    width:100% !important;
    box-sizing:border-box !important;
  }
  
  /* WhatsApp Float Button Tablet */
  .whatsapp-float{
    width:58px !important;
    height:58px !important;
    bottom:24px !important;
    right:20px !important;
  }
}

@media (max-width: 768px){
  /* Navigation */
  .nav-links{
    position:fixed;
    right:20px;
    top:72px;
    background:rgba(13,15,19,.98);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:16px;
    display:none;
    flex-direction:column;
    gap:12px;
    min-width:180px;
    box-shadow:0 8px 32px rgba(0,0,0,.4);
  }
  .nav-links.open{display:flex}
  .nav-links a{
    padding:8px 12px;
    border-radius:8px;
    transition:background .2s ease;
  }
  .nav-links a:hover{
    background:rgba(255,255,255,.08);
  }
  .hamburger{display:inline-flex}
  .cta-ghost{display:none}
  
  /* Layout */
  .container{padding:0 20px}
  .section{padding:48px 0}
  .logo .brand-logo h3{font-size:1.35rem}
  .logo .brand-accent{width:36px;height:2.5px}
  
  /* Content */
  .process-steps{grid-template-columns:1fr;gap:16px}
  .contact-item{flex-direction:column;text-align:center;gap:8px}
  
  /* Footer Mobile - Now using footer-nav instead of product-grid */
  
  /* === TABLET RESPONSIVE === */
  /* FLEXBOX ALTERNATIVE - Force 2 Columns */
  .product-grid,
  .product-grid.six-cols,
  .product-grid.three-cols {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    padding: 0 12px !important;
  }
  
  /* Each item takes 50% width minus gap */
  .product-grid .product-item,
  .product-grid.six-cols .product-item,
  .product-grid.three-cols .product-item {
    width: calc(50% - 8px) !important;
    flex: 0 0 calc(50% - 8px) !important;
    max-width: calc(50% - 8px) !important;
  }
  
  /* === TABLET: Product Items Override === */
  .product-item {
    min-height: 350px !important;
    max-width: none !important;
    height: auto !important;
    border-radius: 16px !important;
    background: rgba(21,25,36,.98) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,.15) !important;
  }
  
  .product-item img {
    height: 120px !important;
    border-radius: 16px 16px 0 0 !important;
  }
  
  .product-info {
    padding: 18px 16px !important;
  }
  
  .product-info h3 {
    font-size: 15px !important;
    margin-bottom: 14px !important;
    line-height: 1.3 !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-align: center !important;
    min-height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .specs-table{
    font-size:11px !important;
    margin-top:auto !important;
    background:rgba(13,15,19,.8) !important;
    border-radius:12px !important;
    overflow:hidden !important;
    border:1px solid rgba(255,255,255,.08) !important;
  }
  .specs-table td{
    padding:6px 10px !important;
    border-bottom:1px solid rgba(255,255,255,.06) !important;
  }
  .specs-table tr:last-child td{
    border-bottom:none !important;
  }
  .spec-label{
    font-size:11px !important;
    color:var(--muted) !important;
    font-weight:500 !important;
    width:50% !important;
  }
  .spec-value{
    font-size:11px !important;
    color:#fff !important;
    font-weight:600 !important;
    text-align:right !important;
    width:50% !important;
  }
  
  /* Color Grid */
  .color-grid.six-cols{
    grid-template-columns:repeat(2,1fr) !important;
    gap:16px 12px !important;
  }
  .color-item{
    height:280px !important;
    border-radius:16px !important;
    background:rgba(21,25,36,.98) !important;
    border:1px solid rgba(255,255,255,.1) !important;
    box-shadow:0 6px 24px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.1) !important;
  }
  .color-item img{
    height:140px !important;
    border-radius:16px 16px 0 0 !important;
    object-fit:cover !important;
    width:100% !important;
  }
  .color-info{
    padding:20px 16px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:1 !important;
    min-height:120px !important;
  }
  .color-info h3{
    font-size:15px !important;
    font-weight:600 !important;
    color:#fff !important;
    text-align:center !important;
    margin:0 !important;
    line-height:1.3 !important;
  }
  
  /* Feature List */
  .feature-list{
    grid-template-columns:1fr;
    gap:16px;
  }
  .feature-item{
    padding:20px;
    border-radius:16px;
  }
  
  /* Cards */
  .cards{
    grid-template-columns:1fr;
    gap:16px;
  }
  .card{
    border-radius:16px;
  }
  .modern-cards{
    grid-template-columns:1fr;
    gap:20px;
  }
  .modern-card .card-image{
    height:240px;
  }
  .modern-card .card-content{
    padding:20px;
  }
  .modern-card .card-content h3{
    font-size:1.2rem;
  }
  
  /* Calculator Mobile */
  .calc-form{
    grid-template-columns:1fr !important;
    gap:20px !important;
    margin-top:24px !important;
    width:100% !important;
  }
  .calc-form label{
    padding:20px !important;
    border-radius:16px !important;
    width:100% !important;
    box-sizing:border-box !important;
    grid-column:span 1 !important;
  }
  .calc-form label span{
    font-size:15px !important;
    margin-bottom:8px !important;
    font-weight:600 !important;
    color:#fff !important;
  }
  .calc-form input{
    height:50px !important;
    font-size:16px !important;
    padding:0 16px !important;
    border-radius:14px !important;
    width:100% !important;
    box-sizing:border-box !important;
    -webkit-appearance:none !important;
    appearance:none !important;
  }
  .calc-form button{
    grid-column:span 1 !important;
    height:54px !important;
    margin-top:16px !important;
    font-size:17px !important;
    border-radius:16px !important;
    font-weight:700 !important;
    width:100% !important;
    box-sizing:border-box !important;
    -webkit-appearance:none !important;
    appearance:none !important;
  }
  .calc-result{
    margin-top:24px !important;
    padding:24px !important;
    font-size:16px !important;
    border-radius:18px !important;
    text-align:left !important;
    line-height:1.7 !important;
    width:100% !important;
    box-sizing:border-box !important;
  }
  
  /* Footer */
  .footer-grid{
    grid-template-columns:1fr;
    gap:24px;
    text-align:center;
  }

  .bottom-content{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }
}

@media (max-width: 480px){
  /* Layout */
  .container{padding:0 16px}
  .section{padding:40px 0}
  
  /* Typography & Hero */
  .hero{min-height:60vh}
  .hero-content{min-height:60vh;padding:20px 0}
  .hero h1{font-size:clamp(28px,7vw,44px);line-height:1.2;margin-bottom:16px}
  .hero p{font-size:16px;line-height:1.6;margin-bottom:28px}
  .hero-cta{gap:16px;justify-content:center}
  .btn-primary, .btn-secondary{
    padding:14px 20px;
    font-size:16px;
    border-radius:14px;
    min-width:140px;
    justify-content:center;
  }
  
  /* Navigation */
  .nav{min-height:60px}
  .logo .brand-logo h3{font-size:1.25rem}
  .logo .brand-accent{width:32px;height:2px}
  .nav-links{right:16px;top:68px;min-width:160px}
  
  /* === ULTIMATE MOBILE OVERRIDE === */
  
  /* Step 1: Kill ALL Grid Properties */
  *[class*="grid"],
  *[class*="product"] {
    display: revert !important;
    grid: none !important;
    grid-template: none !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    grid-auto-columns: none !important;
    grid-auto-rows: none !important;
    grid-auto-flow: none !important;
    grid-gap: none !important;
    grid-column-gap: none !important;
    grid-row-gap: none !important;
  }
  
  /* Step 2: Force Flexbox Layout */
  .product-grid,
  .product-grid.six-cols,
  .product-grid.three-cols {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 0 8px !important;
    margin: 16px auto 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  
  /* Step 3: Force Item Layout - ULTIMATE */
  .product-grid > *,
  .product-grid.six-cols > *,
  .product-grid.three-cols > *,
  div[class*="product-grid"] > *,
  .product-item {
    width: calc(50% - 4px) !important;
    min-width: calc(50% - 4px) !important;
    max-width: calc(50% - 4px) !important;
    flex: 0 0 calc(50% - 4px) !important;
    flex-basis: calc(50% - 4px) !important;
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 280px !important;
    margin: 0 !important;
  }
  
  /* === MOBILE: Product Items Override === */
  .product-item {
    min-height: 280px !important;
    max-width: none !important;
    height: auto !important;
    border-radius: 14px !important;
    background: rgba(21,25,36,.98) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.15) !important;
  }
  
  .product-item img {
    height: 100px !important;
    border-radius: 14px 14px 0 0 !important;
  }
  
  .product-info {
    padding: 14px 12px !important;
  }
  
  .product-info h3 {
    font-size: 14px !important;
    margin-bottom: 12px !important;
    min-height: 32px !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  /* Specs Table - Mobile Responsive */
  .specs-table {
    font-size: 10px !important;
    border-radius: 10px !important;
    background: rgba(13,15,19,.9) !important;
    margin-top: auto !important;
    overflow: hidden !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .specs-table td {
    padding: 6px 8px !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    font-size: 10px !important;
    line-height: 1.3 !important;
    vertical-align: middle !important;
  }
  
  .specs-table tr:last-child td {
    border-bottom: none !important;
  }
  
  .spec-label {
    font-size: 10px !important;
    color: var(--muted) !important;
    font-weight: 500 !important;
    width: 50% !important;
  }
  
  .spec-value {
    font-size: 10px !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-align: right !important;
    width: 50% !important;
  }
  

  
  /* Color Grid */
  .color-grid.six-cols{
    grid-template-columns:1fr 1fr !important;
    gap:12px 8px !important;
    max-width:100% !important;
    margin:16px auto 0 !important;
    padding:0 12px !important;
  }
  .color-item{
    height:auto !important;
    min-height:300px !important;
    border-radius:14px !important;
    background:rgba(21,25,36,1) !important;
    border:1px solid rgba(255,255,255,.1) !important;
    box-shadow:0 6px 20px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.1) !important;
    display:flex !important;
    flex-direction:column !important;
    overflow:hidden !important;
  }
  .color-item img{
    height:160px !important;
    border-radius:14px 14px 0 0 !important;
    object-fit:cover !important;
    width:100% !important;
  }
  .color-info{
    padding:16px 12px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex:1 !important;
  }
  .color-info h3{
    font-size:13px !important;
    font-weight:600 !important;
    color:#fff !important;
    text-align:center !important;
    margin:0 !important;
    line-height:1.2 !important;
  }
  
  /* Process Steps */
  .process-steps{
    gap:20px;
  }
  .step{
    padding:24px 20px;
    border-radius:16px;
    text-align:left;
  }
  .step-number{
    margin-bottom:16px;
    width:44px;
    height:44px;
    font-size:18px;
  }
  
  /* Contact */
  .contact-item{
    padding:20px;
    border-radius:16px;
    gap:12px;
  }
  
  /* Calculator Small Mobile */
  .calc-form{
    margin-top:20px !important;
    gap:16px !important;
    grid-template-columns:1fr !important;
    width:100% !important;
  }
  .calc-form label{
    padding:20px !important;
    border-radius:18px !important;
    background:rgba(21,25,36,.95) !important;
    width:100% !important;
    box-sizing:border-box !important;
    grid-column:span 1 !important;
  }
  .calc-form label span{
    font-size:16px !important;
    font-weight:600 !important;
    margin-bottom:10px !important;
    color:#fff !important;
    display:block !important;
  }
  .calc-form input{
    height:52px !important;
    font-size:16px !important;
    padding:0 18px !important;
    border-radius:16px !important;
    border:2px solid rgba(255,255,255,.12) !important;
    width:100% !important;
    box-sizing:border-box !important;
    -webkit-appearance:none !important;
    appearance:none !important;
  }
  .calc-form input:focus{
    border-color:var(--accent) !important;
    box-shadow:0 0 0 4px rgba(200,241,105,.08) !important;
  }
  .calc-form button{
    height:56px !important;
    font-size:18px !important;
    margin-top:20px !important;
    border-radius:18px !important;
    font-weight:700 !important;
    width:100% !important;
    box-sizing:border-box !important;
    grid-column:span 1 !important;
  }
  .calc-result{
    margin-top:24px !important;
    padding:24px !important;
    font-size:16px !important;
    border-radius:18px !important;
    line-height:1.7 !important;
    width:100% !important;
    box-sizing:border-box !important;
  }
  
  /* Footer */
  .site-footer{padding:24px 0}
  .footer-content{margin-bottom:20px}
  .footer-grid{gap:20px}
  .footer-nav{gap:8px}
  .footer-nav h4{font-size:16px;margin-bottom:12px}
  .footer-nav a{font-size:14px;padding:4px 0}

  .bottom-content{gap:8px}
  .credits{font-size:13px;text-align:center}
  
  /* WhatsApp Float Button Mobile */
  .whatsapp-float{
    width:56px !important;
    height:56px !important;
    bottom:20px !important;
    right:16px !important;
  }
}

/* === MOBILE/DESKTOP VISIBILITY === */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* === GLOBAL RESPONSIVE GRID FALLBACK === */
@media (max-width: 768px) {
  /* Tüm product grid'ler otomatik 2 sütun olsun */
  .product-grid.six-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  
  /* Tüm color grid'ler otomatik 2 sütun olsun */
  .color-grid.six-cols {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  
  /* Product item'leri mobil için optimize et */
  .product-item {
    min-height: 320px !important;
  }
  
  .product-item img {
    height: 100px !important;
    object-fit: cover !important;
  }
  
  .product-info {
    padding: 8px !important;
  }
  
  .product-info h3 {
    font-size: 12px !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    line-height: 1.2 !important;
  }
  
  .specs-table {
    font-size: 10px !important;
  }
  
  .specs-table td {
    padding: 3px 4px !important;
  }
  
  /* Color item'leri mobil için optimize et */
  .color-item {
    min-height: 140px !important;
  }
  
  .color-item img {
    height: 80px !important;
  }
  
  .color-info h3 {
    font-size: 12px !important;
    padding: 6px !important;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }
  
  .mobile-only {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Tüm desktop grid elementlerini zorla gizle */
  .product-grid.six-cols.desktop-only,
  .color-grid.six-cols.desktop-only {
    display: none !important;
  }
  
  .product-grid.six-cols.desktop-only *,
  .color-grid.six-cols.desktop-only * {
    display: none !important;
  }
}

/* === MOBILE PRODUCT GRID === */
@media (max-width: 768px) {
  .mobile-product-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 20px 0;
  }
  
  .mobile-product-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    padding: 0 12px;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
  }
  
  .mobile-product-item {
    flex: 1;
    width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    min-width: calc(50% - 6px);
    background: rgba(21,25,36,.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    min-height: 320px;
  }
  
  .mobile-product-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }
  
  .mobile-product-info {
    padding: 12px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .mobile-product-info h3 {
    font-size: 13px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0 0 12px 0;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
  }
  
  .mobile-specs {
    margin-top: auto;
    background: rgba(20,24,30,0.95);
    border-radius: 8px;
    overflow: hidden;
    font-size: 11px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .mobile-specs td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
    line-height: 1.4;
    vertical-align: middle;
  }
  
  .mobile-specs tr:last-child td {
    border-bottom: none;
  }
  
  .mobile-specs td:first-child {
    color: #8B9DC3;
    font-weight: 500;
    width: 50%;
  }
  
  .mobile-specs td:last-child {
    color: #ffffff;
    font-weight: 600;
    text-align: right;
  }
}

/* === MOBILE COLOR GRID === */
@media (max-width: 768px) {
  .mobile-color-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
    margin: 20px 0;
  }
  
  .mobile-color-row {
    display: flex;
    gap: 12px;
    padding: 0 12px;
  }
  
  .mobile-color-item {
    flex: 1;
    background: rgba(21,25,36,.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    min-height: 180px;
  }
  
  .mobile-color-item.mobile-color-empty {
    background: transparent;
    border: none;
    box-shadow: none;
    opacity: 0;
  }
  
  .mobile-color-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
  }
  
  .mobile-color-info {
    padding: 12px 10px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-color-info h3 {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    margin: 0;
    line-height: 1.2;
  }
}

/* === DEALERS SECTION === */
.dealers-section {
  margin-top: 64px;
  padding: 64px 0;
  background: linear-gradient(135deg, rgba(21,25,36,0.3) 0%, rgba(15,17,21,0.5) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
  overflow: hidden;
}

.dealers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(72,168,104,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,140,66,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.dealers-section h3 {
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 50%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
  letter-spacing: -0.02em;
  position: relative;
}

.dealers-section h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  border-radius: 2px;
}

.dealers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dealer-card {
  background: rgba(21,25,36,.3);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dealer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dealer-card:hover {
  background: rgba(21,25,36,.5);
  border-color: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

.dealer-card:hover::before {
  opacity: 1;
}

.dealer-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.dealer-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(72,168,104,.2);
}

.dealer-info h4 {
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 6px 0;
  letter-spacing: -0.01em;
}

.dealer-status {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(72,168,104,.1);
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-block;
}

/* Hide dealer features for cleaner look */
.dealer-features {
  display: none;
}

.dealer-address {
  margin-bottom: 18px;
  background: rgba(15,17,21,.3);
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 16px;
}

.dealer-address h5 {
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dealer-address h5::before {
  content: '📍';
  font-size: 0.9rem;
}

.dealer-address p {
  color: var(--text);
  margin: 0;
  line-height: 1.6;
  font-size: 0.9rem;
}

.dealer-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.dealer-actions .btn-secondary,
.dealer-actions .btn-primary {
  flex: 1;
  text-align: center;
  font-size: 0.85rem;
  padding: 10px 16px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dealer-actions .btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: white;
  border: none;
  box-shadow: 0 2px 8px rgba(72,168,104,.2);
}

.dealer-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(72,168,104,.3);
}

.dealer-actions .btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.12);
}

.dealer-actions .btn-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-1px);
}

.btn-secondary.disabled {
  background: rgba(255,255,255,.03);
  color: var(--muted);
  border-color: rgba(255,255,255,.06);
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.7;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

.map-pin-indicator {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(21,25,36,.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.pin-icon {
  font-size: 16px;
  color: #ff4444;
}

.pin-label {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
}

.map-placeholder {
  background: rgba(15,17,21,.5);
  border: 1px dashed rgba(255,255,255,.1);
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  text-align: center;
  color: var(--muted);
}

.placeholder-icon {
  font-size: 32px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.placeholder-content p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
}

/* === ULTRA STRONG MOBILE FIX === */
@media screen and (max-width: 768px) {
  .dealers-section {
    margin-top: 48px;
    padding: 48px 20px;
  }
  
  .dealers-section h3 {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  
  .dealers-section h3::after {
    width: 40px;
    height: 2px;
  }
  
  .dealers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .dealer-card {
    padding: 20px;
  }
  
  .dealer-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
    gap: 12px;
  }
  
  .dealer-icon {
    width: 40px;
    height: 40px;
  }
  
  .dealer-address {
    padding: 14px;
    margin-bottom: 16px;
  }
  
  .dealer-actions {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
  }
  
  .map-container iframe,
  .map-placeholder {
    height: 180px;
  }
  
  /* Force side by side layout with highest priority */
  .mobile-product-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: 12px !important;
    padding: 0 12px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .mobile-product-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    flex: unset !important;
    display: flex !important;
    flex-direction: column !important;
    background: rgba(21,25,36,.98) !important;
    border: 1px solid rgba(255,255,255,.1) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.15) !important;
    min-height: 320px !important;
    box-sizing: border-box !important;
  }
  
  /* Remove empty items if any */
  .mobile-product-item.mobile-product-empty {
    display: none !important;
  }
}

/* Deck Info Container - Düzenli Layout */
.deck-info-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.deck-info-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Info Section Styles */
.info-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
}

.info-section h3 {
  color: var(--accent);
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.info-section p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* Tech Grid Styles */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.tech-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--brand);
  transform: translateY(-2px);
}

.tech-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.tech-content h4 {
  color: var(--text);
  margin: 0 0 4px 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.tech-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Advantages Grid Styles */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.advantage-card {
  text-align: center;
  padding: 20px 16px;
  background: rgba(72, 168, 104, 0.05);
  border:  1px solid rgba(72, 168, 104, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  background: rgba(72, 168, 104, 0.08);
  border-color: rgba(72, 168, 104, 0.25);
  transform: translateY(-2px);
}

.advantage-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.advantage-card h4 {
  color: var(--accent);
  margin: 0 0 8px 0;
  font-size: 1rem;
  font-weight: 600;
}

.advantage-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Media Wrapper Styles */
.deck-info-media {
  position: sticky;
  top: 100px;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.media-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.media-wrapper img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
  flex: 1;
}

.media-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 24px;
}

.overlay-content h4 {
  color: var(--accent);
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.overlay-content p {
  color: var(--muted);
  margin: 0;
  font-size: 0.9rem;
}

/* Performance Stats Styles */
.performance-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-card {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(72, 168, 104, 0.3);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Section Header Enhancement */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  margin: 0 0 12px 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .deck-info-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .deck-info-media {
    position: static;
    order: -1;
  }
  
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .performance-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-card {
    padding: 16px 12px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .info-section {
    padding: 16px;
  }
  
  .tech-card {
    padding: 12px;
  }
  
  .advantage-card {
    padding: 16px 12px;
  }
}

@media (max-width: 480px) {
  .performance-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .tech-grid {
    gap: 8px;
  }
  
  .advantages-grid {
    gap: 8px;
  }
  
  .info-section {
    padding: 12px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
}

/* Deck Product Grid Styles */
.deck-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
  overflow: visible !important;
}

.deck-product-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: visible !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.deck-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(72, 168, 104, 0.3);
  z-index: 2;
}

.product-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.deck-product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-badge.premium {
  background: linear-gradient(135deg, #ff8c42, var(--accent));
  color: #000;
}

.product-badge.standard {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  color: #fff;
}

.product-badge.economy {
  background: linear-gradient(135deg, #666, #999);
  color: #fff;
}

.product-content {
  padding: 24px;
  overflow: visible !important;
  position: relative;
}

.product-title {
  color: var(--accent);
  margin: 0 0 16px 0;
  font-size: 1.3rem;
  font-weight: 600;
}

.product-specs {
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-item:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.spec-value {
  color: var(--text);
  font-weight: 600;
  font-family: 'Inter', monospace;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.price-label,
.price-value {
  white-space: nowrap;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.price-original {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  text-decoration: line-through;
  font-weight: 400;
}

.price-discounted {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 700;
  font-family: 'Inter', monospace;
  white-space: nowrap;
}

.discount-badge {
  display: inline-block;
  padding: 4px 10px;
  background: linear-gradient(135deg, rgba(72, 168, 104, 0.2) 0%, rgba(72, 168, 104, 0.1) 100%);
  border: 1px solid var(--accent);
  border-radius: 6px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive Deck Products */
@media (max-width: 768px) {
  .deck-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .product-content {
    padding: 16px;
  }
  
  .product-image {
    height: 180px;
  }
}

/* Sabit Telefon Butonu - WhatsApp Butonunun Üstünde */
.floating-phone-button {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--card) 0%, rgba(21,25,36,0.95) 100%);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  animation: phonePulse 2s infinite;
  backdrop-filter: blur(10px);
}

.floating-phone-button:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 6px 16px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, var(--accent) 0%, var(--brand) 100%);
  border-color: var(--accent);
}

.floating-phone-button:active {
  transform: scale(0.95);
}

.floating-phone-button svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Tooltip for Phone Button */
.floating-phone-button::after {
  content: 'Telefon Et';
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.floating-phone-button:hover::after {
  opacity: 1;
}

@keyframes phonePulse {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 4px 12px rgba(0,0,0,0.2);
  }
  50% {
    box-shadow: 0 10px 28px rgba(0,0,0,0.35), 0 5px 14px rgba(0,0,0,0.25);
  }
}

@media (max-width: 768px) {
  .floating-phone-button {
    width: 55px;
    height: 55px;
    bottom: 85px;
    right: 20px;
  }
  
  .floating-phone-button svg {
    width: 24px;
    height: 24px;
  }
  
  .floating-phone-button::after {
    display: none;
  }
}

/* Modern Renk ve Yüzey Seçenekleri Popup Sistemi */
.color-selector-wrapper,
.surface-selector-wrapper,
.combined-selector-wrapper {
  position: relative;
  display: inline-block;
  margin: 12px 0;
  overflow: visible !important;
  z-index: 1;
}

.product-options-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.color-selector-btn,
.surface-selector-btn,
.combined-selector-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: linear-gradient(135deg, rgba(72, 168, 104, 0.1) 0%, rgba(72, 168, 104, 0.05) 100%);
  border: 1px solid rgba(72, 168, 104, 0.3);
  border-radius: 8px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.color-selector-btn:hover,
.surface-selector-btn:hover,
.combined-selector-btn:hover {
  background: linear-gradient(135deg, rgba(72, 168, 104, 0.2) 0%, rgba(72, 168, 104, 0.1) 100%);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(72, 168, 104, 0.3);
}

.selector-icon {
  font-size: 1.1rem;
}

.selector-text {
  font-weight: 600;
}

.selector-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.color-selector-wrapper.active .selector-arrow,
.surface-selector-wrapper.active .selector-arrow,
.combined-selector-wrapper.active .selector-arrow {
  transform: rotate(180deg);
}

/* Popup Panel - Basit Dropdown */
.color-popup,
.surface-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: linear-gradient(135deg, rgba(21, 25, 36, 0.98) 0%, rgba(15, 17, 21, 0.98) 100%);
  border: 1px solid rgba(72, 168, 104, 0.3);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 10002 !important;
  pointer-events: none;
  isolation: isolate;
}

.color-selector-wrapper.active .color-popup,
.surface-selector-wrapper.active .surface-popup {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Combined Popup - Büyük Merkezli Modal */
.combined-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 95vw;
  max-width: 1100px;
  max-height: 90vh;
  background: linear-gradient(135deg, rgba(25, 30, 42, 0.98) 0%, rgba(18, 21, 28, 0.98) 100%);
  border: 2px solid rgba(72, 168, 104, 0.4);
  border-radius: 20px;
  padding: 48px 56px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.9),
              0 10px 40px rgba(72, 168, 104, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10002 !important;
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: none;
  margin: 0 auto;
  isolation: isolate;
  will-change: transform, opacity;
}

.combined-selector-wrapper.active .combined-popup {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* Popup Scrollbar Stili */
.combined-popup::-webkit-scrollbar {
  width: 8px;
}

.combined-popup::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.combined-popup::-webkit-scrollbar-thumb {
  background: rgba(72, 168, 104, 0.5);
  border-radius: 4px;
  transition: background 0.3s ease;
}

.combined-popup::-webkit-scrollbar-thumb:hover {
  background: rgba(72, 168, 104, 0.7);
}

/* Backdrop - Karanlık Arka Plan */
.popup-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10001 !important;
  pointer-events: none;
  cursor: pointer;
}

.combined-selector-wrapper.active .popup-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-header {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(72, 168, 104, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Combined Popup Sections */
.popup-section {
  margin-bottom: 20px;
}

.popup-section:last-child {
  margin-bottom: 0;
}

.popup-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 168, 104, 0.3), transparent);
  margin: 20px 0;
}

.popup-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* Büyük popup için 4 kolonlu grid - Geliştirilmiş */
.popup-grid-large {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 8px;
}

/* Popup Section */
.popup-section {
  margin-bottom: 36px;
}

.popup-section:last-child {
  margin-bottom: 0;
}

.popup-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(72, 168, 104, 0.4), transparent);
  margin: 36px 0;
}

/* Popup Item - Yeni Tasarım */
.popup-color-item,
.popup-surface-item,
.popup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* Resim wrapper - zoom için */
.popup-item-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  background: rgba(0, 0, 0, 0.3);
}

/* Hover gradient efekti */
.popup-color-item::after,
.popup-surface-item::after,
.popup-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(72, 168, 104, 0.2) 0%, rgba(72, 168, 104, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.popup-color-item:hover,
.popup-surface-item:hover,
.popup-item:hover {
  background: rgba(72, 168, 104, 0.12);
  border-color: rgba(72, 168, 104, 0.6);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(72, 168, 104, 0.4),
              0 6px 16px rgba(0, 0, 0, 0.5);
  z-index: 2;
  position: relative;
}

.popup-color-item:hover::after,
.popup-surface-item:hover::after,
.popup-item:hover::after {
  opacity: 1;
}

/* Hover'da resmi büyütme efekti */
.popup-item:hover .popup-item-image-wrapper img,
.popup-color-item:hover img,
.popup-surface-item:hover img {
  transform: scale(1.2);
}

.popup-color-item img,
.popup-surface-item img,
.popup-item-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.popup-color-item span,
.popup-surface-item span,
.popup-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.popup-color-item:hover span,
.popup-surface-item:hover span,
.popup-item:hover span {
  color: var(--accent);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .combined-popup {
    width: 95vw;
    max-height: 90vh;
    padding: 28px 20px;
  }
  
  .popup-grid-large {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .popup-section {
    margin-bottom: 28px;
  }
  
  .popup-divider {
    margin: 24px 0;
  }
}

/* Responsive - Mobil */
@media (max-width: 768px) {
  .color-popup,
  .surface-popup {
    min-width: 260px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .combined-popup {
    width: 95vw;
    max-height: 90vh;
    padding: 24px 16px;
  }
  
  .popup-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  
  .popup-section {
    margin-bottom: 24px;
  }
  
  .popup-divider {
    margin: 20px 0;
  }
  
  .popup-header {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .popup-item,
  .popup-color-item,
  .popup-surface-item {
    padding: 12px;
    gap: 8px;
  }
  
  .popup-item span,
  .popup-color-item span,
  .popup-surface-item span {
    font-size: 0.85rem;
  }
  
  .popup-color-item img,
  .popup-surface-item img,
  .popup-item-image-wrapper img {
    height: 80px;
  }
}

/* Mobil cihazlarda popup hizalaması */
.color-selector-wrapper.active .color-popup,
.surface-selector-wrapper.active .surface-popup {
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 768px) {
  .color-popup,
  .surface-popup {
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }
  
  .popup-grid {
    gap: 10px;
  }
  
  /* Mobilde hover yerine tıklama kullan */
  .color-selector-btn,
  .surface-selector-btn,
  .combined-selector-btn {
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 480px) {
  .product-options-row {
    flex-direction: column;
  }
  
  .color-selector-btn,
  .surface-selector-btn,
  .combined-selector-btn {
    width: 100%;
    justify-content: center;
  }
  
  .color-popup,
  .surface-popup {
    min-width: calc(100vw - 40px);
    max-width: 320px;
  }
  
  .combined-popup {
    width: calc(100vw - 20px);
    max-width: none;
    padding: 16px;
  }
  
  .popup-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .popup-grid-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .popup-item-image-wrapper img,
  .popup-color-item img,
  .popup-surface-item img {
    height: 70px;
  }
  
  .color-selector-wrapper .color-popup,
  .surface-selector-wrapper .surface-popup {
    left: 50%;
    right: auto;
  }
}

/* Ürün Açıklaması */
.product-description {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 16px 0;
}

/* Renk Bilgi Kartları */
.color-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.color-info-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.color-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  border-color: rgba(72, 168, 104, 0.3);
}

.color-info-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.color-info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .color-info-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .color-info-card {
    padding: 20px;
  }
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
  .color-option {
    width: 40px;
    height: 40px;
  }
  
  .surface-option {
    width: 55px;
    height: 55px;
  }
  
  .product-surface-options {
    padding: 10px;
  }
  
  .surface-options {
    gap: 6px;
  }
  
  .product-colors {
    gap: 5px;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .color-option {
    width: 38px;
    height: 38px;
  }
  
  .surface-option {
    width: 50px;
    height: 50px;
  }
  
  .product-colors {
    gap: 4px;
    padding: 8px;
  }
  
  .surface-options {
    gap: 5px;
  }
}
