:root {
  --cream: #fbf4e8;
  --cream-2: #fffaf2;
  --brown: #5a341f;
  --brown-dark: #321d12;
  --gold: #c99138;
  --gold-light: #e8cf9f;
  --text: #2e2119;
  --muted: #725f51;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(62, 35, 18, 0.13);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--cream-2);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 6vw;
  background: #f4eadc;
  border-bottom: 1px solid #ead9bf;
  font-size: 14px;
}
.topbar p { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 19px; }
.topbar div { display: flex; gap: 22px; color: var(--brown); font-weight: 600; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 6vw;
  border-bottom: 1px solid #eee0cd;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  color: var(--brown);
  font-size: 38px;
  border-bottom: 3px solid var(--gold);
}
.brand strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: .85;
  color: var(--brown);
}
.brand em {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: 24px;
  color: var(--gold);
  text-align: center;
}
.nav { display: flex; gap: 30px; align-items: center; font-weight: 600; }
.nav a { position: relative; font-size: 15px; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -7px;
  width: 0; height: 2px; background: var(--gold); transition: .2s;
}
.nav a:hover::after { width: 100%; }
.menu-btn { display: none; background: none; border: 0; font-size: 28px; color: var(--brown); }
.cart-button {
  border: 1px solid #e4cba6;
  background: #fff8ed;
  border-radius: 999px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 700;
  color: var(--brown);
}
.cart-button span {
  display: inline-grid; place-items: center;
  min-width: 22px; height: 22px;
  margin-left: 4px;
  border-radius: 50%;
  background: var(--gold);
  color: white;
  font-size: 12px;
}

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4vw;
  align-items: center;
  padding: 70px 6vw 90px;
  background:
    radial-gradient(circle at left top, rgba(255,255,255,.95), transparent 35%),
    linear-gradient(90deg, #fff7ea 0%, #f1dcc0 100%);
  overflow: hidden;
}
.eyebrow { margin: 0 0 9px; color: var(--gold); font-weight: 800; letter-spacing: 1.7px; text-transform: uppercase; font-size: 13px; }
.hero h1, .section h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--brown-dark);
  line-height: .95;
  margin: 0;
}
.hero h1 { font-size: clamp(48px, 6vw, 84px); }
.hero h1 span {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(34px, 4vw, 55px);
  color: var(--gold);
  font-weight: 400;
  margin-top: 12px;
}
.hero-text { max-width: 590px; color: var(--muted); line-height: 1.9; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.btn {
  border: 0; border-radius: 10px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .3px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.primary { background: var(--brown); color: white; }
.btn.secondary { background: var(--gold); color: white; }
.btn.whatsapp { background: #fff8ef; border: 1px solid #d8b783; color: var(--brown); }
.btn.full { width: 100%; }

.hero-wall {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
}
.hero-wall::after {
  content: ""; position: absolute; bottom: -50px; left: 8%; right: 3%;
  height: 62px; background: linear-gradient(#8f5f34, #6f4325); border-radius: 6px 6px 0 0;
  box-shadow: 0 -10px 35px rgba(60,30,15,.12);
}
.frame {
  z-index: 1;
  width: 185px; min-height: 285px;
  background: #fff7ec;
  border: 14px solid #2c1a12;
  box-shadow: 0 18px 35px rgba(45,25,12,.34);
  padding: 36px 22px;
  display: flex; flex-direction: column; justify-content: center; text-align: center;
  font-family: "Cormorant Garamond", serif;
}
.frame.big { width: 250px; min-height: 365px; }
.frame p { margin: 0; font-size: 24px; line-height: 1.17; }
.frame.big p { font-size: 33px; }
.frame small { margin-top: 16px; font-family: Inter, sans-serif; font-size: 12px; }
.frame em { margin-top: 45px; color: white; text-shadow: 0 2px 8px rgba(0,0,0,.4); font-family: "Great Vibes", cursive; font-size: 24px; }
.frame.floral { background: radial-gradient(circle at top left, #ffe2d5 0 12%, transparent 13%), #fff8ed; }
.frame.sunrise { background: linear-gradient(to bottom, #f8e3bb 0 44%, #cba06a 45%, #5d6a4d 100%); }

.trust-strip {
  width: min(1200px, 88vw);
  margin: -44px auto 50px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-strip div { padding: 24px; border-right: 1px solid #f0e3d2; }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { color: var(--gold); font-size: 30px; }
.trust-strip strong { display: block; margin: 8px 0; color: var(--brown); }
.trust-strip p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.section { padding: 70px 6vw; }
.section-heading { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.section h2 { font-size: clamp(36px, 4vw, 58px); }
.section-heading p:not(.eyebrow), .section > p, .split-section p { color: var(--muted); line-height: 1.8; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(66, 38, 18, .1);
  border: 1px solid #f0e0ca;
}
.product-art {
  height: 230px;
  display: grid; place-items: center;
  padding: 24px;
  background: linear-gradient(135deg, #eed8b8, #fff7ea);
}
.mini-frame {
  width: 145px; height: 185px;
  border: 10px solid #3a2215;
  background: #fff9ef;
  display: grid; place-items: center;
  text-align: center;
  padding: 16px;
  font-family: "Cormorant Garamond", serif;
  box-shadow: 0 10px 22px rgba(33,18,8,.2);
}
.mini-frame p { margin: 0; font-size: 19px; line-height: 1.1; }
.product-info { padding: 20px; }
.product-info h3 { margin: 0 0 8px; color: var(--brown); font-family: "Cormorant Garamond", serif; font-size: 25px; }
.product-info p { margin: 0 0 14px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 16px; }
.price { font-weight: 900; color: var(--brown-dark); font-size: 20px; }
.badge { background: #fff3df; color: var(--brown); padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 800; }
.add-to-cart { width: 100%; }

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.customize, .about { background: #fff3df; }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { margin: 12px 0; color: var(--brown); font-weight: 700; }
.check-list li::before { content: "✓"; color: var(--gold); margin-right: 10px; }
.custom-form, .checkout-form, .contact-card {
  background: white;
  border: 1px solid #f0dfc7;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.custom-form label { display: block; font-weight: 800; margin-bottom: 16px; color: var(--brown); }
.custom-form input, .custom-form select, .checkout-form input, .checkout-form textarea {
  width: 100%;
  border: 1px solid #dec7a5;
  border-radius: 12px;
  padding: 13px 14px;
  margin-top: 8px;
  background: #fffdf8;
  outline-color: var(--gold);
}
.checkout-form textarea, .custom-form textarea { min-height: 86px; resize: vertical; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.category-grid div {
  background: white;
  border: 1px solid #f0dec6;
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(66, 38, 18, .08);
}
.category-grid span { display: block; font-size: 32px; margin-bottom: 10px; color: var(--gold); }
.category-grid strong { color: var(--brown); }
.category-grid p { margin: 8px 0 0; color: var(--muted); font-size: 14px; }
.occasion-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.occasion-list span {
  background: white;
  border: 1px solid #efdabc;
  color: var(--brown);
  border-radius: 999px;
  padding: 13px 18px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(66, 38, 18, .06);
}
.mockup-card {
  background: white;
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: var(--shadow);
}
.mockup-card img { border-radius: 16px; }
.contact-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 40px;
  align-items: center;
}
.contact-card p { margin: 11px 0; color: var(--muted); }
.contact-card a { color: var(--brown); font-weight: 800; }
.footer { text-align: center; padding: 28px 6vw; background: var(--brown-dark); color: #fff3df; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: min(440px, 95vw);
  height: 100vh;
  background: white;
  z-index: 100;
  padding: 22px;
  transition: right .28s ease;
  overflow-y: auto;
  box-shadow: -18px 0 40px rgba(0,0,0,.18);
}
.cart-drawer.open { right: 0; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 16, 8, .45);
  z-index: 90;
  display: none;
}
.overlay.open { display: block; }
.cart-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #eee0cd; padding-bottom: 13px; }
.cart-header h3 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 34px; color: var(--brown); }
.cart-header button { border: 0; background: #fff0dc; width: 38px; height: 38px; border-radius: 50%; cursor: pointer; font-size: 25px; color: var(--brown); }
.cart-item { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; border-bottom: 1px solid #f0e2ce; }
.cart-item strong { color: var(--brown); }
.cart-item p { margin: 5px 0; color: var(--muted); font-size: 14px; }
.qty-controls { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.qty-controls button, .remove-item { border: 1px solid #d9bd91; background: #fff8ed; color: var(--brown); border-radius: 8px; min-width: 30px; height: 30px; cursor: pointer; font-weight: 800; }
.remove-item { padding: 0 10px; }
.cart-summary { background: #fff7ea; border-radius: 16px; padding: 16px; margin: 18px 0; }
.cart-summary div { display: flex; justify-content: space-between; margin: 8px 0; color: var(--muted); }
.cart-summary .total { border-top: 1px solid #e4cfad; padding-top: 12px; color: var(--brown-dark); font-size: 19px; }
.checkout-form { box-shadow: none; padding: 0; border: 0; }
.checkout-form h4 { margin: 18px 0 10px; color: var(--brown); }
.checkout-form input, .checkout-form textarea { margin: 0 0 10px; }
.radio { display: block; background: #fff8ef; padding: 10px 12px; border-radius: 10px; margin: 8px 0; color: var(--brown); font-weight: 700; }
.payment-note { background: #fff3df; border: 1px dashed #cfaa6a; border-radius: 12px; padding: 12px; color: var(--muted); font-size: 13px; line-height: 1.6; margin: 14px 0; }
.empty-cart { text-align: center; color: var(--muted); padding: 30px 0; }

@media (max-width: 1100px) {
  .hero, .split-section, .contact-section { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .nav {
    position: absolute;
    top: 86px; left: 0; right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 6vw;
    border-bottom: 1px solid #ead9bf;
    display: none;
  }
  .nav.open { display: flex; }
  .menu-btn { display: block; }
}
@media (max-width: 720px) {
  .topbar { flex-direction: column; text-align: center; }
  .topbar div { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .site-header { gap: 10px; }
  .brand strong { font-size: 28px; }
  .brand em { font-size: 20px; }
  .hero { padding-top: 45px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-wall { flex-direction: column; min-height: auto; }
  .hero-wall::after { display: none; }
  .frame, .frame.big { width: min(280px, 86vw); min-height: 260px; }
  .product-grid, .trust-strip, .category-grid { grid-template-columns: 1fr; }
  .section { padding: 52px 5vw; }
}
