/* ============================================================
   Mimohflorist & Gift Shop — Redesigned Stylesheet
   Palette: plum #2C1A1F, rose #9B2335, gold #C9A96E, blush #F5EDE8, cream #FDFAF7
   Type: DM Sans (display + body/UI)
   ============================================================ */

:root {
  --plum:       #2C1A1F;
  --plum-light: #3F252C;
  --rose:       #9B2335;
  --rose-mid:   #B83045;
  --rose-soft:  #F5EDE8;
  --gold:       #C9A96E;
  --gold-muted: #A8865A;
  --cream:      #FDFAF7;
  --cream-2:    #F8F3EE;
  --ink:        #1E1216;
  --muted:      #7A5A62;
  --border:     rgba(44, 26, 31, 0.10);
  --white:      #FFFFFF;
  --green:      #1D9E59;

  --font-display: 'Playfair Display', serif;
  --font-body:    'Cormorant Garamond', serif;
  --font-script:  'Great Vibes', cursive;

  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;

  --shadow-sm:  0 2px 8px rgba(44, 26, 31, 0.08);
  --shadow:     0 8px 28px rgba(44, 26, 31, 0.12);
  --shadow-lg:  0 20px 60px rgba(44, 26, 31, 0.18);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--plum);
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
}
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ===== SVG Icons ===== */
.icon { display: inline-block; width: 18px; height: 18px; vertical-align: middle; }

/* ===== Container ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Eyebrow ===== */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
}
.eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--rose);
  flex-shrink: 0;
}

/* ===== Script accent (romantic flourish) ===== */
.script-accent {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--rose);
}
h1 .script-accent { font-size: 1.3em; }
.about-quote {
  font-size: 1.15rem;
  font-style: italic;
}
.about-quote .script-accent { font-size: 1.25em; font-style: normal; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, filter 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--plum);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--plum);
  color: var(--plum);
}
.btn-outline:hover { background: var(--rose-soft); border-color: var(--rose); color: var(--rose); }
.btn-gold {
  background: var(--gold);
  color: var(--plum);
}
.btn-gold:hover { filter: brightness(1.06); box-shadow: var(--shadow); }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { filter: brightness(1.06); box-shadow: var(--shadow); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; pointer-events: none; }

/* ===== Top Bar ===== */
.topbar {
  background: var(--plum);
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.topbar-wa:hover { opacity: 0.8; }
@media (max-width: 560px) {
  .topbar { padding: 8px 0; }
  .topbar .container { justify-content: center; gap: 0; }
  .topbar-left { display: none; }
  .topbar-wa { font-size: 0.82rem; }
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--rose) 0%, var(--plum) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.6rem;
  box-shadow: 0 2px 8px rgba(44,26,31,0.25);
}
.brand-name {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--plum);
  line-height: 1;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 2px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.2s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rose); }

