/* =========================================
   LAHIYA DROP — Global Styles
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --green-dark:   #0b2118;
  --green-mid:    #143326;
  --green-card:   #1a3d2e;
  --green-light:  #215239;
  --rose-gold:    #c9956c;
  --rose-light:   #e8c4a8;
  --rose-dim:     #a07050;
  --gold:         #d4a853;
  --cream:        #f8f5f0;
  --cream-dim:    #e8e0d5;
  --white:        #ffffff;
  --text-muted:   #9ab0a0;
  --border:       rgba(201,149,108,0.2);
  --border-light: rgba(201,149,108,0.12);
  --shadow:       0 8px 40px rgba(0,0,0,0.35);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--green-dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-dark); }
::-webkit-scrollbar-thumb { background: var(--rose-dim); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ── Utilities ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 16px;
}
.tag::before, .tag::after { content: '—'; margin: 0 8px; opacity: 0.6; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  color: var(--cream);
  margin-bottom: 16px;
}
.section-title span { color: var(--rose-gold); }

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 56px;
}

.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}
.divider span { width: 60px; height: 1px; background: var(--border); }
.divider i { color: var(--rose-gold); font-size: 10px; }

.text-center { text-align: center; }
.rose { color: var(--rose-gold); }
.gold { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  color: var(--green-dark);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--rose-light), #e8bf70);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,149,108,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--rose-gold);
  border: 1.5px solid var(--rose-gold);
}
.btn-outline:hover {
  background: rgba(201,149,108,0.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  border: 1.5px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-lg { padding: 18px 44px; font-size: 16px; }

/* ── Cards ── */
.card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ── Badge ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge-rose { background: rgba(201,149,108,0.15); color: var(--rose-gold); border: 1px solid rgba(201,149,108,0.3); }
.badge-green { background: rgba(33,82,57,0.4); color: #6fcf97; border: 1px solid rgba(111,207,151,0.2); }

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,33,24,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--rose-gold);
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-drop {
  color: var(--gold);
}
.logo-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  text-align: center;
}
.logo-accent {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}
.logo-accent::before, .logo-accent::after {
  content: '';
  height: 1px;
  width: 18px;
  background: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--cream-dim);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--rose-gold); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(201,149,108,0.08);
  border: 1px solid var(--border-light);
  flex-shrink: 0;
  transition: var(--transition);
}
.hamburger:hover {
  background: rgba(201,149,108,0.15);
  border-color: var(--border);
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--rose-gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(9,26,18,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 32px 40px;
}
.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream-dim);
  transition: var(--transition);
  padding: 14px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  letter-spacing: 1px;
}
.mobile-menu a:first-of-type { border-top: 1px solid var(--border-light); }
.mobile-menu a:hover { color: var(--rose-gold); }

.mobile-menu .mobile-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  width: 100%;
}
.mobile-menu .mobile-actions .btn {
  flex: 1;
  justify-content: center;
  padding: 14px;
  font-size: 14px;
}

.mobile-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--rose-gold);
  cursor: pointer;
  background: rgba(201,149,108,0.08);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  line-height: 1;
  transition: var(--transition);
}
.mobile-close:hover { background: rgba(201,149,108,0.18); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 40%, rgba(201,149,108,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 20% 70%, rgba(212,168,83,0.04) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-dark) 0%, #0a1e14 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,149,108,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  bottom: 100px; left: -50px;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
}

.hero-content { }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--rose-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 24px;
}
.hero-title .line-rose { color: var(--rose-gold); display: block; font-style: italic; }
.hero-title .line-gold { color: var(--gold); }

.hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; justify-content: center; }

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 12px;
  color: var(--cream-dim);
}
.hero-pill svg { width: 14px; height: 14px; color: var(--rose-gold); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.hero-card-main {
  background: linear-gradient(135deg, var(--green-card), var(--green-light));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(201,149,108,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.logo-emblem {
  width: 100px; height: 100px;
  margin: 0 auto 24px;
  position: relative;
}
.logo-emblem-diamond {
  width: 100%; height: 100%;
  border: 2px solid var(--rose-gold);
  transform: rotate(45deg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-emblem-letter {
  transform: rotate(-45deg);
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  font-style: italic;
  color: var(--rose-gold);
  line-height: 1;
  text-shadow: 0 0 30px rgba(201,149,108,0.5);
}

.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  letter-spacing: 6px;
  color: var(--rose-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.hero-brand-sub {
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-brand-tag {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero-stat-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--rose-gold);
  display: block;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════
   STATS BANNER
═══════════════════════════════════════ */
.stats-banner {
  background: var(--green-card);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border-light);
}
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--rose-gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-main-card {
  background: var(--green-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
}
.about-icon-wrap {
  width: 80px; height: 80px;
  background: rgba(201,149,108,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
}
.about-float-card {
  position: absolute;
  background: var(--green-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.about-float-1 { top: -16px; right: -24px; }
.about-float-2 { bottom: 40px; left: -24px; }
.about-float-dot { width: 8px; height: 8px; border-radius: 50%; background: #6fcf97; flex-shrink: 0; }

.about-content { }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.about-links { display: flex; gap: 32px; margin-top: 32px; }
.about-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--rose-gold);
  font-weight: 500;
  transition: var(--transition);
}
.about-link:hover { gap: 12px; }
.about-link svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════
   PRODUCTS / CATEGORIES
═══════════════════════════════════════ */
.products-section { background: var(--green-mid); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.product-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.product-card:hover .product-icon { background: rgba(201,149,108,0.2); }

.product-icon {
  width: 64px; height: 64px;
  background: rgba(201,149,108,0.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  transition: var(--transition);
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.products-note {
  margin-top: 40px;
  padding: 20px 28px;
  background: rgba(201,149,108,0.06);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.products-note-icon { font-size: 20px; flex-shrink: 0; }
.products-note strong { color: var(--rose-gold); }

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.step-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: rgba(201,149,108,0.12);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  transition: var(--transition);
}
.step-card:hover .step-number { color: rgba(201,149,108,0.22); }

.step-icon {
  width: 52px; height: 52px;
  background: rgba(201,149,108,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.step-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--rose-gold);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.why-section { background: var(--green-mid); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.why-icon {
  font-size: 30px;
  display: block;
  margin-bottom: 14px;
}
.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 8px;
}
.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   FREE STORE — FEATURE HIGHLIGHT
═══════════════════════════════════════ */
.free-store-section {
  position: relative;
  overflow: hidden;
}
.free-store-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 80% 50%, rgba(201,149,108,0.07) 0%, transparent 70%),
    linear-gradient(180deg, var(--green-dark) 0%, #0a1e14 100%);
}

.free-store-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.free-store-content {}
.free-store-content .tag { margin-bottom: 20px; }
.free-store-content h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 20px; }
.free-store-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; }

.free-store-features {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.free-store-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--cream-dim);
}
.feat-check {
  width: 22px; height: 22px;
  background: rgba(111,207,151,0.12);
  border: 1px solid rgba(111,207,151,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #6fcf97;
  margin-top: 2px;
}

.free-store-visual {}
.store-preview {
  background: var(--green-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.store-preview-bar {
  background: var(--green-mid);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-light);
}
.bar-dot { width: 10px; height: 10px; border-radius: 50%; }
.bar-dot-r { background: #ff5f57; }
.bar-dot-y { background: #febc2e; }
.bar-dot-g { background: #28c840; }
.bar-url {
  flex: 1;
  margin-left: 8px;
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
}
.store-preview-body {
  padding: 24px;
}
.store-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.preview-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.preview-logo-circle {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--rose-gold), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-dark);
}
.preview-store-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--cream);
}
.preview-store-sub { font-size: 10px; color: var(--text-muted); }

.preview-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.preview-product {
  background: var(--green-mid);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.preview-product-img {
  height: 56px;
  background: linear-gradient(135deg, rgba(201,149,108,0.1), rgba(212,168,83,0.08));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.preview-product-info { padding: 6px 8px; }
.preview-product-name { font-size: 9px; color: var(--cream-dim); margin-bottom: 2px; }
.preview-product-price { font-size: 10px; color: var(--rose-gold); font-weight: 600; }

.preview-cta {
  background: linear-gradient(135deg, rgba(201,149,108,0.12), rgba(212,168,83,0.08));
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
  font-size: 12px;
  color: var(--rose-gold);
  font-weight: 500;
}

.store-badge-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(201,149,108,0.06);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  font-size: 11px;
  color: var(--rose-gold);
}

/* ═══════════════════════════════════════
   BRANDING SECTION
═══════════════════════════════════════ */
.branding-section { background: var(--green-mid); }

.branding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.branding-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
}
.branding-card:hover { border-color: var(--border); transform: translateY(-4px); }
.branding-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: rgba(201,149,108,0.25);
  line-height: 1;
  margin-bottom: 14px;
}
.branding-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--cream);
  margin-bottom: 10px;
}
.branding-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ═══════════════════════════════════════
   SHIPPING QUICK INFO
═══════════════════════════════════════ */
.shipping-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.shipping-card {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.shipping-card:hover { border-color: var(--border); transform: translateY(-4px); }
.shipping-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.shipping-label {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  margin-bottom: 8px;
}
.shipping-value { font-size: 14px; color: var(--rose-gold); font-weight: 600; margin-bottom: 6px; }
.shipping-note { font-size: 12px; color: var(--text-muted); }

.couriers-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 28px;
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.couriers-label { font-size: 13px; color: var(--text-muted); }
.courier-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(201,149,108,0.08);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--cream);
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-section { background: var(--green-mid); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {}
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-item:hover { border-color: var(--border); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,149,108,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-item-value {
  font-size: 15px;
  color: var(--cream);
  font-weight: 500;
}
.contact-item-link {
  font-size: 13px;
  color: var(--rose-gold);
  text-decoration: none;
  transition: var(--transition);
}
.contact-item-link:hover { color: var(--rose-light); }

.contact-form-wrap {
  background: var(--green-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--cream);
  margin-bottom: 8px;
}
.contact-form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--rose-gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: rgba(201,149,108,0.5);
  background: rgba(0,0,0,0.3);
  box-shadow: 0 0 0 3px rgba(201,149,108,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--green-card); color: var(--cream); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--rose-gold); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--rose-gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border-light);
  margin: 0 24px;
  padding-top: 16px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ═══════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0b2118 0%, #143326 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,149,108,0.06) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-inner p { font-size: 16px; color: var(--text-muted); max-width: 500px; margin: 0 auto 40px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #060f0a;
  border-top: 1px solid var(--border-light);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand {}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 5px;
  color: var(--rose-gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover { background: rgba(201,149,108,0.1); border-color: var(--border); color: var(--rose-gold); }

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--cream); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-muted); }
.footer-copy a { color: var(--rose-gold); }
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--rose-gold); }

/* ═══════════════════════════════════════
   AI SUPPORT FLOAT (Lahiya Ai Support)
═══════════════════════════════════════ */
.ai-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose-gold, #c9956c), #b88159);
  color: #1a1a1a;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 6px 22px rgba(201, 149, 108, 0.45), 0 0 0 1px rgba(255,255,255,0.06);
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  animation: aiFloatPulse 3.2s ease-in-out infinite;
}
.ai-float:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(201, 149, 108, 0.55);
}
.ai-float .ai-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ai-float .ai-icon svg { width: 16px; height: 16px; }
.ai-float .ai-icon::after {
  content: '';
  position: absolute;
  top: -2px; right: -2px;
  width: 9px; height: 9px;
  background: #22c55e;
  border: 2px solid #c9956c;
  border-radius: 50%;
}
@keyframes aiFloatPulse {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
@media (max-width: 600px) {
  .ai-float { bottom: 16px; right: 16px; padding: 12px 18px 12px 14px; font-size: 13px; }
}

/* ═══════════════════════════════════════
   WHATSAPP FLOAT (legacy — kept for backward compat)
═══════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  padding: 14px 22px 14px 18px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 22px; height: 22px; }

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ═══════════════════════════════════════
   POLICY PAGES
═══════════════════════════════════════ */
.policy-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--green-mid);
  border-bottom: 1px solid var(--border-light);
}
.policy-hero h1 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.policy-hero p { font-size: 16px; color: var(--text-muted); }

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.policy-content h2 {
  font-size: 22px;
  color: var(--rose-gold);
  margin: 40px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}
