/* ============================================================
   متجر مريم — Premium Arabic Beauty Store
   Design System & Global Styles — v2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* ─── CSS Variables ─── */
:root {
  --pink:          #C2185B;
  --pink-light:    #E91E8C;
  --pink-dark:     #880E4F;
  --pink-50:       #fce4ec;
  --pink-100:      #f8bbd0;
  --gold:          #C8A951;
  --gold-light:    #E2C97E;
  --gold-dark:     #9E7C30;

  /* Blue accent — from logo palette */
  --blue:          #1565C0;
  --blue-light:    #1E88E5;
  --blue-dark:     #0D47A1;
  --blue-50:       #E3F2FD;

  --bg:            #FDF7F2;
  --bg-card:       #FFFFFF;
  --bg-section:    #FFF5EE;
  --bg-dark:       #1C0D14;

  --text:          #1C1220;
  --text-mid:      #5A4A58;
  --text-muted:    #9A8898;
  --text-white:    #FFFFFF;

  --border:        rgba(194,24,91,.12);
  --border-mid:    rgba(194,24,91,.22);

  --shadow-sm:     0 2px 12px rgba(194,24,91,.08);
  --shadow-md:     0 8px 32px rgba(194,24,91,.12);
  --shadow-lg:     0 20px 60px rgba(194,24,91,.15);
  --shadow-card:   0 4px 24px rgba(0,0,0,.07);

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  --font: 'Cairo', 'Tajawal', -apple-system, sans-serif;

  --ease:  cubic-bezier(.4,0,.2,1);
  --t-fast: .15s;
  --t-base: .3s;
  --t-slow: .5s;

  --nav-h: 64px;
  --mob-nav-h: 64px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: var(--mob-nav-h);
}
body.ltr { direction: ltr; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--t-base) var(--ease); }
button { border: none; cursor: pointer; font-family: var(--font); transition: var(--t-base) var(--ease); }
input, textarea, select { font-family: var(--font); outline: none; }
ul, ol { list-style: none; }

