:root {
  --marron-900: #4A3728;
  --marron-700: #6B4F3B;
  --beige-500: #D7C4A3;
  --beige-200: #EADBC8;
  --cream-50: #F8F5F0;
  --cream-100: #F1EBE0;
  --luxury-black: #1A1A1A;
  --white: #ffffff;
  --shadow-soft: 0 24px 60px rgba(74, 55, 40, 0.12);
  --shadow-card: 0 14px 35px rgba(74, 55, 40, 0.18);
  --radius-xl: 1.75rem;
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;
  --radius-pill: 999px;
  --transition: 250ms ease;
  --gold-500: #D4AF37;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Montserrat", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", sans-serif;
  background: var(--cream-50);
  color: var(--luxury-black);
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

h1,
 h2,
 h3,
 h4 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--marron-900);
  line-height: 1.2;
}

p {
  color: rgba(74, 55, 40, 0.9);
}

a {
  color: inherit;
  text-decoration: none;
}

main {
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
}

.page-shell {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section {
  margin: 0 auto 4rem;
  max-width: 1200px;
}

.section-spacing-lg {
  margin-top: 4rem;
}

.section-spacing-md {
  margin-top: 2.5rem;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
}

.section-heading p {
  max-width: 720px;
  margin: 0.75rem auto 0;
}

.kicker {
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--marron-700);
}

.section.tinted {
  background: linear-gradient(135deg, #fdfaf5 0%, #f7f1e6 100%);
  padding: 4rem clamp(1.5rem, 5vw, 5rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(107, 79, 59, 0.12);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover,
 .service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-500);
  color: var(--white);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  box-shadow: 0 8px 16px rgba(74, 55, 40, 0.2);
}

.btn.secondary {
  background: transparent;
  color: var(--marron-700);
  border: 1px solid rgba(107, 79, 59, 0.3);
  box-shadow: none;
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.85);
  color: var(--marron-700);
  border: 1px solid rgba(107, 79, 59, 0.35);
}

/* Auth button in navbar - displays alongside reserve/cart buttons */
.nav-cta {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-cta .auth-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--marron-700);
}

.btn.secondary:hover {
  background: rgba(107, 79, 59, 0.08);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.site-header {
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  background: linear-gradient(120deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.9));
  color: var(--white);
  overflow: visible;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  position: relative;
  z-index: 200;
}

.site-header.internal {
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding-bottom: 3rem;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0.75rem auto;
  max-width: 98%;
}

.top-nav.open .nav-links,
.top-nav.open .nav-cta {
  display: flex;
}

.brand {
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--white);
  flex-shrink: 0;
}

.brand strong {
  font-size: 1rem;
  display: block;
  line-height: 1.2;
}

.brand small {
  font-size: 0.7rem;
  opacity: 0.85;
  display: block;
}

.brand-logo {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.nav-links,
.nav-cta {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.nav-links a {
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  transition: all var(--transition);
  white-space: nowrap;
  font-size: 0.85rem;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-weight: 600;
}

.admin-link {
  display: none !important;
}

body.is-admin .admin-link {
  display: inline-flex !important;
}

body.is-admin .mobile-nav .admin-link {
  display: block !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  cursor: pointer;
  z-index: 300;
  position: relative;
  /* Touch target minimum 44×44px */
  min-width: 44px;
  min-height: 44px;
  padding: 10px 12px;
  transition: background 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover,
.nav-toggle:focus {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.nav-toggle:active {
  transform: scale(0.93);
  background: rgba(255, 255, 255, 0.3);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  display: block;
}

/* Animation X quand menu ouvert */
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--white);
}

.hero-copy p {
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  margin: 1.8rem 0;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Hero Service Cards ── */
.hero-service-cards {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 1.5rem 0 1.75rem;
}

.hsc-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}

.hsc-card:hover {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateX(5px);
  color: var(--white);
}

.hsc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.hsc-icon i {
  width: 20px;
  height: 20px;
}

.hsc-text {
  flex: 1;
  min-width: 0;
}

.hsc-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.hsc-text small {
  font-size: 0.77rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.4;
}

.hsc-arrow {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
}

.hsc-card:hover .hsc-arrow {
  transform: translateX(4px);
  color: var(--gold-500);
}

.hsc-school {
  border-color: rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.1);
}

.hsc-school .hsc-icon {
  background: rgba(212, 175, 55, 0.3);
}

.hsc-school:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.65);
}

.hero-stats {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats strong {
  font-size: 1.5rem;
  color: var(--white);
}

.hero-visual {
  position: relative;
  min-height: 320px;
}

.aesthetics-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  grid-auto-rows: 200px;
  gap: 1.2rem;
}

.aesthetic-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.aesthetic-card:nth-child(1) {
  grid-column: span 2;
}

.aesthetic-card:nth-child(2),
.aesthetic-card:nth-child(3) {
  grid-column: span 1;
}

.aesthetic-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(74, 55, 40, 0.2);
}

.aesthetic-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aesthetic-card.accent .aesthetic-card__info.solid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  background: transparent;
  display: block;
}

.aesthetic-card__info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.65));
  color: var(--white);
}