/* Shop dropdown */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav-caret { transform: rotate(45deg); transition: transform 0.2s ease; color: var(--muted); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 200px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 60;
}
.nav-dropdown-panel a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--plum);
  white-space: nowrap;
}
.nav-dropdown-panel a:hover { background: var(--rose-soft); color: var(--rose); }
.nav-item-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item-dropdown:hover .nav-caret { transform: rotate(225deg); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search-btn {
  background: none;
  border: none;
  color: var(--plum);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-radius: 50%;
  flex-shrink: 0;
}
.search-btn:hover { color: var(--rose); background: var(--rose-soft); }
.cart-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--plum);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-radius: 50%;
  flex-shrink: 0;
}
.cart-btn:hover { color: var(--rose); background: var(--rose-soft); }
/* Wishlist button — mirrors cart-btn */
.wishlist-btn {
  position: relative;
  background: none;
  border: none;
  color: var(--plum);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border-radius: 50%;
  flex-shrink: 0;
}
.wishlist-btn:hover { color: var(--rose); background: var(--rose-soft); }
.wishlist-btn.is-active { color: var(--rose); }
.wishlist-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--rose);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}
/* ===== ACCOUNT PANEL ===== */
.acct-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink);
  border-radius: 50%;
  transition: background .2s;
}
.acct-btn:hover { background: var(--cream); }
.acct-avatar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .03em;
}
.acct-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.acct-overlay.is-open { opacity: 1; pointer-events: auto; }
.acct-drawer {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%) scale(.96);
  width: min(440px, 92vw);
  max-height: 82vh;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 48px rgba(0,0,0,.18);
  z-index: 1200;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .28s;
}
.acct-drawer.is-open {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.acct-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}
.acct-title { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0; }
.acct-close {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  padding: 4px;
  border-radius: 50%;
  transition: background .2s;
}
.acct-close:hover { background: var(--cream); color: var(--ink); }
.acct-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.acct-tab {
  flex: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 12px 0;
  font-size: .9rem;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.acct-tab.active { color: var(--rose); border-bottom-color: var(--rose); font-weight: 600; }
.acct-pane { padding: 20px; }
.acct-sub { font-size: .88rem; color: var(--muted); margin: 0 0 18px; }
.acct-field { margin-bottom: 14px; }
.acct-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 5px; text-transform: uppercase; letter-spacing: .05em; }
.acct-field input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.acct-field input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(198,108,108,.12);
}
.acct-msg { font-size: .83rem; min-height: 18px; margin: 0 0 10px; color: var(--rose); }
.acct-msg.success { color: #3a7c56; }
.acct-submit {
  width: 100%;
  padding: 13px;
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-bottom: 14px;
}
.acct-submit:hover { background: var(--rose-dark,#b55a5a); }
.acct-submit:active { transform: scale(.98); }
.acct-submit:disabled { opacity: .6; cursor: default; }
.acct-switch { text-align: center; font-size: .85rem; color: var(--muted); margin: 0; }
.acct-switch a { color: var(--rose); text-decoration: none; font-weight: 600; }
.acct-forgot { display: block; text-align: center; font-size: .82rem; color: var(--muted); margin-top: 10px; text-decoration: none; }
.acct-forgot:hover { color: var(--rose); }
/* Profile pane */
.acct-avatar-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 14px;
}
.acct-displayname { text-align: center; font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0 0 4px; }
.acct-email-label { text-align: center; font-size: .85rem; color: var(--muted); margin: 0 0 22px; }
.acct-profile-actions { display: flex; flex-direction: column; gap: 10px; }
.acct-outline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: transparent;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.acct-outline-btn:hover { background: var(--cream); border-color: var(--rose); }
.acct-outline-btn.danger { color: var(--rose); }
.acct-outline-btn.danger:hover { background: #fdf0f0; border-color: var(--rose); }
/* Orders pane */
.acct-back {
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--muted);
  font-size: .85rem;
  padding: 0;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.acct-back:hover { color: var(--rose); }
.acct-orders-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.acct-empty { text-align: center; color: var(--muted); font-size: .88rem; padding: 24px 0; }
.acct-order-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--cream);
}
.acct-order-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.acct-order-id { font-size: .78rem; color: var(--muted); font-weight: 600; text-transform: uppercase; }
.acct-order-date { font-size: .78rem; color: var(--muted); }
.acct-order-total { font-size: 1rem; font-weight: 700; color: var(--rose); }
.acct-order-items { font-size: .83rem; color: var(--ink); margin-top: 4px; }
/* Forgot password flow */
.acct-pane.reset-pane .acct-submit { margin-top: 6px; }


/* Wishlist drawer — mirrors cart-drawer */
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,12,16,0.4);
  z-index: 198;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.wishlist-overlay.is-open { opacity: 1; pointer-events: auto; }