/* ─── Typography ─── */
h1 { font-size: clamp(2rem, 7vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 5vw, 2.25rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 3.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.75; }

/* ─── Utility ─── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 16px; }
.section-pad { padding: 56px 0; }
.section-pad-sm { padding: 32px 0; }
.text-center { text-align: center; }
.text-pink { color: var(--pink); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.mt-sm { margin-top: 8px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 24px; }

/* ─── Section Title ─── */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { color: var(--text); margin-bottom: 10px; }
.section-title h2 span { color: var(--pink); }
.section-title p { color: var(--text-muted); max-width: 520px; margin: 0 auto; }
.section-title .title-line {
  display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px;
}
.section-title .title-line::before,
.section-title .title-line::after {
  content: ''; flex: 1; max-width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.section-title .title-line::after { background: linear-gradient(90deg, var(--gold), transparent); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--r-full); font-size: .95rem; font-weight: 700;
  white-space: nowrap; user-select: none; transition: all var(--t-base) var(--ease);
}
.btn-primary {
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  color: #fff; box-shadow: 0 6px 24px rgba(194,24,91,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(194,24,91,.45); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent; color: var(--pink); border: 2px solid var(--pink);
}
.btn-outline:hover { background: var(--pink); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff; box-shadow: 0 6px 24px rgba(200,169,81,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(200,169,81,.45); }
.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .5; cursor: not-allowed; transform: none !important; }

/* ─── Badge ─── */
.badge {
  display: inline-flex; align-items: center; padding: 4px 12px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
}
.badge-bestseller { background: linear-gradient(135deg, #ff6f00, #e65100); color: #fff; }
.badge-new { background: linear-gradient(135deg, #1565c0, #0d47a1); color: #fff; }
.badge-sale { background: linear-gradient(135deg, var(--pink-light), var(--pink-dark)); color: #fff; }
.badge-limited { background: linear-gradient(135deg, #4a148c, #6a1b9a); color: #fff; }
.badge-natural { background: linear-gradient(135deg, #2e7d32, #1b5e20); color: #fff; }

/* ──────────────────────────────────────────────
   HEADER
────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,247,242,.92); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.logo {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.logo-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff; font-weight: 900;
  box-shadow: 0 4px 16px rgba(194,24,91,.35);
}
.logo-text { line-height: 1.1; }
.logo-text .brand { font-size: 1.1rem; font-weight: 800; color: var(--pink); }
.logo-text .sub { font-size: .7rem; color: var(--blue-light); font-weight: 600; }

.header-nav { display: none; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.lang-btn {
  display: flex; align-items: center; gap: 4px; padding: 6px 14px;
  background: var(--pink-50); color: var(--pink); border-radius: var(--r-full);
  font-size: .8rem; font-weight: 700; border: 1px solid var(--border-mid);
}
.lang-btn:hover { background: var(--pink); color: #fff; }

.cart-btn-header {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--pink-50); color: var(--pink); font-size: 1.2rem;
  border: 1px solid var(--border-mid);
}
.cart-btn-header:hover { background: var(--pink); color: #fff; }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  background: var(--pink-light); color: #fff;
  border-radius: var(--r-full); min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; padding: 0 4px;
  border: 2px solid var(--bg);
}
.cart-badge.hidden { display: none; }

/* ──────────────────────────────────────────────
   MOBILE BOTTOM NAV
────────────────────────────────────────────── */
.mob-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  height: var(--mob-nav-h);
  display: flex; align-items: stretch;
}
.mob-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; color: var(--text-muted); font-size: .65rem; font-weight: 600;
  transition: color var(--t-fast) var(--ease); position: relative; padding: 8px 0;
}
.mob-nav-item svg { width: 22px; height: 22px; stroke-width: 1.8; }
.mob-nav-item.active { color: var(--pink); }
.mob-nav-item.active svg { stroke-width: 2.2; }
.mob-nav-item:hover { color: var(--pink); }
.mob-nav-cart { position: relative; }
.mob-nav-badge {
  position: absolute; top: 6px; right: calc(50% - 18px);
  background: var(--pink-light); color: #fff; border-radius: var(--r-full);
  min-width: 16px; height: 16px; display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; padding: 0 3px; border: 1.5px solid #fff;
}

/* ──────────────────────────────────────────────
   FLOATING CONTACT BUTTON
────────────────────────────────────────────── */
.fab {
  position: fixed; bottom: calc(var(--mob-nav-h) + 16px); left: 16px; z-index: 190;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  font-size: 1.5rem;
  transition: all var(--t-base) var(--ease);
}
.fab:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

/* ──────────────────────────────────────────────
   HERO
────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(145deg, #1C0D14 0%, #3D1020 40%, #6B1535 70%, #9C1F4A 100%);
  padding: 80px 0 100px;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(194,24,91,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(
    45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%
  );
  background-size: 30px 30px;
}
.hero-glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(194,24,91,.25) 0%, transparent 70%);
  top: -100px; right: -100px; pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.hero-crown { font-size: 3rem; margin-bottom: 8px; animation: float 3s ease-in-out infinite; }
.hero-subtitle-top {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 20px;
  background: rgba(200,169,81,.15); border: 1px solid rgba(200,169,81,.3);
  border-radius: var(--r-full); color: var(--gold-light); font-size: .8rem; font-weight: 600;
  margin-bottom: 20px; backdrop-filter: blur(8px);
}
.hero-brand { color: #fff; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-brand span { color: var(--gold-light); }
.hero-desc {
  color: rgba(255,255,255,.75); font-size: 1rem; max-width: 500px; margin: 0 auto 32px;
  line-height: 1.8;
}
.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; justify-content: center; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat { text-align: center; }
.hero-stat .num { font-size: 1.8rem; font-weight: 800; color: var(--gold-light); }
.hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: .7rem; animation: bounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }

/* ──────────────────────────────────────────────
   CATEGORIES
────────────────────────────────────────────── */
.categories-scroll {
  display: flex; gap: 12px; overflow-x: auto; padding: 8px 0 16px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.cat-chip {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 16px 20px; background: var(--bg-card); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); cursor: pointer; min-width: 90px;
  transition: all var(--t-base) var(--ease); box-shadow: var(--shadow-sm);
}
.cat-chip:hover, .cat-chip.active {
  border-color: var(--pink); background: var(--pink-50); color: var(--pink);
  box-shadow: var(--shadow-md);
}
.cat-chip .icon { font-size: 1.6rem; }
.cat-chip .label { font-size: .72rem; font-weight: 700; white-space: nowrap; color: var(--text-mid); }
.cat-chip.active .label { color: var(--pink); }

/* ──────────────────────────────────────────────
   PRODUCT GRID
────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.product-card {
  background: var(--bg-card); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-card); border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-image {
  position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--bg-section);
}
.product-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-badge { position: absolute; top: 10px; right: 10px; z-index: 2; }
.product-card-fav {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; border: 1px solid var(--border);
  cursor: pointer; transition: all var(--t-fast) var(--ease);
}
.product-card-fav:hover { background: var(--pink-50); border-color: var(--pink); }
.product-card-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background: linear-gradient(135deg, var(--bg-section), var(--pink-50));
}
.product-card-placeholder span { font-size: 3rem; }
.product-card-placeholder p { font-size: .75rem; color: var(--text-muted); }
.product-card-body { padding: 14px; }
.product-card-name {
  font-size: .85rem; font-weight: 700; color: var(--text);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px; line-height: 1.5;
}
.product-card-price { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.product-card-price .price { font-size: 1rem; font-weight: 800; color: var(--pink); }
.product-card-price .original { font-size: .78rem; color: var(--text-muted); text-decoration: line-through; }
.product-card-add {
  width: 100%; padding: 10px; border-radius: var(--r-full); font-size: .8rem; font-weight: 700;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; gap: 6px;
  box-shadow: 0 4px 16px rgba(194,24,91,.25);
}
.product-card-add:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(194,24,91,.35); }
.product-card-add svg { width: 16px; height: 16px; }

/* No image placeholder colors */
.placeholder-skincare { --ph-color: #E91E8C; }
.placeholder-haircare { --ph-color: #7B1FA2; }
.placeholder-bodycare { --ph-color: #00838F; }
.placeholder-fragrances { --ph-color: #C56200; }
.placeholder-health { --ph-color: #2E7D32; }
.placeholder-dental { --ph-color: #1565C0; }
.placeholder-eyes { --ph-color: #4527A0; }
.placeholder-nailcare { --ph-color: #AD1457; }
.placeholder-sukra { --ph-color: #4E342E; }

/* ──────────────────────────────────────────────
   SEARCH & FILTERS
────────────────────────────────────────────── */
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1.5px solid var(--border); border-radius: var(--r-full);
  padding: 12px 20px;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-fast);
}
.search-box:focus-within { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(194,24,91,.08); }
.search-box svg { width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; }
.search-box input {
  flex: 1; border: none; background: none; font-size: .95rem; color: var(--text);
  min-width: 0;
}
.search-box input::placeholder { color: var(--text-muted); }

.filters-row { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.filters-row::-webkit-scrollbar { display: none; }
.filter-chip {
  flex-shrink: 0; padding: 8px 16px; border-radius: var(--r-full); font-size: .8rem; font-weight: 600;
  background: var(--bg-card); color: var(--text-mid); border: 1.5px solid var(--border);
  cursor: pointer; transition: all var(--t-fast) var(--ease);
}
.filter-chip:hover, .filter-chip.active {
  background: var(--pink); color: #fff; border-color: var(--pink);
}

/* ──────────────────────────────────────────────
   FEATURES SECTION
────────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.feature-card {
  background: var(--bg-card); border-radius: var(--r-lg); padding: 24px 20px;
  text-align: center; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  transition: all var(--t-base) var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin: 0 auto 16px;
}
.feature-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.6; }

/* ──────────────────────────────────────────────
   TESTIMONIALS
────────────────────────────────────────────── */
.testimonials-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding: 8px 0 16px;
  scrollbar-width: none;
}
.testimonials-scroll::-webkit-scrollbar { display: none; }
.testimonial-card {
  flex-shrink: 0; width: 280px; background: var(--bg-card); border-radius: var(--r-lg);
  padding: 24px; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #FFB300; font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: .85rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .85rem;
}
.testimonial-name { font-weight: 700; font-size: .85rem; }
.testimonial-location { font-size: .73rem; color: var(--text-muted); }

/* ──────────────────────────────────────────────
   FAQ
────────────────────────────────────────────── */
.faq-item {
  background: var(--bg-card); border-radius: var(--r-md); margin-bottom: 12px;
  border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; font-size: .9rem; font-weight: 700; color: var(--text);
  background: none; text-align: right; cursor: pointer;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; transition: transform var(--t-base); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--t-slow) var(--ease);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 20px 18px; font-size: .85rem; color: var(--text-mid); line-height: 1.8; }

/* ──────────────────────────────────────────────
   CTA BANNER
────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--pink-dark) 0%, var(--pink) 50%, var(--pink-light) 100%);
  border-radius: var(--r-xl); padding: 48px 32px; text-align: center; position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08) 0%, transparent 60%);
}
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,.8); margin: 12px 0 28px; position: relative; }

/* ──────────────────────────────────────────────
   INSTAGRAM SECTION
────────────────────────────────────────────── */
.instagram-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--r-full); font-size: .95rem; font-weight: 700;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; box-shadow: 0 6px 24px rgba(220,39,67,.35); margin: 0 auto;
  width: fit-content;
}
.instagram-link:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(220,39,67,.45); }
.instagram-handle { font-size: 1.1rem; font-weight: 800; }

/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark); color: rgba(255,255,255,.8);
  padding: 48px 0 24px; margin-top: 64px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px;
}
.footer-brand .brand { font-size: 1.5rem; font-weight: 800; color: var(--gold-light); }
.footer-brand p { font-size: .85rem; margin-top: 10px; line-height: 1.7; color: rgba(255,255,255,.6); }
.footer-col h5 { font-size: .9rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .85rem; }
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px;
  text-align: center; font-size: .78rem; color: rgba(255,255,255,.4);
}
.footer-bottom a { color: var(--gold-light); }

/* ──────────────────────────────────────────────
   PRODUCT DETAIL PAGE
────────────────────────────────────────────── */
.product-detail-gallery { margin-bottom: 24px; }
.gallery-main {
  aspect-ratio: 1; border-radius: var(--r-lg); overflow: hidden;
  background: var(--bg-section); border: 1px solid var(--border); margin-bottom: 12px;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: var(--r-sm);
  overflow: hidden; border: 2px solid var(--border); cursor: pointer;
  transition: border-color var(--t-fast);
}
.gallery-thumb.active { border-color: var(--pink); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail-info {}
.product-detail-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.product-detail-name { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; line-height: 1.3; }
.product-detail-price { font-size: 1.8rem; font-weight: 800; color: var(--pink); margin-bottom: 20px; }
.product-detail-price .original { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-right: 8px; }

.product-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 20px; }
.product-tab {
  padding: 12px 20px; font-size: .85rem; font-weight: 600; color: var(--text-muted);
  background: none; border-bottom: 2px solid transparent; margin-bottom: -2px;
  cursor: pointer; transition: all var(--t-fast);
}
.product-tab.active { color: var(--pink); border-bottom-color: var(--pink); }
.product-tab-content { display: none; font-size: .88rem; line-height: 1.85; color: var(--text-mid); }
.product-tab-content.active { display: block; }
.product-tab-content p { margin-bottom: 10px; }
.product-tab-content ul { padding-right: 16px; }
.product-tab-content ul li { list-style: disc; margin-bottom: 6px; }

.qty-control { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-btn {
  width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  color: var(--pink); background: var(--pink-50);
}
.qty-btn:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.qty-display { font-size: 1.1rem; font-weight: 700; min-width: 32px; text-align: center; }

.sticky-add-btn {
  position: fixed; bottom: calc(var(--mob-nav-h) + 12px); left: 12px; right: 12px; z-index: 180;
}
.sticky-add-btn .btn { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--r-lg); }

.variant-selector { margin-bottom: 16px; }
.variant-selector label { font-size: .85rem; font-weight: 600; color: var(--text-mid); margin-bottom: 8px; display: block; }
.variant-options { display: flex; gap: 8px; flex-wrap: wrap; }
.variant-opt {
  padding: 8px 16px; border-radius: var(--r-full); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 600; cursor: pointer; transition: all var(--t-fast);
}
.variant-opt.active { background: var(--pink); color: #fff; border-color: var(--pink); }

/* ──────────────────────────────────────────────
   CART PAGE
────────────────────────────────────────────── */
.cart-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.cart-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-card); border-radius: var(--r-lg); padding: 16px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.cart-item-img {
  width: 80px; height: 80px; border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-section); flex-shrink: 0;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.cart-item-variant { font-size: .75rem; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { font-size: 1rem; font-weight: 800; color: var(--pink); }
.cart-item-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
  background: var(--bg-section); color: var(--text);
}
.cart-item-qty button:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.cart-item-qty span { font-size: .9rem; font-weight: 700; min-width: 20px; text-align: center; }
.cart-item-remove { color: var(--text-muted); font-size: .78rem; font-weight: 600; }
.cart-item-remove:hover { color: #E53935; }

.cart-summary {
  background: var(--bg-card); border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm); margin-bottom: 16px;
}
.cart-summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: .9rem; }
.cart-summary-row:last-child { border-bottom: none; }
.cart-summary-total { font-weight: 800; font-size: 1.1rem; color: var(--pink); }

.empty-cart {
  text-align: center; padding: 64px 24px;
}
.empty-cart .empty-icon { font-size: 5rem; margin-bottom: 20px; opacity: .4; }
.empty-cart h3 { font-size: 1.2rem; margin-bottom: 10px; }
.empty-cart p { color: var(--text-muted); font-size: .9rem; margin-bottom: 24px; }

/* ──────────────────────────────────────────────
   CHECKOUT
────────────────────────────────────────────── */
.checkout-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 700; color: var(--text); }
.form-group .required { color: var(--pink); }
.form-control {
  padding: 14px 16px; border-radius: var(--r-md); border: 1.5px solid var(--border);
  font-size: .95rem; color: var(--text); background: var(--bg-card); width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  border-color: var(--pink); box-shadow: 0 0 0 3px rgba(194,24,91,.08);
}
.form-control.error { border-color: #E53935; }
.form-error { font-size: .78rem; color: #E53935; margin-top: 2px; display: none; }
.form-group.has-error .form-error { display: block; }
textarea.form-control { resize: vertical; min-height: 100px; }

.order-summary {
  background: linear-gradient(135deg, var(--pink-50), var(--bg-card));
  border: 1px solid var(--border-mid); border-radius: var(--r-lg); padding: 20px; margin-bottom: 20px;
}
.order-summary-title { font-size: .9rem; font-weight: 700; margin-bottom: 14px; color: var(--pink); }
.order-summary-item { display: flex; justify-content: space-between; font-size: .85rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.order-summary-item:last-child { border-bottom: none; }
.order-summary-total { display: flex; justify-content: space-between; font-weight: 800; font-size: 1rem; color: var(--pink); padding-top: 12px; margin-top: 4px; border-top: 2px solid var(--border-mid); }

/* ──────────────────────────────────────────────
   SUCCESS PAGE
────────────────────────────────────────────── */
.success-page { text-align: center; padding: 48px 24px; }
.success-anim {
  width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
.success-order-num {
  background: linear-gradient(135deg, var(--pink-50), var(--bg-section));
  border: 2px solid var(--border-mid); border-radius: var(--r-lg); padding: 24px;
  margin: 24px auto; max-width: 360px;
}
.success-order-num .label { font-size: .85rem; color: var(--text-muted); margin-bottom: 6px; }
.success-order-num .num { font-size: 2.2rem; font-weight: 900; color: var(--pink); letter-spacing: 3px; }
.success-info { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px; margin: 16px auto; max-width: 360px; text-align: right; }
.success-info-row { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.success-info-row:last-child { border-bottom: none; }
.success-info-row svg { width: 18px; height: 18px; color: var(--pink); flex-shrink: 0; margin-top: 2px; }

/* ──────────────────────────────────────────────
   ABOUT / CONTACT / STATIC PAGES
────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #3D1020 100%);
  padding: 60px 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.6); }

.static-content { max-width: 720px; margin: 0 auto; padding: 40px 0; }
.static-content h2 { font-size: 1.2rem; font-weight: 700; color: var(--pink); margin: 28px 0 12px; }
.static-content p { font-size: .9rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 12px; }
.static-content ul { padding-right: 20px; margin-bottom: 12px; }
.static-content ul li { list-style: disc; font-size: .9rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 6px; }

.contact-cards { display: grid; gap: 16px; margin-bottom: 40px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--bg-card); border-radius: var(--r-lg); padding: 20px;
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.contact-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.contact-card p { font-size: .83rem; color: var(--text-muted); }

/* ──────────────────────────────────────────────
   PAGE BREADCRUMB
────────────────────────────────────────────── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; padding: 12px 0;
  font-size: .8rem; color: var(--text-muted); overflow-x: auto; scrollbar-width: none;
  white-space: nowrap;
}
.breadcrumb::-webkit-scrollbar { display: none; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb .sep { color: var(--border-mid); }
.breadcrumb .current { color: var(--pink); font-weight: 600; }

/* ──────────────────────────────────────────────
   LOADING / SKELETON
────────────────────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-section) 25%, var(--pink-50) 50%, var(--bg-section) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--r-sm);
}
.skeleton-card {
  background: var(--bg-card); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.skeleton-img { aspect-ratio: 4/5; }
.skeleton-body { padding: 14px; }
.skeleton-text { height: 14px; margin-bottom: 8px; border-radius: 4px; }
.skeleton-text.w80 { width: 80%; }
.skeleton-text.w60 { width: 60%; }
.skeleton-btn { height: 36px; border-radius: var(--r-full); margin-top: 4px; }

/* ──────────────────────────────────────────────
   TOAST NOTIFICATION
────────────────────────────────────────────── */
.toast-container {
  position: fixed; top: 80px; right: 16px; z-index: 500;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast {
  display: flex; align-items: center; gap: 10px;
  background: var(--text); color: #fff; border-radius: var(--r-md);
  padding: 14px 18px; min-width: 240px; box-shadow: var(--shadow-lg);
  font-size: .85rem; font-weight: 600; pointer-events: auto;
  animation: slideInRight .3s var(--ease);
}
.toast.success { background: #2E7D32; }
.toast.error { background: #C62828; }
.toast.info { background: var(--pink-dark); }
.toast svg { width: 20px; height: 20px; flex-shrink: 0; }
.toast.fade-out { animation: fadeOut .3s var(--ease) forwards; }

/* ──────────────────────────────────────────────
   PAGE TRANSITION
────────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark); display: flex; align-items: center; justify-content: center;
  transition: opacity .4s var(--ease);
}
.page-loader.hide { opacity: 0; pointer-events: none; }
.loader-brand { text-align: center; }
.loader-brand .name { font-size: 2rem; font-weight: 900; color: #fff; }
.loader-brand .name span { color: var(--gold-light); }
.loader-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.loader-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pink-light); animation: pulse 1.2s ease-in-out infinite;
}
.loader-dot:nth-child(2) { animation-delay: .2s; }
.loader-dot:nth-child(3) { animation-delay: .4s; }

/* ──────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: all .6s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(30px); transition: all .6s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }

/* ──────────────────────────────────────────────
   KEYFRAME ANIMATIONS
────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse {
  0%, 100% { opacity: .4; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeOut {
  to { opacity: 0; transform: translateX(40px); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — Tablet & Desktop
────────────────────────────────────────────── */
@media (min-width: 640px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .mob-nav { display: none; }
  .header-nav {
    display: flex; align-items: center; gap: 4px;
  }
  .header-nav a {
    padding: 8px 14px; border-radius: var(--r-full); font-size: .88rem; font-weight: 600;
    color: var(--text-mid); transition: all var(--t-fast);
  }
  .header-nav a:hover, .header-nav a.active { color: var(--pink); background: var(--pink-50); }
  .fab { bottom: 24px; }
  .sticky-add-btn { display: none; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .hero { min-height: 80vh; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
  .container { padding: 0 24px; }
}

/* ──────────────────────────────────────────────
   LTR OVERRIDES
────────────────────────────────────────────── */
body.ltr .breadcrumb .sep { transform: scaleX(-1); }
body.ltr .toast { animation-name: slideInLeft; }
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ══════════════════════════════════════════════
   LOGO IMAGE
══════════════════════════════════════════════ */
.logo-img {
  width: 46px; height: 46px; object-fit: contain; border-radius: 10px;
  background: var(--bg-white); flex-shrink: 0;
}
.logo { gap: 10px; }

/* ══════════════════════════════════════════════
   DRAWER OVERLAY
══════════════════════════════════════════════ */
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.48);
  z-index: 599; opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
}
.drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ══════════════════════════════════════════════
   CART DRAWER — slides from LEFT
══════════════════════════════════════════════ */
.cart-drawer {
  position: fixed; top: 0; left: 0; height: 100dvh;
  width: 380px; max-width: 90vw;
  background: var(--bg-card); z-index: 600;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: 6px 0 40px rgba(0,0,0,.2);
  border-right: 1px solid var(--border);
}
.cart-drawer.open { transform: translateX(0); }

/* ══════════════════════════════════════════════
   CHECKOUT PANEL — slides from RIGHT
══════════════════════════════════════════════ */
.checkout-panel {
  position: fixed; top: 0; right: 0; height: 100dvh;
  width: 440px; max-width: 95vw;
  background: var(--bg); z-index: 601;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -6px 0 40px rgba(0,0,0,.2);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}
.checkout-panel.open { transform: translateX(0); }

/* ── Shared Drawer Header ── */
.drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px; border-bottom: 1px solid var(--border);
  background: var(--bg-card); flex-shrink: 0; gap: 12px;
  position: sticky; top: 0; z-index: 2;
}
.checkout-panel-header { background: linear-gradient(135deg, var(--pink-dark), var(--pink)); }
.checkout-panel-header .drawer-title { color: #fff; }
.checkout-panel-header .drawer-close svg { stroke: #fff; }
.checkout-panel-header .drawer-back-btn svg { stroke: #fff; }
.drawer-title { font-size: 1rem; font-weight: 800; margin: 0; flex: 1; text-align: center; }
.drawer-close {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg-section);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.drawer-close:hover { background: var(--pink-50); }
.drawer-close svg { width: 18px; height: 18px; }
.drawer-back-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.drawer-back-btn:hover { background: rgba(255,255,255,.3); }

/* ── Cart Items Scroll Area ── */
.drawer-items {
  flex: 1; overflow-y: auto; padding: 16px;
  scrollbar-width: thin; scrollbar-color: var(--border) transparent;
}

/* ── Empty State ── */
.drawer-empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 24px; gap: 16px; text-align: center; height: 100%;
}
.drawer-empty-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
}
.drawer-empty-icon svg { width: 32px; height: 32px; stroke: var(--text-muted); }
.drawer-empty p { font-size: .95rem; color: var(--text-muted); font-weight: 600; }

/* ── Cart Item ── */
.drawer-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.drawer-item:last-child { border-bottom: none; }
.drawer-item-img {
  width: 64px; height: 64px; border-radius: var(--r-md); overflow: hidden;
  background: var(--bg-section); flex-shrink: 0;
}
.drawer-item-img img { width: 100%; height: 100%; object-fit: cover; }
.drawer-item-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--text-muted);
  background: linear-gradient(135deg, var(--bg-section), var(--pink-50));
}
.drawer-item-info { flex: 1; min-width: 0; }
.drawer-item-name { font-size: .83rem; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.drawer-item-price { font-size: .88rem; font-weight: 800; color: var(--pink); margin-bottom: 8px; }
.drawer-item-controls { display: flex; align-items: center; gap: 8px; }
.drawer-qty-btn {
  width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center; background: var(--bg-section);
}
.drawer-qty-btn:hover { background: var(--pink); border-color: var(--pink); }
.drawer-qty-btn:hover svg { stroke: #fff; }
.drawer-qty-val { font-size: .85rem; font-weight: 700; min-width: 20px; text-align: center; }
.drawer-item-remove {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--text-muted);
}
.drawer-item-remove:hover { background: #FFEBEE; color: #C62828; }

/* ── Cart Drawer Footer ── */
.drawer-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: var(--bg-card); flex-shrink: 0;
}
.drawer-total-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px; font-size: .95rem;
}
.drawer-total-value { font-size: 1.15rem; font-weight: 800; color: var(--pink); }
.drawer-checkout-btn { border-radius: var(--r-lg); padding: 15px; font-size: .95rem; }

/* ── Checkout Panel: Store Info ── */
.checkout-store-info {
  display: flex; gap: 10px; align-items: center;
  background: linear-gradient(135deg, #1C0D14, #3D1020);
  padding: 12px 16px; flex-shrink: 0;
}
.store-info-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.store-info-icon svg { width: 18px; height: 18px; stroke: var(--gold-light); }
.store-info-text { flex: 1; }
.store-info-name { font-size: .88rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.store-info-address { font-size: .72rem; color: rgba(255,255,255,.65); line-height: 1.4; }
.store-info-note { display: none; }
.store-whatsapp-link {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff; border-radius: var(--r-full);
  padding: 6px 14px; font-size: .8rem; font-weight: 700;
  transition: all var(--t-fast);
}
.store-whatsapp-link:hover { background: #128C7E; transform: scale(1.02); }

/* ── Checkout Mini Summary ── */
.checkout-mini-summary {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card); flex-shrink: 0;
}
.mini-summary-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; font-size: .8rem; font-weight: 700;
  color: var(--text-mid); cursor: pointer; list-style: none; user-select: none;
}
.mini-summary-toggle::-webkit-details-marker { display: none; }
details.checkout-mini-summary[open] .mini-toggle-arrow { display: inline-block; transform: rotate(180deg); }
.mini-toggle-arrow { transition: transform .2s; }
#checkout-mini-summary { padding: 0 16px 10px; }
.mini-summary-title { font-size: .8rem; font-weight: 700; color: var(--pink); margin-bottom: 10px; }
.mini-summary-row {
  display: flex; justify-content: space-between; font-size: .78rem;
  color: var(--text-mid); padding: 4px 0; border-bottom: 1px solid var(--border);
}
.mini-summary-row:last-of-type { border-bottom: none; }
.mini-summary-total {
  display: flex; justify-content: space-between; font-size: .9rem; font-weight: 800;
  color: var(--pink); padding-top: 10px; margin-top: 6px;
  border-top: 2px solid var(--border-mid);
}

/* ── Checkout Panel Form ── */
.checkout-panel-form {
  padding: 14px 16px; flex: 1; overflow-y: auto;
}
.checkout-panel-form .checkout-form { gap: 14px; }
.panel-submit-btn { padding: 16px; border-radius: var(--r-lg); font-size: .95rem; margin-top: 8px; }
.panel-submit-btn .btn-spinner { display: flex; align-items: center; justify-content: center; }

/* ══════════════════════════════════════════════
   LOGO — image-based
══════════════════════════════════════════════ */
.logo-img-wrap {
  width: 52px; height: 52px; border-radius: 12px; overflow: hidden;
  flex-shrink: 0; background: #fff;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--blue-50);
  box-shadow: 0 2px 8px rgba(21,101,192,.15);
}
.logo-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════════════════════
   PRODUCT CARD — description with expand toggle
══════════════════════════════════════════════ */
.product-card-desc-wrap { margin-bottom: 10px; }
.product-card-desc {
  font-size: .73rem; color: var(--text-muted); line-height: 1.6;
  -webkit-box-orient: vertical;
}
.desc-more-btn {
  background: none; border: none; padding: 0; margin-top: 3px;
  font-size: .7rem; color: var(--pink); font-weight: 700;
  cursor: pointer; font-family: var(--font); display: block;
}
.desc-more-btn:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   LOCATION SECTION
══════════════════════════════════════════════ */
.location-section {
  background: linear-gradient(135deg, #1C0D14 0%, #3D1020 60%, #6B1535 100%);
  padding: 56px 0;
}
.location-section .section-title h2 { color: #fff; }
.location-section .section-title p { color: rgba(255,255,255,.6); }
.location-section .title-line::before,
.location-section .title-line::after { background: linear-gradient(90deg, transparent, var(--gold)); }
.location-section .title-line::after { background: linear-gradient(90deg, var(--gold), transparent); }

.location-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); padding: 32px 24px; max-width: 640px; margin: 0 auto;
  backdrop-filter: blur(8px);
}
.location-info { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.location-icon {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(194,24,91,.4);
}
.location-icon svg { width: 26px; height: 26px; stroke: #fff; }
.location-text { flex: 1; }
.location-name { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: 6px; }
.location-address { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.location-plus-code { font-size: .72rem; color: rgba(255,255,255,.4); margin-top: 4px; }

.location-map {
  border-radius: var(--r-lg); overflow: hidden; height: 220px;
  border: 1px solid rgba(255,255,255,.12); margin-bottom: 20px;
}
.location-map iframe { width: 100%; height: 100%; border: none; display: block; }

.location-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.location-actions .btn { flex: 1; min-width: 140px; }
.location-wa-row {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); font-size: .85rem;
}
.location-wa-row a {
  display: inline-flex; align-items: center; gap: 6px;
  background: #25D366; color: #fff; border-radius: var(--r-full);
  padding: 8px 18px; font-size: .88rem; font-weight: 700;
}
.location-wa-row a:hover { background: #128C7E; }

/* ══════════════════════════════════════════════
   INSTAGRAM SECTION — updated
══════════════════════════════════════════════ */
.insta-section-inner {
  max-width: 540px; margin: 0 auto; text-align: center;
}
.insta-handle-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff; border-radius: var(--r-full); padding: 14px 28px;
  font-size: 1.05rem; font-weight: 800; margin-top: 16px;
  box-shadow: 0 8px 24px rgba(220,39,67,.3);
  transition: all var(--t-base);
}
.insta-handle-pill:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(220,39,67,.4); }
.insta-handle-pill svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════════════
   CATEGORY CHIPS — no emoji version
══════════════════════════════════════════════ */
.cat-chip-v2 {
  flex-shrink: 0; padding: 10px 20px; border-radius: var(--r-full);
  background: var(--bg-card); border: 1.5px solid var(--border);
  font-size: .82rem; font-weight: 700; color: var(--text-mid);
  cursor: pointer; white-space: nowrap;
  transition: all var(--t-fast) var(--ease);
}
.cat-chip-v2:hover, .cat-chip-v2.active {
  background: var(--pink); color: #fff; border-color: var(--pink);
  box-shadow: 0 4px 16px rgba(194,24,91,.3);
}

/* Toast z-index fix with drawer */
.toast-container { z-index: 700; }

/* ══════════════════════════════════════════════
   PRODUCT PLACEHOLDER — photo coming soon
══════════════════════════════════════════════ */
.product-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--bg-section) 0%, var(--pink-50) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; border: 2px dashed var(--border);
}
.placeholder-camera { width: 36px; height: 36px; color: var(--pink); opacity: .45; }
.placeholder-soon {
  font-size: .72rem; color: var(--text-muted); font-weight: 600;
  letter-spacing: .03em;
}

/* ══════════════════════════════════════════════
   USAGE CARD — below product image
══════════════════════════════════════════════ */
.usage-card {
  margin-top: 16px; border-radius: var(--r-lg);
  border: 1px solid var(--border); background: var(--bg-card);
  overflow: hidden;
}
.usage-card-title {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: var(--pink-50);
  border-bottom: 1px solid var(--border);
  font-size: .82rem; font-weight: 800; color: var(--pink);
}
.usage-card-title svg { width: 17px; height: 17px; flex-shrink: 0; }
.usage-steps { padding: 12px 16px; display: flex; flex-direction: column; gap: 10px; }
.usage-step {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .8rem; line-height: 1.6; color: var(--text-mid);
}
.usage-step-num {
  min-width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ══════════════════════════════════════════════
   SUCCESS PAGE — no emoji
══════════════════════════════════════════════ */
.success-icon-ring {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(194,24,91,.4);
  animation: popIn .5s cubic-bezier(.34,1.56,.64,1);
}
.success-icon-ring svg { width: 44px; height: 44px; stroke: #fff; stroke-width: 2.5; }

/* ══════════════════════════════════════════════
   FEATURE ICONS — SVG based
══════════════════════════════════════════════ */
.feature-icon svg { width: 28px; height: 28px; stroke: var(--pink); }

/* ══════════════════════════════════════════════
   LOCATION SECTION — two-column layout
══════════════════════════════════════════════ */
.location-card {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; max-width: 900px; margin: 0 auto;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl); padding: 32px 24px;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .location-card { grid-template-columns: 1fr 1fr; align-items: start; }
}
.location-card .location-info {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 0;
}
.location-badge {
  display: inline-block; padding: 4px 14px; border-radius: var(--r-full);
  background: rgba(194,24,91,.25); color: var(--pink-light);
  font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(194,24,91,.3); width: fit-content;
}
.location-card h2 { color: #fff; margin: 0; font-size: 1.4rem; }
.location-address-line {
  display: flex; align-items: flex-start; gap: 8px;
  color: rgba(255,255,255,.75); font-size: .88rem; line-height: 1.6; margin: 0;
}
.location-address-line svg { flex-shrink: 0; margin-top: 2px; stroke: var(--gold); }
.location-note {
  color: rgba(255,255,255,.5); font-size: .8rem; margin: 0;
  padding: 10px 14px; background: rgba(255,255,255,.06);
  border-radius: var(--r-md); border-right: 3px solid var(--gold);
}
.location-card .location-actions {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.location-card .location-map {
  border-radius: var(--r-lg); overflow: hidden;
  height: 280px; border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 0;
}
.location-card .location-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ══════════════════════════════════════════════
   CONTACT CARDS — icon as SVG
══════════════════════════════════════════════ */
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--pink-50); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}
.contact-card-icon svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════════════
   BLUE ACCENTS — secondary palette from logo
══════════════════════════════════════════════ */
.header { border-bottom-color: rgba(21,101,192,.08); }

/* Mobile nav active — blue underline accent */
.mob-nav-item.active { color: var(--pink); }
.mob-nav-item.active svg { stroke: var(--pink); }

/* Hero subtitle tag — blue tint border */
.hero-subtitle-top {
  border-color: rgba(21,101,192,.25);
  background: rgba(21,101,192,.06);
  color: var(--blue-light);
}

/* Stats separator */
.hero-stat { border-color: rgba(21,101,192,.15); }

/* Category chips hover — keep pink, add blue shadow */
.cat-chip-v2.active { box-shadow: 0 4px 16px rgba(21,101,192,.2), 0 4px 16px rgba(194,24,91,.2); }

/* Footer bottom link */
.footer-bottom a { color: var(--blue-light); }
.footer-bottom a:hover { color: var(--blue); }

/* Page hero gradient touch */
.page-hero { background: linear-gradient(135deg, #1C0D14 0%, #0D2952 50%, #6B1535 100%); }

/* Store photo in location section */
.location-store-photo {
  border-radius: var(--r-lg); overflow: hidden;
  height: 280px; border: 1px solid rgba(255,255,255,.15);
}
.location-store-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.location-map-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .78rem; margin-top: 10px;
  text-decoration: underline; text-underline-offset: 3px;
}
.location-map-link:hover { color: #fff; }
.location-map-link svg { width: 14px; height: 14px; flex-shrink: 0; }
