/* Reset & Dasar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}

.page-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-container > footer {
  margin-top: auto;
  background-color: #ebe9e9;;
  color: white;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  border-top: 1px solid #ddd;
}

body {
  padding-top: 80px;
}

/* =================== HEADER =================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  background-color: #e2e2e2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
  gap: 50px;
}

.header-center {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 10;
  font-size: 14px;
  font-weight: bold;
  color: #e60000;
  justify-content: center;
}

/* LOGO USAHA */
.logo img {
  display: block;
  height: 50px;
}

/* MENU NAVIGASI */
.Navigasi {
  display: flex;
  justify-content: center;
  background-color: #9d0000;
  border-radius: 5px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.0888);
}

.Sub-Navigasi {
  list-style-type: none;
  display: flex;
  gap: 4px;
}

.Sub-Navigasi > li {
  position: relative;
}

.Sub-Navigasi a {
  color: white;
  font-weight: bold;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s;
}

.Sub-Navigasi a:hover {
  background-color: white;
  color: black;
}

.Sub-Kategori {
  display: none;
  position: absolute;
  top: 105%;
  left: 0;
  background-color: #ecf0f1;
  min-width: 190px;
  z-index: 1;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  list-style: none;
}

.Sub-Kategori li {
  border-bottom: 1px solid #ccc;
}

.Sub-Kategori li:last-child {
  border-bottom: none;
}

.Sub-Kategori a {
  color: #2c3e50;
  padding: 10px 16px;
  text-decoration: none;
}

.search-container {
    width: 100%;
    max-width: 550px;
    min-width: 100px;
}

.Sub-Kategori a:hover {
  background-color: #9d0000;
  color: white;
}

.Menu-Kategori:hover .Sub-Kategori {
  display: block;
}



.search-box {
  background: #eee;
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
}

.search-box input[type="search"] {
  border: none;
  background: transparent;
  outline: none;
  padding: 5px 10px;
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: #9d0000;
}

.Register-Login-Button {
  width: 100%;
}

.Register-Login-Button a {
  width: 100%;
  padding: 8px 16px;
  background-color: #9d0000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.Register-Login-Button a:hover {
  background-color: #ffffff;
  color: #222;
}


/* =================== MODAL LOGIN & REGISTER =================== */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 6% auto;
  padding: 30px;
  border-radius: 10px;
  width: 380px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  position: relative;
  transition: width 0.3s ease;
}

.modal-content.register-active {
  width: 500px;
}

.close {
  position: absolute;
  top: 1px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

.close:hover {
  color: #9d0000;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab-btn {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background-color: #f1f1f1;
  border: none;
  font-weight: bold;
}

.tab-btn.active {
  background-color: #9d0000;
  color: white;
}

.tab-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  height: 0;
  overflow: hidden;
  display: none;
}

.tab-content.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  height: auto;
  display: block;
}

.modal-content form {
  display: flex;
  flex-direction: column;
}

.modal-content input,
.modal-content select,
.modal-content textarea {
  padding: 8px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  box-sizing: border-box;
  resize: none;
}

.modal-content input:focus,
.modal-content select:focus,
.modal-content textarea:focus {
  border-color: #9d0000;
  outline: none;
}

.btn-cancel, .btn-submit {
  padding: 10px;
  background-color: #9d0000;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cancel {
  background-color: #9d0000;
}

.btn-cancel:hover, .btn-submit:hover {
  background-color: #117a65;
}

.btn-submit:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.form-group {
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1px;
  color: #333;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 48%;
}

.login-link a {
  text-decoration: none;
  color: #9d0000;
}

.login-link a:hover {
  color: #117a65;
}


/* HEADER KHUSUS USER */
.header-center {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  flex: 10;
  justify-content: center;
}

.logo img {
  height: 50px;
}

/* MENU NAVIGATION */
.Navigasi {
    display: flex;
    justify-content: center;
    background-color: #9d0000;
    border-radius: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.0888);
}


.Sub-Kategori li {
  border-bottom: 1px solid #ccc;
}

.Sub-Kategori li:last-child {
  border-bottom: none;
}

.Sub-Kategori a {
  color: #2c3e50;
  padding: 10px 16px;
  text-decoration: none;
  font-weight: normal;
}

.Sub-Kategori a:hover {
  background-color: #9d0000;
  color: white;
}

.Menu-Kategori:hover .Sub-Kategori {
  display: block;
}

