/* ============================================
   AURORE ETERNAL BOUQUETS — MAIN STYLESHEET
   Soft Luxury Aesthetic · Mobile-First
   ============================================ */

:root {
  --blush: #F5E6E8;
  --blush-mid: #EDD5D8;
  --blush-deep: #D4A0A7;
  --rose: #8B1A3A;
  --rose-light: #C06080;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --cream: #FAF7F2;
  --dark: #1A0F12;
  --dark-mid: #3D2030;
  --text: #2C1520;
  --text-mid: #6B4050;
  --text-light: #9C7080;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 30px rgba(139, 26, 58, 0.08);
  --shadow-card: 0 8px 40px rgba(139, 26, 58, 0.12);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--blush-mid);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
input:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ─── TYPOGRAPHY ─── */
.section-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  color: var(--rose);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 500px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.bg-blush { background: var(--blush); }
.bg-dark { background: var(--dark); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background var(--transition), transform 0.2s;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--dark-mid); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  border: 1.5px solid var(--rose);
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--transition);
  background: transparent;
}
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 16px 32px;
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform 0.2s;
  width: 100%;
  margin-top: 24px;
}
.btn-whatsapp:hover { background: #128C7E; transform: translateY(-2px); }
.btn-whatsapp-lg {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: #25D366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 100px;
  margin-top: 32px;
  transition: background var(--transition), transform 0.2s;
}
.btn-whatsapp-lg:hover { background: #128C7E; transform: translateY(-2px); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 16px 0;
}
#navbar.scrolled {
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(139, 26, 58, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-flower { width: 36px; height: 42px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose);
  letter-spacing: 0.04em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
}
.nav-cta:hover { background: var(--dark-mid) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose);
  border-radius: 2px;
  transition: transform 0.3s;
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}
.hero-slides { position: relative; height: 85vh; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,15,18,0.45) 0%, rgba(26,15,18,0.7) 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 700px;
}
.hero-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-heading em { color: var(--gold); font-style: italic; display: block; }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-hero {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all var(--transition);
}
.btn-hero:hover { background: var(--gold); color: var(--dark); }
.hero-controls {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.hero-arrow {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* Slide 2 border-fill btn animation */
@keyframes borderFill {
  0% { background-size: 0% 100%; }
  100% { background-size: 100% 100%; }
}
.btn-hero.border-fill {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-position: left;
  background-size: 0% 100%;
  color: var(--white);
}
.hero-slide.active .btn-hero.border-fill {
  animation: borderFill 0.8s 1.5s forwards;
}

/* Slide 3 pulse btn */
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,110,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(201,169,110,0); }
}
.btn-hero.pulse-btn { animation: pulseBorder 2s infinite; }

/* Glitch effect */
.glitch-text { position: relative; }
@keyframes glitch {
  0% { text-shadow: none; }
  20% { text-shadow: -3px 0 var(--gold); clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%); transform: translate(-2px); }
  40% { text-shadow: 3px 0 var(--rose-light); clip-path: none; transform: translate(0); }
  60% { text-shadow: -2px 0 var(--gold); clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); transform: translate(2px); }
  80% { text-shadow: none; clip-path: none; transform: translate(0); }
  100% { text-shadow: none; }
}
.hero-slide.active .glitch-text { animation: glitch 3s steps(1) 0.5s infinite; }

/* ─── MARQUEE / BANNER ─── */
.marquee-wrap {
  background: var(--rose);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }

