  
  
  
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Montserrat', sans-serif; background-color: #111; color: #fff; }
    header { background-color: #c00; padding: 20px; text-align: center; font-size: 32px; font-weight: bold; letter-spacing: 2px; }





    /* Slider: Swiper Cube Effect */
/* Kenarlarda 10px boşluk bırakarak slaytı genişlet */
.slider {
  width: calc(100% - 10px); /* toplam %100 genişlikten 20px çıkar */
  max-width: 1400px;
  height: 600px;
  margin: 10px auto;       /* üst-alt 40px, yatay otomatik */
}


.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  height: 600px;
}

.swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: auto;
  height: auto;
  display: block;
  margin: auto;
  z-index: 1;
}
.slide-content {
  position: absolute;
  left: 8%;
  bottom: 30px;              /* sol alt için eklendi */
  top: auto;                 /* ortalamayı iptal eder */
  transform: none;           /* translate ortalamayı iptal eder */
  width: 30%;
  color: #fff;
  z-index: 2;
}







    .slide-content h2 {
      font-size: 36px;
      margin-bottom: 12px;
      background: rgba(192,0,0,0.4);
      display: inline-block;
      padding: 10px 16px;
      border-radius: 6px;
    }
    .slide-content p {
      font-size: 16px;
      margin-bottom: 14px;
      background: rgba(0,0,0,0.6);
      display: inline-block;
      padding: 8px 12px;
      border-radius: 4px;
    }
    .slide-content .slide-link {
      display: block;
      margin-top: 10px;
      font-size: 14px;
      text-decoration: none;
      background: #c00;
      padding: 6px 12px;
      border-radius: 4px;
      text-align: center;
      width: fit-content;
    }


a {
  text-decoration: none;
}

