:root {
  --bg: #fff8f5;
  --blush: #fdf1f3;
  --rose: #c97c8a;
  --rose-2: #b76e79;
  --gold: #c9a24d;
  --ink: #1e1e1e;
  --muted: #6f6264;
  --card: #ffffff;
  --line: #f0dfe1;
  --shadow: 0 16px 38px rgba(80, 36, 45, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(255, 248, 245, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 14px; }
.logo img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; background: #fff; }
.menu-button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 22px;
}
.site-nav {
  display: none;
  position: absolute;
  left: 12px;
  right: 12px;
  top: 66px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.site-nav.is-open { display: grid; }
.site-nav a { padding: 13px; font-weight: 600; border-bottom: 1px solid #f6eeee; }
.site-nav a:last-child { border-bottom: 0; }

.hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blush);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,30,30,.08), rgba(30,30,30,.74));
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 18px 34px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--rose-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #ffe5e9; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  margin: 0 0 10px;
}
h1 { font-size: 42px; }
h2 { font-size: 30px; }
.hero p { max-width: 540px; margin: 0 0 12px; font-size: 16px; }
.phone-line { font-weight: 700; }

.hero-actions, .contact-actions, .contact-band div, .site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.primary-button, .secondary-button, .whatsapp-button, .outline-button, .mini-button, .whatsapp-order {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 11px 15px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.primary-button { background: var(--ink); color: #fff; }
.secondary-button { background: var(--rose); color: #fff; }
.whatsapp-button, .whatsapp-order { background: #1fa855; color: #fff; }
.outline-button { border: 1px solid var(--rose); color: var(--rose-2); background: #fff; }
.wide { width: 100%; margin-top: 12px; }

.trust-strip {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.section, .page-main { width: min(1120px, 100%); margin: 0 auto; padding: 34px 14px; }
.section-head { margin-bottom: 16px; }
.section-head p, .page-title p { color: var(--muted); }
.blush-band {
  width: 100%;
  max-width: none;
  padding-left: max(14px, calc((100% - 1120px) / 2));
  padding-right: max(14px, calc((100% - 1120px) / 2));
  background: var(--blush);
}

.search-section {
  padding-bottom: 12px;
}
.search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  font-weight: 700;
}
.search-box span {
  color: var(--muted);
  font-size: 13px;
}
.search-box input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 36, 45, .08);
  color: var(--ink);
  font: inherit;
  padding: 12px 14px;
}
.search-results:empty {
  display: none;
}

.category-grid {
  display: grid;
  gap: 14px;
}
.category-card {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.category-card a { display: grid; grid-template-columns: 104px 1fr; gap: 12px; align-items: center; padding: 10px; }
.category-card img { width: 104px; height: 104px; border-radius: 8px; object-fit: cover; background: var(--blush); }
.category-card h3 { margin: 0 0 4px; font-size: 16px; }
.category-card p { margin: 0 0 8px; color: var(--muted); font-size: 12px; }
.mini-button { min-height: 32px; padding: 7px 10px; background: var(--ink); color: #fff; font-size: 12px; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #f3e5e7;
  border-radius: 8px;
  background: var(--card);
  box-shadow: 0 8px 22px rgba(80, 36, 45, .08);
}
.product-image img { width: 100%; aspect-ratio: 1; object-fit: cover; background: var(--blush); }
.product-body { padding: 7px; }
.product-name {
  display: -webkit-box;
  min-height: 34px;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.product-body p {
  display: none;
  margin: 4px 0;
  color: var(--muted);
  font-size: 12px;
}
.price-row { display: flex; flex-direction: column; gap: 0; margin: 4px 0 6px; font-size: 12px; }
.old-price { color: var(--muted); text-decoration: line-through; font-size: 10px; }
.add-button {
  width: 100%;
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--rose-2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}
.add-button:disabled {
  background: #c8b8bb;
  cursor: not-allowed;
}
.detail-link { display: block; margin-top: 5px; color: var(--rose-2); font-size: 10px; font-weight: 700; text-align: center; }
.deal-badge {
  position: absolute;
  z-index: 1;
  top: 7px;
  left: 7px;
  padding: 3px 7px;
  border-radius: 999px;
  background: var(--rose-2);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.why-grid { display: grid; gap: 10px; }
.why-grid div, .contact-card, .summary-card, .empty-cart {
  padding: 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.contact-band {
  padding: 28px 16px 92px;
  background: var(--ink);
  color: #fff;
  text-align: center;
}
.contact-band h2 { color: #fff; }
.contact-band div { justify-content: center; }

.page-title {
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 8px;
  background: var(--blush);
}
.page-title h1 { font-size: 36px; }
.product-detail { display: grid; gap: 18px; }
.product-detail > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.product-panel { padding: 18px; border-radius: 8px; background: #fff; box-shadow: var(--shadow); }
.detail-price { display: block; margin: 12px 0; font-size: 24px; color: var(--rose-2); }
.stock-pill { display: inline-flex; padding: 7px 12px; border-radius: 999px; background: var(--blush); color: var(--rose-2); font-weight: 700; }
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}
.product-meta span:not(:empty) {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.quantity-label { display: grid; gap: 8px; margin-top: 14px; font-weight: 700; }
.quantity-label input { min-height: 46px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; font: inherit; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 8px; }
.cart-item h3 { margin: 0; font-size: 14px; }
.cart-item p { margin: 2px 0 8px; color: var(--muted); font-size: 12px; }
.qty-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.qty-row button, .remove-button {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
}
.remove-button { padding: 0 10px; color: var(--rose-2); }
.summary-card { display: grid; gap: 12px; margin-top: 16px; }
.summary-card div { display: flex; justify-content: space-between; gap: 12px; }
.delivery-note { margin: 0; padding: 10px; border-radius: 8px; background: var(--blush); color: var(--rose-2); font-weight: 700; }
.final-row { padding-top: 12px; border-top: 1px solid var(--line); font-size: 20px; }
.whatsapp-order { width: 100%; min-height: 52px; }

.floating-deals {
  position: fixed;
  right: 14px;
  bottom: 132px;
  z-index: 15;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--rose-2);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(183, 110, 121, .34);
}
.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 76px;
  z-index: 15;
  padding: 11px 14px;
  border-radius: 999px;
  background: #1fa855;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(31, 168, 85, .3);
}
.sticky-cart {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 14;
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(30,30,30,.22);
}
.site-footer {
  padding: 28px 14px 84px;
  background: #151515;
  color: #fff;
}
.site-footer h2 { font-size: 28px; }
.site-footer a { padding: 9px 12px; border-radius: 8px; background: rgba(255,255,255,.1); font-weight: 700; }

@media (min-width: 720px) {
  .menu-button { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav a { border: 0; padding: 10px; font-size: 14px; }
  .logo { font-size: 18px; }
  .hero { min-height: 610px; }
  .hero-content { padding: 160px 48px 64px; }
  h1 { font-size: 64px; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-body { padding: 12px; }
  .product-name { font-size: 15px; }
  .product-body p { display: block; }
  .price-row { flex-direction: row; align-items: center; gap: 8px; font-size: 16px; }
  .add-button { min-height: 42px; font-size: 14px; }
  .detail-link { font-size: 12px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail { grid-template-columns: minmax(0, .95fr) 1fr; align-items: start; }
  .cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 18px; align-items: start; }
  .cart-layout .page-title { grid-column: 1 / -1; }
  .sticky-cart { left: auto; width: 190px; }
}

@media (min-width: 1024px) {
  .category-grid { grid-template-columns: repeat(3, 1fr); }
}
