@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #14100b;
  --panel: #1e1710;
  --paper: #221b12;
  --cream: #f2ead9;
  --muted: #b9ab8e;
  --gold: #c9903f;
  --gold-bright: #eab766;
  --line: rgba(201, 144, 63, 0.28);
  --prism: linear-gradient(90deg, #e8845c, #eab766, #7ec4cf, #c9903f);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: 1.12; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }

p { margin: 0 0 1.2em; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { color: var(--gold); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-bright);
  margin-bottom: 1em;
  display: block;
}

.prism-rule {
  height: 3px;
  width: 72px;
  background: var(--prism);
  border-radius: 2px;
  margin: 0 0 1.4em;
}
.prism-rule.center { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--gold); color: var(--bg); }
.btn-solid {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn-solid:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: var(--bg); }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 16, 11, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo-img {
  height: 34px;
  width: auto;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links {
  display: flex;
  gap: 2.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-bright); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--gold);
  cursor: pointer;
}

.cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--cream);
}
.cart-link:hover { color: var(--gold-bright); }
.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 17px;
  text-align: center;
}

@media (max-width: 780px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    padding: 1.2rem 24px;
    gap: 1rem;
    display: none;
  }
  .nav-links.open { display: flex; }
}

/* ---- Video embed ---- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--panel);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 4px;
}
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  padding: 80px 0 96px;
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
}
.hero h1 { margin-bottom: 0.4em; }
.hero-lede { font-size: 1.05rem; max-width: 46ch; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6em; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ---- Sections ---- */
section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 2.6em; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

.band-ink {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-ink .eyebrow { color: var(--gold-bright); }

/* ---- Diferenciais grid ---- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid transparent;
  border-image: var(--prism) 1;
  padding: 28px 24px;
  border-radius: 2px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.4em; }
.card p { font-size: 0.94rem; margin-bottom: 0; }
.card__kicker {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}

/* ---- Domains grid (Sobre) ---- */
.domains-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.domains-grid .card { flex: 1 1 280px; }

/* ---- Timeline (Sobre) ---- */
.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: var(--line);
}
.tl-item { position: relative; padding: 0 0 34px 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border: 1px solid var(--gold);
  background: var(--bg);
}
.tl-item .tl-year {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 0.2em;
}
.tl-item h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.tl-item p { font-size: 0.92rem; margin: 0; }

/* ---- Pull quote (Sobre) ---- */
.pull-quote {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  color: var(--cream);
  line-height: 1.5;
}
.pull-quote cite {
  display: block;
  margin-top: 0.9em;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.founder-photo {
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.founder-sign {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold-bright);
  margin-top: 1em;
}
.founder-sign small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.4em;
}

/* ---- Generic photo card (reusable) ---- */
.photo-card {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr; } }
.photo-strip figcaption {
  margin-top: 0.6em;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* ---- Process steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 820px) { .steps { grid-template-columns: 1fr; } }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 0.3em;
}
.step h3 { margin-bottom: 0.3em; }
.step p { font-size: 0.94rem; }
.step-photo {
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  margin-bottom: 18px;
}
.step-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-photo--contain { padding: 24px; }
.step-photo--contain img { object-fit: contain; }

/* ---- Hero photo frame ---- */
.hero-photo-frame {
  position: relative;
  width: 320px;
  height: 320px;
  max-width: 80vw;
  max-height: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--line);
}
.hero-photo-ring {
  position: absolute;
  inset: 0;
  transform-origin: center;
  animation: spin 50s linear infinite;
}
.hero-photo-frame img {
  width: 88%;
  height: 88%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px var(--line), 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(234, 183, 102, 0.18);
}

/* ---- Category tiles (home) ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 700px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .category-grid { grid-template-columns: 1fr; } }

.category-tile {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  text-align: center;
}
.category-tile:hover { border-color: var(--gold); }
.category-tile__img {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  padding: 26px;
}
.category-tile__img img { width: 100%; height: 100%; object-fit: contain; }
.category-tile__body { padding: 20px 16px; }
.category-tile__body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25em;
  color: var(--cream);
}
.category-tile__body span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- Featured products (home) ---- */
.destaques-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .destaques-grid { grid-template-columns: repeat(2, 1fr); } }

.destaques--top { padding-top: 40px; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .featured-grid { grid-template-columns: 1fr; } }

.catalog-card--big .catalog-card__img { aspect-ratio: 1 / 1; padding: 24px; }
.catalog-card--big .catalog-card__body { padding: 20px; gap: 10px; }
.catalog-card--big .catalog-card__body h4 { font-size: 1.05rem; }
.catalog-card--big .catalog-card__price { font-size: 1.5rem; }
.catalog-card--big .btn { align-self: flex-start; }
@media (max-width: 460px) { .destaques-grid { grid-template-columns: 1fr; } }

