/* Lumiere Bride – base styles */

:root {
  --color-bg: #FFE7E3; /* Blush Base */
  --color-bg-muted: #FFF3F1; /* Soft Petal */
  --color-text: #2B1B19; /* Cocoa Ink */
  --color-text-muted: #8A5F57; /* Rosewood Taupe */
  --color-accent: #D27A70; /* Dusty Rose */
  --color-accent-soft: #FFD9D2; /* Whisper Pink */
  --color-accent-deep: #9B3C32; /* Garnet Rouge */
  --color-accent-border: rgba(210, 122, 112, 0.35);
  --color-accent-shadow: rgba(210, 122, 112, 0.2);
  --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent);
}

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

.section {
  padding: 4.5rem 0;
}

.section-muted {
  background: var(--color-bg-muted);
}

.section-accent {
  background: linear-gradient(135deg, #FFFDF8, #F9F5F1);
  border-top: 1px solid rgba(198, 162, 107, 0.18);
  border-bottom: 1px solid rgba(198, 162, 107, 0.18);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.page-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.page-lede {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.page-placeholder {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: var(--color-text-muted);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 245, 241, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(198, 162, 107, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.5rem;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-wordmark {
  font-family: var(--font-serif);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-text);
  text-decoration: none;
}

.brand-wordmark:hover {
  color: var(--color-accent);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.whatsapp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2bb741, #25d366);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.whatsapp-chip:hover {
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transform: translateX(-50%);
  transition: width 180ms ease;
}

.main-nav a:hover::after {
  width: 80%;
}

.main-nav .nav-item {
  position: relative;
}

.main-nav .nav-item > a {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0;
}

.nav-children {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  min-width: 12rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(198, 162, 107, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 0.75rem;
  gap: 0.35rem;
  z-index: 25;
}

.nav-item-has-children:hover .nav-children {
  display: flex;
}

.nav-children a {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--color-text);
  padding: 0.2rem 0.1rem;
}

.nav-children a:hover {
  color: var(--color-accent);
}


.nav-cta {
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 162, 107, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--color-text);
}

/* Services & detail layouts */
.service-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.service-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-card li {
  position: relative;
  padding-left: 1.1rem;
}

.service-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.service-card .service-links {
  margin-top: auto;
}

.service-card .service-links a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.flow-steps {
  max-width: 900px;
}

.flow-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.2rem;
  counter-reset: step;
}

.flow-list li {
  counter-increment: step;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(198, 162, 107, 0.2);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.05);
}

.flow-list li::before {
  content: counter(step);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-right: 0.6rem;
  color: var(--color-accent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.trust-card {
  padding: 1.2rem;
  border-radius: 16px;
  border: 1px dashed rgba(198, 162, 107, 0.5);
  text-align: center;
}

.trust-card strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-serif);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.detail-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.detail-card h2 {
  margin-top: 0;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.timeline-time {
  font-weight: 600;
  min-width: 80px;
  color: var(--color-accent-deep);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.package-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.25rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.package-card h3 {
  margin-top: 0;
}

.package-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.1rem 1.3rem;
}

.cta-panel {
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(198, 162, 107, 0.35);
  padding: 2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.page-lede + .cta-actions {
  margin-top: 0.5rem;
}

@media (max-width: 640px) {
  .timeline-item {
    flex-direction: column;
  }
}

/* Blog styles */
.blog-post {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
}

.blog-meta {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-top: 0.3rem;
}

.blog-figure {
  margin: 2rem 0;
  text-align: center;
}

.blog-figure img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08);
}

.blog-figure figcaption {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.blog-body h2 {
  margin-top: 2rem;
  font-family: var(--font-serif);
}

.blog-body h3 {
  margin-top: 1.4rem;
}

.blog-body p + ul,
.blog-body p + ol {
  margin-top: 0.6rem;
}

.blog-body ul, .blog-body ol {
  margin-left: 1.2rem;
  color: var(--color-text);
}

.blog-cta {
  margin: 2rem 0;
  padding: 1.2rem 1.5rem;
  border-left: 4px solid var(--color-accent);
  background: #fff8f4;
  border-radius: 12px;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.blog-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-card a {
  text-decoration: none;
  color: inherit;
}

.blog-card a:hover {
  color: var(--color-accent);
}

.blog-card-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.blog-card-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--color-accent-deep);
}


/* Hero */

.hero {
  padding: 6rem 0 5rem;
  position: relative;
  color: #ffffff;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url('/images/lumiere-1774083838148-10.jpg');
  background-size: cover;
  background-position: center top; /* keep the bridal portrait centered across breakpoints */
  min-height: 80vh; /* extend hero height so more of the gown and legs are visible */
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  min-height: 80vh; /* extend inner container height so more of the hero image is visible */
}

.hero-copy h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  margin: 0 0 1rem;
}

.hero-text {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.8rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--color-text);
  margin-bottom: 0.9rem;
}

.hero .eyebrow, .hero-copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-image-placeholder {
  display: flex;
  justify-content: center;
}

