/* =========================================
   VERSI HYBRID FINAL - FIXED HARMONY
   Struktur P1 + Warna P2 + Fix Visibility
========================================= */

/* ===== 1. VARIABLES (Warna P2) ===== */

:root {
  /* Brand - Dibuat sedikit lebih 'deep' agar tidak terlalu menusuk mata */
  --primary: #15803d;          /* Hijau yang lebih solid */
  --primary-dark: #14532d;     /* Deep Forest untuk hover */
  --primary-soft: #f0fdf4;     /* Sangat lembut, hampir putih (lebih nyaman dari #dcfce7) */
  --primary-glow: rgba(21, 128, 61, 0.15); /* Opacity diturunkan agar lebih halus */
  
  /* Background & Surface - Kunci agar terlihat bersih & cerah tapi tidak silau */
  --bg-color: #fcfdfd;         /* Putih dengan sedikit rona mint/biru agar segar */
  --white: #ffffff;            /* Tetap putih murni untuk area konten utama (Card) */
  --border: #f1f5f9;           /* Lebih tipis dan samar */
  
  /* Typography - Mengurangi kontras hitam-putih yang tajam */
  --text-main: #1e293b;        /* Slate gelap, jauh lebih nyaman dibaca daripada hijau tua */
  --text-muted: #64748b;       /* Abu-abu netral untuk keterangan */
  --success: #10b981;          /* Tetap cerah untuk indikator */
}

html, body {
  margin: 0;
  padding-top: 50px;
  overflow-x: hidden;
  background-color: var(--bg-color) !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ===== 2. NAVBAR (Clean White Final) ===== */

.navbar {
  background: var(--white) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

/* brand & menu */
.navbar .nav-link,
.navbar-brand {
  color: var(--text-main) !important;
  font-weight: 700;
}

.navbar .nav-link:hover {
  color: var(--primary) !important;
}

/* search */
#searchInput {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 36px;
  font-size: 14px;
  padding-left: 14px;
  transition: all 0.2s;
}

#searchInput:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

@media (max-width: 991px) {
  /* 1. Paksa Container tetap satu baris tanpa 'pecah' */
  .navbar .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: space-between;
    padding-left: 12px;
    padding-right: 12px;
  }

  /* 2. Dilatasi Search Bar agar muat di layar sempit iPhone */
  #searchInput {
    width: 100px !important; /* Standar iPhone SE agar tidak sesak */
    font-size: 13px;
    padding: 5px 8px;
    height: 34px; /* Samakan tinggi dengan tombol lain */
  }

  /* 3. Menyelaraskan Toggler agar Simetris dengan Keranjang */
  .navbar-toggler {
    padding: 0 !important; /* Hapus padding default Bootstrap yang besar */
    width: 38px;           /* Ukuran kotak yang presisi */
    height: 34px;          /* Samakan tinggi dengan tombol keranjang & search */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dee2e6 !important; /* Border halus seperti tombol keranjang */
    border-radius: 8px !important;
  }

  /* 4. Skalakan Icon Garis Tiga agar tidak terpotong */
  .navbar-toggler-icon {
    width: 1.2rem !important;
    height: 1.2rem !important;
    background-size: contain; /* Memastikan icon garis tidak terpotong (zoom out) */
  }

  /* 5. Dropdown Menu (Floating Mode) */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  /* 6. Jarak antar icon di sebelah kanan logo */
  .navbar .d-flex.gap-3 {
    gap: 8px !important; /* Memperkecil jarak antar elemen agar muat */
  }
}


/* ===== 3. HERO & CATEGORY ===== */

/* HERO */
.hero-header {
  padding: 90px 0 40px;
  text-align: center;
}

.hero-header h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-main);
}

/* CATEGORY SECTION */
.category-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 35px;

  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  animation: fadeSlide 0.6s ease;
}

/* FILTER WRAPPER */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