/* Sadece sekmeler (tab) ve ürün kartları için özel olarak da yazalım */
.tab,
.tabs a,
.product-area a {
  text-decoration: none !important;
  color: inherit;
}



    /* Tab Menü */
    .tab-container { display: flex; align-items: center; max-width: 1200px; margin: 0 auto 30px; background: #222; border-radius: 12px; overflow: hidden; box-shadow: 0 0 20px #900; }
    .tab-label { background: #c00; padding: 20px 28px; font-weight: 700; font-size: 20px; color: #fff; clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%); flex-shrink: 0; }
    .tabs { display: flex; gap: 20px; flex-grow: 1; padding-left: 30px; }
    .tab { cursor: pointer; padding: 16px 24px; font-size: 18px; border-radius: 8px 8px 0 0; background: #333; color: #ddd; transition: background 0.3s, color 0.3s; user-select: none; }
    .tab:hover { background: #c00; color: #fff; }
    .tab.active { background: #c00; color: #fff; font-weight: 700; box-shadow: inset 0 -3px 0 0 #ff4c4c; }

    /* Ürünler grid */
    .product-area { max-width: 1400px; margin: 0 auto 60px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
    .product { background-color: #222; border-radius: 16px; overflow: hidden; transition: transform 0.35s ease, box-shadow 0.35s ease; cursor: pointer; box-shadow: 0 2px 12px rgba(255,0,0,0.5); }
    .product:hover { transform: translateY(-12px); box-shadow: 0 0 50px #ff0000cc; }
    .product img { width: 100%; height: 260px; object-fit: cover; border-bottom: 4px solid #c00; transition: transform 0.3s ease; }
    .product:hover img { transform: scale(1.06); }
    .product .info { padding: 24px; }
    .product .info h3 { font-size: 24px; margin-bottom: 12px; color: #f44; }
    .product .info p { font-size: 16px; color: #bbb; line-height: 1.4; }




/* ——— Bilgi Kutucukları ——— */
.info-section {
  background: #1a1a1a;
  padding: 60px 0;
}
.info-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
}
.info-box {
  background: #222;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
.info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(192,0,0,0.7);
}
.info-box i {
  font-size: 36px;
  color: #c00;
  margin-bottom: 16px;
}
.info-box h4 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #fff;
}
.info-box p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1000px) {
  .info-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .info-container {
    grid-template-columns: 1fr;
  }
  .info-section {
    padding: 40px 0;
  }
  .info-box {
    padding: 16px;
  }
  .info-box i {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .info-box h4 {
    font-size: 18px;
  }
  .info-box p {
    font-size: 13px;
  }
}










    /* Responsive */
@media (max-width: 600px) {
  /* Slider yüksekliğini optimize et */
  .slider {
    height: 250px;
    margin: 10px auto;
    padding: 0;
  }
  
  
/* Slayt metni: daha küçük, sol-alt sabit */
.slide-content {
  bottom: 5px !important;
  left: 5px !important;
  width: 70% !important;
  padding: 4px 6px !important;
  background: rgba(0, 0, 0, 0.5) !important;
}
.slide-content h2 {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  margin-bottom: 4px !important;
}
.slide-content p {
  font-size: 10px !important;
  margin-bottom: 6px !important;
}
.slide-content .slide-link {
  font-size: 10px !important;
  padding: 3px 6px !important;
}





  /* Tab menüyü iki satıra sar, ortala */
  .tab-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #222;
    padding: 5px 0;
  }
  .tab-label {
    flex-basis: 100%;
    text-align: center;
    clip-path: none;
    border-radius: 12px 12px 0 0;
    margin-bottom: 5px;
  }
  .tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 0 5px;
  }
  .tab {
    flex: 1 1 auto;
    min-width: 80px;
    font-size: 14px;
    padding: 8px 12px;
    margin: 0;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }

  /* Ürün ızgarası kenar boşluklarını koru */
  .product-area {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 10px;
  }
}







/* —— HEADER GENELİ —— */
.site-header {
  display: flex;
  align-items: center;
  padding: 10px 40px;
  background: #2a2a2a; /* daha açık grimsi ton */
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.site-header .logo {
  margin-right: 30px;
}
.site-header .logo img {
  height: 35px;
  display: block;
}

/* Sadece masaüstü için logoyu sağa kaydır */
@media (min-width: 768px) {
  .site-header .logo {
    margin-left: 130px;
  }
}



/* Hamburger (mobil) */
.menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;                /* flex-start’tan sonra menüyü sona iter */
}

/* Dil Seçici */
.lang-switcher {
  display: flex;
  gap: 10px;
  margin-right: 15px;
}
.lang-switcher img {
  height: 25px;
  width: 27px;
  cursor: pointer;
  transition: transform 0.2s;
}
.lang-switcher img:hover {
  transform: scale(1.1);
}

/* Menü Listesi */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav li {
  position: relative;
  margin-left: -12px;               /* üçgen kesikli üst üste binme */
  background-color: #c00;
  clip-path: polygon(15% 0%,100% 0%,85% 100%,0% 100%);
  transition: background 0.3s, transform 0.3s;
  z-index: 1;
}
.main-nav li:first-child {
  margin-left: 0;
}
.main-nav a {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}
.main-nav li:hover {
  background-color: #ff4c4c;
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

/* —— MOBİL —— */
@media (max-width: 768px) {
  .site-header {
    padding: 10px 20px;
  }
  .menu-toggle {
    display: block;
  }
  /* Başta gizli nav, hamburger’e basınca açılır */
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
  }
  .main-nav.open {
    max-height: 100vh;              /* tüm linkleri gösterecek */
  }
  .lang-switcher {
    justify-content: center;
    margin: 16px 0;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
  }
  .main-nav li {
    margin: 8px 0 0 -8px;
    clip-path: polygon(10% 0%,100% 0%,90% 100%,0% 100%);
  }
  .main-nav a {
    padding: 12px 18px;
  }
}












 
<style>
  .site-footer {
    background: #1a1a1a;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
  }
  .footer-top {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: 1px solid #333;
  }
  .footer-column {
    flex: 1;
    padding: 30px 20px;
  }
  /* Sadece ikinci ve sonrası sütunların soluna çizgi */
  .footer-column + .footer-column {
    border-left: 1px solid #333;
  }
  .footer-column h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
    position: relative;
  }
  .footer-column h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #c00;
    margin-top: 8px;
  }
  .footer-column p {
    line-height: 1.6;
    font-size: 14px;
  }
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-column ul li {
    margin-bottom: 10px;
  }
  .footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-column ul li a:hover {
    color: #fff;
  }
  .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }
  .social-icons a {
    font-size: 16px;
    color: #ccc;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #444;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s;
  }
  .social-icons a:hover {
    background: #c00;
    color: #fff;
  }
  .footer-bottom {
    text-align: center;
    padding: 15px 0;
    font-size: 13px;
    color: #777;
  }

  /* Mobil */
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
    }
    .footer-column + .footer-column {
      border-left: none;
      border-top: 1px solid #333;
    }
    .footer-column {
      padding: 20px;
    }
  }



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s;
 z-index: 9999; /* Diğer öğelerin üzerinde olacak şekilde yüksek bir değer */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe57;
}
