:root {
  --saffron: #e89a1c;
  --saffron-dark: #b86d08;
  --cream: #f6efe3;
  --cream-2: #fff9ef;
  --brown: #3e2723;
  --brown-2: #1f1412;
  --sage: #6f7d50;
  --jade: #24382e;
  --rose: #b86f58;
  --clay: #8a4d1b;
  --mist: #eef2ea;
  --ink: #211814;
  --muted: #75675e;
  --line: rgba(62, 39, 35, .16);
  --card: rgba(255, 249, 239, .86);
  --shadow: 0 20px 60px rgba(62, 39, 35, .14);
  --radius: 8px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff9ef 0%, var(--cream) 44%, #eef2ea 100%);
  font-family: var(--font-body);
  line-height: 1.65;
}
body.dark {
  --cream: #211814;
  --cream-2: #2a1b18;
  --ink: #fff7ea;
  --muted: #d7c6b7;
  --line: rgba(255, 247, 234, .14);
  --card: rgba(45, 29, 24, .9);
  --shadow: 0 20px 70px rgba(0, 0, 0, .32);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(232, 154, 28, .55); outline-offset: 3px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { width: min(1180px, calc(100% - 32px)); margin-inline: auto; }
.section { padding: 72px 0; }
.section.alt { background: linear-gradient(135deg, var(--cream-2), var(--mist)); }
.section.earth { background: linear-gradient(135deg, #2b1a17, #24382e); color: #fff9ef; }
.section.earth p, .section.earth blockquote { color: rgba(255,249,239,.78); }
.eyebrow {
  color: var(--saffron-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3, h4 {
  margin: 0 0 14px;
  font-family: var(--font-head);
  line-height: 1.05;
  font-weight: 700;
}
h1 { font-size: clamp(2.7rem, 8vw, 5.8rem); }
h2 { font-size: clamp(2rem, 5vw, 3.7rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 18px; color: var(--muted); }
.lead { font-size: clamp(1rem, 2.4vw, 1.22rem); max-width: 720px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--brown);
  border-radius: var(--radius);
  background: var(--brown);
  color: #fff9ef;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(62, 39, 35, .22); }
.btn.accent { border-color: var(--saffron); background: linear-gradient(135deg, #f4b547, var(--saffron)); color: #241410; }
.btn.ghost { background: transparent; color: var(--brown); }
body.dark .btn.ghost { color: var(--cream); border-color: rgba(255,255,255,.36); }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  color: var(--ink);
  cursor: pointer;
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 249, 239, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
body.dark .site-header { background: rgba(33, 24, 20, .86); }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand strong { font-family: var(--font-head); font-size: 1.38rem; letter-spacing: .04em; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .94rem; font-weight: 600; }
.nav-links a { color: var(--muted); }
.nav-links a.active, .nav-links a:hover { color: var(--brown); }
body.dark .nav-links a.active, body.dark .nav-links a:hover { color: var(--cream); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger { display: none; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(31,20,18,.84), rgba(62,39,35,.44) 38%, rgba(111,125,80,.14) 64%, rgba(246,239,227,.08)),
    url("../images/banner-te.png") center / cover no-repeat;
  color: #fff9ef;
}
.hero .container { padding: 72px 0 48px; }
.hero p { color: rgba(255,249,239,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 54px;
  max-width: 860px;
}
.trust-item {
  min-height: 94px;
  padding: 16px;
  border: 1px solid rgba(255,249,239,.22);
  background: linear-gradient(145deg, rgba(31,20,18,.58), rgba(111,125,80,.22));
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.trust-item strong { display: block; font-family: var(--font-head); font-size: 1.1rem; }
.trust-item span { font-size: .82rem; color: rgba(255,249,239,.76); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--card);
}
.media-frame img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }

.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.card, .product-card, .article-card {
  background: linear-gradient(180deg, rgba(255,249,239,.95), rgba(246,239,227,.88));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(62,39,35,.08);
  overflow: hidden;
}
body.dark .card, body.dark .product-card, body.dark .article-card { background: var(--card); }
.card { padding: 24px; }
.category-card {
  min-height: 240px;
  display: grid;
  align-content: end;
  padding: 22px;
  color: #fff9ef;
  background-image: linear-gradient(160deg, rgba(31,20,18,.72), rgba(36,56,46,.42)), var(--cat, url("../images/category-incense.svg"));
  background-size: cover;
  background-position: center;
}
.category-card p { color: rgba(255,249,239,.82); margin-bottom: 0; }

.product-card .product-art {
  height: 230px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff9ef, #eef2ea);
  overflow: hidden;
}
.product-badge { position: absolute; margin: 14px; padding: 5px 9px; border-radius: 999px; background: var(--sage); color: white; font-size: .75rem; }
.product-art svg { width: 56%; max-height: 160px; color: var(--brown); }
.product-art img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.product-card:hover .product-art img { transform: scale(1.04); }
.product-body { padding: 18px; }
.price { color: var(--saffron-dark); font-weight: 800; }
.rating { color: var(--saffron); font-size: .9rem; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 16px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { text-align: center; padding: 26px 16px; border-top: 2px solid var(--saffron); background: rgba(255,249,239,.5); border-radius: var(--radius); }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.3rem; color: var(--brown); }
body.dark .stat strong { color: var(--cream); }

.masonry { columns: 3 260px; column-gap: 18px; }
.masonry figure { break-inside: avoid; margin: 0 0 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--card); }
.masonry img { width: 100%; min-height: 190px; object-fit: cover; }
.masonry figcaption { padding: 12px 14px; color: var(--muted); font-size: .9rem; }

.testimonial-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
blockquote { margin: 0; color: var(--muted); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  background: transparent;
  border: 0;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-answer { max-height: 220px; }

.newsletter {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 28px;
  padding: 38px;
  background: var(--brown);
  color: #fff9ef;
  border-radius: var(--radius);
}
.newsletter p { color: rgba(255,249,239,.78); }
.inline-form { display: flex; gap: 10px; }
.inline-form input, .form-control input, .form-control textarea, .form-control select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
  color: var(--ink);
  padding: 13px 14px;
}

.page-hero {
  padding: 86px 0 56px;
  background: linear-gradient(135deg, rgba(232,154,28,.16), transparent), var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs { color: var(--muted); font-size: .9rem; margin-bottom: 18px; }
.shop-layout { display: grid; grid-template-columns: 280px 1fr; gap: 28px; align-items: start; }
.filters { position: sticky; top: 96px; }
.filter-group { margin-bottom: 22px; }
.filter-group label { display: block; margin: 8px 0; color: var(--muted); }
.toolbar { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-bottom: 20px; }

.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.gallery-main { aspect-ratio: 1 / 1; display: grid; place-items: center; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; cursor: zoom-in; }
.gallery-main svg { width: 60%; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.benefit-list, .policy-list { padding-left: 20px; color: var(--muted); }
.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0 14px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.article-card img { width: 100%; height: 220px; object-fit: cover; }
.article-card .card-body { padding: 20px; }
.article-meta { color: var(--saffron-dark); font-size: .84rem; font-weight: 700; }
.article-body { max-width: 820px; }
.article-body p, .article-body li { color: var(--muted); }
.article-body img { border-radius: var(--radius); margin: 26px 0; }

.contact-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control.full { grid-column: 1 / -1; }
.form-note { min-height: 24px; font-size: .9rem; color: var(--sage); }
.map-box { min-height: 300px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--cream-2); }
.map-box iframe { width: 100%; height: 100%; border: 0; min-height: 300px; }

.site-footer {
  background: var(--brown-2);
  color: #fff9ef;
  padding: 58px 0 22px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 28px; }
.site-footer p, .site-footer a { color: rgba(255,249,239,.72); }
.footer-bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,249,239,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }

.floating-actions { position: fixed; right: 18px; bottom: 18px; display: grid; gap: 10px; z-index: 60; }
.float-btn { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: white; box-shadow: var(--shadow); }
.float-btn.whatsapp { background: #128c7e; }
.float-btn.call { background: var(--saffron-dark); }
.back-top { background: var(--brown); border: 0; }

.cart-drawer {
  position: fixed; inset: 0 0 0 auto; width: min(420px, 100%);
  background: var(--cream);
  color: var(--ink);
  transform: translateX(105%);
  transition: transform .25s ease;
  z-index: 100;
  box-shadow: -20px 0 50px rgba(0,0,0,.18);
  padding: 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.open { transform: translateX(0); }
.cart-item { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 920px) {
  .hamburger { display: inline-grid; }
  .nav-links {
    position: fixed;
    left: 16px; right: 16px; top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-actions .btn { display: none; }
  .split, .newsletter, .shop-layout, .product-detail, .contact-grid { grid-template-columns: 1fr; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3, .stats, .testimonial-track, .footer-grid { grid-template-columns: 1fr 1fr; }
  .filters { position: static; }
}

@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero { min-height: 760px; background-position: 45% center; }
  .trust-row, .grid.cols-4, .grid.cols-3, .stats, .testimonial-track, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .inline-form, .toolbar, .footer-bottom { flex-direction: column; align-items: stretch; }
  .brand strong { font-size: 1.1rem; }
  .brand img { width: 48px; height: 48px; }
  .newsletter { padding: 24px; }
}