/* FILTER BUTTON */
.category-filter button {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* ACTIVE BUTTON */
.category-filter button.active {
  background: var(--primary) !important;
  color: white !important;
  border-color: var(--primary);
  box-shadow: 0 4px 12px var(--primary-glow);
}

/* ===============================
   MOBILE RESPONSIVE FIX
   =============================== */
@media (max-width: 768px) {

  .hero-header {
    padding: 60px 0 30px;
  }

  .hero-header h1 {
    font-size: 32px;
  }

  .category-section {
    padding: 18px;
    border-radius: 16px;
  }

  .category-filter {
    justify-content: flex-start; /* biar gak numpuk */
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 5px;
  }

  .category-filter button {
    font-size: 13px;
    padding: 6px 14px;
    white-space: nowrap;
  }

  /* hide scrollbar biar clean */
  .category-filter::-webkit-scrollbar {
    display: none;
  }
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-filter button:active {
  transform: scale(0.95);
}

/* ===== 4. GRID & PRODUCT CARD (With Animation) ===== */
.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 5px 16px 5px;
  scrollbar-width: none;
}

.grid-mode {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.product-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  width: 190px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: all 0.25s ease;

display: flex;
  flex-direction: column;
  height: 100%; /* Atau tentukan tinggi pasti, misal: 280px */
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Mengambil sisa ruang yang ada */
  padding: 12px;
  justify-content: space-between; /* Menjaga jarak antar elemen tetap konsisten */
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 12px 24px var(--primary-glow);
}

.product-card img {
  height: 120px;
  width: 100%;
  object-fit: cover;
  border-bottom: 0.5px solid var(--border);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.product-card h6 {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 8px;
  
  /* Kunci: Batasi maksimal 2 baris teks */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.4em; /* Pastikan tinggi area judul selalu sama */
}

.sold-wrapper {
  margin-top: auto; /* Mendorong bagian ini ke paling bawah kartu */
  padding-top: 10px;
}
/* ===== 5. JASA SECTION ===== */
/* ===== 5. JASA SECTION (Tombol Sejajar Fixed) ===== */
#jasa {
  background: linear-gradient(180deg, var(--bg-color) 0%, #fef3c7 100%);
  padding: 80px 0;
}

#jasa .row {
  display: flex;
  flex-wrap: wrap;
}

#jasa .col-md-6.col-lg-3 {
  display: flex; /* Memastikan kolom memiliki tinggi yang sama */
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  width: 100%; /* Memenuhi lebar kolom */
  display: flex;
  flex-direction: column; /* Menyusun konten secara vertikal */
  animation: fadeUp 0.6s ease forwards;
  position: relative;
}

/* Memaksa elemen teks terakhir (harga) memiliki margin bawah otomatis */
.service-card .price {
  font-size: 22px;
  font-weight: 700;
  color: var(--success) !important;
  margin-bottom: auto; /* KUNCI: Mendorong tombol ke dasar kartu */
  padding-bottom: 20px;
}

.service-card .btn {
  margin-top: 0; /* Margin ditangani oleh margin-bottom milik .price */
  width: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 35px var(--primary-glow);
}

.badge-custom {
  position: absolute;
  top: 0; 
  right: 0;
  background: linear-gradient(135deg, #facc15, #f59e0b);
  color: white;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: bold;
  border-bottom-left-radius: 12px;
  z-index: 1;
}

/* ===== 6. CARA PESAN (Fix Nomor & Garis) ===== */
#cara-pesan {
  background: radial-gradient(circle at top, #fefce8, var(--bg-color));
  padding: 80px 0;
}

#cara-pesan .row::before {
  content: "";
  position: absolute;
  top: 45px; left: 10%; width: 80%; height: 4px;
  background: linear-gradient(90deg, var(--success), #a7f3d0);
  z-index: 0;
}

#cara-pesan .p-3 {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

#cara-pesan .rounded-circle {
  background: var(--primary) !important; /* Fix Biru ke Kuning */
  color: white !important;
  border: 3px solid white;
  box-shadow: 0 8px 20px var(--primary-glow);
}

