body {
  font-family: "Poppins", sans-serif;
  color: #3f4063;
}

/* Navbar */
.navbar-expand-lg {
  background-color: #ffffff;
  box-shadow: inset 0 -1px 0 #e6e6e6;
}

.navbar-brand,
.navbar-brand:hover {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #3f4063;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center; /* KUNCI UTAMA */
  gap: 8px;
}

.nav-item .nav-link {
  color: #3f4063;
  font-weight: 400;
}

.nav-item .nav-link.active,
.nav-item .nav-link:hover {
  color: #2e72e6;
  font-weight: 500;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-bottom-color: #2e72e6;
}

.btn-accent:hover {
  background-color: #008e11;
  color: #ffffff;
  border-radius: 15px;
  border-color: #008e11;
}

.btn-accent {
  background-color: #ffffff;
  color: #008e11;
  border-radius: 15px;
  border-color: #008e11;
}

/* Hero Section */
.tagline-hero-1 {
  font-size: 64px;
}

.tegline-desctiption {
  font-size: 20px;
}

.zoom-sweet {
  transition: transform 0.3s ease;
}

.zoom-sweet:hover {
  transform: scale(1.08);
}

/* Section Partners */
#partners {
  background-color: #ffffff;
  color: #3f4063;
}

/* Section products */
#products {
  background-color: #2e72e6;
  color: #ffffff;
}

/* Brand Warppert */
.brand-wrapper {
  display: flex;
  align-items: center; /* sejajar vertikal */
  gap: 12px; /* jarak logo & teks */
}

.brand-logo {
  width: 90px; /* ganti sesuai kebutuhan */
  height: auto;
}

.brand-text {
  margin: 0; /* HILANGKAN margin default h1 */
  font-size: 32px;
  font-weight: 700;
}

.brand-text span {
  color: #3ab54a; /* contoh warna brand */
}

/* Product List */
.product-card {
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
  transition: all 0.5s ease;
  height: 300px;
  object-fit: cover;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.badge-custom {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.btn-custom {
  background: linear-gradient(45deg, #3498db, #2ecc71);
  border: none;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  transform: translateX(5px);
  box-shadow: -5px 5px 15px rgba(46, 204, 113, 0.3);
}

.product-block {
  background-color: #ffffff;
  border-radius: 60px;

  padding: 18px 12px; /* 🔽 kiri-kanan diperkecil */
  max-width: 320px; /* 🔒 cegah melebar */
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-title {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.btn-catalogue:hover {
  background-color: #9a1616;
  color: #ffffff;
  border-radius: 10px;
  /* border-color: #9a1616; */
  font-weight: 600;
}

.btn-catalogue {
  background-color: #ffffff;
  color: #9a1616;
  border-radius: 10px;
  /* border-color: #9a1616; */
  font-weight: 600;
}

.btn-mbizmarket:hover {
  background-color: #3a3c76;
  color: #ffffff;
  border-radius: 10px;
  border-color: #3a3c76;
  font-weight: 600;
}

.btn-mbizmarket {
  background-color: #ffffff;
  color: #3a3c76;
  border-radius: 10px;
  border-color: #3a3c76;
  font-weight: 600;
}

/* Footer */
.footer-murindo {
  background-color: #ffffff;
  box-shadow: inset 0 1px 0 #e6e6e6;
}

@media (max-width: 575.98px) {
  .navbar-toggler {
    margin-left: 3%;
    margin-top: 2.5%;
    margin-bottom: 2.5%;
  }

  a.navbar-brand,
  a.navbar-brand:hover {
    font-size: 11px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: #3f4063;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center; /* KUNCI UTAMA */
    gap: 8px;
  }

  /* Hero Section */
  #hero-section {
    padding-top: 2.5rem;
  }
  .tagline-hero-1 {
    font-size: 48px;
  }

  .tegline-desctiption {
    font-size: 18px;
  }

  #hero-section {
    /* margin-top: 2rem; */
    margin: 2rem 0.5rem;
  }

  /* About Us */
  #about-us,
  #contact,
  #footer {
    margin: 1.5rem;
  }
  .heading-about-us {
    padding-top: 2rem;
  }
}
