/* ==========================================================================
   FIORI DI VIGORE - COMPONENTS & LUXURY UI MODULES (LIGHT LUXURY THEME)
   ========================================================================== */

/* --- 1. HEADER & NAVIGATION --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-smooth);
  background: rgba(251, 249, 245, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 141, 51, 0.14);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.brand-logo-main {
  font-family: var(--font-serif-display);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
  line-height: 1;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.brand-logo-sub {
  font-family: var(--font-cinzel);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold-600);
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--gold-600);
}

.nav-link:hover::after {
  width: 100%;
}

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

.lang-switch {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: var(--gold-500);
  color: #ffffff;
}

.audio-toggle-btn {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--gold-600);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.audio-toggle-btn:hover {
  background: rgba(184, 141, 51, 0.1);
  border-color: var(--gold-500);
  transform: scale(1.05);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- 2. HERO SECTION --- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 130px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.9) 0%, rgba(244, 238, 227, 0.5) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-countdown-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose-blush);
  border: 1px solid rgba(158, 57, 82, 0.25);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: pulseGlow 3s infinite ease-in-out;
}

.hero-countdown-pill span {
  font-size: 0.85rem;
  color: var(--rose-velvet);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-countdown-pill strong {
  color: var(--rose-velvet);
  font-weight: 800;
  font-family: monospace;
  font-size: 0.95rem;
}

.hero-title {
  margin-bottom: 20px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 42px;
}

.hero-trust-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.trust-item-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.trust-item-text strong {
  display: block;
  color: var(--text-primary);
  font-weight: 700;
}

/* Hero Media Display */
.hero-media-wrapper {
  position: relative;
}

.hero-main-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-bright);
  background: #ffffff;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-main-card:hover .hero-image {
  transform: scale(1.04);
}

.hero-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

.badge-review-stars {
  color: #eab308;
  font-size: 0.85rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-client-quote {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 2px;
}

/* --- 3. FLORAL STYLE QUIZ & CONCIERGE --- */
.quiz-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.quiz-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-full);
  margin-bottom: 30px;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33.33%;
  background: var(--gold-gradient);
  transition: width var(--transition-smooth);
}

.quiz-step-header {
  text-align: center;
  margin-bottom: 32px;
}

.quiz-step-header h3 {
  font-size: 1.8rem;
  margin-top: 10px;
  color: var(--text-primary);
}

.quiz-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.quiz-option-card {
  padding: 26px 20px;
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.quiz-option-card:hover {
  background: #ffffff;
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quiz-option-card.selected {
  background: rgba(184, 141, 51, 0.09);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px var(--gold-500), var(--shadow-md);
}

.quiz-option-card.selected::after {
  content: '✓';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.9rem;
  color: var(--gold-600);
  font-weight: bold;
}

.quiz-option-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.quiz-option-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.quiz-option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.quiz-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

/* Quiz Result Card */
.quiz-result-view {
  text-align: center;
  animation: fadeIn 0.6s ease;
}

.quiz-result-match-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 20px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.quiz-result-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: #fbf9f5;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  padding: 26px;
  text-align: left;
  margin: 24px 0;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.quiz-result-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.quiz-result-info h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.quiz-result-price {
  font-size: 1.5rem;
  color: var(--gold-600);
  font-weight: 800;
  margin-bottom: 14px;
}

/* --- 4. SIGNATURE COLLECTIONS GRID --- */
.collection-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: var(--gold-500);
  box-shadow: var(--shadow-gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.product-image-box {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  background: #f4eee3;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.product-card:hover .product-image-box img {
  transform: scale(1.08);
}

.product-badge-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
}

.product-same-day-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 5px 12px;
  font-size: 0.72rem;
  color: var(--gold-600);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.product-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  margin-bottom: 8px;
  font-family: var(--font-serif-sub);
  color: var(--text-primary);
}

.product-notes {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.5;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.product-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-600);
  font-family: var(--font-sans);
}

.product-price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- 5. CUSTOM FLORAL ATELIER (BUILDER & ESTIMATOR) --- */
.builder-section {
  background: var(--bg-secondary);
}

.builder-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 36px;
  align-items: flex-start;
}