/* ===== 7. PERATURAN (Clean + Elegant Frame) ===== */
#peraturan {
  background: #f9fafb !important;
  padding: 80px 0;
  color: #111827 !important;
}

#peraturan h2, 
#peraturan h5, 
#peraturan h6, 
#peraturan strong {
  color: #111827 !important;
}

#peraturan p, 
#peraturan li {
  color: #6b7280 !important;
}

/* CARD UTAMA */
#peraturan .p-4 {
  background: #ffffff;
  backdrop-filter: none;

  border: 1px solid #e5e7eb;
  border-radius: 16px;

  /* 🔥 ini upgrade utama */
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: all 0.25s ease;

  position: relative;
}

/* hover effect */
#peraturan .p-4:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0,0,0,0.08);
  border-color: #d1d5db;
}

/* 🔥 aksen tipis atas (clean, gak norak) */
#peraturan .p-4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #16a34a; /* hijau branding */
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

/* Box putih untuk kutipan */
#peraturan .bg-white {
  background-color: #ffffff !important;
  border-radius: 12px;

  border: 1px solid #e5e7eb;
}

#peraturan .bg-white p {
  color: #6b7280 !important;
}

#peraturan .border-dark,
#peraturan .border-3 {
  border: 1px solid #e5e7eb !important; /* dari hitam → abu soft */
}

/* kalau pakai rounded besar */
#peraturan .rounded-4 {
  border-radius: 16px !important;
}

/* opsional: kasih sedikit shadow biar gak flat */
#peraturan .border-dark {
  box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

/* ===== 8. FOOTER (Deep Green) ===== */
.footer {
  background: #052e16 !important; /* Hijau Gelap */
  color: #ffffff !important;      /* Putih Terang */
  padding: 60px 0 20px;
}

.footer .text-muted, 
.footer p, 
.footer li, 
.footer span {
  color: #a7f3d0 !important; /* Warna Mint terang agar kontras */
}

.footer h5, .footer h6 {
  color: #ffffff !important;
  font-weight: 700;
  text-transform: uppercase;
}
.footer a {
  color: #ffffff !important;
  text-decoration: underline;
}

.footer a:hover {
  color: var(--primary) !important;
}

/* Badge Pembayaran di Footer agar lebih menyala */
.footer .badge {
  background: #15803d !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 8px 12px;
}

/* ===== 9. MODAL FIX (Fix Biru) ===== */
#orderModal .modal-content { border-radius: 20px; }
#orderModal .modal-title { color: var(--text-main) !important; }
.modal-body .btn-outline-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.modal-body .btn-outline-primary:hover {
  background-color: var(--primary) !important;
  color: white !important;
}

/* ===== 10. GLOBAL ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

#jasa .col-md-6, #cara-pesan .col-md-4 {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

/* Delay Animasi */
/* Animasi muncul per card */
#cara-pesan .col-md-4,
#cara-pesan .col-md-3 {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  animation: cardReveal 0.6s ease forwards;
}

/* Delay biar satu-satu */
#cara-pesan .col-md-4:nth-child(1),
#cara-pesan .col-md-3:nth-child(1) { animation-delay: 0.1s; }

#cara-pesan .col-md-4:nth-child(2),
#cara-pesan .col-md-3:nth-child(2) { animation-delay: 0.2s; }

#cara-pesan .col-md-4:nth-child(3),
#cara-pesan .col-md-3:nth-child(3) { animation-delay: 0.3s; }

#cara-pesan .col-md-4:nth-child(4),
#cara-pesan .col-md-3:nth-child(4) { animation-delay: 0.4s; }

#cara-pesan .col-md-4:nth-child(5),
#cara-pesan .col-md-3:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#cara-pesan .p-3 {
  transition: all 0.3s ease;
}

#cara-pesan .p-3:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

#cara-pesan .rounded-circle {
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

#cara-pesan .btn {
  transition: all 0.25s ease;
}

