body {
  font-family: "Montserrat", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 238, 184, 0.6), transparent 36%),
    radial-gradient(circle at 90% 80%, rgba(255, 222, 128, 0.35), transparent 32%),
    #fffef8;
  color: #2f1b12;
}

html {
  scroll-padding-top: 120px;
}

#home,
#products,
#about {
  scroll-margin-top: 120px;
}

.hero-title {
  font-family: "Playfair Display", serif;
}

.glass-nav {
  backdrop-filter: blur(8px);
  /* background: rgba(255, 255, 255, 0.9); */
  /* border-bottom: 1px solid #ffe39a; */
}

.nav-btn {
  border: 1px solid #f4c542;
  color: #2f1b12;
  background: #fff8df;
}

.nav-btn:hover {
  background: #ffe9a9;
  color: #2f1b12;
}

.brand-logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
}

.hero-wrap {
  background: linear-gradient(120deg, #fffdf4 0%, #fff4c8 52%, #ffe8a6 100%);
  border: 1px solid #f7d976;
}

.hero-chip {
  background: #fff3cc;
  border: 1px solid #f4c542;
  color: #6b4f00;
}

.hero-stats {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #f5d473;
}

.text-gold {
  color: #b88700;
}

.border-gold {
  border-color: #f4c542 !important;
}

.border-soft-gold {
  border-color: #ffe39a !important;
}

.bg-soft-yellow {
  background: #fff3cc;
}

.text-deep-gold {
  color: #6b4f00;
}

.btn-gold {
  margin-left: 5px;
  background: #f4c542;
  border-color: #f4c542;
}

.btn-gold:hover {
  background: #e8b92f;
  border-color: #e8b92f;
}

.hero-main-image {
  height: 390px;
  width: 100%;
  object-fit: contain;
  background: #fff;
}

.section-image {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.product-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.product-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(47, 27, 18, 0.15);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  padding: 0;
  line-height: 1;
  font-weight: 700;
}

.qty-value {
  min-width: 22px;
  text-align: center;
  font-weight: 700;
}

.footer-wrap {
  border-color: #ffe39a !important;
  background: #fffdf5;
}

.footer-logo {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.about-thumb {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.modal-image {
  width: 100%;
  max-height: 320px;
  object-fit: cover;url(https://roadmap.sh/roadmaps)
}

.contact-info-box {
  background: #fff8df;
  border: 1px solid #f4c542;
}

.payment-card {
  border: 1px solid #f4c542;
  background: #fffdf5;
}

.payment-qr-box {
  width: 260px;
  height: 260px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.payment-timer {
  font-size: 1.25rem;
  font-weight: 700;
  color: #9a2f2f;
}

@media (max-width: 768px) {
  .footer-bottom-row {
    align-items: flex-start !important;
  }

  .footer-policy-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem !important;
  }

  .footer-policy-links a {
    display: block;
    text-align: left;
  }
  
  .hero-main-image {
    height: 280px;
  }
}