:root {
  --bg: #f5f3ef;
  --card: #fff;
  --text: #141414;
  --muted: #686868;
  --gold: #b47a30;
  --gold-2: #d9ad68;
  --dark: #0b0b0c;
  --green: #10c84a;
  --green-dark: #069c37;
  --radius: 18px;
  --shadow: 0 12px 30px rgba(0,0,0,.08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }
.hero {
  width: 100%;
  background: #080808;
}
.hero img {
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center;
}
.promo-wrap {
  max-width: 1320px;
  margin: 26px auto 0;
  padding: 0 28px;
}
.promo {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.products {
  max-width: 1320px;
  margin: 0 auto;
  padding: 48px 28px 54px;
}
.section-heading { margin-bottom: 24px; }
.section-heading span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  margin-bottom: 8px;
}
.section-heading h1 {
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.05;
  margin: 0;
  letter-spacing: -.035em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none;
  background: var(--card);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.055);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(0,0,0,.12);
  border-color: rgba(180,122,48,.28);
}
.product-card img {
  width: 100%;
  aspect-ratio: 64 / 91;
  object-fit: cover;
  background: #eceae6;
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 15px 15px 14px;
}
.product-info h2 {
  min-height: 2.7em;
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 760;
}
.price-row {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.price-row strong {
  color: var(--gold);
  font-size: 16px;
}
.cart {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  font-size: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(560px,100%);
  min-height: 64px;
  margin: 28px auto 0;
  padding: 15px 24px;
  border-radius: 16px;
  text-decoration: none;
  text-align: center;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 900;
  letter-spacing: .015em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.03); }
.btn-more {
  color: #8d581f;
  background: white;
  border: 2px solid var(--gold-2);
  box-shadow: 0 8px 22px rgba(180,122,48,.12);
}
.btn-whatsapp {
  margin-top: 18px;
  color: white;
  background: linear-gradient(135deg,var(--green),var(--green-dark));
  box-shadow: 0 14px 28px rgba(16,200,74,.25);
  gap: 13px;
}
.btn-whatsapp svg {
  width: 33px;
  height: 33px;
  fill: currentColor;
}
.footer {
  padding: 34px 20px 28px;
  text-align: center;
  color: white;
  background: var(--dark);
}
.footer p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}
.social {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  text-decoration: none;
  color: white;
  font-weight: 900;
  font-size: 20px;
  transition: transform .2s ease, filter .2s ease;
}
.social:hover { transform: translateY(-3px) scale(1.04); filter: brightness(1.08); }
.instagram { background: radial-gradient(circle at 30% 110%,#ffd600 0 12%,#ff7a00 25%,#ff0169 47%,#d300c5 65%,#7638fa 85%); }
.youtube { background: #ff0033; }
.tiktok { background: #111; box-shadow: inset 2px 0 #25f4ee, inset -2px 0 #fe2c55; }
.facebook { background: #1877f2; font-family: Arial, sans-serif; }
.x { background: #000; border: 1px solid #444; }
.footer small { color: rgba(255,255,255,.5); font-size: 12px; }

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .hero img { min-height: 270px; object-fit: cover; object-position: 56% center; }
  .promo-wrap { margin-top: 14px; padding: 0 14px; }
  .promo { border-radius: 14px; }
  .products { padding: 32px 14px 42px; }
  .section-heading { margin-bottom: 18px; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .product-card { border-radius: 14px; }
  .product-info { padding: 11px 11px 12px; }
  .product-info h2 { min-height: 2.9em; font-size: 13px; margin-bottom: 9px; }
  .price-row strong { font-size: 14px; }
  .cart { width: 29px; height: 29px; font-size: 21px; }
  .btn { min-height: 58px; margin-top: 24px; border-radius: 14px; }
  .btn-whatsapp { margin-top: 14px; }
}
@media (max-width: 370px) {
  .product-grid { gap: 9px; }
  .product-info { padding: 9px; }
  .product-info h2 { font-size: 12px; }
  .price-row strong { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
