/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:    #B8860B;
  --gold-lt: #D4AF37;
  --dark:    #1A1A2E;
  --pink:    #C9899A;
  --mauve:   #9B7E8E;
  --cream:   #FFF8F2;
  --grey:    #F5F0E8;
  --text:    #2C2C2C;
  --muted:   #777;
  --white:   #ffffff;
  --green:   #25D366;
  --radius:  12px;
  --shadow:  0 8px 40px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn-primary  { background: var(--dark); color: var(--white); }
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,134,11,0.35); }
.btn-ghost    { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-whatsapp { background: var(--green); color: var(--white); font-size: 1rem; padding: 16px 36px; }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
.btn-full { width: 100%; }

/* ── Section Helpers ──────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-tag {
  display: inline-block; background: rgba(184,134,11,0.12); color: var(--gold);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 14px;
}
.section-header.light .section-tag { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }
.section-header h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; color: var(--dark); margin-bottom: 14px; line-height: 1.2;
}
.section-sub { color: var(--muted); font-size: 0.95rem; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.section-header.light .section-sub { color: rgba(255,255,255,0.75); }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; flex-direction: column; text-decoration: none; line-height: 1.1;
}
.nav-logo-img {
  height: 52px; width: 52px; border-radius: 50%;
  object-fit: contain;
  background: var(--white);
  padding: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-img { transform: scale(1.05); }
.logo-en {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  color: var(--white); transition: color 0.3s;
}
.nav.scrolled .logo-en { color: var(--dark); }
.logo-ar {
  font-family: 'Noto Naskh Arabic', serif; font-size: 0.8rem;
  color: rgba(255,255,255,0.7); transition: color 0.3s;
}
.nav.scrolled .logo-ar { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85); transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important; color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px;
}
.nav-cta:hover { background: var(--dark) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: background 0.3s;
}
.nav.scrolled .hamburger span { background: var(--dark); }
.mobile-menu {
  display: none; flex-direction: column; padding: 12px 24px 20px;
  background: var(--white); border-top: 1px solid #eee;
}
.mobile-menu a {
  text-decoration: none; padding: 12px 0; font-size: 0.95rem; font-weight: 500;
  color: var(--text); border-bottom: 1px solid #f0f0f0;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #2C1810 0%, #1A0A12 35%, #0D0D1F 70%, #1A1A2E 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(201,137,154,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 70%, rgba(184,134,11,0.12) 0%, transparent 70%);
}
/* Decorative rose silhouettes */
.hero-bg::after {
  content: '🌹';
  position: absolute; font-size: 280px; opacity: 0.04;
  right: -40px; bottom: -40px; filter: blur(2px);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; padding: 120px 24px 80px;
}
.hero-sub {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 10vw, 6rem); font-weight: 300; line-height: 1.05;
  color: var(--white); margin-bottom: 16px;
}
.hero-title em { font-style: italic; color: var(--pink); }
.hero-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.4rem; color: rgba(255,255,255,0.5);
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.8;
  margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
}
.hero-scroll span {
  display: block; width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  margin: 0 auto; animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0%,100% { opacity:0.3; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.2); } }

/* ── STRIP ────────────────────────────────────────────────────────────────── */
.strip { background: var(--dark); padding: 56px 0; }
.strip-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px;
}
.strip-item { text-align: center; }
.strip-icon { font-size: 2rem; margin-bottom: 12px; }
.strip-item h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  color: var(--white); margin-bottom: 8px; font-weight: 600;
}
.strip-item p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ── PRODUCTS ─────────────────────────────────────────────────────────────── */
.products { padding: 100px 0; background: var(--white); }
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px; margin-bottom: 40px;
}
.product-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid #EEE8F0; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s; position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card.featured { border-color: var(--gold); box-shadow: 0 4px 24px rgba(184,134,11,0.15); }
.product-badge {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: var(--gold); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
}

