/* 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}
.main-content{flex:1}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(13,15,19,.7);backdrop-filter:saturate(140%) blur(8px);border-bottom:1px solid rgba(255,255,255,.06);-webkit-backdrop-filter:saturate(140%) blur(8px)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:16px;min-height:64px}
.logo{color:#fff;text-decoration:none;font-weight:800;letter-spacing:.5px;touch-action:manipulation}
.logo .brand-logo{position:relative}
.logo .brand-logo h3{color:var(--text);font-size:1.5rem;font-weight:700;margin:0;background:linear-gradient(135deg,var(--accent),#ff8c42);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.logo .brand-accent{width:40px;height:3px;background:linear-gradient(90deg,var(--accent),#ff8c42);border-radius:2px;margin-top:2px}
.nav-links{display:flex;gap:20px;align-items:center}
.nav-links a{color:var(--muted);text-decoration:none;font-weight:500;transition:color .2s ease;touch-action:manipulation}
.nav-links a:hover{color:#fff}
.cta-ghost{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border:1px solid rgba(255,255,255,.12);border-radius:10px;color:#fff;text-decoration:none;transition:all .2s ease;touch-action:manipulation}
.cta-ghost:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.2)}
.hamburger{display:none;width:44px;height:44px;border:1px solid rgba(255,255,255,.12);border-radius:10px;background:transparent;color:#fff;align-items:center;justify-content:center;transition:all .2s ease;touch-action:manipulation;cursor:pointer}
.hamburger:hover{background:rgba(255,255,255,.08)}
.hamburger span{display:block;width:20px;height:2px;background:#fff;margin:3px 0;transition:all .3s ease}
.hamburger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.hamburger.active span:nth-child(2){opacity:0}
.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}
.hero-media img{width:100%;height:100%;object-fit:cover;filter:brightness(.6)}
.hero-content{position:relative;z-index:1;display:flex;flex-direction:column;justify-content:center;min-height:70vh}
.hero h1{font-size:clamp(32px,5vw,56px);margin:0 0 12px}
.hero p{max-width:640px;color:var(--muted);margin:0 0 24px}
.hero-cta{display:flex;gap:12px;flex-wrap:wrap}

.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}
.btn-primary{background:linear-gradient(180deg,var(--brand),var(--brand-2));color:#061309}
.btn-primary:hover{filter:brightness(1.05);transform:translateY(-1px)}
.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:1.1fr .9fr;gap:28px;align-items:center}
.single-column{max-width:800px;margin:0 auto;text-align:center}
.about .about-media img{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)}

/* Cards (Products) */
.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;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:4/3;object-fit:cover}
.card h3{margin:14px 14px 6px;font-size:18px}
.card p{margin:0 14px 16px;color:var(--muted)}

/* 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 img{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(--muted);
  font-size:15px;
  margin:8px 0;
  position:relative;
  padding-left:24px;
}

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

.product-grid.three-cols .btn-primary{
  margin-top:auto !important;
  width:100% !important;
  padding:12px 16px !important;
  text-align:center !important;
}
.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;
}
.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}
  .feature-list{grid-template-columns:repeat(2,1fr);gap:18px}
  .grid-2{grid-template-columns:1fr;gap:32px}
  .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;
  }
  
  /* 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;
    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:16px !important;
    text-align:left !important;
    line-height:1.6 !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,
  div[class*="product-grid"],
  section .product-grid {
    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;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  
  .spec-value {
    font-size: 10px !important;
    color: #fff !important;
    font-weight: 600 !important;
    text-align: right !important;
    width: 50% !important;
    white-space: nowrap !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,.12) !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;
  }
}


