/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --cream: #f6ede1;
  --cream-deep: #efe1cf;
  --ink: #1c1712;
  --gold: #b6893f;
  --gold-light: #d9b876;
  --rose: #d99aa4;
  --rose-deep: #c17984;
  --white: #fffdfa;

  --font-script: "Dancing Script", cursive;
  --font-display: "Playfair Display", serif;
  --font-body: "Jost", sans-serif;

  --radius: 2px;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0; }

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.9rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover { background: #000; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 237, 225, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(28, 23, 18, 0.08);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-right: auto;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-word {
  font-family: var(--font-script);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
}

.main-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
}

.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
}
.nav-whatsapp:hover { background: #000; }

.menu-toggle { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; }

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-whatsapp span { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 4.5rem 1.5rem 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse at top, rgba(217, 154, 164, 0.16), transparent 60%),
    var(--cream);
}

.hero-inner { max-width: 640px; margin: 0 auto; }

.hero-logo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.75rem;
  border: 1px solid rgba(182, 137, 63, 0.4);
  padding: 6px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.hero-sub {
  color: #4a4038;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   CATALOG
   ============================================================ */
.catalog { padding: 4rem 1.5rem; max-width: var(--max-width); margin: 0 auto; }

.section-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.section-head h2 { font-size: 2rem; margin-bottom: 0.6rem; }
.section-head p { color: #55493f; font-size: 0.95rem; }

.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.filter-chip {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(28, 23, 18, 0.25);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.15s ease;
  color: var(--ink);
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(28, 23, 18, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 12px 28px rgba(28, 23, 18, 0.1);
  transform: translateY(-3px);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.03em;
  font-family: var(--font-body);
}

.badge.in-stock { background: rgba(28, 23, 18, 0.85); color: var(--white); }
.badge.out-stock { background: rgba(28, 23, 18, 0.5); color: var(--white); }
.badge.pre-order { background: var(--gold); color: var(--white); }

.preorder-note {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
  margin: 0;
}

.product-body {
  padding: 1.15rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.product-body h3 { font-size: 1.08rem; }

.product-desc { font-size: 0.87rem; color: #5c5044; margin: 0; }

.product-meta {
  font-size: 0.78rem;
  color: #7a6c5d;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin-top: 0.2rem;
}

.product-buy {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-buy:hover { background: #000; }

.product-buy.disabled {
  background: rgba(28, 23, 18, 0.15);
  color: #7a6c5d;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--cream-deep);
  padding: 4rem 1.5rem;
}

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
  display: grid;
  gap: 1.75rem;
}

.steps li {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

.steps h3 { font-size: 1.05rem; margin-bottom: 0.25rem; }
.steps p { margin: 0; color: #55493f; font-size: 0.92rem; }

.contact-card {
  max-width: 480px;
  margin: 2.75rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border: 1px solid rgba(28, 23, 18, 0.08);
  border-radius: var(--radius);
}

.contact-card p { margin: 0 0 1rem; color: #4a4038; }

/* ============================================================
   PRE-ORDER CTA
   ============================================================ */
.preorder-cta {
  text-align: center;
  padding: 3.5rem 1.5rem;
}

.preorder-cta .section-head { margin-bottom: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  color: #6b5f52;
  font-size: 0.85rem;
}

.footer-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.9rem;
}

.footer-note { opacity: 0.7; margin-bottom: 1.5rem; }

.footer-map {
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(28, 23, 18, 0.12);
  filter: grayscale(15%);
}

.footer-map iframe { display: block; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 60;
  transition: transform 0.15s ease;
}

.floating-whatsapp:hover { transform: scale(1.06); }
