:root {
  --gold: #c9a24b;
  --noir: #050505;
  --ivory: #f8f3e7;
  --pearl: #fffdf7;
  --muted: rgba(5, 5, 5, 0.64);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--pearl);
  color: var(--noir);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.brand,
h1,
h2,
h3,
.tagline {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 162, 75, 0.22);
  background: rgba(255, 253, 247, 0.92);
  backdrop-filter: blur(14px);
}

.navbar,
.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(5, 5, 5, 0.74);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  left: 0;
  top: 26px;
  width: 220px;
  padding: 10px;
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 8px;
  background: var(--pearl);
  box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-panel a:hover {
  background: var(--ivory);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 999px;
  background: var(--ivory);
}

.search-box input {
  width: 112px;
  border: 0;
  outline: 0;
  background: transparent;
}

.cart-button,
.menu-toggle {
  position: relative;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid rgba(201, 162, 75, 0.25);
  border-radius: 999px;
  background: var(--ivory);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.cart-button span {
  position: absolute;
  top: -7px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--noir);
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #fff;
  color: var(--noir);
}

.hero-shell {
  width: min(1280px, calc(100% - 36px));
  min-height: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.15fr;
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
}

.hero-product {
  min-height: 720px;
  display: grid;
  place-items: center;
}

.hero-product img {
  width: min(500px, 88vw);
  max-height: 720px;
  object-fit: contain;
  transform: rotate(-7deg) scale(1.1);
  filter: drop-shadow(0 34px 42px rgba(5, 5, 5, 0.13));
}

.hero-content {
  position: relative;
  padding: 90px 0;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.1;
}

.tagline {
  margin: 20px 0 0;
  color: var(--gold);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 600;
}

.hero-copy {
  max-width: 820px;
  margin: 64px 0 0;
  color: var(--noir);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
}

.hero-benefits {
  display: grid;
  gap: 34px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 28px;
}

.hero-benefits span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e8c37c;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.hero-actions,
.section-heading,
.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.section-heading {
  justify-content: center;
  text-align: center;
}

.section-heading .text-link {
  display: none;
}

.hero-actions {
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--noir);
}

.btn-outline {
  border: 1px solid rgba(5, 5, 5, 0.2);
  color: var(--noir);
}

.btn-dark {
  background: var(--noir);
  color: var(--ivory);
}

.section {
  padding: 88px 0;
}

.ivory-section {
  background: var(--ivory);
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h2 {
  margin: 10px 0 30px;
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.pillars,
.product-grid,
.info-grid,
.footer-grid {
  display: grid;
  gap: 18px;
}

.pillars {
  grid-template-columns: repeat(3, 1fr);
}

.pillar,
.product-card,
.filter-sidebar,
.detail-card,
.info-grid article {
  border: 1px solid rgba(201, 162, 75, 0.24);
  border-radius: 8px;
  background: var(--pearl);
}

.pillar {
  padding: 28px;
}

.pillar-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.pillar h2 {
  margin-bottom: 12px;
  font-size: 29px;
}

.pillar p,
.info-grid p,
.contact-layout p {
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 6vw, 80px);
}

#recommendationGrid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 58px);
}

