:root{
--bg: #f6efe3;       
  --bg2:#efe4d3;    
  --card:#ffffff;    
  --card2:#faf6ef;  
--text:#000000;     
--muted:#333333;
  --green:#9ccfb4;
  --green2:#bfe3d0;
  --gold:#a67c2d;
  --gold2:#8c6a1f;
}  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --radius2: 28px;
  --ring: 0 0 0 3px rgba(215,180,106,.25);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue";
  color:var(--text);
 background:
  radial-gradient(1000px 500px at 15% 10%, rgba(214,175,96,.15), transparent 60%),
  radial-gradient(900px 500px at 80% 20%, rgba(191,227,208,.20), transparent 60%),
  linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x:hidden;
}

/* Floral overlay */
body::before{
  content:"";
  position:fixed;
  inset:-80px;
  pointer-events:none;
  opacity:.35;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(215,180,106,.28) 0 2px, transparent 3px),
    radial-gradient(circle at 25% 28%, rgba(239,248,242,.16) 0 2px, transparent 3px),
    radial-gradient(circle at 85% 20%, rgba(215,180,106,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 70%, rgba(42,138,96,.22) 0 2px, transparent 3px);
  filter: blur(.2px);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.topbar{
  position:sticky;
  top:0;
  z-index:10;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 22px;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(11,26,20,.85), rgba(11,26,20,.35));
  border-bottom:1px solid rgba(215,180,106,.15);
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:16px;
  background: linear-gradient(135deg, rgba(215,180,106,.30), rgba(42,138,96,.20));
  border:1px solid rgba(215,180,106,.22);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  font-size:20px;
}
.brand-name{ font-weight:800; letter-spacing:.3px; }
.brand-tag{ font-size:13px; color:var(--muted); opacity:.9; }

.nav{ display:flex; gap:10px; flex-wrap:wrap; }
.nav-link{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(215,180,106,.15);
  background: rgba(16,47,36,.40);
}
.nav-link:hover{ box-shadow: var(--ring); text-decoration:none; }
.nav-link.active{
  border-color: rgba(215,180,106,.35);
  background: linear-gradient(135deg, rgba(215,180,106,.20), rgba(31,107,74,.18));
}

.hero{
  max-width:1100px;
  margin: 28px auto 40px;
  padding: 0 18px;
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
}
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.hero-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.70), rgba(15,42,32,.55));
  border:1px solid rgba(215,180,106,.18);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  position:relative;
  overflow:hidden;
}
.hero-card::after{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:360px; height:360px;
  background: radial-gradient(circle at 30% 30%, rgba(215,180,106,.28), transparent 55%);
  transform: rotate(12deg);
}

.hero-kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(215,180,106,.12);
  border:1px solid rgba(215,180,106,.18);
  color: var(--muted);
  font-size:13px;
}
.hero-title{
  font-size: clamp(30px, 4vw, 48px);
  line-height:1.05;
  margin: 14px 0 10px;
  letter-spacing:.2px;
}
.gold{ color: var(--gold); text-shadow: 0 10px 35px rgba(215,180,106,.18); }
.hero-text{ color: var(--muted); font-size:16px; line-height:1.55; max-width: 60ch; }

.cta-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:16px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding: 12px 16px;
  border:1px solid transparent;
  cursor:pointer;
  font-weight:700;
  letter-spacing:.2px;
  user-select:none;
}
.btn-small{ padding:10px 14px; font-weight:700; }
.btn-primary{
  background: linear-gradient(135deg, rgba(215,180,106,.95), rgba(182,144,63,.95));
  color:#1b1406;
  border-color: rgba(255,255,255,.10);
}
.btn-primary:hover{ filter: brightness(1.03); box-shadow: 0 18px 40px rgba(215,180,106,.18); text-decoration:none; }
.btn-ghost{
  background: rgba(16,47,36,.55);
  border-color: rgba(215,180,106,.20);
  color: var(--text);
}
.btn-ghost:hover{ box-shadow: var(--ring); text-decoration:none; }

.contact-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(16,47,36,.50);
  border: 1px solid rgba(215,180,106,.15);
  color: var(--muted);
}
.pill:hover{ text-decoration:none; box-shadow: var(--ring); }
.pill-icon{ color: var(--gold); }

.note{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: 18px;
  border:1px dashed rgba(215,180,106,.28);
  background: rgba(31,107,74,.16);
  color: var(--muted);
}

.feature-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.62), rgba(15,42,32,.50));
  border:1px solid rgba(215,180,106,.16);
  box-shadow: var(--shadow);
  padding: 22px 20px;
}
.feature-title{ margin:0 0 10px; }
.feature-list{ margin:0; padding-left: 18px; color: var(--muted); line-height:1.7; }
.divider{ height:1px; background: rgba(215,180,106,.14); margin: 16px 0; }
.mini-title{ margin:0 0 10px; color: var(--text); }
.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  padding:9px 11px;
  border-radius:999px;
  background: rgba(215,180,106,.10);
  border:1px solid rgba(215,180,106,.16);
  color: var(--muted);
  font-size: 13px;
}

.footer{
  padding: 26px 18px 40px;
  text-align:center;
  color: rgba(199,223,210,.85);
  border-top:1px solid rgba(215,180,106,.12);
  background: rgba(11,26,20,.18);
}

/* Pages */
.page{
  max-width:1100px;
  margin: 18px auto 40px;
  padding: 0 18px;
}
.page-head{ margin: 12px 0 18px; }
.page-title{ margin:0; font-size: clamp(28px, 3vw, 40px); }
.page-subtitle{ margin:8px 0 0; color: var(--muted); }