.wishlist-drawer {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(400px, calc(100% - 48px));
  max-height: 640px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  z-index: 199;
  display: flex;
  flex-direction: column;
  transform: translateY(calc(100% + 40px));
  opacity: 0;
  transition: transform 0.38s cubic-bezier(.32,1.1,.58,1), opacity 0.28s;
  pointer-events: none;
}
.wishlist-drawer.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.wishlist-items { flex: 1; overflow-y: auto; padding: 0 20px 20px; }
/* Wishlist product row */
.wishlist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.wishlist-item:last-child { border-bottom: none; }
.wishlist-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--rose-soft);
}
.wishlist-item-info { flex: 1; min-width: 0; }
.wishlist-item-name { font-weight: 600; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wishlist-item-price { font-size: 0.85rem; color: var(--rose); font-weight: 700; margin-top: 3px; }
.wishlist-item-actions { display: flex; gap: 8px; flex-shrink: 0; }
.wishlist-item-btn {
  width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--border);
  background: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; transition: background 0.15s, color 0.15s; color: var(--plum);
}
.wishlist-item-btn:hover { background: var(--rose-soft); color: var(--rose); border-color: var(--rose-light); }
.wishlist-item-btn.remove-wish:hover { background: #fff0f3; color: #c00; }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--rose);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1.5px solid var(--cream);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--plum);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--rose-soft); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% -10%, rgba(155, 35, 53, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at -10% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-content .eyebrow { margin-bottom: 20px; }
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--plum);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 440px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-card--main {
  inset: 0;
  background: linear-gradient(145deg, var(--rose-soft) 0%, #EDD9D0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 9px 16px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-card-tag svg { color: var(--green); }
.hero-card--accent {
  bottom: -16px;
  right: -16px;
  background: var(--plum);
  color: var(--white);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  width: 200px;
  z-index: 2;
}
.accent-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gold);
}
.accent-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}

/* ===== Hero Slider ===== */
.hero-slider { position: relative; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}
.hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
}
.hero-dots {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-dot:hover { background: var(--rose-soft); }
.hero-dot.is-active { background: var(--rose); transform: scale(1.25); }
.hero-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  color: var(--plum);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.15s ease;
}
.hero:hover .hero-arrow { display: flex; }
.hero-arrow:hover { background: var(--white); }
.hero-arrow-prev { left: 4px; }
.hero-arrow-next { right: 4px; }
@media (max-width: 768px) {
  .hero-arrow { display: none !important; }
  .hero-dots { margin-top: 20px; }
}

/* ===== Value Strip ===== */
.value-strip {
  background: var(--plum);
  padding: 22px 0;
}
.value-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 28px;
  position: relative;
}
.value-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.18);
}
.value-item .icon { color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }

@media (max-width: 860px) {
  .value-item { padding: 6px 16px; white-space: normal; }
}
@media (max-width: 600px) {
  .value-strip-inner { flex-direction: column; align-items: flex-start; gap: 2px; }
  .value-item { padding: 8px 0; width: 100%; }
  .value-item:not(:last-child)::after { display: none; }
  .value-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* ===== Curated Carousels (Best Sellers / New Arrivals) ===== */
.carousel-section { padding: 56px 0; border-top: 1px solid var(--border); }
.carousel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}
.carousel-head h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  margin: 4px 0 0;
}
.carousel-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rose);
  white-space: nowrap;
  flex-shrink: 0;
}
.carousel-viewall:hover { color: var(--plum); }
.carousel-viewall svg { transform: rotate(45deg); }
.carousel-scroll {
  overflow-x: auto;
  margin: 0 -28px;
  padding: 0 28px 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--rose-soft) transparent;
}
.carousel-scroll::-webkit-scrollbar { height: 6px; }
.carousel-scroll::-webkit-scrollbar-thumb { background: var(--rose-soft); border-radius: 99px; }
.carousel-track {
  display: flex;
  gap: 20px;
  scroll-snap-type: x proximity;
}
.carousel-track .product-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
}
.carousel-track:empty::after {
  content: 'Loading...';
  color: var(--muted);
  font-size: 0.85rem;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .carousel-section { padding: 40px 0; }
  .carousel-scroll { margin: 0 -20px; padding: 0 20px 8px; }
  .carousel-track .product-card { flex-basis: 188px; }
}

/* ===== Shop Section ===== */
.section-shop { padding: 90px 0; }
.section-head {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.section-head .eyebrow { justify-content: center; }
.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}
.section-head p { color: var(--muted); font-size: 0.95rem; }