.product-card {
  padding: 0;
  cursor: pointer;
  text-align: center;
  border: 0;
  background: transparent;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.product-art {
  aspect-ratio: 1 / 1.35;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: transparent;
}

.product-art img {
  width: 96%;
  height: 96%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.product-card:hover .product-art img {
  transform: scale(1.05);
}

.product-card h3 {
  margin: 30px 0 12px;
  font-size: clamp(25px, 2.1vw, 32px);
  font-weight: 600;
}

.product-meta {
  max-width: 280px;
  margin: 0 auto;
  color: var(--noir);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 1.38;
}

.price {
  margin: 12px 0 0;
  color: rgba(5, 5, 5, 0.58);
  font-size: 20px;
  font-weight: 500;
}

.badge {
  display: inline-block;
  margin-top: 12px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(201, 162, 75, 0.15);
  color: var(--noir);
  font-size: 12px;
  font-weight: 800;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
}

.filter-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 22px;
}

.filter-sidebar h3 {
  margin: 0 0 18px;
  font-size: 28px;
}

.filter-group {
  margin-top: 22px;
}

.filter-group p {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filter-group label {
  display: flex;
  gap: 10px;
  margin: 9px 0;
  color: rgba(5, 5, 5, 0.7);
  font-size: 14px;
}

.filter-group input {
  accent-color: var(--gold);
}

.clear-filter {
  width: 100%;
  margin-top: 20px;
  min-height: 42px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.catalog-meta {
  margin-bottom: 18px;
  color: rgba(5, 5, 5, 0.56);
  font-size: 14px;
}

.detail-section {
  padding-top: 0;
}

.detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  padding: 30px;
  background: var(--ivory);
}

.detail-image {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--pearl);
}

.detail-image img {
  max-height: 560px;
  object-fit: contain;
}

.detail-copy h2 {
  margin-bottom: 12px;
}

.notes {
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.note-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
}

.note-row strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
}

.newsletter-section,
.footer {
  background: var(--noir);
  color: var(--ivory);
}

.newsletter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.newsletter h2 {
  margin-bottom: 0;
}

.newsletter form,
.contact-form {
  display: grid;
  gap: 12px;
}

.newsletter form {
  width: min(430px, 100%);
  grid-template-columns: 1fr auto;
}

.newsletter input,
.contact-form input,
.contact-form textarea {
  min-height: 48px;
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.1);
  color: inherit;
  padding: 0 18px;
  outline: 0;
}

.contact-form input,
.contact-form textarea {
  background: var(--pearl);
  color: var(--noir);
}

.contact-form textarea {
  min-height: 140px;
  border-radius: 8px;
  padding-top: 14px;
  resize: vertical;
}

.info-grid {
  grid-template-columns: repeat(2, 1fr);
}

.info-grid article {
  padding: 28px;
}

.info-grid h2 {
  font-size: 38px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer {
  padding: 54px 0 24px;
}

.footer-grid {
  grid-template-columns: 2fr repeat(4, 1fr);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ivory);
}

.footer p,
.footer a {
  color: rgba(248, 243, 231, 0.66);
  line-height: 1.7;
}

.footer h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.copyright {
  margin: 34px 0 0;
  border-top: 1px solid rgba(248, 243, 231, 0.12);
  padding-top: 20px;
  text-align: center;
  color: rgba(248, 243, 231, 0.5);
  font-size: 12px;
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 20px 55px rgba(5, 5, 5, 0.22);
  font-weight: 900;
}

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

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

@media (max-width: 980px) {
  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    padding: 36px 0 70px;
  }

  .hero-product {
    min-height: 420px;
  }

  .hero-product img {
    width: min(360px, 82vw);
    max-height: 460px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-copy {
    margin-top: 28px;
  }

  .hero-benefits {
    gap: 20px;
    margin-top: 32px;
    font-size: 17px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 74px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(201, 162, 75, 0.22);
    border-radius: 8px;
    background: var(--pearl);
    box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
  }

  .nav-links.open {
    display: grid;
  }

  .dropdown-panel {
    position: static;
    width: auto;
    margin-top: 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .search-box input {
    width: 72px;
  }

  .pillars,
  .product-grid,
  #recommendationGrid,
  .info-grid,
  .footer-grid,
  .catalog-layout,
  .detail-card,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-layout,
  .detail-card,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .footer-grid {
    gap: 28px;
  }
}

@media (max-width: 620px) {
  .navbar {
    min-height: 68px;
  }

  .brand {
    font-size: 23px;
  }

  .search-box {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  .hero-product {
    min-height: 340px;
  }

  .hero-product img {
    width: min(300px, 88vw);
  }

  .section {
    padding: 54px 0;
  }

  .section-heading,
  .catalog-meta,
  .newsletter {
    align-items: flex-start;
    flex-direction: column;
  }

  .pillars,
  .product-grid,
  #recommendationGrid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .note-row {
    grid-template-columns: 1fr;
  }
}