/* ─── PRODUCTS GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.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.05); }
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--rose);
  color: white;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-badge.new { background: var(--gold); }
.product-info { padding: 24px; }
.product-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 8px;
}
.product-info p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 16px; }
.product-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
  border: 2px solid transparent;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.04);
  box-shadow: var(--shadow-card);
}
.pricing-icon { font-size: 2.5rem; margin-bottom: 16px; }
.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 4px;
}
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 24px;
}
.addons-section { text-align: center; }
.addons-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 24px;
}
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
}
.addon-name { color: var(--text); }
.addon-price { color: var(--gold); font-weight: 500; }

/* ─── CUSTOM BUILDER ─── */
.builder-wrap {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 768px) { .builder-wrap { grid-template-columns: 1fr; } }
.preview-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  position: sticky;
  top: 100px;
}
.preview-icon { font-size: 3rem; margin-bottom: 16px; }
.preview-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rose);
  margin-bottom: 16px;
}
.preview-details {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 2;
  text-align: left;
  margin-bottom: 20px;
}
.preview-total {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--rose);
}
.preview-total strong { color: var(--gold); }
.form-group { margin-bottom: 24px; }
.form-group > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-card, .check-card {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--white);
  border: 1.5px solid var(--blush-mid);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.88rem;
}
.radio-card:hover, .check-card:hover { border-color: var(--gold); }
.radio-card input[type="radio"]:checked + span,
.check-card input[type="checkbox"]:checked + span { color: var(--rose); }
.radio-card:has(input:checked),
.check-card:has(input:checked) {
  border-color: var(--rose);
  background: var(--blush);
}
.radio-card input, .check-card input { width: auto; }
.radio-card small { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 2px; }
.upload-zone {
  border: 2px dashed var(--blush-mid);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.upload-zone:hover { border-color: var(--gold); }
.upload-placeholder span { font-size: 2rem; }
.upload-placeholder p { font-size: 0.88rem; color: var(--text-light); margin-top: 8px; }
#uploadPreview { width: 100%; border-radius: 8px; margin-top: 12px; }

/* ─── HOW IT WORKS ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: white;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}
.step-icon { font-size: 2.5rem; margin-bottom: 20px; margin-top: 8px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--rose);
  margin-bottom: 12px;
}
.step-card p { font-size: 0.9rem; color: var(--text-mid); }

/* ─── DELIVERY ─── */
.delivery-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) { .delivery-split { grid-template-columns: 1fr; } }
.delivery-list li {
  padding: 12px 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--blush-mid);
}
.delivery-list li:last-child { border-bottom: none; }
.map-visual {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.jamaica-map { max-width: 240px; margin: 0 auto 16px; }
.map-label { font-size: 0.88rem; color: var(--text-mid); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border-left: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.95rem; color: var(--text-mid); font-style: italic; margin-bottom: 20px; }
.testimonial-author { font-size: 0.8rem; font-weight: 500; color: var(--rose); }

/* ─── INSTAGRAM GRID ─── */
.insta-link { display: inline-block; color: var(--gold); font-size: 0.88rem; margin-top: 8px; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  display: block;
  transition: opacity var(--transition), transform var(--transition);
}
.insta-tile:hover { opacity: 0.85; transform: scale(0.98); }

/* ─── CONTACT ─── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) { .contact-split { grid-template-columns: 1fr; } }
.section-kicker.light, .section-title.light { color: var(--gold); }
.section-title.light { color: var(--blush); }
.contact-desc { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-top: 16px; }
.contact-details { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-line:hover { color: var(--gold); }
.quick-order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
}
.quick-order-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 24px;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark-mid);
  padding: 48px 0;
  text-align: center;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.footer-logo .logo-text { color: var(--gold); font-size: 2rem; }
.footer-tagline { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blush-mid); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-bottom: 20px; }
.footer-links { display: flex; justify-content: center; gap: 32px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.8rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ─── CHATBOT ─── */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
}
.chatbot-toggle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--rose);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(139,26,58,0.3);
  transition: transform 0.2s, background var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.1); background: var(--dark-mid); }
.chatbot-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  background: var(--rose);
  color: white;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar { font-size: 1.5rem; }
.chatbot-header strong { display: block; font-size: 0.9rem; }
.chatbot-header small { font-size: 0.72rem; opacity: 0.8; }
.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 1rem;
}
.chatbot-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 300px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot { background: var(--blush); color: var(--text); align-self: flex-start; }
.chat-msg.user { background: var(--rose); color: white; align-self: flex-end; }
.chatbot-input-wrap {
  display: flex;
  border-top: 1px solid var(--blush-mid);
  padding: 12px;
  gap: 8px;
}
.chatbot-input-wrap input {
  border: none;
  background: var(--blush);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 0.85rem;
}
.chatbot-input-wrap input:focus { background: var(--blush-mid); }
#chatbotSend {
  background: var(--rose);
  border: none;
  color: white;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

/* ─── MOBILE ADJUSTMENTS ─── */
@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 2rem; }
  .hero-heading { font-size: 2.8rem; }
  .pricing-card.featured { transform: none; }
  .quick-order-form { padding: 24px; }
  .chatbot-panel { width: calc(100vw - 48px); right: -8px; }
}

/* ============================================
   MULTI-PAGE ADDITIONS
   Page heroes, shop strip, FAQ, builder extras
   ============================================ */

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1563241527-3004b7be0b83?w=1600&q=80');
  background-size: cover;
  background-position: center;
  margin-top: 0;
  padding-top: 72px; /* nav height */
}
.page-hero--short { min-height: 38vh; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,15,18,0.55) 0%, rgba(26,15,18,0.75) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 640px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  font-weight: 300;
}

/* ─── SHOP STRIP ─── */
.shop-strip {
  background: var(--blush);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 18px 24px;
  border-bottom: 1px solid var(--blush-mid);
}
.shop-strip span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-mid);
}

/* ─── SECTION CTA ─── */
.section-cta {
  text-align: center;
  margin-top: 48px;
}
.cta-strip-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── FORM ENHANCEMENTS (custom page) ─── */
.form-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--rose);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--blush-mid);
}
.form-section-title:first-of-type { margin-top: 0; }
.optional-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--blush);
  padding: 2px 10px;
  border-radius: 100px;
  margin-left: 10px;
  vertical-align: middle;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.6;
}
.preview-note {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-note p {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ─── FAQ (contact page) ─── */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
  border-top: 3px solid var(--blush-deep);
  transition: border-color var(--transition);
}
.faq-item:hover { border-top-color: var(--gold); }
.faq-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--rose);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ─── NAV ACTIVE STATE (multi-page) ─── */
.nav-links a.active { color: var(--rose); }
.nav-links a.active.nav-cta { color: var(--white) !important; }

/* ─── HOMEPAGE — body needs nav padding ─── */
#hero { padding-top: 72px; margin-top: -72px; } /* overlap hero behind nav */