.aesthetic-card.accent {
  background: linear-gradient(135deg, var(--marron-900), var(--marron-700));
  display: flex;
  align-items: flex-end;
}

.aesthetic-card__info.solid {
  position: static;
  background: transparent;
}

.aesthetic-card__info .tag {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
  color: var(--gold-500);
}

.aesthetic-card__info span {
  display: block;
  font-size: 0.95rem;
}

.hero-card {
  position: relative;
}

.hero-card img {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.hero-card__content {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
}

.service-tier {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-tier .tier-option {
  color: rgba(74, 55, 40, 0.8);
  font-weight: 500;
}

.note {
  margin-top: 1.2rem;
  font-size: 0.95rem;
  color: rgba(74, 55, 40, 0.7);
}

.piercing-section {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.9), var(--beige-200));
  border-radius: var(--radius-xl);
}

.piercing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.piercing-card ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  padding-left: 0;
  margin-bottom: 1rem;
  font-weight: 600;
}

.piercing-card li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(74, 55, 40, 0.1);
  padding-bottom: 0.35rem;
}

.piercing-note p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

/* Follow page */
.follow-shell {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.follow-profile {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, #fdfaf5, #f7f1e6);
  border: 1px solid rgba(107, 79, 59, 0.12);
}

.profile-avatar {
  position: relative;
  width: 190px;
  height: 190px;
}

.profile-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 40px rgba(74, 55, 40, 0.18);
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.profile-stats {
  width: 100%;
}

.subscriber-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  background: radial-gradient(circle at top right, var(--marron-700), var(--marron-900));
  color: var(--white);
  box-shadow: 0 30px 55px rgba(74, 55, 40, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.subscriber-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
}

.pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd966;
  display: inline-block;
}

.subscriber-value {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.subscriber-value strong {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
}

.subscriber-value span {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.9;
}

.subscriber-note {
  margin-top: 0.4rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-btn {
  align-self: flex-start;
  gap: 0.6rem;
  font-size: 1rem;
  padding-inline: 2.5rem;
  background: linear-gradient(120deg, var(--gold-500), var(--marron-700));
  color: var(--white);
  box-shadow: 0 25px 45px rgba(212, 175, 55, 0.35);
}

.subscribe-btn .btn-icon {
  font-size: 1.1rem;
}

.subscribe-btn:hover {
  background: linear-gradient(120deg, var(--marron-700), var(--marron-900));
  color: var(--white);
}

.subscribe-btn:disabled {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.8), rgba(107, 79, 59, 0.8));
  color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
}

.follow-feed {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feed-header {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  flex-wrap: wrap;
}

.feed-pill {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--marron-700);
  margin-bottom: 0.3rem;
}

.feed-spotlight {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.spotlight-copy h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.spotlight-pill {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--marron-700);
  margin-bottom: 0.75rem;
}

.spotlight-video {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-video__frame {
  position: relative;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(74, 55, 40, 0.25);
}

.spotlight-video__frame iframe,
.spotlight-video__frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}

.spotlight-video__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.95rem;
  color: rgba(74, 55, 40, 0.8);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.review-form__intro h3 {
  margin-bottom: 0.3rem;
}

.review-form.locked textarea,
.review-form.locked button {
  opacity: 0.5;
  pointer-events: none;
}

.review-lock {
  margin-top: -0.5rem;
  padding: 1rem 1.2rem;
  background: rgba(74, 55, 40, 0.05);
  border-radius: var(--radius-lg);
}

.review-wall {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-gallery {
  display: grid;
  gap: 1rem;
}

.review-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.review-card__quote {
  font-style: italic;
  font-size: 1rem;
  color: rgba(74, 55, 40, 0.9);
}

.review-card__meta {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(74, 55, 40, 0.75);
}

.review-empty {
  font-size: 0.95rem;
  color: rgba(74, 55, 40, 0.7);
}

.feed-stream {
  display: grid;
  gap: 1rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(74, 55, 40, 0.65);
}

.post-actions {
  display: flex;
  gap: 0.5rem;
}

.post-actions button {
  border: none;
  background: rgba(107, 79, 59, 0.1);
  color: var(--marron-900);
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
}

.post-actions button:hover {
  background: rgba(212, 175, 55, 0.2);
}
.floating-card {
  position: absolute;
  right: 0;
  bottom: -30px;
  background: var(--white);
  padding: 1.3rem 1.8rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  width: min(270px, 80%);
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.8rem;
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.06);
  box-shadow: 0 20px 40px rgba(74, 55, 40, 0.08);
  transition: var(--transition);
}

.price {
  font-weight: 600;
  color: var(--marron-700);
}

