/* WhatsApp Butonu Stilleri */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
  }

  .whatsapp-button:hover {
    background-color: #1ebe5d;
    color: white;
  }

  .whatsapp-button i {
    font-size: 20px;
  }

  @media (max-width: 576px) {
    .whatsapp-button {
      font-size: 14px;
      padding: 10px 16px;
      bottom: 15px;
      right: 15px;
    }

    .whatsapp-button i {
      font-size: 18px;
    }

    .button-text {
      display: inline; /* Mobilde de görünür */
    }
  }

  /* En Çok Satanlar Bölümü Stilleri */
.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 15px;
}

.section-title::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background-color: #7AB5D6;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-image {
    background-color: #f8f9fa;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.product-image img {
    max-height: 230px;
    object-fit: contain;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #7AB5D6;
}

.btn-dark {
    background-color: #212529;
    border-color: #212529;
}

.btn-dark:hover {
    background-color: #000;
    border-color: #000;
}

/* Vitamin B12 Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.vitamin-b12-section {
  background-color: #002835;
  color: #fff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.vitamin-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.3;
}

.vitamin-title .text-accent {
  color: #00cbd3;
}

.vitamin-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  color: #dce7ea;
}

.vitamin-image img {
  max-width: 100%;
  animation: float 3s ease-in-out infinite;
}

.certification-badge {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
  padding: 8px;
}

.certification-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 203, 211, 0.25);
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
  .vitamin-title {
    font-size: 2rem;
    text-align: center;
  }

  .vitamin-content p {
    text-align: left;
  }
}

/* Ozellikler Alanı Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
    .ozellikler-alani {
      background-color: #e8f4fd;
      padding: 80px 0;
      font-family: 'Poppins', sans-serif;
      position: relative;
      overflow: hidden;
    }
    .ozellikler-container {
      max-width: 1200px;
      margin: auto;
      padding: 0 20px;
    }
    .ozellikler-baslik {
      margin-bottom: 60px;
      text-align: center;
    }
    .ozellikler-subtitle {
      color: #00bcd4;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: 1px;
      display: block;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .ozellikler-title {
      font-size: 2.5rem;
      font-weight: 600;
      color: #111;
    }
    .ozellikler-icerik {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .ozellikler-sol,
    .ozellikler-sag {
      flex: 1 1 30%;
      display: flex;
      flex-direction: column;
      gap: 40px;
    }
    .ozellikler-gorsel {
      flex: 1 1 30%;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 20px;
      padding: 20px;
      position: relative;
      z-index: 1;
    }
    .ozellikler-urun {
      max-width: 240px;
      width: 100%;
      filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
    }
    .ozellik-kart {
      display: flex;
      align-items: center;
      transition: all 0.3s ease;
      padding: 10px;
      border-radius: 12px;
    }
    .ozellik-kart:hover {
      background-color: rgba(255, 255, 255, 0.7);
      transform: translateY(-3px);
      box-shadow: 0 6px 15px rgba(0,0,0,0.05);
    }
    .ozellik-kart:hover .ozellik-daire {
      background-color: #00bcd4;
      color: white;
    }
    .ozellik-daire {
      width: 60px;
      height: 60px;
      background: #fff;
      border-radius: 50%;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      font-weight: 600;
      font-size: 1.2rem;
      margin-right: 20px;
      color: #00bcd4;
      transition: background 0.3s ease, color 0.3s ease;
      flex-shrink: 0;
    }
    .ozellik-yazi p {
      font-size: 1rem;
      color: #333;
      margin: 0;
      line-height: 1.6;
    }
    /* Yaprak */
    .ozellikler-yaprak {
      position: absolute;
      bottom: 20px;
      right: -80px;
      z-index: 0;
      pointer-events: none;
    }
    .yaprak {
      width: 320px;
      opacity: 0.4;
    }
    /* Mobil Uyum */
    @media (max-width: 992px) {
      .ozellikler-icerik {
        flex-direction: column;
        align-items: center;
      }
      .ozellikler-sol,
      .ozellikler-sag,
      .ozellikler-gorsel {
        flex: 1 1 100%;
        width: 100%;
      }
      .ozellikler-gorsel {
        padding: 30px 0;
        order: -1;
      }
      .ozellikler-yaprak {
        display: none;
      }
      .ozellikler-title {
        font-size: 2rem;
      }
    }

/* Coconut Section Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.coconut-section {
  background: #f8f9fa;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.coconut-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
}

.coconut-left {
  flex: 1 1 45%;
  text-align: center;
}

.coconut-device {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.coconut-right {
  flex: 1 1 50%;
}

.coconut-subtitle {
  color: #00bcd4;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.coconut-title {
  font-size: 2.4rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 15px;
}

.coconut-desc {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.6;
}

.coconut-image {
  text-align: center;
  margin-bottom: 30px;
}

.coconut-charcoal {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.coconut-list {
  list-style: none;
  padding-left: 0;
}

.coconut-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.coconut-list i {
  position: absolute;
  top: 4px;
  left: 0;
  color: #00bcd4;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .coconut-container {
    flex-direction: column;
    text-align: center;
  }

  .coconut-title {
    font-size: 2rem;
  }

  .coconut-left, .coconut-right {
    flex: 1 1 100%;
  }

  .coconut-right {
    margin-top: 30px;
  }
}

/* Farklar Section Stilleri */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.farklar-section {
  background-color: #e8f4fd;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.farklar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.farklar-head {
  text-align: center;
  margin-bottom: 50px;
}

.farklar-subtitle {
  color: #00bcd4;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 8px;
}

.farklar-title {
  font-size: 2.4rem;
  color: #111;
  font-weight: 600;
  margin-bottom: 10px;
}

.farklar-desc {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.farklar-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

.fark-kart {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fark-kart:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.fark-icon {
  width: 80px;
  height: 80px;
  background-color: #27c9d3;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.fark-kart h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 10px;
}

.fark-kart p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Yaprak */
.farklar-leaf {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.leaf-img {
  width: 300px;
  opacity: 0.8;
  max-width: 100%;
}

/* Responsive */
@media (max-width: 992px) {
  .farklar-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .farklar-cards {
    grid-template-columns: 1fr;
  }

  .farklar-title {
    font-size: 2rem;
  }

  .leaf-img {
    display: none;
  }
}

/* Yorumlar Section Stilleri */
.yorumlar-section {
  background-color: #012b34;
  color: #fff;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.yorumlar-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.yorumlar-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.yorumlar-subtitle {
  color: #00cbd3;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.yorumlar-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.yorumlar-desc {
  font-size: 1rem;
  color: #cceff3;
  line-height: 1.6;
}

.yorumlar-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.yorum-kart {
  background: #fff;
  color: #111;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.yorum-kart:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.yorum-ust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.yorum-ust strong {
  font-size: 1rem;
  font-weight: 600;
}

.yorum-ust span {
  font-size: 0.85rem;
  color: #888;
}

.yorum-ust i {
  font-size: 1.3rem;
  color: #00cbd3;
}

.yorum-icerik p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.yorum-yildiz i {
  color: #00cbd3;
  font-size: 1rem;
  margin-right: 2px;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .yorumlar-title {
    font-size: 2rem;
  }
}