:root {
  --bg: #fff5fa;
  --bg-soft: #ffe6f1;
  --card: rgba(255, 255, 255, 0.82);
  --card-strong: rgba(255, 255, 255, 0.92);
  --text: #2d1721;
  --muted: #7f5b69;
  --accent: #d75f97;
  --accent-deep: #9b2f66;
  --accent-soft: #f6c2d8;
  --border: rgba(155, 47, 102, 0.12);
  --shadow: 0 20px 40px rgba(150, 70, 110, 0.12);
  --radius: 26px;
  --radius-sm: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #ffeef5 0%, #fff7fb 35%, #fff 100%);
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.site-shell { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand-wrap { display:flex; align-items:center; gap:12px; }
.main-nav { display:flex; gap:24px; color: var(--muted); }
.main-nav a:hover { color: var(--accent-deep); }
.top-actions { display:flex; align-items:center; gap:10px; }

.pill-btn, .cta-btn, .icon-btn {
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.pill-btn {
  border-radius: 999px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: white;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(155, 47, 102, 0.24);
}
.pill-btn.ghost {
  background: rgba(255,255,255,0.86);
  color: var(--accent-deep);
  border: 1px solid var(--border);
  box-shadow: none;
}
.pill-btn:hover, .cta-btn:hover, .icon-btn:hover { transform: translateY(-1px); }
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
}
.mobile-only { display:none; }

.hero {
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  padding: 54px 0 34px;
  align-items: stretch;
}
.hero-copy, .hero-card, .story-card, .checkout-card, .steps-card, .contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: 42px;
  background: linear-gradient(160deg, rgba(255,255,255,0.95), rgba(255,233,242,0.85));
}
.hero-card {
  padding: 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,220,236,.9));
}
.hero h1, .section-head h2, .story-card h2, .contact-card h2 {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}
.hero h1 { font-size: clamp(2.8rem, 6vw, 5rem); max-width: 11ch; }
.hero h2 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; margin: 0 0 12px; }
.hero-text, .story-card p, .checkout-card p, .contact-card p, .steps-card { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.eyebrow {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.hero-actions {
  display:flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color:#fff;
  font-weight:700;
  box-shadow: 0 14px 28px rgba(155, 47, 102, 0.24);
}
.cta-btn.secondary {
  background: rgba(255,255,255,0.86);
  color: var(--accent-deep);
  border: 1px solid var(--border);
  box-shadow: none;
}
.cta-btn.block { width: 100%; }
.hero-badge {
  align-self:flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--accent-deep);
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-card ul { margin: 18px 0 0; padding-left: 18px; color: var(--muted); }
.hero-card li + li { margin-top: 8px; }

.shop-section, .checkout-section, .contact-section { padding: 30px 0; }
.section-head {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 22px;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
.section-head.left-only { justify-content:flex-start; }
.shop-tools { display:flex; gap: 10px; flex-wrap:wrap; }
.shop-tools input, .shop-tools select {
  min-width: 180px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
}
.product-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.product-card {
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--card-strong);
  box-shadow: var(--shadow);
}
.product-image {
  aspect-ratio: 4 / 4.4;
  background: linear-gradient(135deg, #ffd1e4, #ffeaf3);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.product-image img { width:100%; height:100%; object-fit:contain; display:block; }
.product-image .placeholder {
  padding: 24px;
  text-align:center;
  color: var(--accent-deep);
  font-family:'Cormorant Garamond', serif;
  font-size: 2rem;
}
.product-body { padding: 18px; display:flex; flex-direction:column; gap: 14px; }
.product-top { display:flex; justify-content:space-between; gap: 12px; align-items:flex-start; }
.product-name { margin: 0; font-size: 1.07rem; }
.product-price { font-weight: 700; color: var(--accent-deep); }
.product-desc { margin:0; color: var(--muted); line-height: 1.6; font-size: .95rem; }
.chip-row { display:flex; flex-wrap:wrap; gap: 8px; }
.color-chip, .size-chip {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 9px 12px;
  font-size: .88rem;
  cursor:pointer;
}
.color-chip.active, .size-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color:#fff;
  border-color: transparent;
}
.product-actions { display:grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.link-btn {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height: 46px;
  border-radius: 999px;
  padding: 12px 14px;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--border);
  color: var(--accent-deep);
  font-weight: 700;
}
.link-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color:#fff;
  border:none;
}

.story-section {
  padding: 10px 0 18px;
  display:grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 22px;
}
.story-card { padding: 28px; }
.story-card.large { background: linear-gradient(160deg, rgba(255,255,255,.94), rgba(255,226,239,.86)); }
.story-card h2 { font-size: clamp(2rem, 4vw, 3rem); }
.story-card h3 { margin:0 0 10px; }

.checkout-grid {
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.checkout-card, .steps-card, .contact-card { padding: 28px; }
.steps-card ol { margin: 0; padding-left: 20px; color: var(--muted); line-height: 1.8; }
.steps-card code {
  background: rgba(255,255,255,.9);
  padding: 3px 8px;
  border-radius: 8px;
  border:1px solid var(--border);
}
.contact-links { display:flex; flex-wrap:wrap; gap: 12px; margin-top: 18px; }
.contact-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border:1px solid var(--border);
  color: var(--accent-deep);
  font-weight:700;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100vh;
  background: rgba(255,255,255,0.98);
  box-shadow: -20px 0 40px rgba(45, 23, 33, 0.14);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .3s ease;
  display:flex;
  flex-direction:column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-header, .cart-footer { padding: 18px; border-bottom:1px solid var(--border); }
.cart-header { display:flex; justify-content:space-between; align-items:center; }
.cart-header h2 { margin:0; font-family:'Cormorant Garamond', serif; font-size:2rem; }
.cart-items { flex:1; overflow:auto; padding: 0 18px 18px; }
.cart-item {
  display:grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom:1px solid var(--border);
}
.cart-thumb {
  width:76px; height:76px; border-radius:18px; overflow:hidden;
  background: linear-gradient(135deg, #ffd8e8, #fff1f7);
}
.cart-thumb img { width:100%; height:100%; object-fit:cover; }
.cart-thumb .placeholder { display:grid; place-items:center; height:100%; color: var(--accent-deep); font-weight:700; }
.cart-title { margin:0 0 6px; font-size:1rem; }
.cart-meta { margin:0; color: var(--muted); font-size:.9rem; }
.cart-remove {
  align-self:start;
  background:transparent;
  border:none;
  color: var(--accent-deep);
  font-weight:700;
  cursor:pointer;
}
.cart-summary { display:flex; justify-content:space-between; align-items:center; font-size:1.1rem; margin-bottom: 12px; }
.cart-note { color:var(--muted); font-size:.9rem; line-height:1.6; }
.cart-actions { display:grid; gap: 10px; margin-top: 14px; }
.overlay {
  position: fixed; inset:0; background: rgba(30,12,20,.34); z-index:70;
}
.hidden { display:none; }
.empty-state {
  padding: 26px 0; color: var(--muted);
}

@media (max-width: 980px) {
  .hero, .story-section, .checkout-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topbar { border-radius: 28px; }
  .main-nav {
    position: fixed;
    inset: 88px 16px auto 16px;
    background: rgba(255,255,255,0.96);
    border:1px solid var(--border);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    gap: 14px;
    z-index:60;
  }
  .main-nav.open { display:flex; }
  .mobile-only { display:inline-flex; }
}

@media (max-width: 680px) {
  .site-shell { width: min(calc(100% - 20px), var(--max)); }
  .topbar {
    flex-wrap:wrap;
    justify-content:space-between;
    border-radius: 24px;
    padding: 14px;
  }
  .brand { font-size: 1.7rem; }
  .top-actions { width:100%; justify-content:space-between; }
  .hero-copy, .hero-card, .story-card, .checkout-card, .steps-card, .contact-card { padding: 22px; }
  .hero h1 { max-width: 100%; }
  .product-grid { grid-template-columns: 1fr; }
  .product-actions { grid-template-columns: 1fr; }
  .shop-tools { width:100%; }
  .shop-tools input, .shop-tools select { width:100%; }
}


.product-price-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 0.25rem; }
.product-price-note { font-size: 0.8rem; line-height: 1.3; color: #7a5765; text-align: right; max-width: 180px; }


.product-subtitle {
  margin: 0.15rem 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}


.coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.65);
  color: #7e4a67;
  font-weight: 600;
}

.image-button {
  position: relative;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}

.preview-hint {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  background: rgba(35, 18, 28, 0.82);
  color: white;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
}

.image-preview-modal.hidden {
  display: none;
}

.image-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.image-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 11, 18, 0.7);
  backdrop-filter: blur(4px);
}