/* HEADER (TOKO SAYA DAN PROFIL */
.header-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.toko-button,
.profil-button {
  width: 40px;
  height: 40px;
  background-color: #9d0000;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.toko-button:hover,
.profil-button:hover {
  background-color: white;
}

.toko-button img {
    width: 30px;
  height: 30px;
  object-fit: contain;
}

.profil-button img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 20%;
}

.tooltip {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #9d0000;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #9d0000 transparent;
}

.nav-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.tooltip:hover {
  color: #ccc;
}

.tooltip-profil {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #9d0000;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 100;
  text-align: left;
}

.tooltip-profil::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent #9d0000 transparent;
}

.profil-button:hover ~ .tooltip-profil,
.tooltip-profil:hover {
  opacity: 1;
  visibility: visible;
}

.profil-nama,
.logout-link {
  color: white;
  text-decoration: none;
  display: block;
}

.profil-nama {
  font-weight: bold;
  margin-bottom: 4px;
}

.profil-nama:hover,
.logout-link:hover {
  color: #ccc;
}

.tooltip-divider {
  border: 0;
  height: 1px;
  background-color: white;
  margin: 4px 0;
  opacity: 0.4;
}

/* === CONTAINER BANNER === */
.Benner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  background: linear-gradient(to right, #9d0000, #ff0000);
  color: white;
  flex-wrap: wrap;
}


/* Breadcrumb */
.container-breadcrumb {
  max-width: 1300px;   /* atau 1100px, sesuaikan */
  margin:  auto;
  padding: 10px 20px;
  height: 40px;
  margin-top: 20px;
  font-size: 14px;
  background-color: white;
  color: #9d0000;
}

.container-breadcrumb a {
  color: #000000;
  text-decoration: none;
}

.container-breadcrumb span {
  color: #bd0202;
}

/* MAIN DETAIL PRODUK */
.container {
  max-width: 1300px;
  margin: auto;
  padding: 8px 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content:left;
  gap: 20px;
}

.product-column-left {
  display: flex;
  flex-direction: column;
  max-width: 420px;
  flex: 1;
  gap: 20px;
}

.product-image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  object-fit: contain;
}

.preview-image-container {
  width: 100%;
  height: 450px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center; /* agar gambar selalu center */
  overflow: hidden;    /* penting, biar gambar besar tidak keluar */
}

.preview-image {
  width: 400px;              /* atur lebar tetap */
  height: 400px;             /* atur tinggi tetap */
  object-fit: contain;         /* ini penting agar gambar menyesuaikan kotaknya */
}

.thumbnail-container {
  height: 30%;
  width: 400px;
  display: flex;
  gap: 10px;
  flex-wrap: nowrap; /* Gambar akan selalu sejajar ke samping */
  overflow-x: auto;   /* Tambahkan scroll horizontal jika gambar banyak */
  padding-top: 8px;
  padding-bottom: 8px; /* Sedikit ruang bawah agar tidak terpotong */
  padding-left: 5px;
}

.thumbnail-container img {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: contain;        /* Potong bagian gambar agar pas */
  border-radius: 6px;
  border: 2px solid transparent;
  transition: border 0.3s;
}

.thumbnail-container img:hover {
  border: 2px solid #117a65;
}

.thumbnail img {
  width: 60px;
  margin-top: 10px;
  border-radius: 4px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #aaa;
  cursor: pointer;
}

.thumbnail:hover {
  transform: scale(1.05);
  border-color: #9d0000;
}

.thumbnail.active {
  border: 2px solid #117a65;
}


/* INFORMASI TOKO */
.store-info {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-family: 'Segoe UI', sans-serif;
}

.store-header {
  display: flex;
  align-items:center;
  gap: 10px;
}

.store-header img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0%;  
}

.store-header p {
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  margin-bottom: 10px;
}

.store-info p a {  
  color: #9d0000;
  text-decoration: none;
  font-style: italic;
}

.btn-kunjungi-toko {
  color: #9d0000;
  background-color: transparent;
  
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-kunjungi-toko:hover {
  color: #117a65;
}


/* Info Produk */
.product-info {
  max-width: 500px;
  margin-left: 5px;
}

.product-info h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #117a65;
}

.product-info h2 {
  font-size: 20px;
  color: #000;
  margin-bottom: 5px;
}

.product-info .note {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}

.description h3 {
  font-size: 16px;
  margin-bottom: 4px;
}


.qty-box input[type="number"] {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 16px;
  font-weight: bold;
}