/* Rose Visualization */
.product-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.small-box  { background: linear-gradient(135deg, #F9F0F3 0%, #F0E4E8 100%); }
.large-box  { background: linear-gradient(135deg, #F5EBF0 0%, #EBD8E4 100%); }
.wedding-box{ background: linear-gradient(135deg, #F8F4F0 0%, #EDE3DC 100%); }

.roses-preview {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; padding: 20px;
}
.roses-preview.large { grid-template-columns: repeat(4, 1fr); gap: 6px; }

.rose {
  width: 44px; height: 44px; border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 35% 35%, #F4C2C2, #C9899A 50%, #9B7E8E);
  box-shadow: inset -3px -3px 6px rgba(0,0,0,0.15), 2px 2px 8px rgba(0,0,0,0.08);
  position: relative; animation: roseFloat 3s ease-in-out infinite;
}
.roses-preview.large .rose { width: 36px; height: 36px; }
.rose::before {
  content: ''; position: absolute; inset: 3px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 60%);
}
.rose.blush { background: radial-gradient(circle at 35% 35%, #FFD6DC, #F4A0B0 50%, #D4849A); }
.rose.white { background: radial-gradient(circle at 35% 35%, #FFFFFF, #F0E8E8 50%, #DDD0D0); }

.rose.r1 { animation-delay: 0s; }
.rose.r2 { animation-delay: 0.2s; }
.rose.r3 { animation-delay: 0.4s; }
.rose.r4 { animation-delay: 0.6s; }
.rose.r5 { animation-delay: 0.8s; }
.rose.r6 { animation-delay: 1s; }
.rose.r7 { animation-delay: 1.2s; }
.rose.r8 { animation-delay: 1.4s; }
.rose.r9 { animation-delay: 1.6s; }
.rose.r10 { animation-delay: 1.8s; }
.rose.r11 { animation-delay: 2s; }
.rose.r12 { animation-delay: 2.2s; }

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

.product-body { padding: 24px; }
.product-tag {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
  background: rgba(155,126,142,0.12); color: var(--mauve);
}
.product-tag.gold { background: rgba(184,134,11,0.1); color: var(--gold); }
.product-tag.rose { background: rgba(201,137,154,0.12); color: var(--pink); }
.product-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
  font-weight: 600; color: var(--dark); margin-bottom: 2px;
}
.product-ar {
  font-family: 'Noto Naskh Arabic', serif; font-size: 0.9rem;
  color: var(--muted); margin-bottom: 10px;
}
.product-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.product-features { list-style: none; margin-bottom: 18px; }
.product-features li {
  font-size: 0.8rem; color: var(--text); padding: 5px 0;
  border-bottom: 1px solid #F5F0F0; display: flex; align-items: center; gap: 8px;
}
.product-features li::before { content: '✓'; color: var(--gold); font-weight: 700; }
.product-price { margin-bottom: 18px; }
.price-from { font-size: 0.75rem; color: var(--muted); display: block; margin-bottom: 2px; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 600; color: var(--dark); }
.price-named { display: block; font-size: 0.8rem; color: var(--pink); font-weight: 500; margin-top: 2px; }

/* Single Rose Banner */
.single-rose-banner {
  background: linear-gradient(135deg, var(--dark), #2C1820);
  border-radius: 20px; padding: 32px 40px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.srb-text { flex: 1; min-width: 200px; }
.srb-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--white); margin-bottom: 4px; }
.srb-ar { font-family: 'Noto Naskh Arabic', serif; font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.srb-text p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.srb-price { text-align: center; }
.srb-price span { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.srb-price strong { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.srb-price small { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ── PERSONALIZATION ──────────────────────────────────────────────────────── */
.personalize {
  padding: 100px 0;
  background: linear-gradient(135deg, #2C1820 0%, #1A1A2E 100%);
}
.personal-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center;
}
.personal-visual { text-align: center; }
.name-rose-demo {
  width: 200px; height: 200px; margin: 0 auto 16px;
  background: radial-gradient(circle at 35% 35%, #F4C2C2, #C9899A 50%, #9B7E8E);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  box-shadow: 0 12px 40px rgba(201,137,154,0.4), inset -6px -6px 12px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.name-rose-demo::before {
  content: ''; position: absolute; inset: 10px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.35), transparent 60%);
}
.demo-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 600; color: var(--white); z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.demo-hint { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-bottom: 12px; }
.demo-input-wrap input {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px; padding: 10px 20px; color: var(--white); font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem; text-align: center; width: 200px; outline: none;
}
.demo-input-wrap input::placeholder { color: rgba(255,255,255,0.35); }
.demo-input-wrap input:focus { border-color: var(--gold); background: rgba(255,255,255,0.15); }

.personal-item {
  display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px;
}
.personal-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.personal-item h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.15rem;
  color: var(--white); margin-bottom: 4px; font-weight: 600;
}
.personal-item p { font-size: 0.83rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ── COLORS & SCENTS ──────────────────────────────────────────────────────── */
.customizer { padding: 100px 0; background: var(--grey); }
.custom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.custom-col h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  color: var(--dark); margin-bottom: 24px; font-weight: 600;
}
.color-swatches { display: flex; flex-wrap: wrap; gap: 12px; }
.swatch {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid #E5DDD8;
  border-radius: 50px; padding: 8px 16px 8px 10px;
  font-size: 0.8rem; color: var(--text); cursor: pointer;
  transition: all 0.2s; font-weight: 500;
}
.swatch:hover { border-color: var(--gold); box-shadow: 0 2px 12px rgba(184,134,11,0.15); }
.swatch span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--c); border: 1px solid rgba(0,0,0,0.08); flex-shrink: 0;
}
.scent-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: 12px; padding: 16px 20px; margin-bottom: 12px;
  border: 1px solid #E5DDD8;
}
.scent-icon { font-size: 1.5rem; flex-shrink: 0; }
.scent-item strong { display: block; font-size: 0.9rem; color: var(--dark); margin-bottom: 2px; }
.scent-item p { font-size: 0.78rem; color: var(--muted); margin: 0; }

/* ── OCCASIONS ────────────────────────────────────────────────────────────── */
.occasions { padding: 100px 0; background: var(--white); }
.occasions-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.occasion-card {
  background: var(--cream); border-radius: 16px; padding: 28px 24px;
  text-align: center; border: 1px solid #EEE8F0;
  transition: all 0.25s;
}
.occasion-card:hover {
  background: var(--dark); border-color: var(--dark);
  transform: translateY(-4px); box-shadow: var(--shadow);
}
.occasion-card:hover h4, .occasion-card:hover p { color: var(--white); }
.occasion-card span { font-size: 2rem; display: block; margin-bottom: 12px; }
.occasion-card h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.05rem;
  color: var(--dark); margin-bottom: 6px; font-weight: 600; transition: color 0.25s;
}
.occasion-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; transition: color 0.25s; }

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */
.howitworks { padding: 80px 0; background: var(--grey); }
.steps {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.step {
  background: var(--white); border-radius: 16px; padding: 32px 24px;
  text-align: center; flex: 1; min-width: 180px; max-width: 220px;
  border: 1px solid #EEE8F0;
}
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.step h4 { font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.step p { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }
.step-arrow { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }

/* ── ORDER SECTION ────────────────────────────────────────────────────────── */
.order { padding: 100px 0; background: var(--cream); }
.order-box {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: start;
  background: var(--white); border-radius: 24px; padding: 56px;
  box-shadow: var(--shadow); border: 1px solid #EEE8F0;
}
.order-text .section-tag { margin-bottom: 12px; }
.order-text h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.5rem;
  font-weight: 600; color: var(--dark); margin-bottom: 6px;
}
.order-ar {
  font-family: 'Noto Naskh Arabic', serif; font-size: 1.1rem;
  color: var(--gold); margin-bottom: 16px;
}
.order-text p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.order-details { list-style: none; margin-bottom: 32px; }
.order-details li {
  font-size: 0.85rem; color: var(--text); padding: 8px 0;
  border-bottom: 1px solid #F5F0F0; font-weight: 500;
}
.order-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  color: var(--dark); margin-bottom: 20px; font-weight: 600;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table tr td {
  padding: 10px 0; font-size: 0.85rem; border-bottom: 1px solid #F0ECE8;
}
.price-table tr td:first-child { color: var(--text); }
.price-table tr td:last-child {
  text-align: right; font-weight: 600; color: var(--dark);
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
}
.price-table tr:last-child td { border-bottom: none; }
.order-note {
  background: var(--grey); border-radius: 12px; padding: 16px 20px; margin-top: 20px;
}
.order-note p { font-size: 0.82rem; color: var(--text); margin-bottom: 6px; }
.order-note p:last-child { margin-bottom: 0; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 56px 0 0; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 24px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand .logo-en { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-ar { color: var(--gold); }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 6px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  text-decoration: none; font-size: 0.82rem; color: rgba(255,255,255,0.55); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── FLOATING WHATSAPP ────────────────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 99;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); text-decoration: none;
  transition: all 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .personal-layout { grid-template-columns: 1fr; }
  .personal-visual { order: -1; }
  .custom-grid { grid-template-columns: 1fr; gap: 40px; }
  .order-box { grid-template-columns: 1fr; padding: 36px 28px; }
  .steps { gap: 4px; }
  .step-arrow { display: none; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 3rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .strip-inner { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .single-rose-banner { flex-direction: column; text-align: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-social { justify-content: center; }
}