/* ---- Product detail page ---- */
.back-link {
  display: inline-block;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.back-link:hover { color: var(--gold-bright); }

.produto-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .produto-detail { grid-template-columns: 1fr; } }

.produto-detail__img {
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  border-radius: 6px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 110px;
}
.produto-detail__media {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.produto-detail__media img { width: 100%; height: 100%; object-fit: contain; }
@media (max-width: 860px) { .produto-detail__img { position: static; } }

.produto-gallery { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.produto-gallery__thumb {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 4px;
  border: 2px solid var(--line);
  background: rgba(242, 234, 217, 0.04);
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s ease;
}
.produto-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; }
.produto-gallery__thumb:hover { border-color: var(--gold); }
.produto-gallery__thumb.active { border-color: var(--gold-bright); }

.variant-selector { margin: 1.6em 0; }
.variant-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.7em;
}
.variant-options { display: flex; flex-wrap: wrap; gap: 10px; }
.variant-option {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
  background: var(--panel);
  transition: border-color 0.2s;
}
.variant-option input { position: absolute; opacity: 0; pointer-events: none; }
.variant-option:hover { border-color: var(--gold); }
.variant-option.active { border-color: var(--gold); background: rgba(201, 144, 63, 0.12); }
.variant-option__label { font-size: 0.82rem; color: var(--cream); }
.variant-option__price { font-size: 0.78rem; color: var(--muted); }
.variant-option.active .variant-option__price { color: var(--gold-bright); }

.produto-price {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--gold-bright);
  margin: 0.6em 0 0.8em;
}
.produto-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.produto-buy-btn { display: inline-block; }
.produto-code {
  font-size: 0.82rem;
  color: var(--muted, #a8a29a);
  margin: -0.4em 0 0.8em;
}
.produto-specs {
  font-size: 0.9rem;
  color: var(--muted, #c9c2b6);
  margin: -0.6em 0 0.6em;
}
.add-to-cart-note {
  margin-top: 0.9em;
  font-size: 0.86rem;
  color: var(--gold-bright);
}
.add-to-cart-note a { text-decoration: underline; }

/* ---- Cart page ---- */
.cart-empty { text-align: center; padding: 60px 0; }
.cart-empty p { margin-bottom: 1.4em; color: var(--muted); }

.cart-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 2em; }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  gap: 16px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px;
}
@media (max-width: 700px) {
  .cart-item { grid-template-columns: 56px 1fr; grid-template-areas: "img info" "img qty" "img total"; row-gap: 6px; }
  .cart-item__remove { grid-area: total; justify-self: end; }
}
.cart-item__img { width: 72px; height: 72px; background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%); border-radius: 4px; padding: 8px; }
.cart-item__img img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__info h4 { font-size: 0.92rem; color: var(--cream); margin: 0 0 0.2em; font-family: 'Manrope', sans-serif; font-weight: 600; }
.cart-item__variant { font-size: 0.8rem; color: var(--muted); }
.cart-item__qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--cream);
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--gold); }
.cart-item__total { font-family: 'Fraunces', serif; color: var(--gold-bright); font-size: 1.05rem; white-space: nowrap; }
.cart-item__remove {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.3rem;
  cursor: pointer;
  line-height: 1;
}
.cart-item__remove:hover { color: #e8845c; }

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
}
.cart-summary__total { font-size: 1rem; color: var(--cream); }
.cart-summary__total strong { font-family: 'Fraunces', serif; color: var(--gold-bright); font-size: 1.5rem; margin-left: 0.4em; }
.cart-summary__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Checkout page ---- */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .checkout-grid { grid-template-columns: 1fr; } }

.checkout-form h3 {
  font-size: 1.1rem;
  margin: 0.6em 0 0.2em;
  color: var(--cream);
}
.checkout-form h3:first-child { margin-top: 0; }
.checkout-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.checkout-form .btn { margin-top: 0.4em; }
.checkout-form .produto-buy-btn,
.checkout-form #checkoutWhatsappBtn { margin-left: 0; display: inline-block; }

.checkout-summary {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 24px;
  position: sticky;
  top: 110px;
}
.checkout-summary h3 { margin: 0 0 1em; font-size: 1.1rem; color: var(--cream); }
.checkout-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 1.2em; }
.checkout-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--cream);
  padding-top: 0.8em;
}
.checkout-summary__total strong { font-family: 'Fraunces', serif; color: var(--gold-bright); font-size: 1.4rem; }
@media (max-width: 900px) { .checkout-summary { position: static; } }

.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.product-detail:last-child { border-bottom: none; }
.product-detail:nth-child(even) { direction: rtl; }
.product-detail:nth-child(even) > * { direction: ltr; }
@media (max-width: 860px) {
  .product-detail, .product-detail:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}