.qty-box button {
  width: 28px;
  height: 28px;
  font-size: 18px;
  background-color: #f0f0f0;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.stok {
  font-size: 12px;
  color: #555;
}

/* Cart Action */
.cart-action {
  margin-top: 20px;
}

.cart-action a:hover {
  background-color: #117a65;
  

}

.add-to-cart {
  background-color: #9d0000;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  margin-right: 12px;
  text-decoration: none;
}

.total-harga {
  font-weight: bold;
  font-size: 14px;
}

.pengiriman-warning {
  margin-top: 12px;
  font-size: 13px;
  color: #aa7a00;
  padding: 10px;
  border-radius: 8px;
  display: inline-block;
}

/* SECTION PRODUK TERKAIT */
/* === Produk Section === */
.product-section {
  padding: 20px;
}

.daftar-produk {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 20px;
}

.card-produk {
  width: 280px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 16px;
  box-sizing: border-box;
  text-align: left;
  margin-right: 20px;
}

.card-produk img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.card-produk h3 {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.tabel-produk-info {
  width: 100%;
  font-size: 13px;
  border-collapse: collapse;
}

.tabel-produk-info th {
  text-align: left;
  vertical-align: top;
  padding-right: 8px;
  font-weight: bold;
  width: 80px;
}

.tabel-produk-info td {
  text-align: left;
  vertical-align: top;
  text-decoration: none
}

.card-link:hover .card-produk {
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  transform: scale(1.02);
  transition: 0.3s;
  cursor: pointer;
}

.card-link {
  text-decoration: none;
  color: #222;
}

.harga-produk {
  color: #9d0000; /* Merah elegan */
  font-size: 1.2em; /* Sedikit lebih besar */
  justify-items: center;
}


/* Footer */
.footer-detail {
  background-color: #ebe9e9;
  color: white;
  padding: 18px;
  text-align: left;
  font-size: 14px;
}

.footer-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin: auto;
  padding-bottom: 24px;
  border-bottom: 1px solid #ccc;
  gap: 40px;
  text-align: left;
}

.footer-categories h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #696969;
}

.footer-categories ul {
  list-style: none;
  padding: 0;
}

.footer-categories li {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-categories li a {
  color: #333;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 14px;
  color: #333;
}

.customer-service-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #9d0000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.customer-service-btn:hover {
  background-color: #117a65;
}