/* Filters */
.filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.filter-chip {
  padding: 9px 20px;
  border-radius: 99px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.15s ease;
  letter-spacing: 0.01em;
}
.filter-chip:hover { border-color: var(--rose); color: var(--rose); }
.filter-chip.active {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--white);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-img {
  aspect-ratio: 4/3;
  background: var(--rose-soft) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img svg { color: rgba(155,35,53,0.2); width: 40px; height: 40px; }
.product-img .badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--plum);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.product-img .badge.badge-sale {
  background: var(--rose);
  color: var(--white);
}
.product-img .oos {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 31, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
/* Wishlist heart on product card */
.card-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.88);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.18s, transform 0.18s, background 0.15s, color 0.15s;
  z-index: 2;
}
.product-card:hover .card-wish-btn { opacity: 1; transform: scale(1); }
.card-wish-btn:hover { background: #fff; color: var(--rose); }
.card-wish-btn.is-wished { opacity: 1; transform: scale(1); color: var(--rose); background: #fff; }
.product-body {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-cat {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rose);
  font-weight: 700;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1.2;
}
.product-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  flex: 1;
}
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--plum);
}
.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.price-strike {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: line-through;
}
.price-sale {
  color: var(--rose);
}
.add-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--plum);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--rose); }
.add-btn svg { width: 18px; height: 18px; }
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 70px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}
.scroll-sentinel {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}
.scroll-sentinel-spinner {
  width: 28px;
  height: 28px;
  border: 3px solid var(--rose-soft);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Events ===== */
.section-events {
  padding: 100px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.events-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: center;
}
.events-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}
.events-content p {
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
}
.events-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.events-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--plum);
  font-weight: 500;
}
.feature-icon {
  color: var(--rose);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.events-visual {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.events-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.events-placeholder { color: var(--rose); }

/* ===== About ===== */
.section-about { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  height: 400px;
}
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-card--main {
  inset: 0;
  box-shadow: var(--shadow-lg);
}
.about-card--main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-pill {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  z-index: 2;
}
.about-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 18px;
}
.about-content p { color: var(--muted); margin-bottom: 14px; line-height: 1.75; }


/* ===== Contact ===== */
.section-contact {
  padding: 100px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--border);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 3px;
}
.contact-val {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--plum);
}
a.contact-val:hover { color: var(--rose); }