.about-photo {
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  border-radius: 6px;
  padding: 28px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img { width: 100%; height: 100%; object-fit: contain; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  color: var(--gold-bright);
  margin-bottom: 0.2em;
}

.about-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .about-strip { grid-template-columns: repeat(2, 1fr); } }

.about-strip__item {
  display: block;
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  border-radius: 4px;
  padding: 12px;
  border: 1px solid var(--line);
}
.about-strip__item img { width: 100%; height: 100%; object-fit: contain; }
.about-strip__item:hover { border-color: var(--gold); }

/* ---- Projetos ao redor do mundo (foto real de instalação) ---- */
.projetos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .projetos-grid { grid-template-columns: repeat(2, 1fr); } }
.projeto-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.projeto-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.projeto-card:hover img { transform: scale(1.06); }
.projeto-card__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: var(--cream);
  font-size: 0.82rem;
  line-height: 1.25;
}

/* ---- Real product catalog ---- */
.catalog-toolbar {
  background: var(--bg);
  padding: 14px 0 16px;
  margin-bottom: 0.4em;
  border-bottom: 1px solid var(--line);
}
.catalog-search {
  position: relative;
  max-width: 480px;
  margin: 0 auto 14px;
}
.catalog-search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--muted);
  pointer-events: none;
}
.catalog-search input {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px 11px 42px;
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
}
.catalog-search input:focus {
  outline: none;
  border-color: var(--gold);
}
.catalog-search input::placeholder { color: var(--muted); }

.catalog-filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.filter-chip {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.76rem;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.filter-chip:hover { border-color: var(--gold); color: var(--cream); }
.filter-chip.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
  font-weight: 600;
}

.catalog-count {
  text-align: center;
  color: var(--muted);
  font-size: 0.78rem;
  margin: 12px 0 0;
}

.catalog-card[hidden],
.catalog-grid[hidden],
.catalog-group-title[hidden] {
  display: none !important;
}

.catalog-empty {
  text-align: center;
  color: var(--muted);
  padding: 3em 0;
}
.catalog-empty a { color: var(--gold-bright); }

.catalog-group-title {
  margin: 2.4em 0 1.2em;
  padding-bottom: 0.5em;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.catalog-group-title:first-of-type { margin-top: 0; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 1em;
}
@media (max-width: 980px) { .catalog-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .catalog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .catalog-grid { grid-template-columns: 1fr; } }

.catalog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.catalog-card:hover { border-color: var(--gold); }
.catalog-card__img {
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(234, 183, 102, 0.12), rgba(234, 183, 102, 0) 70%);
  padding: 14px;
}
.catalog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.catalog-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.catalog-card__body h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.4;
  margin: 0;
  flex: 1;
}
.catalog-card__price {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold-bright);
}
.catalog-card .btn {
  text-align: center;
  padding: 10px 16px;
  font-size: 0.68rem;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  color: var(--cream);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { margin-top: 0.8em; font-size: 0.96rem; }

/* ---- Contact ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { font-size: 0.98rem; }
.contact-info a { color: var(--gold-bright); font-weight: 600; }

form.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.4em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  border-radius: 2px;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.honeypot { position: absolute; left: -9999px; }
.form-note {
  padding: 14px 16px;
  border-radius: 2px;
  font-size: 0.9rem;
  margin-bottom: 1em;
}
.form-note.success { background: rgba(126, 196, 207, 0.14); color: #bfe9ef; }
.form-note.error { background: rgba(232, 132, 92, 0.14); color: #f3b79a; }

/* ---- WhatsApp float ---- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  z-index: 90;
}
.wa-float svg { width: 28px; height: 28px; }

/* ---- Footer ---- */
.site-footer {
  background: #0d0a06;
  color: rgba(242, 234, 217, 0.7);
  padding: 48px 0 32px;
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}
.footer-logo {
  height: 30px;
  width: auto;
  margin-bottom: 1.6em;
}
.site-footer .footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 1.6em;
  flex-wrap: wrap;
}
.site-footer .footer-nav a {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 600;
}
.site-footer p { margin: 0 0 0.4em; }
.site-footer a { color: var(--gold-bright); }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

a.blog-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
a.blog-card:hover { border-color: var(--gold); }
.blog-card__img { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-card__body .eyebrow { margin-bottom: 0; }
.blog-card__body h3 { font-size: 1.05rem; margin: 0; line-height: 1.35; }
.blog-card__body p { font-size: 0.9rem; margin: 0; color: var(--muted); flex: 1; }

.blog-post {
  max-width: 740px;
  margin: 0 auto;
}
.blog-post__cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 2.4em;
}
.blog-post__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-post h2 {
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  font-size: 1.5rem;
}
.blog-post p { margin-bottom: 1.1em; }
.blog-post .faq-item summary { color: var(--cream); }

.blog-related h2 { margin-bottom: 0.8em; }
