/* ============================================================
   FOREVER FLOWERS — STYLESHEET
   Aesthetic: Warm luxury · Botanical editorial · Organic elegance
   Fonts: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

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

/* ─── VARIABLES ─────────────────────────────────────────────── */
:root {
  --blush:    #F7EDE8;
  --rose:     #C9726A;
  --rose2:    #A8534B;
  --sage:     #7A9E7E;
  --sage2:    #5C7D60;
  --cream:    #FDF8F4;
  --warm:     #EDE0D4;
  --bark:     #5C3D2E;
  --bark2:    #3D2416;
  --muted:    #9B8B82;
  --white:    #FFFFFF;
  --card-bg:  #FFFAF7;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --radius: 16px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 32px rgba(92,61,46,0.12);
  --shadow-hover: 0 20px 48px rgba(92,61,46,0.2);
}

/* DARK MODE */
[data-theme="dark"] {
  --blush:   #1E1410;
  --cream:   #160F0A;
  --warm:    #2A1F18;
  --card-bg: #1E1610;
  --bark:    #D4B8A8;
  --bark2:   #F0DDD0;
  --muted:   #8A7870;
  --white:   #F5EDE8;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── LOADER ─────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity 0.6s ease;
}
#loader.hidden { opacity: 0; pointer-events: none; }
.loader-flower {
  font-size: 3rem;
  animation: spin 1.5s linear infinite;
}
.loader-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--rose);
  letter-spacing: 2px;
}
@keyframes spin {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* ─── FLOATING WHATSAPP ─────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.float-wa svg { width: 28px; height: 28px; fill: white; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.3); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── BACK TO TOP ───────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 6rem; right: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--rose);
  color: white;
  border: none; border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,114,106,0.35);
  opacity: 0; pointer-events: none;
  transition: all var(--transition);
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--rose2); transform: translateY(-3px); }

/* ─── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--transition);
}
nav.scrolled {
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(92,61,46,0.08);
  padding: 0.9rem 3rem;
}
[data-theme="dark"] nav.scrolled { background: rgba(22,15,10,0.92); }

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--bark2);
  letter-spacing: 0.5px;
}
.nav-brand span { color: var(--rose); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--rose); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Dark mode toggle */
.theme-toggle {
  background: none; border: 1.5px solid var(--warm);
  border-radius: 100px;
  padding: 0.35rem 0.8rem;
  cursor: pointer;
  font-size: 1rem;
  color: var(--bark);
  transition: all var(--transition);
}
.theme-toggle:hover { border-color: var(--rose); }

.nav-wa {
  background: #25D366;
  color: white;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 100px;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.nav-wa:hover { background: #1da851; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--bark); border-radius: 2px; transition: var(--transition); }

/* ─── SEASONAL BANNER ───────────────────────────────────────── */
.seasonal-banner {
  background: linear-gradient(90deg, var(--rose), #D4846A, var(--sage));
  color: white;
  text-align: center;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-top: 72px;
}
/* ✏️ Change the banner text in index.html — search for "seasonal-banner" */

/* ─── HERO ──────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 3rem 4rem;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,114,106,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(122,158,126,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #FDF5EF 0%, #F7EDE8 50%, #EEE5DC 100%);
}
[data-theme="dark"] .hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,114,106,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(122,158,126,0.07) 0%, transparent 60%),
    linear-gradient(135deg, #160F0A 0%, #1A1209 50%, #1E1510 100%);
}

.hero-petal {
  position: absolute; font-size: 4rem; opacity: 0.12; pointer-events: none;
  animation: petaldrift 12s ease-in-out infinite;
}
.hero-petal:nth-child(1) { top: 10%; left: 5%;  animation-delay: 0s;   font-size: 5rem; }
.hero-petal:nth-child(2) { top: 60%; left: 10%; animation-delay: 2s;   font-size: 3rem; }
.hero-petal:nth-child(3) { top: 20%; right: 5%; animation-delay: 4s;   font-size: 6rem; }
.hero-petal:nth-child(4) { bottom:15%; right: 12%; animation-delay: 1s; font-size: 4rem; }
.hero-petal:nth-child(5) { top: 45%; right: 25%; animation-delay: 3s;  font-size: 2.5rem; }

@keyframes petaldrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(8deg); }
  66%       { transform: translateY(10px) rotate(-5deg); }
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--rose); margin-bottom: 1.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: '✦'; font-size: 0.6rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bark2);
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--rose); }
.hero-title strong { font-weight: 700; display: block; }

.hero-sub {
  font-size: 1.05rem; font-weight: 300; color: var(--muted);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 440px;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.3px; cursor: pointer; border: none;
  transition: all var(--transition); text-decoration: none;
}
.btn-rose { background: var(--rose); color: white; }
.btn-rose:hover { background: var(--rose2); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,114,106,0.35); }
.btn-outline { background: transparent; color: var(--bark); border: 1.5px solid var(--warm); }
.btn-outline:hover { border-color: var(--rose); color: var(--rose); transform: translateY(-2px); }
.btn-wa-green { background: #25D366; color: white; }
.btn-wa-green:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,211,102,0.3); }

.hero-trust {
  display: flex; gap: 2rem; margin-top: 3rem;
  padding-top: 2rem; border-top: 1px solid rgba(92,61,46,0.1);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--rose); line-height: 1; }
.trust-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }

/* Hero image collage */
.hero-visual { position: relative; }
.hero-img-main {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; border-radius: 24px;
  box-shadow: var(--shadow-hover);
}
.hero-img-float {
  position: absolute; bottom: -2rem; left: -2rem;
  width: 48%; aspect-ratio: 1/1;
  object-fit: cover; border-radius: 20px;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
  animation: floatBob 4s ease-in-out infinite;
}
@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.hero-badge-float {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--rose);
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  padding: 0.8rem 1.2rem; border-radius: 14px;
  box-shadow: 0 8px 24px rgba(201,114,106,0.35);
  text-align: center; line-height: 1.4;
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section { padding: 6rem 3rem; }
.container { max-width: 1100px; margin: 0 auto; width: 100%; }

.section-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--rose); margin-bottom: 0.8rem;
}
.section-label::before { content: '✿'; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; color: var(--bark2);
  line-height: 1.15; letter-spacing: -0.5px;
}
.section-title em { font-style: italic; color: var(--rose); }

/* ─── ABOUT ─────────────────────────────────────────────────── */
#about { background: var(--blush); }

.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover; border-radius: 28px;
  box-shadow: var(--shadow-hover);
}
.about-tag {
  position: absolute; top: 2rem; right: -1.5rem;
  background: var(--sage);
  color: white; font-size: 0.78rem; font-weight: 600;
  padding: 0.6rem 1.2rem; border-radius: 100px;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(122,158,126,0.35);
}