.hero-carousel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(198, 162, 107, 0.35);
  box-shadow: 0 18px 40px rgba(67, 80, 106, 0.12);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 600ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 252, 246, 0.8);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hero-nav:hover {
  background: rgba(255, 252, 246, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transform: translateY(-50%) translateY(-1px);
}

.hero-nav-prev {
  left: 10px;
}

.hero-nav-next {
  right: 10px;
}

/* Buttons */

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.4rem;
  border-radius: 999px;
  border: 1px solid #C6A26B;
  background: linear-gradient(135deg, #C6A26B, #E3C89A);
  color: #2E2A2B;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: all 200ms ease;
}

.button-primary:hover {
  background: transparent;
  color: #C6A26B;
  box-shadow: 0 8px 20px rgba(198, 162, 107, 0.28);
  transform: translateY(-1px);
}

/* Grid utilities */

.grid {
  display: grid;
  gap: 1.8rem;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  border: 1px solid rgba(210, 122, 112, 0.25);
  box-shadow: 0 16px 36px rgba(43, 27, 25, 0.08);
}

.partner-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.partner-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.partner-entry {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.partner-logo {
  width: 90px;
  max-height: 56px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.partner-card a {
  color: var(--color-accent-deep);
  font-weight: 500;
  flex: 1;
}

.partner-card a:hover {
  color: var(--color-accent);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 520px;
    margin: 0 auto;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phones & small devices */
@media (max-width: 640px) {
  .main-nav {
    display: none;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .whatsapp-chip {
    font-size: 0.75rem;
    padding: 0.4rem 0.9rem;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem; /* shift content down under sticky header */
    background-position: center top; /* keep the bridal couple centered on narrow screens */
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hero-text {
    max-width: 100%;
  }

  .button-primary {
    width: 100%;
    justify-content: center;
  }

  .hero-carousel {
    max-width: 100%;
  }
}

/* Cards */

.card {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 1.6rem 1.4rem;
  border-top: 2px solid rgba(198, 162, 107, 0.6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Steps */

.steps .step {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  border: 1px solid rgba(198, 162, 107, 0.3);
}

.step-number {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

.steps h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.steps p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

/* Portfolio */

.portfolio-grid {
  align-items: stretch;
}

.portfolio-item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(198, 162, 107, 0.3);
  background: radial-gradient(circle at top, #FFFFFF, #E3D5C7);
  box-shadow: 0 14px 30px rgba(67, 80, 106, 0.10);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-item-muted {
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-text {
  padding: 1.8rem 1.4rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Testimonials */

.testimonials {
  align-items: stretch;
}

.testimonial {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.8rem 1.6rem;
  border: 1px solid rgba(198, 162, 107, 0.25);
  font-size: 0.96rem;
  color: var(--color-text-muted);
}

.testimonial footer {
  margin-top: 1rem;
  color: var(--color-text);
  font-size: 0.9rem;
}

/* Enquiry form */

.enquiry-form {
  max-width: 720px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 1.8rem 1.6rem 2rem;
  box-shadow: 0 18px 40px rgba(67, 80, 106, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem 1.4rem;
}

@media (max-width: 840px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.enquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.enquiry-form input,
.enquiry-form textarea {
  border-radius: 999px;
  border: 1px solid rgba(140, 122, 106, 0.4);
  padding: 0.7rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #FFFEFB;
}

.enquiry-form textarea {
  border-radius: 12px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px rgba(198, 162, 107, 0.4);
}

.full-width {
  margin-top: 1.4rem;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Footer */

.site-footer {
  border-top: 1px solid rgba(198, 162, 107, 0.2);
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-brand {
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Chatbot widget */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chatbot-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.chatbot-toggle {
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #C6A26B, #E3C89A);
  color: #2E2A2B;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.chatbot-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.chatbot-panel {
  width: min(340px, calc(100vw - 2rem));
  max-height: 480px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(21, 14, 10, 0.25);
  border: 1px solid rgba(198, 162, 107, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-header {
  padding: 1rem 1.2rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.chatbot-header-buttons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chatbot-title {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.chatbot-subtitle {
  margin: 0.1rem 0 0;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.chatbot-hide {
  border: none;
  background: transparent;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  cursor: pointer;
}

.chatbot-hide:hover {
  color: var(--color-text);
}

.chatbot-close {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--color-text-muted);
}

.chatbot-messages {
  flex: 1;
  padding: 0 1.2rem 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chatbot-message {
  max-width: 90%;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.chatbot-message.assistant {
  background: #FFFDF8;
  align-self: flex-start;
  border: 1px solid rgba(198, 162, 107, 0.3);
}

.chatbot-message.user {
  background: #2E2A2B;
  color: #fff;
  align-self: flex-end;
}

.chatbot-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem 1.2rem;
  border-top: 1px solid rgba(198, 162, 107, 0.2);
}

.chatbot-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(140, 122, 106, 0.4);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-sans);
}

.chatbot-form button {
  border: none;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.chatbot-restore {
  display: none;
  border: none;
  border-radius: 999px;
  background: #2E2A2B;
  color: #fff;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.chatbot-widget.is-dismissed .chatbot-toggle,
.chatbot-widget.is-dismissed .chatbot-panel {
  display: none;
}

.chatbot-widget.is-dismissed .chatbot-restore {
  display: inline-flex;
}

@media (max-width: 640px) {
  .chatbot-widget {
    right: 1rem;
    bottom: 1rem;
  }
}