.section-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* ── Services Carousel (index.html Rituels de Prestige) ── */
.services-carousel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* ── Social Hub (index.html Suivez l'Expérience) ── */
.social-hub {
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.social-hub__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.social-hub__header h2 {
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  margin-top: 0.4rem;
}

.social-hub__header p {
  max-width: 600px;
  margin: 0.75rem auto 0;
}

.social-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.social-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(107, 79, 59, 0.1);
  box-shadow: 0 8px 24px rgba(74, 55, 40, 0.07);
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--marron-900), var(--marron-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.social-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.social-card p {
  font-size: 0.85rem;
  color: rgba(74, 55, 40, 0.65);
  margin-bottom: 0.4rem;
}

.social-card a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--marron-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qr-card {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}

.qr-frame {
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(107, 79, 59, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(74, 55, 40, 0.25);
}

.location ul {
  list-style: none;
  margin-top: 1rem;
}

.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, var(--marron-900), var(--marron-700));
  color: var(--white);
}

.contact-card p,
.contact-card h2 {
  color: var(--white);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 2rem clamp(1.5rem, 5vw, 5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(74, 55, 40, 0.7);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

/* ── Footer 3-colonnes (reservation-v2 etc.) ── */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-brand img {
  max-width: 90px;
}

.footer-contact h4,
.footer-hours h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: rgba(74, 55, 40, 0.9);
}

.footer-contact p,
.footer-hours p {
  font-size: 0.85rem;
  margin: 0.2rem 0;
  color: rgba(74, 55, 40, 0.7);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand {
    align-items: center;
  }
}

/* ── Cvisual Credit ── */
.footer-credit {
  width: 100%;
  text-align: center;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(74, 55, 40, 0.1);
  font-size: 0.75rem;
  color: rgba(74, 55, 40, 0.5);
}

.footer-credit a.cvisual-link {
  color: var(--gold-500);
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-credit a.cvisual-link:hover {
  color: var(--marron-700);
  text-decoration: underline;
}

.mobile-nav {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  max-width: 400px;
  display: none;
  grid-template-columns: repeat(6, minmax(48px, 1fr));
  background: rgba(74, 55, 40, 0.88);
  backdrop-filter: blur(20px) saturate(200%);
  -webkit-backdrop-filter: blur(20px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0,0,0,0.15);
  overflow: hidden;
  z-index: 90;
  padding: 0.5rem;
  gap: 0.15rem;
}

.mobile-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.3rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 1.2rem;
  transition: all var(--transition);
  min-width: 46px;
}

.mobile-nav a span {
  display: none;
}

.mobile-nav a i {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
  transition: all var(--transition);
}

.mobile-nav a.active {
  background: rgba(212, 175, 55, 0.25);
  color: var(--gold-500);
}

.mobile-nav a.active i {
  stroke-width: 2.2;
  transform: scale(1.08);
}

.mobile-nav a:hover:not(.active) {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}

/* ── Service Grid & Tile (services.html) ── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-tile {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid rgba(107, 79, 59, 0.1);
  box-shadow: 0 8px 24px rgba(74, 55, 40, 0.07);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-tile header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.service-tile header h3 {
  font-size: 1.05rem;
  flex: 1;
}

.service-tile header .price {
  font-size: 0.85rem;
  background: var(--gold-500);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  font-weight: 700;
}

.service-tile p {
  font-size: 0.9rem;
  color: rgba(74, 55, 40, 0.75);
  flex: 1;
  line-height: 1.6;
}

.service-tile .btn {
  align-self: flex-start;
  margin-top: auto;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
}

/* ── Hero Photo Grid ── */
.hero-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 180px;
  gap: 0.75rem;
}

.hero-photo-grid .hpg-card:first-child {
  grid-column: span 2;
}

.hpg-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--marron-900);
}

.hpg-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.hpg-card:hover img {
  transform: scale(1.04);
}

.hpg-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(30, 18, 10, 0.82) 0%, transparent 100%);
  color: var(--white);
}

.hpg-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 0.2rem;
}

.hpg-overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  line-height: 1.3;
}

/* ── Inclus Grid (services.html) ── */
.inclus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.inclus-grid span {
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--marron-700);
  box-shadow: 0 2px 8px rgba(74, 55, 40, 0.06);
}

/* ── Payment Section (reservation.html) ── */
.payment-section {
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pay-timing-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.pay-option {
  cursor: pointer;
}

.pay-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-option__card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem;
  border: 2px solid rgba(107, 79, 59, 0.15);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  cursor: pointer;
}

.pay-option input:checked + .pay-option__card {
  border-color: var(--gold-500);
  background: rgba(212, 175, 55, 0.08);
}

.pay-option__card strong {
  font-size: 0.9rem;
  color: var(--marron-900);
}

.pay-option__card small {
  font-size: 0.78rem;
  color: rgba(74, 55, 40, 0.6);
}

.pay-methods {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pay-method-option {
  cursor: pointer;
  flex: 1;
  min-width: 100px;
}

.pay-method-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-method-option > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 0.75rem;
  border: 2px solid rgba(107, 79, 59, 0.15);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: all var(--transition);
  text-align: center;
  font-size: 0.82rem;
}

.pay-method-option input:checked + span {
  border-color: var(--gold-500);
  background: rgba(212, 175, 55, 0.08);
  color: var(--marron-700);
}

.deposit-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(74, 55, 40, 0.04);
  border-left: 3px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.85rem;
}

.deposit-banner > span {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.deposit-banner strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--marron-900);
}

.deposit-banner small {
  color: rgba(74, 55, 40, 0.65);
  line-height: 1.5;
}

form {
  display: grid;
  gap: 1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
}