.image-preview-card {
  position: relative;
  z-index: 2;
  width: min(92vw, 760px);
  margin: 4vh auto;
  background: #fff7fb;
  border-radius: 28px;
  padding: 1rem;
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.image-preview-card img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 22px;
  background: white;
}

.preview-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 3;
  background: rgba(255,255,255,0.9);
}

.preview-meta {
  padding: 0.8rem 0.4rem 0.2rem;
}

.preview-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.preview-details {
  margin: 0;
  color: #7b5368;
}

body.modal-open {
  overflow: hidden;
}


.cart-note[data-kind="error"] {
  color: #9f1239;
}

.cart-note[data-kind="info"] {
  color: #7c2d50;
}

.status-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: radial-gradient(circle at top, rgba(255, 220, 235, 0.8), transparent 45%), #fff7fb;
}

.status-card {
  width: min(680px, 100%);
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(164, 113, 140, 0.18);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 28px 60px rgba(88, 42, 63, 0.12);
}


.product-actions.single { grid-template-columns: 1fr; }
.qty-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 6px 10px;
  margin-top: 8px;
}
.qty-btn, .cart-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  color: var(--accent-deep);
  font-weight: 700;
  cursor: pointer;
}
.qty-value, .cart-qty-value {
  min-width: 54px;
  text-align: center;
  font-weight: 700;
  color: var(--accent-deep);
}
.cart-qty-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.hero-luxury {
  align-items: center;
}

