:root {
  --coffee: #6f4528;
  --coffee-dark: #2a1810;
  --cream: #f7efe2;
  --cream-soft: #fffaf1;
  --green: #2f6b4f;
  --green-dark: #173b2d;
  --muted: #6f6257;
  --line: #e7dccb;
}

body {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  background: var(--cream-soft);
  color: #15110e;
}

.container-site {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.navbar-shell {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.brand-dark {
  background: var(--coffee-dark);
  color: var(--cream-soft);
}

.hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(129, 91, 55, .35), transparent 34%),
    linear-gradient(135deg, rgba(42, 24, 16, .98), rgba(26, 18, 14, .95) 55%, rgba(23, 59, 45, .94));
}

.section-pad {
  padding: 80px 0;
}

.section-title {
  color: var(--coffee-dark);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 800;
  line-height: 1.1;
}

.section-copy {
  color: var(--muted);
  line-height: 1.8;
}

.btn-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  color: var(--cream-soft);
  min-height: 46px;
  padding: .8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
}

.btn-green:hover {
  background: var(--green-dark);
  color: var(--cream-soft);
}

.card-soft {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, .92);
  box-shadow: 0 18px 50px rgba(42, 24, 16, .07);
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-card .btn-green {
  margin-top: auto;
}

.media-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #efe2cf;
}

.media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.gallery-card .media-frame {
  border: 0;
  border-radius: 0;
  aspect-ratio: 4 / 3;
  flex: none;
}

.gallery-card h3 {
  margin: 0;
  padding: 1rem 1rem 1.1rem;
  line-height: 1.35;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .3rem .7rem;
  font-size: .78rem;
  font-weight: 700;
}

.stock-ready {
  background: rgba(47, 107, 79, .12);
  color: var(--green);
}

.stock-limited {
  background: rgba(111, 69, 40, .13);
  color: var(--coffee);
}

.stock-sold-out {
  background: rgba(21, 17, 14, .1);
  color: #15110e;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .section-pad {
    padding: 56px 0;
  }
}

@media (max-width: 991px) {
  .navbar-shell {
    row-gap: .75rem;
  }

  .navbar-brand {
    max-width: calc(100% - 64px);
    white-space: normal;
  }

  .navbar-toggler {
    margin-left: auto;
    width: 46px;
    height: 46px;
    padding: .35rem;
  }

  .navbar-collapse {
    flex-basis: 100%;
    width: 100%;
    padding-top: .75rem;
    border-top: 1px solid rgba(255, 250, 241, .12);
  }

  .navbar-nav {
    gap: .2rem;
  }

  .navbar-collapse .btn-green {
    width: 100%;
    margin-top: .6rem;
  }
}