label {
  font-weight: 600;
  color: var(--marron-900);
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(107, 79, 59, 0.25);
  border-color: var(--gold-500);
  background: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: border var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid currentColor;
  font-size: 0.95rem;
}

.alert.success {
  color: #4a3728;
  background: #f1ebe0;
}

.alert.error {
  color: #a61d2d;
  background: #fde4e6;
}

.table-card {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(74, 55, 40, 0.08);
  text-align: left;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge.pending {
  background: rgba(212, 175, 55, 0.2);
  color: #b97700;
}

.badge.accepted {
  background: rgba(212, 175, 55, 0.18);
  color: var(--marron-700);
}

.badge.completed {
  background: rgba(74, 55, 40, 0.18);
  color: var(--marron-900);
}

.badge.cancelled {
  background: rgba(214, 92, 92, 0.18);
  color: #b13535;
}

.page-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 5rem) 6rem;
}

.reservation-shell {
  max-width: 1240px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.orders-shell {
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.reservation-hero {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: linear-gradient(145deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.85));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.reservation-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.reservation-copy {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.reservation-copy h1,
.reservation-copy p,
.reservation-copy .kicker {
  color: var(--white);
}

.reservation-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.85rem;
}

.reservation-highlights li {
  background: rgba(255, 255, 255, 0.12);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-lg);
  font-weight: 500;
}

.reservation-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  z-index: 1;
}

.reservation-stats article {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  text-align: center;
}

.reservation-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
}

.reservation-stats span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.reservation-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
  gap: 2rem;
  align-items: start;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}

.form-note {
  font-size: 0.95rem;
  color: rgba(74, 55, 40, 0.7);
  max-width: 260px;
}

.input-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.identity-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.form-panel textarea {
  min-height: 150px;
  resize: vertical;
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.assurance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.assurance-tags span {
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(107, 79, 59, 0.2);
  background: rgba(212, 175, 55, 0.08);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--marron-700);
}

.summary-panel {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.summary-panel__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.concierge-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.concierge-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  color: var(--marron-900);
}

.concierge-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.summary-panel .contact-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.contact-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.contact-hours {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.summary-panel__footer {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(107, 79, 59, 0.08);
  font-size: 0.95rem;
  color: rgba(74, 55, 40, 0.85);
}

.orders-hero {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(140deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.85));
  color: var(--white);
}

.orders-hero .page-subtitle,
.orders-hero .kicker,
.orders-hero h1 {
  color: var(--white);
}

.orders-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.orders-highlights li {
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  text-align: center;
}

.orders-highlights strong {
  display: block;
  font-size: 1.9rem;
  color: var(--white);
}

.orders-highlights span {
  color: rgba(255, 255, 255, 0.8);
}

.orders-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.orders-table {
  position: relative;
  padding: 2.25rem;
  box-shadow: 0 30px 60px rgba(74, 55, 40, 0.12);
  border: 1px solid rgba(107, 79, 59, 0.12);
}

.orders-table::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  pointer-events: none;
  padding: 0.35rem;
  box-shadow: inset 0 0 0 1px rgba(107, 79, 59, 0.05);
}

.orders-table table {
  margin-top: 1.5rem;
  width: 100%;
  border-collapse: collapse;
}

.orders-table th {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: rgba(27, 48, 39, 0.7);
}

.orders-table td {
  font-size: 0.98rem;
}

.table-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.orders-when {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.orders-when strong {
  font-size: 1rem;
  color: var(--marron-900);
}

.note-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(63, 163, 127, 0.12);
  color: var(--marron-900);
  font-size: 0.9rem;
  font-weight: 500;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.note-chip.muted {
  background: rgba(27, 48, 39, 0.06);
  color: rgba(27, 48, 39, 0.6);
}

.chat-link {
  border: 1px solid rgba(107, 79, 59, 0.3);
  background: transparent;
  color: var(--marron-700);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.chat-link:hover {
  background: rgba(63, 163, 127, 0.1);
  color: var(--marron-900);
}

.video-card__actions {
  display: flex;
  gap: 0.75rem;
}

.video-card__actions button {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 0.95rem;
}

.video-card__actions .like-btn {
  background: rgba(220, 58, 94, 0.12);
  color: #d7265d;
}

.orders-support {
  min-height: 100%;
}

.social-hub {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(140deg, rgba(74, 55, 40, 0.9), rgba(107, 79, 59, 0.85));
  color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}

.social-hub__header {
  max-width: 560px;
  margin-bottom: 2rem;
}

.social-hub__header h2,
.social-hub__header p {
  color: var(--white);
}

.social-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.social-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 150px;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}

.social-card:hover .social-icon {
  transform: scale(1.1);
  background: var(--gold-500);
}

.social-card h3 {
  margin: 0;
  color: var(--white);
}

.social-card p {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.85);
}

.social-card a {
  color: var(--gold-500);
  font-weight: 600;
  text-decoration: underline;
}

.qr-card {
  flex-direction: column;
  align-items: flex-start;
}

