/* ==== GLOBAL STYLES ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f5f5f5;
  overflow-x: hidden;
}

/* ====== HEADER STYLES ====== */
.navbar-container {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  padding: 12px 30px;
  width: 90%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.navbar-container.scrolled .navbar {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 8px 30px;
}

.logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #e74c3c;
}

.dropdown-produk > a::after,
.dropdown-panduan > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s;
}

.dropdown-produk > a.active::after,
.dropdown-panduan > a.active::after {
  transform: rotate(180deg);
}

.dropdown-container {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 25px 10% 30px;
  display: none;
  z-index: 1000;
}

.dropdown-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}

.dropdown-list {
  list-style: none;
  flex: 1;
}

.dropdown-list h4 {
  color: #e74c3c;
  margin-bottom: 15px;
  font-size: 18px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

.dropdown-list li {
  margin-bottom: 10px;
}

.dropdown-list a {
  color: #333 !important;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  padding: 5px 0;
}

.dropdown-list a:hover {
  color: #e74c3c !important;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.1);
  z-index: 999;
  display: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* PRODUCT STYLES */
.product-container {
  display: flex;
  max-width: 1100px;
  margin: 70px auto 40px;
  gap: 40px;
  background: transparent;
  padding: 10px;
}

/* SLIDER */
.slider {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-content {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.slider-content img#main-img {
  width: 100%;
  max-width: 400px;
  height: 400px;        /* atur tinggi sesuai keinginan */
  border-radius: 8px;
  object-fit: cover;    /* gambar akan dipotong agar penuh */
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thumbnails img {
  width: 100%;
  height: 80px;
  border: 2px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.thumbnails img:hover {
  border-color: #000;
}

/* DETAILS */
.details {
  flex: 1;
  padding: 10px;
}

.details h2 {
  font-size: 28px;
  margin-bottom: 2px;
}

.details p {
  margin: 2px 0;
  color: #444;
}

/* HARGA UTAMA */
.main-price {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 20px 0; /* 0 atas, 20px bawah */
  color: black;
}

/* BUTTON HARGA */
.price-buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.price-buttons button {
  padding: 12px 18px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-size: 14px;
  background: navy;
  color: white;   /* tambahkan ini */
  transition: 0.3s;
}

.price-buttons button:hover {
  background: #ccc;
}

.price-buttons button.active {
  background: #ef6c00;
  color: white;
}

.desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.buttons {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}

.buttons button {
  padding: 14px 24px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.add-cart {
  background: #ef6c00;
  color: white;
  border: none;
}

.wishlist {
  border: 1px solid #aaa;
  background: navy;
  color: white;
}

.wishlist:hover {
  background: #f0f0f0;
}

/* LOGO BANNER */
.logo-section {
  width: 100%;
  margin: 40px 0;
}

.logo-banner {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.logo-banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-banner .center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 40%;
  max-height: 40%;
}

/* ====== PRODUK SECTION ====== */
.product-section {
  padding: 40px 20px;
  background: #fff;
}

.product-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.judul-pilihan {
  display: flex;
  flex-direction: column;
}

.judul-kuning {
  color: #ff7f00;
  font-size: 24px;
  font-weight: bold;
}

.judul-hitam {
  color: #000;
  font-size: 30px;
  font-weight: bold;
}

@media (max-width: 768px) {
  .details .judul-hitam {
    font-size: 20px;
  }
}

.btn-lihat {
  background-color: #ff7f00;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn-lihat:hover {
  background-color: #e67200;
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
  height: 100%;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 16px;
  margin: 12px 0 8px;
  font-weight: bold;
}

.product-card p {
  font-size: 13px;
  color: #666;
  margin-bottom: 12px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn {
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background-color 0.3s;
}

.btn.orange {
  background-color: #ef6c00;
  color: white;
}

.btn.orange:hover {
  background-color: #d45f00;
}

.btn.blue {
  background-color: navy;
  color: white;
}

.btn.blue:hover {
  background-color: #000066;
}

.product-slider {
  position: relative;
  padding: 20px 0 40px;
}

.product-slider .swiper-button-next,
.product-slider .swiper-button-prev {
  color: #333;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.product-slider .swiper-button-next:after,
.product-slider .swiper-button-prev:after {
  font-size: 20px;
}

.product-slider .swiper-button-next:hover,
.product-slider .swiper-button-prev:hover {
  background: #ff7f00;
  color: white;
}

.swiper-pagination-bullet-active {
  background: #ff7f00 !important;
}

.garis-bawah {
  height: 3px;
  background: linear-gradient(to right, #007bff, #ff7f00);
  width: 100%;
  margin: 20px 0;
}

.footer-line {
  height: 25px;
  background: linear-gradient(to right, #007bff, #ff7f00);
  width: 100%;
  margin: 0;
}

/* ====== FOOTER STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

/* Footer Styles */
.site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.8fr 1.2fr 2fr 0.5fr; /* Kolom peta lebih lebar */
  gap: 10px; /* Gap sangat kecil */
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* tetap rata kiri */
}

.footer-logo {
  width: 100%; /* mengikuti lebar kolom */
  max-width: 280px; /* dibatasi lebih besar */
  height: auto;
  margin-bottom: 15px;
}

.footer-copy {
  font-size: 14px;
  color: #bdc3c7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.footer-nav a {
  color: #ecf0f1;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #3498db;
}

.footer-embed {
  width: 100%;
  margin-left: -30px; /* Negatif margin untuk mendekatkan */
}

.footer-embed iframe {
  width: 100%;
  height: 150px; /* Lebih pendek */
  border-radius: 8px;
  border: none;
  min-width: 300px; /* Lebar minimum */
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-end;
  padding-left: 0;
  margin-left: -20px; /* Negatif margin untuk mendekatkan */
}

.footer-social img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s;
}

/* ====== RESPONSIVE STYLES ====== */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-container {
    position: static;
    padding: 15px 0 0 20px;
    background-color: transparent;
    box-shadow: none;
  }

  .dropdown-list a {
    color: white !important;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown-produk > a::after,
  .dropdown-panduan > a::after {
    display: none;
  }

  .product-container {
    flex-direction: column;
    margin-top: 100px;
  }

  .slider-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .thumbnails {
    flex-direction: row;
    margin-top: 15px;
  }

  .product-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .btn-lihat {
    align-self: flex-end;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo-section {
    grid-column: 1 / span 2;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    grid-column: 1 / span 1;
    margin-left: 0;
    align-items: center;
  }

  .footer-embed {
    grid-column: 2 / span 1;
    margin-left: 0;
  }

  .footer-social {
    grid-column: 1 / span 2;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .price-buttons {
    flex-direction: column;
    gap: 8px;
  }

  .price-buttons button {
    background: navy;   /* warna default */
    color: white;       /* teks tetap putih */
    transition: 0.3s;
  }

  .price-buttons button:hover {
    background: #ff7f00; /* warna saat hover */
    color: white;        /* teks tetap putih */
  }


  .buttons {
    flex-direction: column;
  }
  
  .judul-kuning,
  .judul-hitam {
    font-size: 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-logo-section,
  .footer-nav,
  .footer-embed,
  .footer-social {
    grid-column: 1 / span 1;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 10px;
  }

  .footer-embed iframe {
    height: 120px;
    min-width: 100%;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }

  .footer-logo {
    max-width: 200px;
  }
  
  .product-slider .swiper-button-next,
  .product-slider .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 15px;
  }

  .logo img {
    height: 30px;
  }

  .product-container {
    gap: 20px;
    padding: 10px;
  }

  .details h2 {
    font-size: 24px;
  }

  .main-price {
    font-size: 28px;
  }

  .logo-banner {
    height: 180px;
  }
  
  .product-section {
    padding: 20px 15px;
  }
  
  .product-card {
    padding: 15px;
  }
  
  .btn-group {
    flex-direction: column;
  }
}
    /* ====== RESPONSIVE STYLES ====== */
    @media (max-width: 992px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 20px 20px;
      }

      .nav-links.active {
        display: flex;
      }

      .dropdown-container {
        position: static;
        padding: 15px 0 0 20px;
        background-color: transparent;
        box-shadow: none;
      }

      .dropdown-list a {
        color: white !important;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .dropdown-produk > a::after,
      .dropdown-panduan > a::after {
        display: none;
      }

      .product-container {
        flex-direction: column;
        margin-top: 100px;
      }

      .slider-content {
        flex-direction: column-reverse;
        align-items: center;
      }

      .thumbnails {
        flex-direction: row;
        margin-top: 15px;
      }

      .product-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
      
      .btn-lihat {
        align-self: flex-end;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
      }

      .footer-logo-section {
        grid-column: 1 / span 2;
        align-items: center;
        text-align: center;
      }

      .footer-nav {
        grid-column: 1 / span 1;
        margin-left: 0;
        align-items: center;
      }

      .footer-embed {
        grid-column: 2 / span 1;
        margin-left: 0;
      }

      .footer-social {
        grid-column: 1 / span 2;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
      }
    }

    @media (max-width: 768px) {
      .price-buttons {
        flex-direction: column;
        gap: 8px;
      }

      .buttons {
        flex-direction: column;
      }
      
      .judul-kuning,
      .judul-hitam {
        font-size: 20px;
      }

      .footer-container {
        grid-template-columns: 1fr;
      }

      .footer-logo-section,
      .footer-nav,
      .footer-embed,
      .footer-social {
        grid-column: 1 / span 1;
        align-items: center;
        text-align: center;
      }

      .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px 10px;
      }

      .footer-embed iframe {
        height: 120px;
        min-width: 100%;
      }

      .footer-social {
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
      }

      .footer-logo {
        max-width: 200px;
      }
      
      .product-slider .swiper-button-next,
      .product-slider .swiper-button-prev {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 10px 15px;
      }

      .logo img {
        height: 30px;
      }

      .product-container {
        gap: 20px;
        padding: 10px;
      }

      .details h2 {
        font-size: 24px;
      }

      .main-price {
        font-size: 28px;
      }

      .logo-banner {
        height: 180px;
      }
      
      .product-section {
        padding: 20px 15px;
      }
      
      .product-card {
        padding: 15px;
      }
      
      .btn-group {
        flex-direction: column;
      }
    }
    
.floating-buttons {
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px; /* rapat banget, bisa 0 kalau mau nempel */
}

.floating-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* BONUS */
.floating-buttons .bonus-btn img {
  width: 50px;   /* kecil */
  height: auto;
  object-fit: contain;
}

/* HUBUNGI WA */
.floating-buttons .wa-btn img {
  width: 250px;  /* tetap seperti kode awal */
  height: auto;
  object-fit: contain;
  content: url("img/logoicon-08.png");
}

/* Mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
    gap: 1px; /* lebih rapat lagi */
  }

  .floating-buttons .bonus-btn img,
  .floating-buttons .wa-btn img {
    width: 70px;   /* sama besar di mobile */
    height: auto;
  }

  .floating-buttons .wa-btn img {
    content: url("img/logoicon-mobile.png");
  }
}
    /* RESPONSIVE */
@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 20px;
    border-radius: 0 0 20px 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-container {
    width: 100%;
    max-height: 70vh;       /* batasi tinggi dropdown */
    overflow-y: auto;       /* scroll kalau konten panjang */
    padding: 20px;
    background-color: rgba(0,0,0,0.95);
    border-radius: 0;
    box-shadow: none;
    position: static;
  }

  .dropdown-content {
    flex-direction: column;
    gap: 15px;
  }

  .dropdown-list {
    width: 100%;
  }

  /* === "Semua Produk" sebagai tombol kembali === */
  .dropdown-list h4 {
    color: #e74c3c;
    font-size: 16px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 5px;
    cursor: pointer;          /* bisa diklik */
  }

  .dropdown-list h4:hover {
    color: #fff;
  }

  .dropdown-list a {
    color: #fff !important;
    font-size: 15px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .dropdown-list a:last-child {
    border-bottom: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .dropdown-produk > a::after,
  .dropdown-panduan > a::after {
    display: none;
  }
}




 /* ====== DRYFIT DETAILS ====== */
    .dryfit-details {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    
    .section-title {
      font-size: 24px;
      margin-bottom: 20px;
      color: #333;
      border-bottom: 2px solid #ff7f00;
      padding-bottom: 10px;
    }
    
    /* ====== DROPDOWN STYLES ====== */
    .dropdown {
      margin-bottom: 15px;
      position: relative;
    }
    
    .selected {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 10px 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      background: #fff;
    }
    
    .dropdown-menu {
      display: none;
      position: absolute;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      width: 100%;
      max-height: 200px;
      overflow: auto;
      margin-top: 5px;
      z-index: 999;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }
    
    .dropdown .option {
      padding: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }
    
    .dropdown .option:hover {
      background: #f0f0f0;
    }
    
    .color-circle {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1px solid #ccc;
    }
    
    .pattern-circle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid #ccc;
      background-size: cover;
      background-position: center;
    }
    
    .arrow {
      margin-left: 10px;
      transition: transform 0.3s;
    }
    
    .dropdown-group {
      display: flex;
      gap: 15px;
      margin: 20px 0;
    }
    /* Gaya untuk dropdown corak dan warna */
.dropdown-group {
  margin: 15px 0;
}

.dropdown {
  position: relative;
  margin-bottom: 12px; /* Diperbesar sedikit */
}

.selected {
  padding: 10px 14px; /* Diperbesar sedikit */
  border: 1px solid #ddd;
  border-radius: 5px; /* Sudut lebih membulat */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  min-height: 22px; /* Tinggi minimum ditambah */
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px; /* Sudut lebih membulat */
  z-index: 10;
  max-height: 220px; /* Diperbesar sedikit */
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Tambahkan shadow untuk efek kedalaman */
}

.option {
  padding: 8px 14px; /* Diperbesar sedikit */
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 12px; /* Sedikit lebih besar */
  min-height: 26px; /* Tinggi minimum ditambah */
}

.option:hover {
  background-color: #f5f5f5;
}

.pattern-circle, .color-circle {
  width: 28px; /* Diperbesar signifikan */
  height: 28px; /* Diperbesar signifikan */
  border-radius: 50%;
  margin-right: 10px; /* Jarak ditambah */
  border: 1px solid #ddd;
  background-size: cover;
  background-position: center;
  flex-shrink: 0; /* Pastikan ukuran tidak menyusut */
}

.arrow {
  font-size: 10px;
  margin-left: 8px; /* Jarak panah dari teks */
}

/* Tambahan untuk membuat layout lebih seimbang */
.selected span {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.option span {
  display: flex;
  align-items: center;
}

/* ====== FLOATING BUTTONS ====== */
.floating-buttons {
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.floating-buttons a {
  display: block;
  transition: transform 0.2s ease;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* HUBUNGI WA */
.floating-buttons .wa-btn img {
  width: 250px;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom; /* penting untuk menghilangkan space */
}
.floating-buttons .bonus-btn img {
  width: 150px;
  height: auto;
  display: block;
  margin: 0;
  padding: 0;
  vertical-align: bottom; /* penting untuk menghilangkan space */
}

.bonus-btn {
  margin-bottom: -4px; /* nilai yang lebih tepat */
}

/* Mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
  }

  .floating-buttons .bonus-btn img,
  .floating-buttons .wa-btn img {
    width: 70px;
    height: auto;
  }

  .floating-buttons .wa-btn img {
    content: url("img/logoicon-mobile.png");
  }
  .floating-buttons .bonus-btn img {
    content: url("img/logo-bonus.png");
  }
  
  /* Di mobile, mungkin perlu adjustment berbeda */
  .bonus-btn {
    margin-bottom: -2px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .floating-buttons {
    bottom: 10px;
    right: 10px;
    gap: 1px; /* lebih rapat lagi */
  }

  .floating-buttons .bonus-btn img,
  .floating-buttons .wa-btn img {
    width: 70px;   /* sama besar di mobile */
    height: auto;
  }

  .floating-buttons .wa-btn img {
    content: url("img/logoicon-mobile.png");
  }
  .floating-buttons .bonus-btn img {
    content: url("img/logo-mobile.png");
  }
}