/* ===== FAQ ===== */
.section-faq {
  padding: 100px 0;
  background: var(--white);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.faq-item.is-open { border-color: var(--rose-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--plum);
}
.faq-caret {
  flex-shrink: 0;
  color: var(--rose);
  transition: transform 0.25s ease;
}
.faq-item.is-open .faq-caret { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .section-faq { padding: 64px 0; }
  .faq-question { padding: 16px 18px; font-size: 0.95rem; }
  .faq-answer p { padding: 0 18px 16px; }
}

/* ===== Footer ===== */
footer {
  background: var(--plum);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
footer .brand-name {
  font-family: var(--font-script);
  font-size: 2rem;
}
footer p { font-size: 0.88rem; line-height: 1.65; color: rgba(255,255,255,0.5); max-width: 280px; }
footer h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer li { font-size: 0.875rem; }
footer a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
footer a:hover { color: var(--gold); }
.footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pay-logo {
  width: 72px;
  height: 30px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.pay-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-map {
  margin-top: 16px;
  border-radius: 10px;
  overflow: hidden;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.footer-map:hover { opacity: 1; }
.foot-bottom {
  margin-top: 56px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== Blog ===== */
.section-blog {
  padding: 80px 0;
  background: var(--bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.blog-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
/* Skeleton loading state */
.blog-skeleton {
  min-height: 340px;
  background: linear-gradient(90deg, var(--cream) 25%, #f0e9e4 50%, var(--cream) 75%);
  background-size: 200% 100%;
  animation: blogShimmer 1.4s infinite;
}
@keyframes blogShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.blog-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: var(--rose-soft);
}
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--plum);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.blog-meta { font-size: 0.75rem; color: var(--muted); margin: 0; }
.blog-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--plum); line-height: 1.35; margin: 0; }
.blog-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.55; flex: 1; margin: 0; }
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--rose);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s;
}
.blog-link:hover { gap: 9px; }
@media (max-width: 559px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-img { height: 180px; }
}
@media (min-width: 560px) and (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Newsletter ===== */
.section-newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--plum-deep, #1c0c10) 0%, var(--plum) 100%);
}
.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.newsletter-icon { font-size: 2.5rem; margin-bottom: 16px; }
.newsletter-inner h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); color: var(--gold); margin-bottom: 12px; }
.newsletter-inner p { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 28px; }
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 12px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }
.newsletter-btn { white-space: nowrap; flex-shrink: 0; }
.newsletter-msg { font-size: 0.85rem; min-height: 20px; }
.newsletter-msg.success { color: #7ef5a2; }
.newsletter-msg.error   { color: #ffaaaa; }
.newsletter-fine { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-top: 12px; }
@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-btn { width: 100%; }
}

/* ===== Search ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 12, 16, 0.55);
  z-index: 250;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
  justify-content: center;
  padding: 80px 20px 20px;
  overflow-y: auto;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 70vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  transform: translateY(-16px);
  transition: transform 0.2s ease;
  overflow: hidden;
}
.search-overlay.open .search-panel { transform: translateY(0); }
.search-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.search-input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--plum);
}
.search-input:focus { outline: none; }
.search-close {
  background: none;
  border: none;
  color: var(--muted);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.search-close:hover { background: var(--rose-soft); color: var(--rose); }
.search-results {
  overflow-y: auto;
  padding: 8px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease;
}
.search-result-item:hover { background: var(--rose-soft); }
.search-result-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--rose-soft) center/cover no-repeat;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(155,35,53,0.25);
}
.search-result-info { flex: 1; min-width: 0; }
.search-result-name {
  font-weight: 600;
  color: var(--plum);
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-result-cat {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 1px;
}
.search-result-price {
  font-weight: 600;
  color: var(--rose);
  font-size: 0.88rem;
  flex-shrink: 0;
}
.search-empty-state, .search-hint {
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  padding: 36px 20px;
}
@media (max-width: 600px) {
  .search-overlay { padding: 60px 12px 12px; }
  .search-panel { max-height: 78vh; }
}

/* ===== Cart Drawer ===== */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 12, 16, 0.50);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: auto;
  top: auto;
  width: min(420px, calc(100% - 48px));
  max-height: min(640px, calc(100% - 48px));
  background: var(--white);
  border-radius: var(--radius-lg);
  z-index: 201;
  transform: translateY(calc(100% + 24px));
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.cart-drawer.open { transform: translateY(0); }
.cart-head {
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-head-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--plum);
}
.cart-head-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}
.cart-close {
  width: 36px;
  height: 36px;
  border-radius: 99px;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  transition: background 0.15s;
}
.cart-close:hover { background: var(--rose-soft); color: var(--rose); }
.cart-items { flex: 1; overflow-y: auto; padding: 8px 26px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-thumb {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--rose-soft) center/cover no-repeat;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--plum);
  margin-bottom: 3px;
}
.cart-item-unit {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s;
}
.qty-btn:hover { border-color: var(--rose); color: var(--rose); }
.qty-btn svg { width: 14px; height: 14px; }
.qty-val { min-width: 22px; text-align: center; font-weight: 600; font-size: 0.9rem; color: var(--plum); }
.remove-btn {
  margin-left: auto;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}
.remove-btn:hover { color: var(--rose); }
.remove-btn svg { width: 15px; height: 15px; }
.cart-foot {
  padding: 20px 26px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
/* Voucher code row */
.voucher-row { margin-bottom: 14px; }
.voucher-input-wrap {
  display: flex;
  gap: 8px;
}
.voucher-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--ink);
  outline: none;
  transition: border-color 0.15s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.voucher-input:focus { border-color: var(--rose); }