.qr-frame {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.qr-card small {
  color: rgba(255, 255, 255, 0.7);
}

.form-card {
  max-width: 520px;
  margin: 0 auto;
}

.auth-shell {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 6vw, 4rem);
  align-items: stretch;
  padding-top: 2rem;
}

.auth-panel {
  background: linear-gradient(150deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.9));
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.auth-panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.auth-panel h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.8rem);
}

.auth-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.auth-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}

.auth-list li::before {
  content: '•';
  margin-right: 0.6rem;
  color: var(--gold-500);
}

.auth-testimonial {
  background: rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  font-style: italic;
}

.auth-testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gold-500);
}

.auth-form {
  position: relative;
  overflow: hidden;
}

.admin-shell {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.admin-banner {
  background: linear-gradient(120deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.85));
  color: var(--white);
}

.admin-metrics {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.admin-metrics article {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
}

.admin-metrics strong {
  display: block;
  font-size: 2rem;
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.admin-toolbar select {
  min-width: 180px;
}

.table-scroll {
  overflow-x: auto;
}

.status-select {
  min-width: 150px;
}

.admin-message {
  margin-bottom: 1rem;
}

.register-shell {
  align-items: stretch;
}

.onboarding-panel {
  background: linear-gradient(150deg, rgba(74, 55, 40, 0.95), rgba(107, 79, 59, 0.9));
}

.onboarding-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
}

.stat-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.stat-grid article {
  background: rgba(255, 255, 255, 0.12);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
}

.stat-grid span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.onboarding-highlight {
  margin-top: auto;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.15);
  font-style: italic;
  color: var(--white);
}

.onboarding-highlight span {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
}

.input-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.auth-form::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(63, 163, 127, 0.1), transparent 55%);
  pointer-events: none;
}

.auth-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.input-group label {
  display: block;
  margin-bottom: 0.4rem;
}

.input-group input {
  width: 100%;
}

.form-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.remember {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: rgba(27, 48, 39, 0.8);
}

.remember input {
  accent-color: var(--marron-700);
}

.link-muted {
  color: rgba(27, 48, 39, 0.7);
  text-decoration: underline;
}

.auth-security {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: var(--radius-pill);
  background: rgba(63, 163, 127, 0.12);
  font-weight: 600;
  color: var(--marron-700);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-note {
  font-size: 0.95rem;
  color: rgba(27, 48, 39, 0.75);
}

.form-note a {
  color: var(--marron-700);
  font-weight: 600;
}

#login-message,
#register-message,
#reservation-message,
#payment-message {
  margin-top: 1rem;
}

.page-shell h1 {
  margin-bottom: 1rem;
}

.page-subtitle {
  color: rgba(27, 48, 39, 0.8);
  margin-bottom: 2.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-tile {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(107, 79, 59, 0.12);
}

.service-tile header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-500);
  display: inline-block;
}

.status-dot.pulse {
  position: relative;
}

.status-dot.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(63, 163, 127, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.list-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(27, 48, 39, 0.2);
  border-radius: var(--radius-lg);
}

.info-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid rgba(107, 79, 59, 0.12);
  box-shadow: var(--shadow-soft);
}

.summary-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.summary-card span {
  font-weight: 600;
  color: var(--marron-700);
}

.protected-note {
  margin-top: 1.25rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(63, 163, 127, 0.12);
  color: var(--marron-900);
}

.fade-in {
  animation: fadeInUp 700ms ease forwards;
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sticky-nav-padding {
  height: 64px;
}

/* About Page Styles */
.about-hero {
  margin-bottom: 3rem;
}

.about-ceo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.ceo-image-container {
  position: relative;
}

.ceo-portrait {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 4px solid var(--white);
}

.ceo-bio {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ceo-bio h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0;
}

.ceo-title {
  color: var(--beige-500);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.ceo-bio p {
  line-height: 1.8;
}

.ceo-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.credential-badge {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(63, 163, 127, 0.15);
  color: var(--marron-700);
  font-weight: 600;
  font-size: 0.9rem;
}

.about-story {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-story p {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(107, 79, 59, 0.12);
  font-weight: 500;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-team-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.about-team-info p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.team-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-stats article {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.team-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--marron-700);
  margin-bottom: 0.3rem;
}

.team-stats span {
  color: rgba(27, 48, 39, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-ceo-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .ceo-image-container {
    display: flex;
    justify-content: center;
  }
  
  .ceo-portrait {
    max-width: 280px;
  }
  
  .ceo-credentials {
    justify-content: center;
  }
}

/* ============================================
   CHAT WIDGET STYLES
   ============================================ */

.chat-widget {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 1000;
}

.chat-bubble {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--marron-900), var(--marron-700));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(74, 55, 40, 0.4);
  transition: all 0.3s ease;
  color: white;
}

.chat-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(74, 55, 40, 0.5);
}

.chat-bubble i {
  width: 28px;
  height: 28px;
}

.chat-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 3rem);
  height: 550px;
  max-height: 70vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-direction: column;
  overflow: hidden;
}