#cara-pesan .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

#cara-pesan .btn:active {
  transform: scale(0.96);
}



/* Responsive */
@media (max-width: 1200px) { .grid-mode { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px) { .grid-mode { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .product-card { width: 160px; } }

/* =========================================
   TOAST NOTIFICATION (CLEAN VERSION)
   ========================================= */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #1f2937;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  z-index: 10000;
  max-width: fit-content;
  
  /* State Awal (Sembunyi) */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* State Muncul */
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* State Keluar */
.toast.hide {
  opacity: 0;
  transform: translateY(-10px) scale(0.95);
}

/* Varian Warna */
.toast.success { border-color: #16a34a; }
.toast.error   { border-color: #dc2626; }
.toast.warning { border-color: #f59e0b; }

/* RESPONSIVE MOBILE (DILATASI & CENTERING) */
@media (max-width: 576px) {
  .toast {
    top: 10px;
    right: 50%;
    /* Gunakan -50% untuk benar-benar ke tengah layar */
    transform: translateX(50%) translateY(-20px) scale(0.9); 
    font-size: 13px;
    padding: 8px 12px;
    min-width: 200px;
    justify-content: center;
  }

  .toast.show {
    transform: translateX(50%) translateY(0) scale(1);
  }

  .toast.hide {
    transform: translateX(50%) translateY(-10px) scale(0.9);
  }
}


#cart-items-container {
  max-height: 450px; 
  overflow-y: auto;   
  padding-right: 6px;
}

/* Biar kiri kanan sama tinggi */
#main-cart-row {
  align-items: stretch;
  
}

/* Box kiri */
.cart-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Scroll hanya di dalam list */
#cart-items-container {
  flex: 1;
  overflow-y: auto;
  max-height: 500px;
  padding-right: 6px;
}

/* Box kanan */
.checkout-box {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#cart-items-container::-webkit-scrollbar {
  width: 6px;
}

#cart-items-container::-webkit-scrollbar-thumb {
  background: #10b981;
  border-radius: 10px;
}

/* tombol opsi */
.modal-body .btn-outline-primary {
  border: 1.5px solid #16a34a !important;
  color: #16a34a !important;
  background: #ffffff;
  transition: all 0.2s ease;
}

/* hover */
.modal-body .btn-outline-primary:hover {
  background: #dcfce7 !important; /* hijau sangat soft */
  color: #166534 !important;
  border-color: #16a34a !important;
}

/* ACTIVE / SELECTED */
.modal-body .btn-outline-primary.active,
.modal-body .btn-outline-primary:active {
  background: #16a34a !important; /* hijau utama */
  color: #ffffff !important;
  border-color: #16a34a !important;
}

/* OPTIONAL: kalau mau lebih soft lagi saat aktif */
.modal-body .btn-outline-primary.selected {
  background: #22c55e !important; /* lebih terang, gak terlalu pekat */
  color: white !important;
}

/* Supaya saat pindah ke section (anchor link), konten tidak tertutup navbar */
section, [id] {
  scroll-margin-top: 90px; 
}

/* =========================================
   FINAL FIX ABSOLUTE (NO CUT, NO HIDDEN)
========================================= */
@media (max-width: 768px) {

  /* 1. BODY JANGAN DIKUNCI */
  body.cart-page {
    overflow-x: hidden;
    height: auto !important;
  padding-top: 0 !important;
}


  /* 2. CONTAINER JANGAN 100vh */
  .cart-page .container.content-wrapper {
    min-height: 100vh;
    padding-top: 30px !important;
    display: flex;
    flex-direction: column;
  }

  /* 3. ROW */
  #main-cart-row {
    display: flex !important;
    flex-direction: column !important;
    flex: 1;
  }

  /* 4. AREA A-B (SCROLL) */
  .cart-page .col-lg-8 {
    flex: 1;
    overflow-y: auto;
    padding: 10px !important;
  }

  /* ❌ MATIKAN SCROLL DALAM */
  #cart-items-container {
    max-height: none !important;
    overflow: visible !important;
  }

  /* 🔥 PALING PENTING */
  .checkout-box {
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
  }

  /* 5. CHECKOUT NORMAL (TIDAK DIPOTONG) */
  .cart-page .checkout-box {
    flex-shrink: 0;
    padding: 12px !important;
    border-radius: 16px 16px 0 0;
    background: #fff;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
  }

  /* COMPACT */
  .checkout-box h5 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .checkout-box .form-control {
    font-size: 13px;
    padding: 8px;
  }

  .checkout-box button {
    font-size: 14px;
    padding: 10px;
  }

}