.about-text { }
.about-text p { color: var(--muted); font-size: 1rem; font-weight: 300; line-height: 1.9; margin-bottom: 1.2rem; }
.about-text p strong { color: var(--bark); font-weight: 500; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
.about-feat {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.2rem; border-radius: 14px;
  background: var(--card-bg); border: 1px solid rgba(92,61,46,0.07);
  transition: all var(--transition);
}
.about-feat:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.feat-icon { font-size: 1.5rem; flex-shrink: 0; }
.feat-text { }
.feat-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--bark2); }
.feat-desc { font-size: 0.85rem; color: var(--muted); margin-top: 0.2rem; }

/* ─── PRODUCTS ──────────────────────────────────────────────── */
#products { background: var(--cream); }

.product-filters {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  margin: 2rem 0 3rem;
}
.filter-btn {
  background: var(--warm); border: 1.5px solid transparent;
  color: var(--bark); font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 500; padding: 0.5rem 1.2rem; border-radius: 100px;
  cursor: pointer; letter-spacing: 0.3px; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--rose); color: white;
  box-shadow: 0 6px 18px rgba(201,114,106,0.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(92,61,46,0.07);
  transition: all var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute; top: 0.8rem; left: 0.8rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
  padding: 0.3rem 0.75rem; border-radius: 100px; color: white;
}
.badge-sale    { background: var(--rose); }
.badge-new     { background: var(--sage); }
.badge-popular { background: var(--bark); }

.handmade-badge {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: rgba(253,248,244,0.92);
  color: var(--bark2); font-size: 0.68rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 100px;
  letter-spacing: 0.3px;
}

.product-info { padding: 1.2rem; }
.product-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--bark2); margin-bottom: 0.3rem;
}
.product-desc { font-size: 0.8rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.8rem; }

.product-price { display: flex; align-items: baseline; gap: 0.6rem; margin-bottom: 1rem; }
.price-current { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--rose); }
.price-original { font-size: 0.82rem; color: var(--muted); text-decoration: line-through; }

.btn-inquire {
  width: 100%;
  background: var(--rose);
  color: white;
  border: none; border-radius: 100px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; letter-spacing: 0.3px;
  transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  text-decoration: none; /* for <a> tag */
  -webkit-tap-highlight-color: transparent; /* remove grey flash on mobile tap */
  touch-action: manipulation; /* faster tap response on mobile */
}
.btn-inquire:hover,
.btn-inquire:active { background: var(--rose2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,114,106,0.3); color: white; }
.btn-inquire svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }

/* ─── WHY US ─────────────────────────────────────────────────── */
#why { background: var(--bark2); color: white; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 3rem; }
.why-card {
  text-align: center; padding: 2rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius);
  transition: all var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.05); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