.luxury-panel {
  background: linear-gradient(165deg, rgba(255,255,255,0.96), rgba(255,233,242,0.88));
}

.hero-visual {
  position: relative;
  padding: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.hero-image-frame {
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 16px 40px rgba(45, 23, 33, 0.10);
}

.hero-image-frame img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-floating-note {
  position: absolute;
  left: 22px;
  bottom: 20px;
  max-width: 270px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.93);
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(45, 23, 33, 0.10);
}

.floating-label {
  display: inline-flex;
  margin-bottom: 6px;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.hero-floating-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.hero-mini-card,
.feature-pill {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255,255,255,0.84);
}

.hero-mini-card {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-mini-card strong,
.feature-pill strong {
  font-size: .95rem;
}

.hero-mini-card span,
.feature-pill span {
  color: var(--muted);
  line-height: 1.5;
  font-size: .88rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 2px 0 26px;
}

.feature-pill {
  padding: 18px;
  box-shadow: var(--shadow);
}

.story-luxury .story-card,
.luxe-surface {
  background: linear-gradient(160deg, rgba(255,255,255,.95), rgba(255,239,246,.86));
}

.brand-section {
  padding-top: 6px;
}

@media (max-width: 980px) {
  .feature-strip,
  .hero-mini-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-floating-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}

@media (max-width: 680px) {
  .feature-strip,
  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    padding: 18px;
  }
}


.promo-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  padding: 12px 16px;
  text-align: center;
  background: #4b1228;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 56px;
  z-index: 30;
  margin-top: 14px;
  border-radius: 20px;
}

.hero-showcase {
  margin-top: 18px;
}

.hero-showcase-image {
  width: 100%;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.65);
}

.hero-showcase-image img {
  display: block;
  width: 100%;
  height: auto;
}

#shop.shop-section {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .topbar { top: 52px; }
  .hero-showcase-image { border-radius: 24px; }
}

@media (max-width: 640px) {
  .promo-bar {
    font-size: 0.72rem;
    padding: 10px 12px;
    letter-spacing: 0.04em;
  }

  .topbar {
    top: 44px;
  }

  .hero-showcase {
    margin-top: 12px;
  }
}

.hero-showcase-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.product-text-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-align: left;
  width: 100%;
  cursor: pointer;
  color: inherit;
}

.product-text-link:hover .product-name {
  text-decoration: underline;
}

#supabase-products-container {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

#supabase-products-container .product-card {
  background: white;
  border: 1px solid #f1dce8;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(92, 35, 68, 0.08);
  padding-bottom: 18px;
}

#supabase-products-container .product-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

#supabase-products-container .badge {
  display: inline-block;
  margin: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #c74d8b;
  color: white;
  font-size: 12px;
  font-weight: 700;
}

#supabase-products-container h3,
#supabase-products-container p {
  margin-left: 16px;
  margin-right: 16px;
}

#supabase-products-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 24px auto 60px;
  padding: 0 20px;
}

#supabase-products-container .product-card {
  max-width: 390px;
  width: 100%;
}

#supabase-products-container .product-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

#supabase-products-container .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c84f91;
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.product-card {
  position: relative;
}

.new-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: #c74d8b;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
}