/* =========================================
   MOBILE COMPACT (BEST PRACTICE)
========================================= */
@media (max-width: 768px) {

  /* container lebih rapat */
  .category-section {
    padding: 14px !important;
  }

  /* grid lebih padat */
  .scroll-container {
    gap: 12px;
  }

  /* card lebih kecil */
  .product-card {
    width: 150px !important;
    border-radius: 12px;
  }

  /* gambar */
  .product-card img {
    height: 90px;
  }

  /* judul */
  .product-card h6 {
    font-size: 13px;
  }

  /* text kecil */
  .product-card small {
    font-size: 11px;
  }

  /* tombol */
  .product-card .btn {
    font-size: 12px;
    padding: 4px 10px;
  }

}

/* =========================================
   TABLET / IPAD OPTIMIZATION
========================================= */
@media (min-width: 768px) and (max-width: 1024px) {

  /* container lebih compact */
  .category-section {
    padding: 20px !important;
    border-radius: 16px;
  }

  /* grid lebih rapi */
  .scroll-container {
    gap: 16px;
  }

  /* 🔥 GRID MODE (kalau pakai grid) */
  .grid-mode {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  /* card ukuran tengah */
  .product-card {
    width: 170px !important;
    border-radius: 14px;
  }

  /* gambar */
  .product-card img {
    height: 100px;
  }

  /* judul */
  .product-card h6 {
    font-size: 13.5px;
  }

  /* text */
  .product-card small {
    font-size: 12px;
  }

  /* tombol */
  .product-card .btn {
    font-size: 13px;
    padding: 5px 12px;
  }

  /* filter button */
  .category-filter button {
    font-size: 13px;
    padding: 6px 14px;
  }

  /* =========================================
   IPAD - CARA PESAN 1 BARIS TANPA SCROLL
========================================= */

  /* jadikan grid 1 baris */
  #cara-pesan .row {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr); /* 🔥 5 kolom */
    gap: 12px;
  }

  /* reset column bootstrap */
  #cara-pesan .col-md-4,
  #cara-pesan .col-md-3 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* card */
  #cara-pesan .p-3 {
    padding: 14px !important;
    border-radius: 14px;
    height: 100%;
  }

  /* nomor */
  #cara-pesan .rounded-circle {
    width: 36px !important;
    height: 36px !important;
    font-size: 14px;
  }

  /* judul */
  #cara-pesan h6 {
    font-size: 13px;
  }

  /* deskripsi */
  #cara-pesan p,
  #cara-pesan small {
    font-size: 11px;
  }
}

/* Merapikan tampilan Keranjang di HP */
@media (max-width: 576px) {
  .content-wrapper {
    padding-top: 80px; /* Jarak aman dari fixed navbar */
  }
  
  #main-cart-row {
    margin-top: 10px;
  }

  .text-xxs {
    font-size: 0.7rem !important; /* Disclaimer jadi kecil & tidak makan tempat */
    line-height: 1.3;
  }

  .btn-beli {
    padding: 12px !important; /* Tombol WA tidak terlalu gendut */
    font-size: 16px !important;
  }
}

/* Memastikan row keranjang bisa hilang total */
#main-cart-row {
  display: flex;
}

#empty-cart-msg {
  display: none; /* Default sembunyi */
}