/* Velvet Hour Salon — shared styles
   Pivot Bureau Web Design portfolio piece
   Calm, refined UK beauty salon: hair · nails · beauty · lashes & brows · wedding */

:root {
  --cream:      #fdf8f3;
  --cream-soft: #f3ebe2;
  --rose:       #c98a76;
  --rose-deep:  #b06e5a;
  --sage:       #9bab8d;
  --sage-soft:  #c5d0bb;
  --gold:       #b8946a;
  --ink:        #2d2826;
  --ink-soft:   #4a423d;
  --muted:      #8d847a;
  --line:       rgba(45,40,38,0.10);
  --line-soft:  rgba(45,40,38,0.06);
  --shadow-soft: 0 12px 32px rgba(45,40,38,0.08);
  --shadow-warm: 0 16px 44px rgba(201,138,118,0.18);
  --radius:    14px;
  --radius-lg: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

.serif { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,248,243,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--cream);
  box-shadow: var(--shadow-warm);
}
.brand em { font-style: italic; color: var(--rose-deep); }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
  transition: color 0.15s;
  position: relative;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-links a.active { color: var(--rose-deep); font-weight: 600; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--cream) !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s, background 0.15s;
}
.nav-cta:hover { background: var(--rose-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201,138,118,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 80%, rgba(155,171,141,0.15) 0%, transparent 50%),
    var(--cream);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--rose);
}
.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(44px, 6.5vw, 78px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}
.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: var(--shadow-warm); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--cream-soft); border-color: var(--rose); }
.btn-rose {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--cream);
}
.btn-rose:hover { transform: translateY(-2px); box-shadow: var(--shadow-warm); }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(201,138,118,0.25) 0%, transparent 65%),
    linear-gradient(135deg, var(--cream-soft) 0%, #ead9c9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.hero-emoji {
  font-size: clamp(140px, 22vw, 280px);
  filter: drop-shadow(0 12px 30px rgba(201,138,118,0.3));
}
.hero-visual::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  right: 24px; bottom: 24px;
  border: 1px solid rgba(184,148,106,0.4);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.hero-visual-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--cream);
  color: var(--rose-deep);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.hero-trust {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-trust-item-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--rose-deep);
}
.hero-trust-item-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--rose-deep); }
.section-sub {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 17px;
}

/* ===== SERVICES GRID (homepage) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--line-soft);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.service-card:hover {
  transform: translateY(-4px);
  background: var(--cream);
  box-shadow: var(--shadow-warm);
}
.service-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-soft);
}
.service-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.6;
}
.service-card-price {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-card-price strong { color: var(--rose-deep); }

/* ===== ABOUT ===== */
.about {
  background: var(--cream-soft);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  aspect-ratio: 4/5;
  background:
    radial-gradient(circle at center, rgba(155,171,141,0.25) 0%, transparent 65%),
    linear-gradient(135deg, #d4ddc9 0%, var(--sage-soft) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.salon-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-visual::before {
  content: '';
  position: absolute;
  top: 24px; left: 24px;
  right: 24px; bottom: 24px;
  border: 1px solid rgba(155,171,141,0.45);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.about-emoji { font-size: clamp(120px, 18vw, 240px); }
.about p { font-size: 17px; color: var(--ink-soft); margin-bottom: 18px; }
.about p:last-of-type { margin-bottom: 28px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--cream-soft);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 14px;
  right: 24px;
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 80px;
  color: rgba(201,138,118,0.18);
  line-height: 1;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--cream);
  font-size: 14px;
}
.testimonial-name { font-weight: 600; font-size: 14px; }
.testimonial-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ===== OFFER STRIP ===== */
.offer {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer::before, .offer::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.15;
  filter: blur(40px);
}
.offer::before { top: -80px; left: -60px; }
.offer::after { bottom: -80px; right: -60px; background: var(--sage); }
.offer * { position: relative; z-index: 1; }
.offer .section-title { color: var(--cream); }
.offer .section-title em { color: var(--gold); }
.offer .section-sub { color: rgba(253,248,243,0.8); margin-bottom: 36px; }