.chat-header {
  background: linear-gradient(135deg, #4A3728, #6B4F3B);
  color: white;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.chat-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: white;
}

.chat-status {
  font-size: 0.8rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.chat-status.online {
  background: rgba(212, 175, 55, 0.35);
}

.chat-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: white;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chat-close i {
  width: 18px;
  height: 18px;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: #f5f5f5;
}

.chat-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.chat-empty p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.chat-login-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #4A3728;
  color: white;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.chat-login-btn:hover {
  background: #6B4F3B;
}

.chat-message {
  display: flex;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.sent {
  justify-content: flex-end;
}

.chat-message.received {
  justify-content: flex-start;
}

.message-content {
  max-width: 75%;
  padding: 0.85rem 1.1rem;
  border-radius: 16px;
  position: relative;
}

.chat-message.sent .message-content {
  background: linear-gradient(135deg, #4A3728, #6B4F3B);
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-message.received .message-content {
  background: white;
  color: #333;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.message-content p {
  margin: 0;
  line-height: 1.5;
  color: inherit;
}

.message-time {
  display: block;
  font-size: 0.7rem;
  margin-top: 0.4rem;
  opacity: 0.7;
  text-align: right;
}

.chat-input-area {
  padding: 1rem;
  background: white;
  border-top: 1px solid #e0e0e0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.chat-input-area input {
  flex: 1;
  padding: 0.85rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.chat-input-area input:focus {
  border-color: #4A3728;
  box-shadow: 0 0 0 3px rgba(74, 55, 40, 0.1);
}

.chat-input-area button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A3728, #6B4F3B);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.2s ease;
}

.chat-input-area button:hover {
  transform: scale(1.05);
}

.chat-input-area button i {
  width: 20px;
  height: 20px;
}

@media (max-width: 720px) {
  .chat-widget {
    bottom: 5.5rem;
    right: 1rem;
  }

  .chat-window {
    width: calc(100vw - 2rem);
    right: -0.5rem;
    height: 70vh;
  }
}

/* ============================================
   iOS 2026 TOGGLE SWITCH
   ============================================ */

.ios-toggle {
  position: relative;
  width: 52px;
  height: 32px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.ios-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ios-toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(120, 120, 128, .16);
  border-radius: 999px;
  cursor: pointer;
  transition: background .3s cubic-bezier(.4, 0, .2, 1);
  border: 1.5px solid rgba(120, 120, 128, .12);
}

.ios-toggle-track::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,.18), 0 1px 2px rgba(0,0,0,.12);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.ios-toggle input:checked + .ios-toggle-track {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.ios-toggle input:checked + .ios-toggle-track::before {
  transform: translateX(20px);
}

/* ============================================
   POLISHED ALERT / MESSAGE STYLES
   ============================================ */

.alert {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.2rem;
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 500;
  border: none;
  backdrop-filter: blur(8px);
}

.alert.success {
  background: rgba(52, 199, 89, .12);
  color: #1b7a34;
}

.alert.error {
  background: rgba(255, 59, 48, .1);
  color: #c41e2d;
}

.alert.info {
  background: rgba(212, 175, 55, .1);
  color: var(--marron-700);
}

/* ============================================
   TV / ULTRA-WIDE RESPONSIVE (≥ 1600px)
   ============================================ */

@media (min-width: 1600px) {
  .page-shell {
    max-width: 1400px;
  }

  .section {
    max-width: 1400px;
  }

  body {
    font-size: 1.05rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 4vw, 4.5rem);
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .chat-window {
    width: 420px;
    height: 600px;
  }
}

/* ── Payment Account Info Box ── */
.payment-account-box {
  margin-top: 1rem;
}

.account-info-card {
  display: flex;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(74,55,40,0.06));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.account-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.account-info-card strong {
  font-size: 1rem;
  color: var(--marron-900);
}

.account-detail {
  margin-top: 0.3rem;
  font-size: 0.88rem;
  color: var(--marron-700);
}

.account-detail strong {
  color: var(--marron-900);
  font-size: 0.88rem;
  user-select: all;
}

.account-instructions {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: rgba(74,55,40,0.6);
  line-height: 1.5;
}

/* ── Upload Zone ── */
.upload-zone {
  border: 2px dashed rgba(74,55,40,0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  background: rgba(248,245,240,0.5);
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: var(--gold-500);
  background: rgba(212,175,55,0.05);
}

.upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.upload-placeholder p {
  font-size: 0.9rem;
  color: var(--marron-700);
  font-weight: 500;
}

.upload-placeholder small {
  font-size: 0.75rem;
  color: rgba(74,55,40,0.4);
}

.upload-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.upload-preview img {
  max-height: 180px;
  max-width: 100%;
  border-radius: var(--radius-md);
  object-fit: contain;
  border: 1px solid rgba(74,55,40,0.1);
}

.upload-remove {
  background: none;
  border: 1px solid rgba(74,55,40,0.2);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--marron-700);
  transition: all 0.2s;
}

.upload-remove:hover {
  border-color: #c0392b;
  color: #c0392b;
}

/* ── Conditions ── */
.conditions-section {
  border-top: 1px solid rgba(74,55,40,0.1);
  padding-top: 1rem;
}

.condition-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--marron-700);
  line-height: 1.5;
}

.condition-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--gold-500);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.link-btn {
  background: none;
  border: none;
  color: var(--gold-500);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-size: inherit;
  padding: 0;
}

.link-btn:hover {
  color: var(--marron-900);
}

/* Conditions Modal */
.conditions-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.conditions-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

.conditions-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(74,55,40,0.1);
}

.conditions-modal__header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--marron-900);
}