.builder-steps-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.builder-step-card {
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.step-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.step-number {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.selector-item {
  padding: 18px 16px;
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.selector-item:hover {
  background: #ffffff;
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
}

.selector-item.active {
  background: rgba(184, 141, 51, 0.08);
  border-color: var(--gold-500);
  box-shadow: 0 0 0 2px var(--gold-500);
}

.selector-item-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.selector-item-price {
  font-size: 0.85rem;
  color: var(--gold-600);
  font-weight: 700;
}

/* Builder Summary Sticky Sidebar */
.builder-summary-card {
  position: sticky;
  top: 100px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.summary-title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}

.summary-line-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.summary-line-item strong {
  color: var(--text-primary);
}

.summary-total-box {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px dashed var(--border-bright);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.summary-total-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.summary-total-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-600);
  font-family: var(--font-sans);
}

.card-message-input {
  width: 100%;
  padding: 12px 16px;
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  margin-top: 16px;
  resize: vertical;
  min-height: 70px;
}

.card-message-input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #ffffff;
}

/* --- 6. FLORIDA DELIVERY SIMULATOR --- */
.delivery-simulator-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.delivery-input-group {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 24px auto 0 auto;
}

.zip-input {
  flex-grow: 1;
  padding: 14px 20px;
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 1rem;
}

.zip-input:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #ffffff;
}

.delivery-result-feedback {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(184, 141, 51, 0.08);
  border: 1px solid var(--border-subtle);
  display: none;
  animation: fadeIn 0.4s ease;
}

.delivery-result-feedback.active {
  display: block;
}

/* --- 7. VIP FLOWER CLUB & SUBSCRIPTIONS --- */
.billing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 45px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2ddd3;
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--border-subtle);
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: var(--gold-500);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--emerald-accent);
}

input:checked + .slider:before {
  transform: translateX(24px);
  background-color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 38px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.pricing-card.featured {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
}

.pricing-title {
  font-size: 1.45rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pricing-amount {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold-600);
  margin: 18px 0;
  font-family: var(--font-sans);
}

.pricing-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-features-list {
  list-style: none;
  margin: 24px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features-list li i {
  color: var(--gold-500);
  flex-shrink: 0;
}

/* --- 8. WEDDINGS & PRIVATE EVENTS --- */
.events-section {
  background: var(--bg-secondary);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.events-form-box {
  padding: 38px;
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-sans);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold-500);
  background: #ffffff;
}

/* --- 9. SEO LOCAL HUB & AREAS SERVED --- */
.seo-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.seo-area-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.seo-area-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-md);
}

.seo-area-city {
  font-size: 1.2rem;
  font-family: var(--font-serif-sub);
  color: var(--gold-600);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.seo-area-zip {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.seo-area-perks {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- 10. FAQ ACCORDION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--gold-500);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold-500);
  transition: transform var(--transition-smooth);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 300px;
}

/* --- 11. SOCIAL PROOF LIVE TOAST --- */
.social-proof-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 990;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 380px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
}

.social-proof-toast.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  flex-shrink: 0;
}

.toast-body {
  font-size: 0.85rem;
  line-height: 1.4;
}

.toast-time {
  font-size: 0.75rem;
  color: var(--gold-600);
  margin-top: 2px;
  font-weight: 600;
}

/* --- 12. FLOATING WHATSAPP BOT CONCIERGE --- */
.whatsapp-floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 995;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-trigger-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fa855 0%, #128C7E 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(31, 168, 85, 0.4);
  transition: transform var(--transition-smooth);
  position: relative;
}

.whatsapp-trigger-btn:hover {
  transform: scale(1.08);
}

.whatsapp-online-dot {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #00ff66;
  border: 2px solid #ffffff;
}

.whatsapp-chat-box {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  background: #ffffff;
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-smooth);
}

.whatsapp-chat-box.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.chat-box-header {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  padding: 16px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-florist-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-florist-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.chat-florist-name {
  font-size: 0.9rem;
  font-weight: 700;
}

.chat-florist-status {
  font-size: 0.72rem;
  opacity: 0.9;
}

.chat-box-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-bubble {
  background: #fbf9f5;
  border: 1px solid var(--border-subtle);
  padding: 12px 14px;
  border-radius: 14px 14px 14px 2px;
  font-size: 0.88rem;
  color: var(--text-primary);
  line-height: 1.4;
}

.chat-quick-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quick-option-btn {
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  background: rgba(184, 141, 51, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.quick-option-btn:hover {
  background: var(--gold-gradient);
  color: #ffffff;
}

/* --- 13. EXIT-INTENT / PROMO MODAL --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  max-width: 520px;
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-xl);
  padding: 38px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform var(--transition-spring);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.modal-coupon-badge {
  display: inline-block;
  padding: 10px 24px;
  border: 2px dashed var(--gold-500);
  border-radius: var(--radius-md);
  font-family: monospace;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold-600);
  margin: 18px 0;
  letter-spacing: 2px;
  cursor: pointer;
  background: rgba(184, 141, 51, 0.08);
}

/* --- 14. FOOTER --- */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  padding: 80px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1rem;
  font-family: var(--font-cinzel);
  color: var(--gold-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--gold-600);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