.why-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ─── REVIEWS ───────────────────────────────────────────────── */
#reviews { background: var(--blush); }

.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card {
  background: var(--card-bg);
  border: 1px solid rgba(92,61,46,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem; line-height: 1;
  color: var(--rose); opacity: 0.15;
  position: absolute; top: 0.5rem; left: 1.2rem;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-text { font-size: 0.95rem; color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-weight: 300; }
.review-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--bark2); }
.review-stars { color: #F4C430; font-size: 0.85rem; margin-bottom: 0.5rem; }

/* ─── CUSTOM BOUQUET BUILDER ────────────────────────────────── */
#builder { background: var(--cream); }

.builder-box {
  background: var(--card-bg);
  border: 1px solid rgba(92,61,46,0.1);
  border-radius: 24px; padding: 3rem;
  max-width: 680px; margin: 3rem auto 0;
}
.builder-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--bark2); margin-bottom: 0.5rem; }
.builder-sub { color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }

.flowers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 2rem; }
.flower-check { display: none; }
.flower-label {
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  padding: 1rem 0.5rem; border-radius: 12px;
  border: 1.5px solid rgba(92,61,46,0.1);
  cursor: pointer; transition: all var(--transition);
  font-size: 0.8rem; color: var(--muted); text-align: center;
}
.flower-label span:first-child { font-size: 2rem; }
.flower-check:checked + .flower-label {
  background: rgba(201,114,106,0.08);
  border-color: var(--rose); color: var(--rose);
}

.builder-form { display: flex; flex-direction: column; gap: 1rem; }
.form-input {
  background: var(--blush); border: 1.5px solid rgba(92,61,46,0.1);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem; color: var(--bark);
  outline: none; transition: border-color var(--transition);
  width: 100%;
}
.form-input:focus { border-color: var(--rose); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── CARE INSTRUCTIONS ─────────────────────────────────────── */
#care { background: var(--warm); }

.care-tabs { display: flex; gap: 0.5rem; margin: 2rem 0 2.5rem; flex-wrap: wrap; }
.care-tab {
  padding: 0.55rem 1.3rem; border-radius: 100px;
  border: 1.5px solid rgba(92,61,46,0.15);
  background: none; font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted); cursor: pointer;
  transition: all var(--transition);
}
.care-tab.active, .care-tab:hover { background: var(--rose); color: white; border-color: var(--rose); }

.care-content { display: none; animation: fadeIn 0.4s ease; }
.care-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.care-card {
  background: var(--card-bg); border-radius: var(--radius);
  padding: 1.5rem; border: 1px solid rgba(92,61,46,0.07);
}
.care-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.care-title { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--bark2); margin-bottom: 0.4rem; }
.care-text { font-size: 0.83rem; color: var(--muted); line-height: 1.7; }

/* ─── INSTAGRAM PLACEHOLDER ─────────────────────────────────── */
#instagram { background: var(--blush); text-align: center; padding: 4rem 3rem; }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.5rem; margin-top: 2rem; }
.ig-cell {
  aspect-ratio: 1/1; background: var(--warm);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--muted);
  transition: all var(--transition);
  cursor: pointer;
}
.ig-cell:hover { background: var(--rose); color: white; transform: scale(1.05); }

/* ─── CONTACT / FOOTER ──────────────────────────────────────── */
#contact { background: var(--bark2); color: white; padding: 5rem 3rem 3rem; }

.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

.contact-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin-bottom: 1rem; }
.contact-brand em { font-style: italic; color: var(--rose); }
.contact-desc { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-links { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-link {
  display: flex; align-items: center; gap: 1rem;
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--rose); }
.contact-link-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

.special-form { display: flex; flex-direction: column; gap: 1rem; }
.special-form h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-input-dark {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 0.85rem 1rem;
  font-family: var(--font-body); font-size: 0.9rem;
  color: white; outline: none; transition: border-color var(--transition); width: 100%;
}
.form-input-dark::placeholder { color: rgba(255,255,255,0.35); }
.form-input-dark:focus { border-color: var(--rose); }

.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-love { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-love span { color: var(--rose); }

/* ─── REVEAL ANIMATIONS ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── MOBILE NAV OVERLAY ─────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: rgba(253,248,244,0.97); z-index: 99;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
[data-theme="dark"] .mobile-nav { background: rgba(22,15,10,0.97); }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--font-display); font-size: 2rem; color: var(--bark2); transition: color var(--transition); }
.mobile-nav a:hover { color: var(--rose); }
.mobile-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 2rem; color: var(--bark); cursor: pointer; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-trust { justify-content: center; }
  .hero-btns { justify-content: center; }
  .about-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 400px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .care-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 4rem 1.2rem; }
  #instagram { padding: 3rem 1.2rem; }
  #contact { padding: 4rem 1.2rem 2rem; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .flowers-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row-2 { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