/* ===== SERVICES PAGE ===== */
.services-page-header {
  text-align: center;
  padding: 80px 0 32px;
  background:
    radial-gradient(circle at center top, rgba(201,138,118,0.12) 0%, transparent 60%),
    var(--cream);
}
.services-category-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px 0;
  position: sticky;
  top: 81px;
  background: rgba(253,248,243,0.95);
  backdrop-filter: blur(12px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.services-category-nav a {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.15s;
  letter-spacing: 0.02em;
}
.services-category-nav a:hover {
  background: var(--cream-soft);
  color: var(--rose-deep);
  border-color: var(--line);
}
.services-category {
  padding: 64px 0;
}
.services-category-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.services-category-emoji {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.services-category-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 36px;
  font-weight: 400;
}
.services-category-title em { font-style: italic; color: var(--rose-deep); }
.services-category-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.service-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px dashed var(--line);
}
.service-item:last-child { border-bottom: none; }
.service-item-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  font-weight: 400;
  white-space: nowrap;
}
.service-item-dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  height: 14px;
  min-width: 20px;
}
.service-item-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 19px;
  color: var(--rose-deep);
  white-space: nowrap;
}
.service-item-desc {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 2px;
}
.service-item-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--sage-soft);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 8px;
}
.service-item-tag.popular { background: var(--rose); color: var(--cream); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  padding: 56px 0;
}
.contact-card {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line-soft);
}
.contact-card h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 28px;
}
.contact-card h3 em { font-style: italic; color: var(--rose-deep); }
.contact-row {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-row:last-child { border-bottom: none; }
.contact-row-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.contact-row-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-row-value { font-size: 15px; font-weight: 500; line-height: 1.5; }
.contact-row-value a:hover { color: var(--rose-deep); }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.hours-row:last-child { border-bottom: none; }
.hours-row.today { color: var(--rose-deep); font-weight: 700; }
.hours-row.closed { color: var(--muted); }

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.15s, background 0.15s;
}
.form-control:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--cream);
}
textarea.form-control { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand-mark { background: var(--cream); color: var(--ink); }
footer .brand { color: var(--cream); }
.footer-brand-tagline {
  font-size: 14px;
  color: rgba(253,248,243,0.7);
  margin-top: 18px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--gold);
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(253,248,243,0.7);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(253,248,243,0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(253,248,243,0.55);
  font-size: 13px;
}
.footer-built-by { display: inline-flex; align-items: center; gap: 6px; }
.footer-built-by a { color: var(--gold); font-weight: 600; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual, .about-visual { max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    gap: 14px;
  }
  section { padding: 72px 0; }
  .hero { padding: 60px 0; }
  .hero-trust { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .service-item { flex-wrap: wrap; }
  .service-item-name { white-space: normal; }
}

/* ===== CHATBOT WIDGET ===== */
.chat-launcher {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--cream);
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  z-index: 200;
  border: none;
  transition: transform 0.2s;
}
.chat-launcher:hover { transform: scale(1.08); }
.chat-launcher::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: rgba(201,138,118,0.35);
  animation: pulse-rose 2.6s ease-out infinite;
  z-index: -1;
}
@keyframes pulse-rose {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 130px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-warm);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 200;
}
.chat-panel.open { display: flex; }
.chat-header {
  padding: 20px;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-header-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(253,248,243,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.chat-header-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px;
  font-weight: 400;
}
.chat-header-status { font-size: 11px; opacity: 0.9; display: flex; align-items: center; gap: 5px; letter-spacing: 0.02em; }
.chat-header-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-soft);
}
.chat-close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 22px;
  cursor: pointer;
  opacity: 0.9;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--cream);
}
.chat-msg {
  max-width: 80%;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.chat-msg.bot {
  background: var(--cream-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.chat-msg.user {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 18px 8px; background: var(--cream); }
.chat-suggestion {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.chat-suggestion:hover { background: var(--rose-deep); color: var(--cream); border-color: var(--rose-deep); }
.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.chat-input {
  flex: 1;
  padding: 12px 16px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
}
.chat-input:focus { outline: none; border-color: var(--rose); }
.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  border: none;
  color: var(--cream);
  font-size: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.chat-send:hover { background: var(--rose-deep); }
.chat-typing {
  display: inline-flex;
  gap: 4px;
  padding: 10px 16px;
  background: var(--cream-soft);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  animation: typing-dot 1.4s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing-dot {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
