/* ===== CURATED PARTY DESIGNS — STYLESHEET ===== */
/* Palette: Coastal Party Design — Soft Lavender × Magenta — 2026 Modern */

/* Google Fonts: Cormorant Garamond (display serif) + Outfit (clean modern sans) */
/* Loaded via <link> in application.html.erb — no @import needed */

:root {
  /* ─── Primary Palette (claude-redesign spec) ─── */
  --primary:        #AE3478;   /* Primary brand — CTAs, eyebrows, accents, links */
  --primary-mid:    #C9508E;   /* Hover state for primary elements */
  --primary-light:  #F0D4E5;   /* Eyebrow pill bg, feature icon bg, location pill active */
  --primary-pale:   #FAF0F6;   /* Hover bg for feature cells, button hover */

  --gold:           #C9963A;   /* Vendor category tags — luxury accent */

  /* ─── Backgrounds ─── */
  --bg:             #F7F4FB;   /* Page background, default section bg */
  --bg-card:        #FFFFFF;   /* Card and surface backgrounds */
  --bg-soft:        #EEE8F8;   /* Subtle fills, image placeholder backgrounds */
  --bg-dark:        #1C1A2E;   /* AI section, CTA gradient base, footer, nav dark text */
  --white:          #FFFFFF;

  /* ─── Text ─── */
  --text:           #1C1A2E;   /* Primary text — headings, body on light */
  --text-mid:       #5A4D68;   /* Secondary text — subtitles, descriptions */
  --text-muted:     #9486A3;   /* Tertiary text — captions, placeholders, stat labels */

  /* ─── Borders ─── */
  --border:         rgba(174, 52, 120, 0.14);  /* Standard card/component borders */
  --border-soft:    rgba(174, 52, 120, 0.08);  /* Subtle borders on cards */

  /* ─── Dark Surface Tokens (AI section, footer, CTA) ─── */
  --dark-text-100:  #F5EFF9;   /* Primary text on dark */
  --dark-text-65:   rgba(245, 239, 249, 0.65);  /* Subtitle text on dark */
  --dark-text-60:   rgba(245, 239, 249, 0.60);  /* CTA subtitle */
  --dark-text-45:   rgba(255, 255, 255, 0.45);  /* Footer secondary, AI label */
  --dark-text-40:   rgba(255, 255, 255, 0.40);  /* Footer description */
  --dark-text-35:   rgba(255, 255, 255, 0.35);  /* Footer pills, AI placeholder */
  --dark-accent:    #E8A0C4;   /* Pink accent on dark — eyebrow, brand span, social hover */
  --glass-bg-6:     rgba(255, 255, 255, 0.06);  /* AI chip bg */
  --glass-bg-8:     rgba(255, 255, 255, 0.08);  /* AI chat box, bubble, input bg */
  --glass-border-10:rgba(255, 255, 255, 0.10);  /* AI chip/chat borders */
  --glass-border-12:rgba(255, 255, 255, 0.12);  /* AI input row border */

  /* ─── Shadows ─── */
  --shadow-card:      0 8px 48px rgba(174, 52, 120, 0.08);
  --shadow-card-hover:0 12px 40px rgba(174, 52, 120, 0.10);
  --shadow-vendor:    0 8px 32px rgba(174, 52, 120, 0.10);
  --shadow-insta:     0 4px 20px rgba(174, 52, 120, 0.10);
  --shadow-sm:        rgba(174, 52, 120, 0.06);
  --shadow-md:        rgba(174, 52, 120, 0.10);

  /* ─── Gradients ─── */
  --gradient-hero-bg:  linear-gradient(160deg, #FAF7FE 0%, #F2ECF9 40%, #FDEEF6 100%);
  --gradient-cta:      linear-gradient(135deg, #1C1A2E 0%, #2D1A3E 100%);
  --gradient-hero-card:linear-gradient(135deg, #EEE8F8 0%, #F0D4E5 100%);

  /* ─── Border Radius ─── */
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 40px;

  /* ─── Backward Compat Aliases ─── */
  --lavender-light: var(--bg);
  --lavender-mid:   var(--bg-soft);
  --cream:          #FAF8F5;
  --navy-dark:      var(--bg-dark);
  --navy-mid:       #2D1A3E;
  --secondary:      var(--gold);
  --primary-dark:   var(--primary-mid);
  --border-dark:    var(--border);
  --gold-light:     #e8cc60;
  --terracotta:     var(--primary);
  --terra-dark:     var(--primary-mid);
  --blush:          var(--primary-light);
  --tertiary:       #7D9A78;
  --tertiary-dark:  #5a7356;
  --text-dark:      var(--text);
  --text-light:     var(--text-mid);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--lavender-light);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 400; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 400; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { line-height: 1.75; }

em { font-style: italic; }
}

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }

/* Link hierarchy */
a.link-secondary { color: var(--secondary); }
a.link-secondary:hover { color: var(--secondary-dark); }

a.link-muted { color: var(--text-muted); }
a.link-muted:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAV ===== */
/* ===== NAVIGATION — Coastal Party Design ===== */
#main-nav {
  background: var(--lavender-light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

#main-nav.nav-scrolled {
  box-shadow: 0 2px 20px var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

/* Logo — "Curated Party Designs" */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text);
}

