:root {
  --primary: #7b3100;
  --primary-soft: #a95722;
  --accent: #f6a300;
  --accent-soft: #ffd57a;
  --card: #fff8ee;
  --text: #3b2715;
  --muted: #6b4d36;
  --shadow: 0 10px 28px rgba(62, 35, 14, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdfa 0%, #fff8f0 100%);
  scroll-behavior: smooth;
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 10% 10%, #fff4dd 0%, #fffcf7 55%, #fff 100%);
}

.hero-overlay {
  position: absolute;
  inset: -150px auto auto -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffd89a 0%, rgba(255, 216, 154, 0) 70%);
  animation: floatBlob 8s ease-in-out infinite;
  pointer-events: none;
}

.topbar {
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.3px;
}

.wa-button {
  text-decoration: none;
  color: white;
  background: linear-gradient(140deg, #1fab53, #25d366);
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.42);
}

.hero-content {
  text-align: center;
  padding: 3.3rem 0 2rem;
}

.badge {
  display: inline-flex;
  background: #ffedd0;
  color: #a64c0e;
  border: 1px solid #ffd49f;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-weight: 600;
  font-size: 0.86rem;
}

.hero-content h2 {
  margin: 0.75rem 0;
  font-size: clamp(2.1rem, 5vw, 4rem);
  color: var(--primary);
}

.hero-content p {
  margin: 0 auto;
  max-width: 740px;
  color: var(--muted);
}

.products-head {
  text-align: center;
  margin: 0.5rem 0 1.4rem;
}

.products-head h3,
.contact h3 {
  margin: 0;
  font-size: 1.6rem;
  color: var(--primary);
}

.products-head p {
  color: var(--muted);
}

.products-head code {
  background: #fff0d7;
  border: 1px solid #ffdb9d;
  padding: 0.1rem 0.35rem;
  border-radius: 6px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}

.product-card {
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f3e2cd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(62, 35, 14, 0.2);
}

.product-card img {
  display: block;
  width: 100%;
  height: 205px;
  object-fit: cover;
  background: #fff;
}

.product-content {
  padding: 1rem;
}

.product-content h4 {
  margin: 0;
  color: var(--primary);
  font-size: 1.5rem;
  line-height: 1.15;
}

.product-content p {
  margin: 0.4rem 0 1rem;
  color: var(--muted);
  min-height: 50px;
  font-size: 0.93rem;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.price {
  color: #d86e00;
  font-weight: 700;
  font-size: 1.26rem;
}

.product-footer a {
  text-decoration: none;
  background: linear-gradient(150deg, var(--accent), #ffb52f);
  color: white;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  transition: transform 0.2s ease;
}

.product-footer a:hover {
  transform: scale(1.04);
}

.contact {
  margin: 2.2rem 0 2.8rem;
  background: linear-gradient(160deg, #fff9ec, #fff4e3);
  border-radius: 20px;
  border: 1px solid #f4dab1;
  padding: 1.2rem;
}

.contact p {
  color: var(--muted);
}

.contact a {
  color: #188f4b;
  font-weight: 700;
}

footer {
  background: linear-gradient(120deg, #522000, #6f2f00);
  color: #f8eee1;
  text-align: center;
  padding: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatBlob {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(18px) translateX(10px);
  }
}

@media (max-width: 700px) {
  .topbar {
    flex-direction: column;
  }

  .hero-content {
    padding-top: 2.4rem;
  }

  .product-content h4 {
    font-size: 1.3rem;
  }
}