:root {
  --gold: #c4a574;
  --gold-dark: #a8864e;
  --ink: #1a1614;
  --muted: #6b635c;
  --paper: #faf7f3;
  --white: #ffffff;
  --line: #e8e0d6;
  --rose: #d4a59a;
  --shadow: 0 18px 50px rgba(26, 22, 20, 0.08);
  --radius: 16px;
  --max: 1180px;
  --header: 78px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.serif { font-family: "Playfair Display", Georgia, serif; }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #000; color: #fff; padding: 8px 12px; z-index: 99; }

.topbar {
  background: var(--ink);
  color: #f3eadf;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.topbar a:hover { color: var(--gold); }

.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: var(--header);
}
.header .container {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.logo img { height: 46px; width: auto; }
.nav { display: flex; align-items: center; justify-content: center; gap: 4px; }
.nav a {
  padding: 8px 12px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #3a342f;
}
.nav a:hover, .nav a.active { color: var(--gold-dark); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.search-wrap {
  display: flex; align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}
.search-wrap input {
  border: 0; outline: 0; padding: 8px 14px; width: 170px; background: transparent;
}
.search-wrap button, .icon-btn {
  border: 0; background: var(--gold); color: #fff; width: 38px; height: 34px; cursor: pointer;
}
.icon-btn {
  background: transparent; color: var(--ink); width: 40px; height: 40px; position: relative; border-radius: 50%;
}
.icon-btn:hover { background: #f3ece4; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold-dark); color: #fff; font-size: 10px;
  min-width: 16px; height: 16px; border-radius: 99px;
  display: grid; place-items: center;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1s ease;
}
.hero-slides img.active { opacity: 1; }
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,9,8,.72) 0%, rgba(12,9,8,.28) 55%, rgba(12,9,8,.08) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  min-height: 78vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 0;
  max-width: 640px;
}
.kicker {
  letter-spacing: .28em; text-transform: uppercase; font-size: 12px; color: var(--gold);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 500;
}
.hero p { margin: 18px 0 28px; font-size: 18px; color: #efe6db; max-width: 48ch; }
.hero-dots {
  position: absolute; z-index: 3; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.active { background: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #1a1614; border: 0;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; cursor: pointer;
  letter-spacing: .04em;
}
.btn:hover { background: #d4b68a; }
.btn.dark { background: var(--ink); color: #fff; }
.btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.btn.outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

.section { padding: 72px 0; }
.section.alt { background: #fff; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 32px; }
.section-head h2, .page-hero h1, .product-info h1 {
  font-family: "Playfair Display", serif; font-weight: 500; font-size: clamp(28px, 4vw, 42px);
}
.muted { color: var(--muted); }

.cats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  text-align: center; transition: transform .25s ease;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f3ece4; }
.cat-card span { display: block; padding: 12px 10px 16px; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

.grid-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
}
.card-media { position: relative; background: #f6f1eb; }
.card-media img { width: 100%; aspect-ratio: 1; object-fit: contain; padding: 12px; }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: #fff; font-size: 11px; padding: 4px 8px; border-radius: 999px;
}
.card-body { padding: 14px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 15px; line-height: 1.35; min-height: 40px; }
.price { font-weight: 700; color: var(--gold-dark); }
.price s { color: var(--muted); font-weight: 400; margin-right: 6px; }
.card .btn { width: 100%; margin-top: auto; }

.split {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
}
.split img { width: 100%; height: 460px; object-fit: cover; border-radius: 24px; }
.features { display: grid; gap: 16px; margin-top: 22px; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.icon-disc {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; background: #f3ece4; color: var(--gold-dark); font-weight: 700;
}

.why {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.why article {
  background: #fff; padding: 24px; border-radius: var(--radius); border: 1px solid var(--line);
}
.why h3 { margin: 8px 0; font-size: 18px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.review {
  background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.stars { color: var(--gold-dark); letter-spacing: 2px; margin-bottom: 10px; }
.review footer { margin-top: 14px; font-weight: 600; }

.cta-band {
  background: var(--ink); color: #fff;
  border-radius: 28px; padding: 48px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.cta-band h2 { font-family: "Playfair Display", serif; font-size: 36px; font-weight: 500; }

.page-hero {
  padding: 54px 0 28px;
  background: linear-gradient(180deg, #fff, var(--paper));
}
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.breadcrumb a:hover { color: var(--gold-dark); }

.shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; }
.filters { background: #fff; padding: 18px; border-radius: var(--radius); border: 1px solid var(--line); height: fit-content; }
.filters h3 { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.filters a, .filters button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 8px 0; cursor: pointer; color: var(--muted);
}
.filters a:hover, .filters a.active, .filters button.active { color: var(--ink); font-weight: 600; }

.product-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: start; }
.product-gallery { background: #fff; border-radius: 24px; padding: 20px; }
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.product-info .price { font-size: 28px; margin: 10px 0 16px; }
.qty-row { display: flex; gap: 10px; align-items: center; margin: 18px 0; }
.qty-row input { width: 72px; padding: 10px; border: 1px solid var(--line); border-radius: 10px; }

.form { display: grid; gap: 12px; }
.form input, .form textarea, .form select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
}
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.info-card { background: #fff; padding: 24px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-card + .info-card { margin-top: 14px; }
.map {
  margin-top: 28px; border: 0; width: 100%; height: 360px; border-radius: 20px;
}

.policy { background: #fff; padding: 36px; border-radius: 24px; max-width: 860px; }
.policy h2 { font-size: 20px; margin: 22px 0 8px; }
.policy ul { padding-left: 18px; color: var(--muted); }

.cart-table { width: 100%; background: #fff; border-radius: 16px; overflow: hidden; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px; text-align: left; border-bottom: 1px solid var(--line); }
.cart-table img { width: 64px; height: 64px; object-fit: contain; }

.footer { background: var(--ink); color: #ece4d8; padding: 56px 0 20px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.footer h4 { color: #fff; margin-bottom: 12px; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; }
.footer a { display: block; color: #cfc6b8; padding: 4px 0; }
.footer a:hover { color: var(--gold); }
.footer .logo img { height: 48px; margin-bottom: 12px; }
.footer-bottom {
  margin-top: 32px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #b7ae9f;
}

.whatsapp-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #25d366; color: #fff; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.35); font-size: 28px;
}

@media (max-width: 980px) {
  .nav, .search-wrap { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: var(--header); left: 0; right: 0;
    background: #fff; padding: 16px; border-bottom: 1px solid var(--line);
  }
  .menu-toggle { display: grid; }
  .header .container { grid-template-columns: auto 1fr auto; }
  .cats, .grid-products, .why, .reviews, .footer-grid, .shop-layout, .product-layout, .split, .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid, .shop-layout, .product-layout, .split, .contact-grid, .cta-band { grid-template-columns: 1fr; }
  .cta-band { padding: 28px; }
}
@media (max-width: 640px) {
  .cats, .grid-products, .why, .reviews { grid-template-columns: 1fr; }
  .hero { min-height: 70vh; }
}