.voucher-apply-btn {
  padding: 10px 16px;
  background: var(--plum);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.voucher-apply-btn:hover { background: var(--rose); }
.voucher-msg {
  margin-top: 7px;
  font-size: 0.8rem;
  min-height: 18px;
}
.voucher-msg.success { color: #1a7a40; font-weight: 600; }
.voucher-msg.error   { color: #c00; }
/* Cart totals */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 8px;
}
.cart-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--muted);
}
.cart-discount-label { display: flex; align-items: center; gap: 6px; }
.cart-discount-label span {
  background: var(--rose-soft);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cart-total--grand {
  font-size: 1.2rem;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}
.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 20px;
  font-size: 0.92rem;
}
.cart-empty svg { margin: 0 auto 16px; color: var(--rose-soft); display: block; }

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--plum);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.toast svg { color: var(--green); flex-shrink: 0; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  z-index: 190;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55); }
.whatsapp-float:active { transform: scale(0.9); }
.whatsapp-float-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: whatsappPulse 2.2s ease-out infinite;
  z-index: -1;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.55; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
.whatsapp-float.is-hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

/* WhatsApp greeting bubble */
.wa-bubble {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.16);
  padding: 16px;
  z-index: 300;
  transform: translateY(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.wa-bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wa-bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #f0f0f0;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #666;
  transition: background 0.2s;
}
.wa-bubble-close:hover { background: #ddd; }
.wa-bubble-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.wa-bubble-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.wa-bubble-name { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.wa-bubble-status { font-size: 0.75rem; color: #25d366; display: flex; align-items: center; gap: 5px; }
.wa-bubble-dot {
  width: 7px;
  height: 7px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  animation: waOnline 1.8s ease-in-out infinite;
}
@keyframes waOnline {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.wa-bubble-msg {
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.55;
  margin: 0 0 14px;
  background: #f0faf3;
  border-radius: 10px;
  padding: 10px 12px;
}
.wa-bubble-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  padding: 11px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 10px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.15s;
}
.wa-bubble-cta:hover { filter: brightness(1.08); transform: translateY(-1px); }
.wa-bubble-cta:active { transform: scale(0.97); }
@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-bubble { right: 12px; bottom: 84px; width: calc(100vw - 24px); max-width: 300px; }
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 52px; }
  .hero-visual { height: 300px; }
  .hero-card--accent { bottom: -12px; right: -8px; }
  .events-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .events-visual, .about-visual { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  footer p { max-width: none; }
}

/* Tablet: nav links start crowding the brand + cart + (future) toggle before the
   full mobile menu kicks in, so tighten spacing/sizing in this in-between range */
@media (max-width: 860px) and (min-width: 769px) {
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 0.82rem; }
}

@media (max-width: 768px) {
  .brand-sub { display: none; }
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 12, 16, 0.40);
    z-index: 140;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .nav-overlay.open { opacity: 1; pointer-events: auto; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    z-index: 150;
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open {
    max-height: 70vh;
    opacity: 1;
    overflow-y: auto;
  }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
  }
  .nav-links a::after { display: none; }
  .nav-links a:active { background: var(--rose-soft); }
  .nav-item-dropdown.open .nav-caret { transform: rotate(225deg); }
  .nav-dropdown-panel {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: var(--cream);
    min-width: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
  }
  .nav-item-dropdown.open .nav-dropdown-panel { max-height: 60vh; overflow-y: auto; }
  .nav-dropdown-panel a {
    padding: 12px 36px;
    border-radius: 0;
    font-weight: 500;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { height: 280px; }
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  .cart-drawer {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
    max-height: calc(100% - 24px);
  }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-img { aspect-ratio: 1/1; }
  .product-body { padding: 12px 12px 10px; gap: 4px; }
  .product-cat { font-size: 0.58rem; }
  .product-name { font-size: 0.92rem; line-height: 1.25; }
  .product-desc { font-size: 0.74rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .product-foot { margin-top: 10px; padding-top: 10px; }
  .price { font-size: 0.95rem; }
  .add-btn { width: 32px; height: 32px; }
  .add-btn svg { width: 15px; height: 15px; }
  .filter-chip { padding: 7px 14px; font-size: 0.76rem; }
}

@media (max-width: 480px) {
  .navbar .container { padding-top: 12px; padding-bottom: 12px; }
  .brand-mark { width: 38px; height: 38px; font-size: 1.4rem; }
  .brand-name { font-size: 1.4rem; }
  section { padding: 48px 0; }
  .container { padding: 0 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links, .cart-drawer, .overlay, .nav-links a::after, .toast {
    transition-duration: 0.01ms !important;
  }
  .scroll-sentinel-spinner {
    animation-duration: 1.6s;
  }
}

/* ===== Delivery zone selector ===== */
.delivery-zone-row {
  padding: 10px 0 4px;
  border-top: 1px solid var(--border, #f0e6ea);
}
.delivery-zone-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--text-muted, #888);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}
#deliveryZoneSelect {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border, #e8d5db);
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  color: var(--text, #333);
  background: #fff;
  cursor: pointer;
  outline: none;
  transition: border-color .2s;
}
#deliveryZoneSelect:focus {
  border-color: var(--rose, #c2185b);
}

/* ===== Quick-view / Reviews modal ===== */
.qv-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1100;
}
.qv-overlay.open { display: block; }
.qv-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(.96);
  width: min(560px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  z-index: 1101;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  transition: transform .25s, opacity .25s;
  opacity: 0;
}
.qv-modal.open {
  display: block;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.qv-close {
  position: sticky; top: 12px; float: right;
  margin: 12px 12px 0 0;
  background: rgba(0,0,0,.07);
  border: none; border-radius: 50%;
  width: 34px; height: 34px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  z-index: 2; transition: background .15s;
}
.qv-close:hover { background: rgba(0,0,0,.14); }
.qv-img {
  width: 100%; height: 220px;
  background: #fdf0f5 center/cover no-repeat;
  border-radius: 14px 14px 0 0;
  flex-shrink: 0;
}
.qv-body { padding: 20px 24px 32px; }
.qv-cat { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--rose, #c2185b); font-weight: 700; margin-bottom: 4px; }
.qv-name { font-size: 1.3rem; font-weight: 800; margin: 0 0 6px; color: var(--text, #222); }
.qv-price { font-size: 1.1rem; font-weight: 700; color: var(--rose, #c2185b); margin-bottom: 10px; }
.qv-desc { font-size: .9rem; color: #666; margin: 0 0 12px; line-height: 1.55; }
.qv-stars-summary { font-size: .88rem; color: #f4a400; margin-bottom: 14px; min-height: 20px; }
.qv-add-btn { width: 100%; margin-bottom: 24px; }
.qv-reviews-title { font-size: 1rem; font-weight: 700; margin: 0 0 12px; color: #333; border-top: 1px solid #f0e6ea; padding-top: 18px; }
.qv-reviews-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.qv-reviews-loading { color: #aaa; font-size: .87rem; }
.review-item { background: #fdf8f9; border-radius: 10px; padding: 12px 14px; }
.review-stars { color: #f4a400; font-size: .95rem; margin-bottom: 3px; }
.review-author { font-weight: 700; font-size: .85rem; color: #444; }
.review-body { font-size: .87rem; color: #555; margin-top: 4px; line-height: 1.5; }
.review-date { font-size: .75rem; color: #bbb; margin-top: 3px; }
.no-reviews { color: #bbb; font-size: .87rem; font-style: italic; }
/* Star picker */
.star-picker { display: flex; gap: 6px; margin-bottom: 12px; }
.star-pick {
  font-size: 1.6rem; line-height: 1;
  background: none; border: none; cursor: pointer;
  color: #ddd; transition: color .12s, transform .1s;
  padding: 0;
}
.star-pick.active, .star-pick:hover ~ .star-pick { color: #ddd; }
.star-picker:hover .star-pick { color: #f4a400; }
.star-pick:hover ~ .star-pick { color: #ddd !important; }
.star-pick.selected { color: #f4a400; }
.qv-review-input {
  width: 100%; box-sizing: border-box;
  border: 1.5px solid #e8d5db; border-radius: 8px;
  padding: 9px 12px; font-size: .9rem; font-family: inherit;
  margin-bottom: 10px; outline: none; resize: vertical;
  transition: border-color .2s;
}
.qv-review-input:focus { border-color: var(--rose, #c2185b); }
.qv-review-error { color: #e53935; font-size: .82rem; min-height: 18px; margin-bottom: 6px; }
