:root {
  --color-bg: #fdf8f6;
  --color-dark: #3a2c2e;
  --color-primary: #c98ba0;
  --color-primary-dark: #b06f86;
  --color-light: #f7e4ea;
  --color-cream: #f3e6da;
  --color-text: #5a4d4f;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

h1, h2, h3 { font-family: var(--font-heading); color: var(--color-dark); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--outline { border-color: #fff; color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,0.18); }
.btn--ghost { border-color: var(--color-primary); color: var(--color-primary-dark); padding: 10px 24px; font-size: 0.9rem; }
.btn--ghost:hover { background: var(--color-primary); color: #fff; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 246, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: box-shadow 0.2s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo span { color: var(--color-primary-dark); }
.logo small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-text);
  font-weight: 400;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
}
.nav a:hover::after { width: 100%; }

.header__phone { display: inline-block; white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--color-dark);
  transition: 0.25s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(58,44,46,0.72), rgba(201,139,160,0.55));
}
.hero__content { position: relative; z-index: 1; max-width: 640px; padding-top: 80px; }
.hero__kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  margin-bottom: 18px;
  color: var(--color-light);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.2;
}
.hero__text { font-size: 1.05rem; margin-bottom: 32px; max-width: 520px; color: #fbeef2; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.hero__chip {
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(2px);
  animation: heroFloat 9s ease-in-out infinite;
}
.hero__shape--1 { width: 90px; height: 90px; top: 18%; right: 12%; animation-delay: 0s; }
.hero__shape--2 { width: 50px; height: 50px; top: 65%; right: 28%; background: rgba(247, 228, 234, 0.35); animation-delay: 1.5s; }
.hero__shape--3 { width: 130px; height: 130px; bottom: 8%; left: 6%; background: rgba(201, 139, 160, 0.25); animation-delay: 3s; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-22px) scale(1.06); }
}

.hero__polaroid {
  position: absolute;
  z-index: 1;
  right: 7%;
  bottom: 14%;
  width: 200px;
  background: #fff;
  padding: 10px 10px 16px;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(58, 44, 46, 0.25);
  transform: rotate(6deg);
  transition: transform 0.3s ease;
}
.hero__polaroid:hover { transform: rotate(0deg) scale(1.03); }
.hero__polaroid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.hero__polaroid-label {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-dark);
}

.hero__divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero__polaroid { display: none; }
}

/* Section common */
.section__kicker {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  margin-bottom: 12px;
  text-align: center;
}
.section__title {
  text-align: center;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 48px;
}
.section__title--left { text-align: left; }
.histoire .section__kicker, .contact__info .section__kicker { text-align: left; }

/* Histoire */
.histoire { padding: 100px 0; }
.histoire__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.histoire__image img {
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(58,44,46,0.12);
}
.histoire__text p { margin-bottom: 16px; font-size: 1.02rem; }

/* Valeurs */
.valeurs { padding: 100px 0; background: var(--color-light); }
.valeurs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.valeur-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(58,44,46,0.05);
}
.valeur-card__icon { font-size: 2.4rem; margin-bottom: 16px; }
.valeur-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.valeur-card p { font-size: 0.93rem; }

/* Services */
.services { padding: 100px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--color-cream);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card__image { aspect-ratio: 16/10; overflow: hidden; }
.service-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__body { padding: 32px; }
.service-card__body h3 { font-size: 1.6rem; margin-bottom: 12px; }
.service-card__body p { font-size: 0.95rem; }

/* Tarifs */
.tarifs { padding: 100px 0; background: var(--color-light); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-cat--wide { grid-column: 1 / -1; max-width: 560px; margin: 0 auto; width: 100%; }
.price-cat {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(58,44,46,0.05);
}
.price-cat h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--color-light);
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(0,0,0,0.08);
}
.price-row:last-child { border-bottom: none; }
.price-row span:last-child { font-weight: 600; color: var(--color-primary-dark); white-space: nowrap; padding-left: 12px; text-align: right; }

.tarifs__note {
  max-width: 720px;
  margin: 32px auto 0;
  font-size: 0.88rem;
  color: #8a7a7c;
  text-align: center;
}
.prestations__note {
  text-align: center;
  font-size: 0.85rem;
  color: #a3938f;
  margin-top: 32px;
}

/* Galerie */
.galerie { padding: 100px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(58,44,46,0.15);
}

/* Contact */
.contact { padding: 100px 0; background: var(--color-light); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact__list { list-style: none; }
.contact__list li {
  margin-bottom: 22px;
  font-size: 0.98rem;
}
.contact__list strong { color: var(--color-dark); font-family: var(--font-heading); font-size: 1.1rem; }
.contact__list a { color: var(--color-primary-dark); font-weight: 500; }
.contact__social { display: flex; gap: 14px; margin-top: 24px; }
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  color: var(--color-primary-dark);
  transition: all 0.2s;
}
.contact__social-link svg { width: 20px; height: 20px; }
.contact__social-link:hover { background: var(--color-primary); color: #fff; }
.contact__map {
  min-height: 320px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(58,44,46,0.08);
}
.contact__map iframe { min-height: 320px; }

/* Footer */
.footer { background: var(--color-dark); color: var(--color-cream); padding: 28px 0; }
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.footer__credit { opacity: 0.6; }

/* Responsive */
@media (max-width: 980px) {
  .nav { gap: 18px; }
}

@media (max-width: 860px) {
  .histoire__inner, .contact__inner { grid-template-columns: 1fr; }
  .valeurs__grid, .services__grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .histoire__image { order: -1; }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: var(--color-bg);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
    transform: translateY(-150%);
    opacity: 0;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .header__phone { display: none; }
  .burger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 200px; }
}

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