.policy-content h3 { font-size: 17px; color: var(--cream); margin: 24px 0 10px; }
.policy-content p { font-size: 15px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.8; }
.policy-content ul, .policy-content ol { padding-left: 24px; margin-bottom: 16px; }
.policy-content li { font-size: 15px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.75; }
.policy-content strong { color: var(--cream); }
.policy-alert {
  background: rgba(201,149,108,0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--rose-gold);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 14px;
  color: var(--cream-dim);
}
.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}
.policy-table th {
  background: var(--green-card);
  color: var(--rose-gold);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--border-light);
}
.policy-table td {
  padding: 12px 16px;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
}
.policy-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ═══════════════════════════════════════
   DASHBOARD — MAINTENANCE
═══════════════════════════════════════ */
.maintenance-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}
.maintenance-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 30% 40%, rgba(201,149,108,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 600px 500px at 70% 60%, rgba(212,168,83,0.04) 0%, transparent 60%),
    var(--green-dark);
}
.maintenance-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
}
.maintenance-emblem {
  width: 120px; height: 120px;
  margin: 0 auto 40px;
  position: relative;
}
.emblem-ring {
  width: 100%; height: 100%;
  border: 2px solid rgba(201,149,108,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 20s linear infinite;
}
.emblem-ring-inner {
  width: 80%; height: 80%;
  border: 1px solid rgba(201,149,108,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 15s linear infinite reverse;
}
.emblem-icon { font-size: 36px; animation: none; }

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.maintenance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(201,149,108,0.1);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 24px;
}
.maintenance-badge-dot {
  width: 6px; height: 6px;
  background: var(--rose-gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.maintenance-title {
  font-size: clamp(32px, 5vw, 56px);
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.2;
}
.maintenance-title span { color: var(--rose-gold); }

.maintenance-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.maintenance-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.maintenance-feat {
  background: var(--green-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--cream-dim);
}
.maintenance-feat-icon { font-size: 18px; }

.maintenance-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.maintenance-back {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 28px;
}
.maintenance-back a { color: var(--rose-gold); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 120px 0 64px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { display: none; }

  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .steps-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .free-store-inner { grid-template-columns: 1fr; gap: 48px; }
  .free-store-visual { order: -1; }

  .branding-grid { grid-template-columns: 1fr; }

  .shipping-cards { grid-template-columns: 1fr; }
  .couriers-row { flex-direction: column; gap: 16px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row { grid-template-columns: 1fr; }

  .maintenance-features { grid-template-columns: 1fr; }

  .cta-actions { flex-direction: column; align-items: center; }

  .hero-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); }
}