.nav-logo-text .logo-party {
  color: var(--primary);
  font-style: italic;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: wrap;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(193, 53, 109, 0.06);
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 500;
}

/* Start Planning CTA button */
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 101;
}

.nav-toggle-icon {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.2s;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, top 0.2s;
}

.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after  { top: 7px; }

.nav-open .nav-toggle-icon { background: transparent; }
.nav-open .nav-toggle-icon::before { top: 0; transform: rotate(45deg); background: var(--text); }
.nav-open .nav-toggle-icon::after  { top: 0; transform: rotate(-45deg); background: var(--text); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 1rem 0;
    gap: 0.3rem;
    background: var(--lavender-light);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 8px 24px var(--shadow-md);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; text-align: center; padding: 0.75rem 1rem; }
  .nav-cta { width: calc(100% - 2rem) !important; text-align: center !important; margin: 0.5rem 1rem; }
  .nav-inner { flex-wrap: wrap; position: relative; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0.9rem 1.25rem; }
}

/* ===== FOOTER ===== */
#main-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 4rem 1.5rem 2rem;
  margin-top: 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-brand h3 em {
  color: var(--primary-light);
  font-style: italic;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  color: var(--primary-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

/* ===== HERO ===== */
.hero {
 background: linear-gradient(135deg, #F6F2FA 0%, #EDE5F5 100%);
 padding: 5rem 1.5rem;
 text-align: center;
 position: relative;
 overflow: hidden;
}
.hero h1 { color: #1C1428; font-size: clamp(2.2rem, 6vw, 4rem); }
.hero h1 em { color: #CC0060; font-style: italic; }
.hero p { color: #4A3060; max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }
.hero-tag { background: rgba(201,162,39,0.15); color: #7A5500; border: 1px solid rgba(201,162,39,0.5); }

.hero::before {
 content: '';
}

.hero-tag {
 display: inline-block;
 background: var(--gold);
 color: var(--white);
 font-size: 0.75rem;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 2px;
 padding: 0.3rem 1rem;
 border-radius: 20px;
 margin-bottom: 1rem;
}

.hero h1 { color: #F4EEF8 !important; 
 font-size: clamp(2.2rem, 6vw, 4rem);
 color: var(--text);
 margin-bottom: 1rem;
}
.hero h1 em { color: var(--terracotta); font-style: italic; }

.hero p {
 font-size: 1.15rem;
 max-width: 600px;
 margin: 0 auto 2rem;
 color: var(--text-light);
}

.hero-counties {
 display: flex;
 justify-content: center;
 gap: 0.8rem;
 flex-wrap: wrap;
 margin-bottom: 2rem;
}
.county-badge {
 background: #fff;
 border: 2px solid #B8AECE;
 color: #4A3060;
 font-size: 0.8rem;
 font-weight: 700;
 padding: 0.3rem 0.9rem;
 border-radius: 20px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 0; /* Modern 2025: sharp edges, no rounded pills */
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #1A1A1A;
  color: #FAF8F5;
}
.btn-primary:hover {
  background: #CC4A35;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #1A1A1A;
  border: 1.5px solid #1A1A1A;
}
.btn-secondary:hover {
  background: #1A1A1A;
  color: #FAF8F5;
}

.btn-gold {
  background: var(--gold);
  color: #FAF8F5;
}
.btn-gold:hover { 
  background: #A8851F; 
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section { padding: 3rem 1.5rem; }
.section-alt { background: var(--ivory); }
.section-sage { background: #EBF2EA; }
@media (min-width: 768px) {
  .section { padding: 4rem 2rem; }
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 0.5rem; }
.section-header p { color: var(--text-light); max-width: 550px; margin: 0 auto; }
.divider {
 width: 60px;
 height: 3px;
 background: linear-gradient(90deg, var(--blush), var(--terracotta));
 margin: 0.8rem auto;
 border-radius: 2px;
}

/* ===== CARDS ===== */
.card-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.8rem;
}

.card {
 background: var(--white);
 border-radius: 16px;
 padding: 2rem;
 box-shadow: 0 4px 20px var(--shadow);
 transition: transform 0.25s, box-shadow 0.25s;
 border-top: 4px solid var(--blush);
}
.card:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 30px var(--shadow);
}

.card-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 3px;
  font-family: 'Cormorant Garamond', serif;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--terracotta); }
.card p { font-size: 0.92rem; color: var(--text-light); }

/* ===== PRODUCT CARDS (Shop) ===== */
.product-card {
 background: var(--white);
 border-radius: 14px;
 overflow: hidden;
 box-shadow: 0 4px 18px var(--shadow);
 transition: transform 0.25s;
}
.product-card:hover { transform: translateY(-4px); }

.product-img {
 background: linear-gradient(135deg, var(--blush) 0%, var(--cream) 100%);
 height: 160px;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 3.5rem;
}

.product-body { padding: 1.2rem; }
.product-body h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.product-body p { font-size: 0.83rem; color: var(--text-light); margin-bottom: 0.8rem; }
.product-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.product-links a {
 font-size: 0.75rem;
 font-weight: 700;
 padding: 0.25rem 0.7rem;
 border-radius: 12px;
 background: var(--cream);
 color: var(--terracotta);
 border: 1px solid var(--blush);
 transition: all 0.2s;
}
.product-links a:hover { background: var(--terracotta); color: var(--white); }

/* ===== VENDOR CARDS ===== */
.vendor-card {
 background: var(--white);
 border-radius: 12px;
 padding: 1.4rem;
 box-shadow: 0 3px 15px var(--shadow);
 border-left: 5px solid var(--sage);
}
.vendor-card h4 { margin-bottom: 0.2rem; font-size: 1rem; }
.vendor-card .vendor-meta { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.4rem; }
.vendor-badge {
 display: inline-block;
 font-size: 0.7rem;
 padding: 0.15rem 0.6rem;
 border-radius: 10px;
 font-weight: 700;
 margin-right: 0.3rem;
}
.badge-martin { background: #F9DFE3; color: #b04e60; }
.badge-palm { background: #DFF0EB; color: #2e7a61; }
.badge-lucie { background: #FFF0DC; color: #a06020; }

/* ===== FILTER BAR ===== */
.filter-bar {
 display: flex;
 gap: 0.6rem;
 flex-wrap: wrap;
 margin-bottom: 2rem;
 align-items: center;
}
.filter-btn {
 padding: 0.4rem 1.1rem;
 border-radius: 20px;
 border: 2px solid var(--blush);
 background: var(--white);
 font-size: 0.82rem;
 font-weight: 700;
 cursor: pointer;
 color: var(--text);
 transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
 background: var(--terracotta);
 border-color: var(--terracotta);
 color: var(--white);
}

/* ===== BUDGET PLANNER ===== */
.budget-tool {
 background: var(--white);
 border-radius: 20px;
 padding: 2.5rem;
 box-shadow: 0 6px 30px var(--shadow);
 max-width: 800px;
 margin: 0 auto;
}

.budget-tool label { font-weight: 700; display: block; margin-bottom: 0.4rem; }
.budget-tool select, .budget-tool input[type=range] {
 width: 100%;
 margin-bottom: 1.5rem;
}
.budget-tool select {
 padding: 0.6rem 1rem;
 border: 2px solid var(--blush);
 border-radius: 10px;
 font-size: 1rem;
 background: var(--cream);
 color: var(--text);
 font-family: 'Outfit', sans-serif;
}

.guest-display { text-align: center; font-size: 1.1rem; margin-bottom: 1.5rem; }
.guest-display span { font-size: 1.8rem; font-weight: 700; color: var(--terracotta); }

.budget-result { margin-top: 2rem; border-top: 2px solid var(--blush); padding-top: 1.5rem; }
.budget-total { font-size: 2rem; font-family: 'Cormorant Garamond', serif; color: var(--terracotta); text-align: center; margin-bottom: 1.5rem; }

.budget-bar-item { margin-bottom: 1rem; }
.budget-bar-label { display: flex; justify-content: space-between; font-size: 0.88rem; margin-bottom: 0.3rem; font-weight: 700; }
.bar-track { background: #EEE; border-radius: 10px; height: 14px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 10px; transition: width 0.6s ease; }

/* ===== AI CHAT WIDGET ===== */
#ai-widget {
 position: fixed;
 bottom: 1.5rem;
 right: 1.5rem;
 z-index: 999;
}

#ai-toggle {
 background: #2E2438;
 color: var(--white);
 border: 2px solid var(--gold);
 border-radius: 50%;
 width: 56px;
 height: 56px;
 cursor: pointer;
 box-shadow: 0 4px 20px rgba(46,36,56,0.4);
 transition: transform 0.2s, background 0.2s;
 display: flex;
 align-items: center;
 justify-content: center;
}
#ai-toggle:hover { transform: scale(1.08); background: #CC0060; }

#ai-panel {
 display: none;
 flex-direction: column;
 width: 320px;
 height: 420px;
 background: var(--white);
 border-radius: 18px;
 box-shadow: 0 8px 40px rgba(61,44,44,0.2);
 margin-bottom: 0.8rem;
 overflow: hidden;
 border: 2px solid var(--blush);
}
#ai-panel.open { display: flex; }

.ai-header {
 background: linear-gradient(135deg, var(--terracotta), var(--blush-dark));
 color: var(--white);
 padding: 1rem 1.2rem;
 font-family: 'Cormorant Garamond', serif;
 font-size: 1rem;
 display: flex;
 align-items: center;
 gap: 0.5rem;
}

#ai-messages {
 flex: 1;
 overflow-y: auto;
 padding: 1rem;
 display: flex;
 flex-direction: column;
 gap: 0.7rem;
}

.ai-msg {
 max-width: 85%;
 padding: 0.6rem 0.9rem;
 border-radius: 14px;
 font-size: 0.85rem;
 line-height: 1.5;
}
.ai-msg.bot {
 background: var(--cream);
 border-bottom-left-radius: 4px;
 align-self: flex-start;
}
.ai-msg.user {
 background: var(--terracotta);
 color: var(--white);
 border-bottom-right-radius: 4px;
 align-self: flex-end;
}

.ai-input-row {
 display: flex;
 border-top: 1px solid var(--blush);
 padding: 0.6rem;
 gap: 0.4rem;
}
.ai-input-row input {
 flex: 1;
 border: 1px solid var(--blush);
 border-radius: 20px;
 padding: 0.5rem 0.9rem;
 font-size: 0.85rem;
 outline: none;
 font-family: 'Outfit', sans-serif;
}
.ai-input-row button {
 background: var(--terracotta);
 color: var(--white);
 border: none;
 border-radius: 50%;
 width: 36px;
 height: 36px;
 cursor: pointer;
 font-size: 1rem;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea {
 width: 100%;
 padding: 0.75rem 1rem;
 border: 2px solid var(--blush);
 border-radius: 10px;
 font-family: 'Outfit', sans-serif;
 font-size: 0.95rem;
 background: var(--white);
 color: var(--text);
 transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
 outline: none;
 border-color: var(--terracotta);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ===== TABLE LAYOUT VISUAL ===== */
.table-diagram {
 display: grid;
 gap: 0.5rem;
 width: 100%;
 max-width: 500px;
 margin: 0 auto;
}
.table-row-vis { display: flex; justify-content: center; gap: 0.4rem; }
.seat {
 width: 36px; height: 36px;
 border-radius: 50%;
 background: var(--blush);
 border: 3px solid var(--terracotta);
 display: flex; align-items: center; justify-content: center;
 font-size: 0.7rem;
 font-weight: 700;
 color: var(--text);
}
.table-center {
 background: var(--gold-light);
 border-color: var(--gold);
 border-radius: 12px;
 width: 120px; height: 36px;
 font-size: 0.75rem;
 display: flex; align-items: center; justify-content: center;
 font-family: 'Cormorant Garamond', serif;
 margin: 0 auto;
}

/* ===== AI RICH RESPONSES ===== */
.ai-response { font-size: 0.83rem; line-height: 1.5; }
.ai-resp-title { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--terracotta); margin-bottom: 0.6rem; font-weight: 700; }
.ai-resp-section { margin-bottom: 0.8rem; }
.ai-resp-heading { font-weight: 700; font-size: 0.8rem; color: var(--text); margin-bottom: 0.2rem; }
.ai-resp-body { color: var(--text-light); }
.ai-resp-body a { color: var(--terracotta); font-weight: 700; text-decoration: none; }
.ai-resp-body a:hover { text-decoration: underline; }
.ai-msg.bot.rich { background: var(--cream); max-width: 95%; }

/* ===== AI HERO SECTION ===== */
.ai-hero-section {
 background: linear-gradient(135deg, #F6F2FA 0%, #EDE5F5 100%);
 padding: 4rem 1.5rem;
 text-align: center;
}
.ai-hero-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: 0.5rem; color: #1C1428; }
.ai-hero-section p { color: #4A3060; max-width: 550px; margin: 0 auto 2rem; }

.ai-inline-box {
 max-width: 680px;
 margin: 0 auto;
 background: var(--white);
 border-radius: 20px;
 box-shadow: 0 8px 40px rgba(61,44,44,0.15);
 overflow: hidden;
 border: 2px solid var(--blush);
}

.ai-inline-header {
 background: linear-gradient(135deg, #2E2438, #CC0060);
 color: var(--white);
 padding: 1rem 1.4rem;
 font-family: 'Cormorant Garamond', serif;
 font-size: 1.05rem;
 display: flex;
 align-items: center;
 gap: 0.6rem;
}

#ai-inline-messages {
 height: 280px;
 overflow-y: auto;
 padding: 1.2rem;
 display: flex;
 flex-direction: column;
 gap: 0.8rem;
 background: #fdfaf7;
}

.ai-inline-input-row {
 display: flex;
 border-top: 1px solid var(--blush);
 padding: 0.8rem;
 gap: 0.5rem;
 background: var(--white);
}

.ai-inline-input-row input {
 flex: 1;
 border: 2px solid var(--blush);
 border-radius: 25px;
 padding: 0.6rem 1.1rem;
 font-size: 0.9rem;
 outline: none;
 font-family: 'Outfit', sans-serif;
 transition: border-color 0.2s;
}
.ai-inline-input-row input:focus { border-color: var(--terracotta); }

.ai-inline-input-row button {
 background: var(--terracotta);
 color: var(--white);
 border: none;
 border-radius: 50%;
 width: 42px;
 height: 42px;
 cursor: pointer;
 font-size: 1.1rem;
 transition: background 0.2s, transform 0.2s;
}
.ai-inline-input-row button:hover { background: var(--terra-dark); transform: scale(1.05); }

.ai-quick-prompts {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 justify-content: center;
 margin-top: 1.2rem;
}
.quick-prompt-btn {
 background: var(--white);
 border: 2px solid var(--blush);
 border-radius: 20px;
 padding: 0.4rem 1rem;
 font-size: 0.8rem;
 font-weight: 700;
 cursor: pointer;
 color: var(--text);
 font-family: 'Outfit', sans-serif;
 transition: all 0.2s;
}
.quick-prompt-btn:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }

/* ===== INSTAGRAM CARDS ===== */
.ig-card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  border-top: 3px solid var(--gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ig-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--shadow);
}
.ig-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E2438, #CC0060);
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 1px;
}
.ig-body { flex: 1; }
.ig-handle { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.4rem; }
.ig-handle a { color: #1C1428; text-decoration: none; }
.ig-handle a:hover { color: #CC0060; }
.ig-desc { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.9rem; line-height: 1.5; }
.ig-follow-btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1.5px solid #2E2438;
  color: #2E2438;
  text-decoration: none;
  transition: all 0.2s;
}
.ig-follow-btn:hover {
  background: #2E2438;
  color: #fff;
}

/* ===== MISC ===== */
.tag-list { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 0.6rem; }
.tag {
 font-size: 0.75rem;
 padding: 0.2rem 0.7rem;
 background: var(--cream);
 border: 1px solid var(--sage);
 border-radius: 12px;
 color: var(--olive);
 font-weight: 700;
}

.checklist { list-style: none; }
.checklist li { padding: 0.5rem 0; border-bottom: 1px solid #f0e8e0; display: flex; align-items: center; gap: 0.6rem; }
.checklist li::before { content: '–'; font-size: 1.1rem; color: var(--terracotta); }

.tip-box {
 background: linear-gradient(135deg, #FFF0EB, #FDF6EC);
 border-left: 4px solid var(--terracotta);
 border-radius: 0 12px 12px 0;
 padding: 1rem 1.4rem;
 margin: 1.2rem 0;
 font-size: 0.92rem;
}
.tip-box strong { color: var(--terracotta); }

.page-hero {
 background: linear-gradient(135deg, #F6F2FA 0%, #EDE5F5 100%);
 padding: 3.5rem 1.5rem;
 text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 5vw, 3rem); color: #1C1428; }
.page-hero p { color: #4A3060; max-width: 550px; margin: 0.8rem auto 0; }

@media (max-width: 600px) {
 .card-grid { grid-template-columns: 1fr; }
 .budget-tool { padding: 1.5rem; }
}