/* ===== Rendez-vous / Booking widget ===== */
.booking-card {
  max-width: 700px;
  margin: 2.5rem auto 0;
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(58, 44, 46, 0.08);
}

.booking-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.booking-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-light);
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
  transition: background 0.3s, color 0.3s;
}

.booking-step-dot.active {
  background: var(--color-primary);
  color: #fff;
}

.booking-step-line {
  flex: 1;
  height: 2px;
  background: var(--color-light);
  max-width: 60px;
}

.booking-panel { display: none; }
.booking-panel.active { display: block; animation: fadeIn 0.3s ease; }

.booking-panel h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking-service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--color-light);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  gap: 1rem;
}

.booking-service-card:hover {
  border-color: var(--color-primary);
  background: var(--color-light);
}

.booking-service-card.active {
  border-color: var(--color-primary);
  background: var(--color-light);
}

.booking-service-name {
  font-weight: 600;
  color: var(--color-dark);
}

.booking-service-meta {
  font-size: 0.85rem;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.booking-date {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-light);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  color: var(--color-text);
  background: #fff;
}

.booking-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 0.6rem;
}

.booking-slot {
  padding: 0.6rem;
  border: 1px solid var(--color-light);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text);
  transition: all 0.2s;
}

.booking-slot:hover {
  border-color: var(--color-primary);
}

.booking-slot.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.booking-hint {
  color: var(--color-text);
  opacity: 0.7;
  font-size: 0.95rem;
}

.booking-calendar {
  background: var(--color-light);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.booking-calendar__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: capitalize;
}

.booking-calendar__nav {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary-dark);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.booking-calendar__nav:hover {
  background: var(--color-primary);
  color: #fff;
}

.booking-calendar__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.booking-calendar__weekdays,
.booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.3rem;
}

.booking-calendar__weekdays span {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  padding-bottom: 0.4rem;
}

.booking-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--color-text);
  cursor: pointer;
  transition: all 0.2s;
}

.booking-calendar__day:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

.booking-calendar__day.active {
  background: var(--color-primary);
  color: #fff;
}

.booking-calendar__day.disabled,
.booking-calendar__day.empty {
  background: transparent;
  color: var(--color-text);
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.booking-form label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--color-dark);
  font-weight: 600;
}

.booking-form input,
.booking-form textarea {
  padding: 0.7rem 1rem;
  border: 1px solid var(--color-light);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
}

.booking-form textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-summary {
  background: var(--color-light);
  border-radius: 14px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

.summary-row {
  padding: 0.4rem 0;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--color-text);
}

.summary-row strong {
  color: var(--color-dark);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.booking-actions button {
  flex: 1;
}

.booking-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.booking-success,
.booking-error {
  text-align: center;
  padding: 1.25rem;
  border-radius: 14px;
  font-family: 'Poppins', sans-serif;
}

.booking-success {
  background: #e6f4ea;
  color: #1e7d3a;
}

.booking-error {
  background: #fbe7e9;
  color: #c0392b;
  margin-top: 1rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  .booking-card { padding: 1.25rem; border-radius: 18px; }
  .booking-step-line { max-width: 30px; }
}

/* ===== Espace client ===== */
.account {
  max-width: 720px;
  margin: 0 auto;
  padding: 140px 20px 80px;
  min-height: 70vh;
}

.account__box {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(58, 44, 46, 0.08);
  margin-bottom: 1.5rem;
}

.account__box h1, .account__box h2 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin-bottom: 1rem;
}

.account__box p.hint { font-size: 0.9rem; opacity: 0.75; margin-bottom: 1rem; }

.account input, .account textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-light);
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.account .form-row { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.9rem; }
.account .form-row label { font-size: 0.85rem; font-weight: 600; color: var(--color-dark); }
.account .form-row-2 { display: flex; gap: 0.75rem; }
.account .form-row-2 > div { flex: 1; }

.account__tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.account__tab {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--color-light);
  background: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--color-text);
}

.account__tab.active { background: var(--color-dark); color: #fff; border-color: var(--color-dark); }

.account__view { display: none; }
.account__view.active { display: block; animation: fadeIn 0.3s ease; }

.account__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.account__header h1 { margin-bottom: 0; }

.apt-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 4px 16px rgba(58, 44, 46, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-left: 4px solid var(--color-light);
  margin-bottom: 0.85rem;
}

.apt-card.status-confirmed { border-left-color: #6fbf73; }
.apt-card.status-cancelled { border-left-color: #c0392b; opacity: 0.6; }
.apt-card.status-pending { border-left-color: #e0a96d; }
.apt-main { flex: 1; min-width: 200px; }
.apt-date { font-weight: 700; color: var(--color-dark); font-size: 1.05rem; }
.apt-service { color: var(--color-primary); font-weight: 600; margin-top: 0.2rem; }

.status-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

.status-badge.pending { background: #fbeede; color: #b9762f; }
.status-badge.confirmed { background: #e6f4ea; color: #1e7d3a; }
.status-badge.cancelled { background: #fbe7e9; color: #c0392b; }

.apt-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.apt-actions button {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--color-light);
  background: #fff;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--color-text);
}
.apt-actions button:hover { background: var(--color-light); }
.apt-actions button.danger:hover { background: #fbe7e9; color: #c0392b; }

.empty-msg { text-align: center; padding: 2.5rem 1rem; opacity: 0.6; }

.account-error { color: #c0392b; font-size: 0.9rem; margin-top: 0.5rem; display: none; }
.account-success { color: #1e7d3a; font-size: 0.9rem; margin-top: 0.5rem; display: none; }

.reschedule-box {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light);
  width: 100%;
  display: none;
}
.reschedule-box.active { display: block; }
