/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Body */
body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: inherit; 
}

/* Header */
/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  background: linear-gradient(to right, #000000, #e63946);
  color: white;
  padding: 20px 0;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 15px;
}

header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* semua rata kiri */
  gap: 4px;
}

/* Logo + teks SportZone */
.logo {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: -20px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-top: 30px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.logo-text a {
  text-decoration: none;
  color: #fff;
}


/* Tagline */
.tagline {
  font-size: 14px;
  color: #fff;
  opacity: 0.8;
  margin-top: -25px;
  margin-left: 90px;
  line-height: 1.2;
  font-style: italic;
}

.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 999;
}

/* Menu navigasi default (desktop) */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: 0.3s;
}

.nav-menu li a:hover {
  color: #FFFF7F;
}


/* ===== LAYOUT UNTUK ADDRESS DAN INTRO ===== */
.info-section {
  padding: 40px 20px;
  background-size: cover;      /* Supaya gambar menutupi seluruh area */
  background-position: center; /* Fokus di tengah */
  background-repeat: no-repeat;
  position: relative;
  background-image: url("images/header-bg.jpg"); /* Gambar background */
}

.info-content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: auto 300px;
}

/* Gambar di sebelah kiri */
.info-image img {
  max-width: auto;
  height: 170px;
  object-fit: cover;
}

/* Teks di sebelah kanan */
.info-text {
  flex: 1;
}

.address,
.intro {
  margin-bottom: 20px;
}

.address h3,
.intro h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #333;
}

.address p,
.intro p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  opacity: 0.8;
}


/* Section */
.product-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

.product-section-kategori {
  padding-top: 0px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

.order-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.order-section li {
  margin-left: 50px;
}

/* Tombol Kembali ke Atas */
.to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #c02626; /* Warna sama dengan footer */
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s;
}

.to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Promo Popup */
.promo-popup {
    /* Posisi diatur oleh container */
    position: absolute;
    bottom: 0;
    right: 0;
    background: #203D43;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 320px;
    width: calc(100vw - 40px); /* Lebar popup di mobile */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.promo-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.promo-popup p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

#closePromo {
    background: #DC4E4E;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#closePromo:hover {
    background: #c74242; /* A slightly darker shade of primary */
}

.popup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-link {
    color: #F8C674;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.popup-link:hover {
    color: white;
    text-decoration: underline;
}

/* Sembunyikan tombol ke atas saat popup promo muncul */
.promo-popup.show + #toTopBtn.show {
    opacity: 0;
    pointer-events: none;
}

.promo-popup p {
    font-size: 14px;
    text-align: center;
}