.conditions-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--marron-700);
  padding: 0.25rem;
  line-height: 1;
}

.conditions-modal__body {
  padding: 1.5rem;
  overflow-y: auto;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--marron-700);
}

.conditions-modal__body h4 {
  margin: 1.25rem 0 0.75rem;
  font-size: 0.95rem;
  color: var(--marron-900);
}

.conditions-modal__body h4:first-child {
  margin-top: 0;
}

.conditions-modal__body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.conditions-modal__body li {
  margin-bottom: 0.5rem;
}

.conditions-modal__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(74,55,40,0.1);
  text-align: center;
}

@media (min-width: 2200px) {
  .page-shell,
  .section {
    max-width: 1600px;
  }

  body {
    font-size: 1.1rem;
  }

  .chat-bubble {
    width: 70px;
    height: 70px;
  }

  .chat-bubble i {
    width: 32px;
    height: 32px;
  }
}

/* ── Cart System ── */
.cart-toggle {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--marron-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
  transition: color 0.2s ease;
}

.cart-toggle:hover {
  color: var(--gold-500);
}

.cart-toggle i {
  width: 22px;
  height: 22px;
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background: var(--gold-500);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100vh;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(0,0,0,0.15);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(74,55,40,0.1);
}

.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--marron-900);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--marron-700);
  transition: color 0.2s;
}

.cart-close:hover {
  color: var(--marron-900);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
  color: rgba(74,55,40,0.5);
}

.cart-empty i {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.cart-empty p {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--marron-700);
}

.cart-empty span {
  font-size: 0.85rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(74,55,40,0.08);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--marron-900);
  margin-bottom: 0.25rem;
}

.cart-item-info p {
  font-size: 0.8rem;
  color: rgba(74,55,40,0.6);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-500);
}

.cart-item-remove {
  background: none;
  border: none;
  color: rgba(74,55,40,0.4);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
  align-self: flex-start;
}

.cart-item-remove:hover {
  color: #dc3545;
}

.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(74,55,40,0.1);
  background: rgba(248,245,240,0.5);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(74,55,40,0.1);
}

.cart-total span {
  font-size: 0.95rem;
  color: var(--marron-700);
}

.cart-total strong {
  font-size: 1.1rem;
  color: var(--marron-900);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.btn-ghost {
  background: none;
  border: 1px solid rgba(74,55,40,0.2);
  color: var(--marron-700);
}

.btn-ghost:hover {
  border-color: var(--marron-900);
  color: var(--marron-900);
}

@media (max-width: 768px) {
  .cart-sidebar {
    max-width: 100%;
    width: 100%;
    height: 85vh; /* Don't cover 100% so users can see context */
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    transform: translateY(100%);
    z-index: 10000;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  }

  .cart-sidebar.active {
    transform: translateY(0);
  }
  
  /* Pull handle for mobile */
  .cart-sidebar::before {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: rgba(74, 55, 40, 0.15);
    border-radius: 2px;
    margin: 0.75rem auto 0;
    flex-shrink: 0;
  }

  .cart-header {
    padding: 1rem 1.5rem;
  }

  .cart-body {
    padding: 0.5rem 1.5rem 2rem;
  }

  .cart-overlay {
    z-index: 9999;
  }

  /* ── Mobile Cart Badge ── */
  .mobile-cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .cart-item {
    padding: 1.25rem 0;
  }

  .cart-item-info h4 {
    font-size: 1rem;
  }

  .cart-item-price {
    font-size: 1rem;
    margin-top: 0.25rem;
  }

  .cart-item-remove {
    padding: 0.5rem;
  }

  .cart-footer {
    padding: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom));
  }
}

.mobile-nav a {
  position: relative;
}

/* ── Toast Notifications ── */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--gold-500);
  min-width: 320px;
  max-width: 400px;
  pointer-events: auto;
  animation: toast-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: right center;
}

.toast.hiding {
  animation: toast-slide-out 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}

.toast-icon.success {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

.toast-icon.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white;
}

.toast-icon.info {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: white;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--marron-900);
  margin-bottom: 0.25rem;
}

.toast-message {
  font-size: 0.85rem;
  color: rgba(74,55,40,0.7);
  line-height: 1.4;
}

.toast-close {
  background: none;
  border: none;
  color: rgba(74,55,40,0.4);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.toast-close:hover {
  color: var(--marron-900);
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes toast-slide-out {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
}

@media (max-width: 768px) {
  .toast-container {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
    align-items: stretch;
  }
  
  .toast {
    min-width: auto;
    max-width: none;
  }
}

/* ── Reservation Cart Mode ── */
.cart-services-list {
  background: rgba(248,245,240,0.6);
  border: 1px solid rgba(74,55,40,0.1);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
}

.cart-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(74,55,40,0.08);
}

.cart-service-item:last-child {
  border-bottom: none;
}

.cart-service-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cart-service-info strong {
  font-size: 0.95rem;
  color: var(--marron-900);
}

.cart-service-info span {
  font-size: 0.8rem;
  color: rgba(74,55,40,0.6);
}

.cart-service-price {
  font-weight: 600;
  color: var(--gold-500);
  font-size: 0.95rem;
}

.cart-total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border-radius: var(--radius-md);
  margin-top: 1rem;
}

