/* Custom Font */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background-color: #f4f1ee; /* Warna background kopi susu */
  color: #2c2c2c;
  padding-bottom: 80px; /* Space untuk bottom navbar */
}

/* Custom Primary Color (Coklat Kopi) */
.text-coffee {
  color: #4e2a1e !important;
}
.bg-coffee {
  background-color: #4e2a1e !important;
}
.btn-coffee {
  background-color: #4e2a1e;
  color: white;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s;
}
.btn-coffee:hover {
  background-color: #381e15;
  color: white;
}

/* Card Styling */
.product-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  height: 200px;
  object-fit: cover;
}

/* Badge Styling */
.badge-custom {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* Mobile Bottom Navbar */
.bottom-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1030;
  border-radius: 20px 20px 0 0;
}
.nav-item-custom {
  color: #888;
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.3s;
}
.nav-item-custom:hover,
.nav-item-custom.active {
  color: #4e2a1e;
  font-weight: 600;
}
.nav-item-custom i {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 2px;
}
/* Styling Khusus Toast Espresso */
.toast-container {
  z-index: 2000;
}
.toast-espresso {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  color: white;
}
.toast-header-espresso {
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
}
