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

html {
    scroll-behavior: smooth;
}

/* Body */
body {
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}



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

/* Header */
.header {
  background-color: #20262F;
  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: 15px;
}

.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: -20px;
  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;
}
.nav-menu li a.active {
  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;
}

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

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

/* Tombol To Top */
#toTopBtn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 9999;
  background: #20262F;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  display: none;
  transition: background 0.2s;
}
#toTopBtn:hover {
  background: #ff6600;
}

section.product-terlaris {
    padding: 50px 100px;

  }

@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: #7f8a9a;

  }

  .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 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;
  }

  .product-rekomendasi {
    flex: 1;
    background: #ffffff;
    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-color: #20262F;
    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;
  }

  .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-green-button {
    display: flex;
    justify-content: center; /* Posisi horizontal tengah */
    align-items: center;     /* Posisi vertikal tengah (jika tinggi container diatur) */
    margin: 30px 0;
  }
  .main-green-button a {
    display: inline-block;
    background-color: #34a547;
    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-green-button a:hover {
    background-color: #1e8f49; /* 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-red-button a {
    display: inline-block;
    background-color: #aa2a2a;
    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: #cf3939; /* 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;
  }

/* ======== 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;
  }
  .nav-menu li a.active {
  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: #FE8300;
}

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

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

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

/* Form Styling */
.product-form {
  background: #fdfdfd;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-grid {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.form-group input[type="text"],
.form-group textarea,
.form-group input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  border-color: #3C9ED3;
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.btn-submit {
  background-color: #3C9ED3;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 23px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
  display: inline-block;
}

.btn-submit:hover {
  background-color: #557FFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.alert.alert-danger {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Action buttons on product detail page */
.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    margin-bottom: 30px;
}

.action-buttons .main-blue-button,
.action-buttons form {
    margin: 0;
}

.action-buttons .main-blue-button a {
    margin: 0;
}

.main-red-button-submit {
    display: inline-block;
    background-color: #b13737;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    padding: 12px 25px;
    border-radius: 23px;
    letter-spacing: 0.25px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-red-button-submit:hover {
    background-color: #a53838;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Pagination Styling */
.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: center;
    gap: 8px;
}

.page-item .page-link {
    display: block;
    padding: 10px 15px;
    color: #3C9ED3;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.page-item .page-link:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: #3C9ED3;
    border-color: #3C9ED3;
    cursor: default;
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
    border-color: #ddd;
    opacity: 0.7;
}

/* Hide default text for previous/next and use arrows */
.page-link[rel="prev"],
.page-link[rel="next"] {
    font-size: 1.2rem;
    line-height: 1;
}


.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;
}

/* 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;
}

.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;
}