.cart-total-bar span {
  font-size: 0.95rem;
  color: var(--marron-700);
}

.cart-total-bar strong {
  font-size: 1.1rem;
  color: var(--marron-900);
}

/* ── Services Page Search & Filter ── */
.services-controls {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: rgba(248,245,240,0.6);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74,55,40,0.08);
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box i {
  position: absolute;
  left: 1rem;
  width: 20px;
  height: 20px;
  color: rgba(74,55,40,0.4);
}

.search-box input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 1px solid rgba(74,55,40,0.15);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  background: white;
  transition: all 0.2s ease;
}

.search-box input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(74,55,40,0.2);
  background: white;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--marron-900);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: var(--gold-500);
  color: white;
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

/* ── Enhanced Cart Toggle Button ── */
.cart-toggle {
  position: relative;
  background: linear-gradient(135deg, rgba(212,175,55,0.1), rgba(212,175,55,0.05));
  border: 1.5px solid rgba(212,175,55,0.3);
  cursor: pointer;
  padding: 0.6rem;
  color: var(--gold-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-toggle:hover {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-color: var(--gold-500);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}

.cart-toggle:active {
  transform: scale(0.95);
}

.cart-toggle i {
  width: 20px;
  height: 20px;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ── Enhanced Add to Cart Button ── */
.service-tile .add-to-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.875rem 1rem;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 50%, #b8941f 100%);
  color: var(--marron-900);
  border: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(212,175,55,0.25);
  position: relative;
  overflow: hidden;
}

.service-tile .add-to-cart::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.service-tile .add-to-cart:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
}

.service-tile .add-to-cart:hover::before {
  left: 100%;
}

.service-tile .add-to-cart:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.service-tile .add-to-cart i {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.service-tile .add-to-cart:hover i {
  transform: scale(1.1);
}

.service-tile .add-to-cart.added {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 16px rgba(34,197,94,0.3);
  color: white;
}

.service-tile .add-to-cart.added i {
  animation: check-bounce 0.4s ease;
  color: white;
}

@keyframes check-bounce {
  0% { transform: scale(0) rotate(-45deg); }
  50% { transform: scale(1.2) rotate(0); }
  100% { transform: scale(1) rotate(0); }
}

/* ── Package Subscription Cards ── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.package-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(74,55,40,0.08);
  border: 1px solid rgba(74,55,40,0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,55,40,0.12);
}

.package-card.silver {
  border-top: 4px solid #C0C0C0;
}

.package-card.gold {
  border-top: 4px solid var(--gold-500);
}

.package-card__header {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(248,245,240,0.8), rgba(255,255,255,0.9));
  text-align: center;
  border-bottom: 1px solid rgba(74,55,40,0.08);
}

.package-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(212,175,55,0.15);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2rem;
  margin-bottom: 0.75rem;
}

.package-card.silver .package-badge {
  background: rgba(192,192,192,0.2);
  color: #666;
}

.package-card__header h3 {
  font-size: 1.35rem;
  color: var(--marron-900);
  margin: 0 0 0.5rem 0;
  font-weight: 600;
}

.package-price {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--marron-900);
  line-height: 1;
  margin: 0.75rem 0 0.25rem 0;
}

.package-subtitle {
  font-size: 0.85rem;
  color: var(--marron-600);
}

.package-card__body {
  padding: 1.5rem;
  flex: 1;
}

.package-card__body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.package-card__body li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--marron-700);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(74,55,40,0.05);
}

.package-card__body li:last-child {
  border-bottom: none;
}

.package-card__body li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

.pkg-length-table {
  background: rgba(248,245,240,0.6);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.pkg-length-title {
  font-size: 0.8rem;
  color: var(--marron-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.pkg-length-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(74,55,40,0.08);
}

.pkg-length-row:last-child {
  border-bottom: none;
}

.pkg-length-row.included strong {
  color: #22c55e;
}

.pkg-length-row.extra strong {
  color: var(--gold-600);
}

.pkg-length-row.extra.gold strong {
  color: var(--gold-500);
}

.package-card__footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(74,55,40,0.08);
}

.package-card__footer .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.package-card__footer .btn.add-to-cart-package {
  color: var(--marron-900);
  font-weight: 600;
}

.package-card__footer .btn.add-to-cart-package.added {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white;
}

/* Règlement Grid */
.reglement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.reglement-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius-md);
  border: 1px solid rgba(74,55,40,0.08);
}

.reglement-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 50%;
  color: white;
  flex-shrink: 0;
}

.reglement-item p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--marron-700);
  line-height: 1.4;
}

.reglement-item strong {
  color: var(--marron-900);
}

@media (max-width: 768px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .reglement-grid {
    grid-template-columns: 1fr;
  }
  
  .package-price {
    font-size: 2rem;
  }
}