/* Wadah untuk elemen fixed */
.fixed-elements-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 1023px) {
    #toTopBtn {
      display: none !important;
    }
  }

  .product-section h2 {
    font-size: 2rem;
    text-align: center;
    color: #002855;
    margin-bottom: -10px;
  }

  .product-section .section-desc {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
  }

  .product-terlaris {
    padding: 50px 50px;
    margin: 0 auto;
    background: #26292c;

  }

  .product-terlaris h2 {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: -10px;
  }

  .product-terlaris .section-desc {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.8;
  }

  .kunjungi-kami {
    padding: 50px 50px;
    margin: 0 auto;
    background: #ffffff;
  }

  .kunjungi-kami h2 {
    font-size: 2rem;
    text-align: center;
    color: #002855;
    margin-bottom: -10px;
  }

  .kunjungi-kami .section-desc {
    text-align: center;
    margin-bottom: 30px;
    color: #002855;
    opacity: 0.8;
  }


  /* Grid Produk */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .product-card {
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
  }

  .product-card:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background-color: #ABB1BA;
  }

  .product-card img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .product-card h3 {
    font-size: 1.2rem;
    color: #002855;
    margin-bottom: 8px;
  }

  .product-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
  }

  .product-card .price {
    display: block;
    font-weight: bold;
    color: #e63946;
    font-size: 1rem;
  }

  .product-card2 {
    position: relative;
    min-height: 450px;
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
  }

  .product-card2:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    background-color: #ABB1BA;
  }

  .product-card2 img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .product-card2 h3 {
    font-size: 1.2rem;
    color: #002855;
    margin-bottom: 8px;
  }

  .product-card2 p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
  }

  .product-card2 .price {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px; /* 20px di atas tombol Tanya Produk */
    display: block;
    font-weight: bold;
    color: #e63946;
    font-size: 1rem;
    text-align: center;
    z-index: 2;
  }

  .detail-card {
    background: #fff;
    border: 3px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
  }

  .detail-card img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .detail-card img.description {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
  }

  .detail-card h3 {
    font-size: 1.2rem;
    color: #002855;
    margin-bottom: 8px;
  }

  .detail-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 12px;
    text-align: left;
  }

  .detail-card .price {
    display: block;
    margin: 20px 0;
    font-weight: bold;
    color: #e63946;
    font-size: 1rem;
  }

  .product-details {
    padding: 50px 50px;
    margin: 0 auto;
    background: #fff;
    flex: 2;

  }

  .product-details h2 {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    margin-bottom: -10px;
  }

  .product-details .section-desc {
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    opacity: 0.8;
  }

  .product-details-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
  }

  .admin-terlaris-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .admin-rekomendasi-layout {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-rekomendasi {
    flex: 1;
    background: #abb1ba;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    box-shadow: 2px 2px 12px rgba(0,0,0,0.07);
  }

  .product-rekomendasi h3 {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #20262F;
  }

  .rekomendasi-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .rekomendasi-card {
    background: #f7f7f7;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    box-shadow: 1px 1px 6px rgba(0,0,0,0.05);
  }

  .rekomendasi-card a {
  text-decoration: none;
  color: inherit;
}

  .rekomendasi-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .rekomendasi-card h4 {
    font-size: 1rem;
    color: #222;
    margin-bottom: 4px;
  }

  .rekomendasi-card .price {
    color: #e63946;
    font-weight: bold;
    font-size: 0.95rem;
  }

  /* Responsive: tumpuk ke bawah di mobile */
  @media (max-width: 900px) {
    .product-details-layout {
      flex-direction: column;
      gap: 0;
    }
    .product-rekomendasi {
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 50px;
      margin-top: 0px;
      text-align: center;
      width: 90vw;
      max-width: 400px;
      display: block;
    }
  }


  /* Footer */
  .footer {
    background: linear-gradient(to right, #000000, #e63946);
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* semi transparan */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 997;
  }

  .overlay.show {
    opacity: 1;
    visibility: visible;
  }


  /* ===== SOCIAL BUTTONS ===== */
  .social-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }

  .social-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  /* Tombol WhatsApp */
  .btn-whatsapp {
    background-color: #26C862;
    color: #fff;
  }

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

  /* Tombol Instagram */
  .btn-instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
    color: #fff;
  }

  /* Tombol Youtube */
  .btn-youtube {
    background: #dd3232;
    color: #fff;
  }

  .btn-instagram:hover {
    opacity: 0.9;
  }

  /* Tombol Google Maps */
  .btn-maps {
    background-color: #4285F4; /* Warna khas Google Maps biru */
    color: #fff;
  }

  .btn-maps:hover {
    background-color: #3367d6;
  }

  .maps {
    display: flex;
    justify-content: center;
  }

  /* Icon di dalam tombol */
  .social-buttons img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  .main-red-button {
    display: flex;
    justify-content: center; /* Posisi horizontal tengah */
    align-items: center;     /* Posisi vertikal tengah (jika tinggi container diatur) */
    margin: 30px 0;
  }

  .main-red-button a {
    display: inline-block;
    background-color: #e99c29;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    margin-top: 20px;
    margin-bottom: -20px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    text-decoration: none;
  }

  .main-red-button a:hover {
    background-color: #557FFF; /* Warna hover lebih cerah */
    color: #fff;
    transform: translateY(-2px); /* Efek naik sedikit saat hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }

  .main-blue-button {
    display: flex;
    justify-content: center; /* Posisi horizontal tengah */
    align-items: center;     /* Posisi vertikal tengah (jika tinggi container diatur) */
    margin: 30px 0;
  }

  .main-blue-button a {
    display: inline-block;
    background-color: #3C9ED3;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    margin-top: 20px;
    margin-bottom: -20px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    text-decoration: none;
  }

  .main-blue-button a:hover {
    background-color: #557FFF; /* Warna hover lebih cerah */
    color: #fff;
    transform: translateY(-2px); /* Efek naik sedikit saat hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }

  /*TANYA PRODUK BUTTON*/
  .tanya-produk-button {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
  }

  .tanya-produk-button a {
    display: inline-block;
    background-color: #26C862;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    text-decoration: none;
    margin: 0;
  }

  .tanya-produk-button a:hover {
    background-color: #557FFF;
    color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }


  
  /*TANYA PRODUK DETAIL*/




  /* SEARCH BAR */
  .search-bar {
    display: flex;
    align-items: center;
    margin: 0 5px;
    gap: 1px;
  }

  .search-bar input[type="text"] {
    padding: 8px 14px;
    border: 2px solid #ffffff;
    border-radius: 18px 0 0 18px;
    font-size: 1rem;
    outline: none;
  }

  .search-bar button {
    padding: 8px 16px;
    border: none;
    background: #1A1D1C;
    color: #fff;
    border-radius: 0 18px 18px 0;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
  }

  .search-bar button:hover {
    background: #557FFF;
  }

  .search-bar input:hover {
  background: #ABB1BA;
  }

  /* Promo Popup */
.promo-popup {
    /* Posisi diatur oleh container */
    position: absolute;
    bottom: 0;
    right: 0;
    background: #203D43;
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    max-width: 320px;
    width: calc(100vw - 40px); /* Lebar popup di mobile */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.promo-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.promo-popup p {
    margin-bottom: 1rem;
    line-height: 1.4;
}

#closePromo {
    background: #DC4E4E;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#closePromo:hover {
    background: #c74242; /* A slightly darker shade of primary */
}

.popup-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.popup-link {
    color: #F8C674;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.popup-link:hover {
    color: white;
    text-decoration: underline;
}

.promo-popup p {
    font-size: 14px;
    text-align: center;
}

/* Wadah untuk elemen fixed */
.fixed-elements-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse; /* Agar toTopBtn di bawah popup */
    align-items: flex-end;
    gap: 16px;
}