.product-img {
  object-fit: cover;
  height: 260px;
  width: 100%;
  border-radius: 12px;
}

.sold-out-badge {
  position: absolute;
  top: 48px;
  left: 14px;
  z-index: 10;
  background: #2f1d28;
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
}

.sold-out-btn {
  opacity: 0.6;
  cursor: not-allowed;
}

.color-swatch {
  border: 1px solid #ead2df !important;
  font-weight: 700;
}

.color-swatch.active {
  outline: 3px solid #c74d8b;
  outline-offset: 2px;
}

.color-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid #ead2df;
  cursor: pointer;
}

.color-dot.active {
  border: 3px solid #c74d8b;
  transform: scale(1.1);
}

.color-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #ead2df;
  background: #fff;
  color: #7a2450;
  font-weight: 600;
  cursor: pointer;
}

.color-chip.active {
  background: #c74d8b;
  color: white;
  border-color: #c74d8b;
}

.custom-order-note {
  max-width: 900px;
  margin: 20px auto;
  padding: 16px 20px;
  border-radius: 18px;
  background: #fff0f7;
  border: 1px solid #f0bfd5;
  color: #7a2450;
  font-weight: 600;
  text-align: center;
}

.message-btn {
  display: block;
  max-width: 300px;
  margin: 10px auto 30px;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
  background: #c74d8b;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.low-stock {
  color: #d62828;
  font-weight: bold;
  font-size: 14px;
  margin-top: 4px;
}

.featured-section {
  text-align: center;
  padding: 40px 20px;
}

.featured-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.featured-card {
  width: 260px;
}

.featured-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.featured-card {
  transition: transform 0.3s ease;
}

.featured-card:hover {
  transform: scale(1.05);
}

.featured-card p {
  margin-top: 8px;
  font-weight: 600;
}

.reviews-section h2 {
  font-size: 34px; /* bigger title */
  margin-bottom: 30px;
}

.reviews-grid {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  max-width: 320px; /* wider */
  padding: 28px 26px; /* more space */
  border-radius: 20px;
  background: #fff0f7;
  border: 1px solid #f0bfd5;
  font-size: 16px;
  line-height: 1.6;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.review-card p:first-child {
  color: #ffb703;
  font-size: 22px; /* bigger stars */
  margin-bottom: 10px;
}

.review-card strong {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}

.review-card p:first-child {
  color: #ffb703;
  font-size: 18px;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
  .hero-showcase-image {
    height: auto !important;
    padding: 0 !important;
    margin-bottom: 20px;
  }

  .hero-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
  }

  .featured-section {
    padding: 30px 10px;
  }

  .featured-card {
    width: 95%;
    max-width: 340px;
  }

  .featured-card img {
    height: 260px;
    object-fit: cover;
  }

  .featured-card p {
    font-size: 18px;
  }

  .product-card {
    width: 100%;
  }

  .product-img {
    height: 320px;
    object-fit: cover;
  }

  .cta-btn {
    font-size: 18px;
    padding: 16px;
  }

  .review-card {
    max-width: 95%;
    font-size: 18px;
    padding: 30px;
  }

  .review-card p:first-child {
    font-size: 24px;
  }

  .reviews-section h2 {
    font-size: 28px;
  }

  .message-btn {
    font-size: 18px;
    padding: 14px;
  }
}

.review-card {
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.care-section {
  margin: 30px auto;
  padding: 20px;
  max-width: 500px;
  background: #fff0f7;
  border: 1px solid #f0bfd5;
  border-radius: 16px;
  text-align: center;
  font-size: 14px;
}

.care-section h3 {
  margin-bottom: 10px;
}

.top-search {
  width: 210px;
  padding: 12px 16px;
  border: 1px solid #ead2df;
  border-radius: 999px;
  font-size: 14px;
  color: #7a2450;
  background: white;
}

.top-search:focus {
  outline: 2px solid #c74d8b;
}

@media (max-width: 768px) {
  .top-search {
    width: 100%;
    font-size: 16px;
    padding: 15px 18px;
  }
}

.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-btn svg,
.menu-btn i {
  display: block;
  margin: auto;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff0f7;
  border: 1px solid #f0bfd5;
  color: #7a2450;
  font-weight: 700;
  text-decoration: none;
}

.contact-links a:hover {
  background: #c74d8b;
  color: white;
}

@media (max-width: 768px) {
  .contact-links a {
    display: flex;
    width: 100%;
    margin: 8px 0;
  }
}