/* Responsive untuk Mobile */
@media (max-width: 768px) {
  .Register-Login-Button {
    margin-top: 10px;
    margin-bottom: 10px;
  }

.container-breadcrumb {
  margin-top: 80px;
  padding: 0px 0px 0px 8px;
}

/* Header */
  .header {
    flex-direction: column;
    padding: 8px 15px;
    gap: 10px;
  }

  .header-center {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .logo img {
    height: 40px;
  }

  .search-container {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 8px;
    max-width: 100%;
  }

.search-box {
  background: #eee;
  width: 100%;
  border-radius: 8px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
}

.search-box input[type="search"] {
  border: none;
  background: transparent;
  outline: none;
  padding: 5px 10px;
  width: 100%;
}

.header-nav {
    display: none;
}

  /* Menu Navigasi (hamburger) */

.Navigasi {
        background: #9d0000;
        height: 40px;
        width: 100%;
        padding: 0px;
    }

  /* Menu List */
.Sub-Navigasi {
        position: relative;
        z-index: 2000;
        bottom: 0px;
        height: 100%;
        width: 100%;
    }

.Menu-Kategori > .Sub-Kategori {
        display: none;
        position: static !important;
        width: 100% !important;
        margin: 5px 0px 0px 0px;
        padding: 0;
        list-style: none;
        border: 1px solid #ccc;
        border-radius: 0 0 8px 8px;
        box-shadow: none;
        background: #fff;
    }

.Sub-Navigasi > li {
    width: 100%;
    align-items: center;
}

.Sub-Navigasi li a {
    padding: 9px 0px 9px 0px;
    width: 100%;
    text-align: center;
  }

.Button-Menu {
    cursor: pointer;
    padding: 10px;
    color: #fff;
    border-radius: 0px;
}  

.Sub-Kategori li {
  border-bottom: none
}


.Sub-Kategori.Sub-Kategori a {
    padding: 2px 0px 2px 10px;
    display: block;
    color: rgb(50, 50, 50);
    font-weight: bold;
    text-decoration: none;
    font-weight: normal;
    text-align: left;
}

.preview-image-container {
    height: 220px;
}





.modal {
  display: none;
  justify-content: center; /* Center horizontal */
  align-items: flex-start;     /* Center vertical */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  overflow-y: auto;
  margin-top: auto;
  padding: 75px; /* biar ada jarak di layar kecil */
  padding-top: 0px;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 7px;
  width: auto;
  max-width: 100%; /* Biar nggak terlalu lebar */
  box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  position: relative;
  margin: auto; /* pastikan auto center */
}

.form-group {
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.form-row {
  flex: 2;
  max-width: 100%;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 12px;
  width: 100%;
}

  .modal-content {
    margin-top: 210px;
  }

.close {
  position: absolute;
  top: -1px;
  right: 6px;
  font-size: 24px;
  cursor: pointer;
  color: #aaa;
}

/* Container utama jadi kolom */
  .container {
    display: flex;
    flex-wrap: nowrap; /* Biar tetap 2 kolom */
    gap: 10px;
    margin-top: 10px;
  }

  /* Gambar produk full width */
  .product-column-left {
    max-width: 50%;
    flex: 1;
  }

  .preview-image {
    width: 100%;
    height: 200px;
    max-width: 350px;
    margin-top: 10px;
  }

  .thumbnail-container {
    max-width: 100%;
    min-width: 10%;
    height: 80px;
  }

  /* Info produk di bawah gambar */
  .product-info {
    flex: 1; /* 50% lebar */
    max-width: 50%;
  }

  .product-info h1 {
    font-size: 20px;
    margin: 0px;
  }

  .product-info h2 {
    font-size: 20px;
    margin: 0px;
  }

  /* Tombol add-to-cart dan qty full width */
  .cart-action {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    width: 100%;

  }

  .cart-action a {
    text-align: center;
    padding: 5px;
  }

.total-harga {
  justify-items: left;
  font-size: 16px;
  text-align: center;
  width: 100%;
  }

  .add-to-cart {
    width: 100%;
    height: 30px;    
    border-radius: 7px;
    border-width: 10%;
    gap: 0px;
    margin-right: 0px;
    margin-top: 0px;
  }

  .pengiriman-warning {
    padding: 0px;
    margin-top: 0px;
    text-align: left;
  }

.description {
  width: 100%;
}

  .description h3{
    font-size: 14px;
    margin-bottom: 0px;
    text-align: left;
  }
  .description p {
    font-size: 12px;
    margin-bottom: 0px;
    text-align: left;
  }


  /* Produk terkait rapat & full width */
  .daftar-produk {
    justify-content: center;
  }

  .card-produk {
    width: 100%;
    max-width: 300px;
  }

  /* Header lebih rapat */
  .header {
    flex-direction: column;
    gap: 10px;
    padding: 8px 5px;
  }

  .search-box {
    width: 100%;
  }
}


/* Produk */
@media (max-width: 767px) {
    
.product-section {
    padding: 8px;
}
  .product-section h1 {
    font-size: 14px;
  }

  .card-link h3 {
    font-size: 13px;
    padding: 0px;
    margin: 0;
  }

  .harga-produk {    
    font-size: 12px;
  }


  .tabel-produk-info {
    font-size: 12px;
  }

  .tabel-produk-info th {
    width: 10px;
    color: #117a65;
  }

  .daftar-produk {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0px;
    margin-top: 0px;
  }

  .card-produk {
    width: 100%; /* satu kolom di HP */
    padding: 2px;
    height: 250px;
    overflow-y: auto;
  }

  .card-produk img {
    height: 140px;
  }

.pembatas {
  width: 98%;
  height: 1px;        /* tebal garis */
  background-color: #BEBDB8; /* warna hitam */
  margin: 0px 5px 0px 5px;     /* jarak atas bawah */
}


    /* Footer */
  .footer-detail {
    font-size: 12px;
    padding: 12px;
    width: 100%;
    max-height: 150%;
  }

.footer-categories {
    justify-content: center;
    flex-wrap: wrap;
    max-width: 100%;
    margin: auto;
    padding-bottom: 0px;
    border-bottom: 1px solid #ccc;
    gap: 15px;
    text-align: left;
}

.page-container > footer {
    padding: 8px 4px 0px 4px;
}

.footer-bottom {
    padding: 10px;
}

.footer-categories li {
  font-size: 12px;
}

.footer-categories h4 {
  font-size: 14px;
}

.customer-service-btn {
    display: none;
}

}