/* ======== MOBILE RESPONSIVE ======== */
@media (max-width: 768px) {
  /* Tampilkan hamburger */
  .hamburger {
    display: block;
    color: #fff;
  }

  /* Sembunyikan menu default */
  .nav-menu {
    position: absolute;
    top: 55px;
    right: 10px;
    width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(17,17,17,0.2);
    list-style: none;
    flex-direction: column;
    overflow: hidden;
    
    /* Animasi awal */
    max-height: 0;           /* disembunyikan */
    opacity: 0;              /* transparan */
    transition: max-height 0.4s ease, opacity 0.4s ease;
    z-index: 998;
  }

  /* Saat menu aktif */
  .nav-menu.show {
    max-height: 500px;       /* cukup besar untuk semua menu */
    opacity: 1;   
  }

  .nav-menu li {
    padding: 0px 15px;
    border-bottom: 1px solid #20262F;
    text-align: center;
    padding-bottom: 15px;
  }

  .nav-menu li:first-child {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    text-decoration: none;
    color: #1A1D1C;
    display: block;
    transition: color 0.3s;
  }

  .nav-menu li a:hover {
    color: #fd7835;
  }

  .info-content {
    flex-direction: column; /* gambar di atas, teks di bawah */
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  .info-image img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .info-text {
    text-align: center;
  }

  .social-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .social-buttons a {
    width: 100%;
    justify-content: center;
  }


  /*.info-section {
    padding: 40px 20px;
    background: #555e6c;
  }*/

  .info-section {
    padding: 40px 20px;
    background-size: cover;      
    background-position: center; 
    background-repeat: no-repeat;
    position: relative;
    background-image: url("images/header-bg-m.jpg"); 
  }

  .logo {
    margin-left: 0px;
  }
  .tagline {
    margin-left: 90px;
  }
}

@media (max-width: 1023px) {
  .search-bar {
    width: 100%;
    margin: 16px 0 0 0;
    justify-content: center;
    order: 2;
  }
  .social-buttons {
    width: 70vw; /* 100vw - (15vw kiri + 15vw kanan) = 70vw */
    margin-left: 15vw;
    margin-right: 15vw;
    box-sizing: border-box;
  }
  .social-buttons a {
    width: 100%;
    justify-content: center;
  }
  .header .container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  nav {
    order: 1;
  }
  .address p,
  .intro p {
    margin-left: 33px;
    margin-right: 33px;
    margin-bottom: 33px;
  }
  
}

.tanya-produk-detail a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #26C862;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  border-radius: 23px;
  text-decoration: none;
  transition: background 0.2s;
}

.tanya-produk-detail a:hover {
  background-color: #1ebe5d;
}

.tanya-produk-detail a img.icon-wa {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
}

.produk-terbaru-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.produk-terbaru-title .produk-red {
  color: #595A5D;
}

.produk-terbaru-title .produk-black {
  color: #D73641;
}

.produk-terlaris-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.produk-terlaris-title .produk-red {
  color: #d1d145;
}

.produk-terlaris-title .produk-black {
  color: #ffffff;
}

.produk-terbaru-kategori {
  margin-top: 10px;
}

.produk-kategori-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 10px;
  margin-top: 10px;
}

.produk-kategori-title .produk-red {
  color: #595A5D;
}

.produk-kategori-title .produk-black {
  color: #FE8300;
}

.produk-kategori-semua {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 0px;
  margin-top: 10px;
}

.produk-kategori-semua .produk-red {
  color: #595A5D;
}

.produk-kategori-semua .produk-black {
  color: #FE8300;
}

/* Styling untuk Video Embed di halaman pengetesan */
.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* Aspect Ratio 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  border-radius: 12px; /* Menyamakan dengan product card */
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Tombol Kategori */
.category-buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 20px;
}

.category-button {
  display: inline-block;
  background-color: #FE8300;
  color: #fff;
  padding: 12px 25px;
  border-radius: 23px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-button:hover {
  background-color: #595A5D;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Penyesuaian Jarak di Halaman Kategori Semua */
.kategori-semua-page .product-details {
  padding-top: 20px;
}