.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}

.product-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.68), rgba(15,42,32,.55));
  border:1px solid rgba(215,180,106,.16);
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  position:relative;
  overflow:hidden;
}
.product-card::after{
  content:"";
  position:absolute;
  inset:auto -90px -120px auto;
  width:280px; height:280px;
  background: radial-gradient(circle at 35% 35%, rgba(42,138,96,.22), transparent 62%);
  transform: rotate(-8deg);
}
.product-top{ display:flex; align-items:flex-start; justify-content:space-between; gap:10px; }
.product-top h2{ margin:0; font-size:20px; }
.badge{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(215,180,106,.12);
  border:1px solid rgba(215,180,106,.18);
  color: var(--muted);
  font-size:12px;
  white-space:nowrap;
}

.price-block{ margin-top: 12px; display:flex; flex-direction:column; gap: 12px; }
.price-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:10px;
  align-items:center;
}
@media (max-width: 520px){
  .price-row{ grid-template-columns: 1fr; }
}
.label{ color: var(--muted); font-weight:700; }
.prices{ display:flex; flex-wrap:wrap; gap:8px; }

.btn-mini{
  border-radius: 999px;
  padding: 10px 12px;
  border: 1px solid rgba(215,180,106,.20);
  background: rgba(16,47,36,.55);
  color: var(--text);
  cursor:pointer;
  font-weight:800;
}
.btn-mini:hover{ box-shadow: var(--ring); }

.footnote{
  margin-top: 12px;
  color: rgba(199,223,210,.90);
  font-size: 12.5px;
}

.custom-card{
  margin-top: 14px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.62), rgba(15,42,32,.52));
  border:1px solid rgba(215,180,106,.16);
  box-shadow: var(--shadow);
  padding: 18px;
}
.custom-card h2{ margin:0 0 6px; }

/* Cart panel */
.cart-panel{
  margin-top: 16px;
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.62), rgba(15,42,32,.50));
  border:1px solid rgba(215,180,106,.20);
  box-shadow: var(--shadow);
  padding: 16px;
}
.cart-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.cart-head h3{ margin:0; }
.cart-list{ margin-top: 10px; display:flex; flex-direction:column; gap:10px; }
.cart-item{
  border-radius: 18px;
  border:1px solid rgba(215,180,106,.14);
  background: rgba(11,26,20,.30);
  padding: 12px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}
.cart-item strong{ display:block; }
.cart-item .meta{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.cart-item .right{ text-align:right; }
.cart-item button{
  margin-top: 8px;
  border-radius: 999px;
  padding: 8px 10px;
  border:1px solid rgba(215,180,106,.20);
  background: rgba(16,47,36,.55);
  color: var(--text);
  cursor:pointer;
  font-weight:800;
}
.cart-item button:hover{ box-shadow: var(--ring); }

.cart-foot{ margin-top: 10px; display:flex; justify-content:space-between; align-items:flex-start; gap:10px; flex-wrap:wrap; }
.cart-total{ display:flex; align-items:center; gap:12px; color: var(--muted); }
.cart-total strong{ color: var(--gold); font-size:18px; }
.cart-hint{ margin:0; color: var(--muted); font-size: 13px; max-width: 60ch; }

/* Gallery */
.upload-card{
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(16,47,36,.62), rgba(15,42,32,.50));
  border:1px solid rgba(215,180,106,.18);
  box-shadow: var(--shadow);
  padding: 16px;
}
.upload-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.file{
  padding: 10px;
  border-radius: 16px;
  border:1px solid rgba(215,180,106,.20);
  background: rgba(11,26,20,.22);
  color: var(--muted);
}
.tiny{ margin:10px 0 0; color: var(--muted); font-size: 12.5px; }

.gallery-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
@media (max-width: 900px){
  .gallery-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .gallery-grid{ grid-template-columns: 1fr; }
}
.photo{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(215,180,106,.16);
  background: rgba(11,26,20,.22);
  box-shadow: var(--shadow);
  position:relative;
}
.photo img{
  width:100%;
  height: 400px;
  object-fit: cover;
  display:block;
}
.photo .remove{
  position:absolute;
  top:10px; right:10px;
  border-radius:999px;
  padding: 9px 10px;
  border:1px solid rgba(255,255,255,.15);
  background: rgba(11,26,20,.55);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
}
.photo .remove:hover{ box-shadow: var(--ring); }

/* Floating WhatsApp button */
.whatsapp-fab{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:20;
  border-radius: 999px;
  padding: 14px 16px;
  display:flex;
  align-items:center;
  gap:10px;
  background: linear-gradient(135deg, rgba(42,138,96,.92), rgba(31,107,74,.92));
  border:1px solid rgba(215,180,106,.25);
  box-shadow: 0 18px 55px rgba(0,0,0,.40);
  color: var(--text);
  cursor:pointer;
  font-weight:900;
}
.whatsapp-fab:hover{ filter: brightness(1.03); }
.whatsapp-fab .count{
  min-width: 28px;
  height: 28px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: rgba(215,180,106,.92);
  color:#1b1406;
  font-size: 13px;
}
.whatsapp-fab.pulse{
  animation: pulse 650ms ease-out 1;
}
@keyframes pulse{
  0%{ transform: scale(1); }
  45%{ transform: scale(1.05); }
  100%{ transform: scale(1); }
}