/* ==========================================================================
   RÉSIDENCE DANDÉ MAYO — style.css (version corrigée)
   ========================================================================== */

:root {
  --primary: #4C4DDC;
  --primary-dark: #3C3DB0;
  --primary-light: #E4E4FA;
  --lilac: #C8C8F4;
  --gray-bg: #E1E1E1;
  --ink: #101010;
  --ink-soft: #6B6B76;
  --white: #ffffff;
  --success: #22C55E;
  --terracotta: #C4855D;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shell-w: 430px;
  --nav-h: 78px;
  --topbar-h: 150px; /* recalculé dynamiquement par script.js */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--ink); background: var(--gray-bg); -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; }
p { margin: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--lilac); color: var(--ink); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Conteneur PC ---------- */
.dt-container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ==========================================================================
   1. MOBILE
   ========================================================================== */
.phone-frame { height: 100vh; height: 100dvh; overflow: hidden; display: flex; justify-content: center; background: var(--gray-bg); }
.app-shell { position: relative; width: 100%; max-width: var(--shell-w); height: 100vh; height: 100dvh; background: var(--white); overflow: hidden; box-shadow: 0 0 70px rgba(16,16,16,0.08); }
.app-screen { position: absolute; inset: 0; display: none; flex-direction: column; background: var(--white); }
.app-screen.is-active { display: flex; }

/* BARRE SUPÉRIEURE FIXE */
.app-topbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--white);
  padding: 0.75rem 1.35rem 0.85rem;
  box-shadow: 0 8px 24px rgba(16,16,16,0.05);
}
.app-header { display: flex; flex-direction: column; }
.header-top-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header-logo { display: flex; align-items: center; }
.app-logo { height: 60px; width: auto; object-fit: contain; }
.header-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.icon-btn { position: relative; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-bg); background: var(--white); color: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; transition: background-color 0.2s ease; }
.icon-btn:hover { background: var(--primary-light); }
.bell-dot { position: absolute; top: 9px; right: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 2px var(--white); opacity: 0; transition: opacity 0.15s ease; }
.bell-dot.has-unread { opacity: 1; }

.segment-tabs { display: flex; gap: 0.6rem; margin-top: 0.8rem; overflow-x: auto; scrollbar-width: none; }
.segment-tabs::-webkit-scrollbar { display: none; }
.segment-tab { flex-shrink: 0; display: flex; align-items: center; gap: 0.45rem; padding: 0.65rem 1.15rem; border-radius: var(--radius-pill); border: 1px solid var(--gray-bg); background: var(--white); color: var(--ink-soft); font-size: 0.82rem; font-weight: 600; transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.segment-tab i { font-size: 0.95rem; }
.segment-tab.is-active { background: var(--primary); border-color: var(--primary); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* BARRE DE RECHERCHE */
.header-search-bar {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-bg);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease, margin-top 0.25s ease, padding 0.25s ease;
  margin-top: 0;
}
.header-search-bar.is-open { max-height: 56px; opacity: 1; padding: 0.55rem 0.9rem; margin-top: 0.6rem; }
.header-search-bar > i.bi-search { color: var(--ink-soft); font-size: 1rem; flex-shrink: 0; }
.header-search-bar input { flex: 1; min-width: 0; border: none; outline: none; font-size: 0.9rem; font-family: var(--font-body); background: transparent; color: var(--ink); }
.header-search-bar button { background: none; border: none; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.header-search-bar button:hover { background: var(--gray-bg); }

.rooms-no-results { display: none; flex-direction: column; align-items: center; text-align: center; padding: 30px 15px; background: #f8f9fa; border-radius: var(--radius-lg); }
.rooms-no-results i { font-size: 1.8rem; color: var(--terracotta); margin-bottom: 8px; }
.rooms-no-results p { font-size: 0.85rem; color: #666; }

/* NOTIFICATIONS */
.notif-wrap { position: relative; }
.notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 300px;
  max-width: 80vw;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 14px 40px rgba(16,16,16,0.18);
  padding: 14px;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 45;
}
.notif-panel.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.notif-panel-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.notif-panel-header h4 { font-size: 0.95rem; font-weight: 700; }
.notif-clear-btn { background: none; border: none; color: var(--primary); font-size: 0.72rem; font-weight: 600; }
.notif-panel-list { max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.notif-empty-state { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 22px 6px; color: var(--ink-soft); }
.notif-empty-state i { font-size: 1.6rem; margin-bottom: 8px; color: var(--terracotta); }
.notif-empty-state p { font-size: 0.8rem; line-height: 1.5; }
.notif-item { display: flex; gap: 10px; align-items: flex-start; padding: 8px; border-radius: 10px; background: #f8f9fa; }
.notif-item.is-unread { background: var(--primary-light); }
.notif-item-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; font-size: 0.95rem; box-shadow: 0 2px 6px rgba(0,0,0,0.08); }
.notif-item-body { flex: 1; min-width: 0; }
.notif-item-title { font-size: 0.82rem; font-weight: 700; margin-bottom: 2px; }
.notif-item-detail { font-size: 0.74rem; color: var(--ink-soft); line-height: 1.4; }
.notif-item-time { font-size: 0.68rem; color: #999; flex-shrink: 0; white-space: nowrap; }

.screen-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding: calc(var(--topbar-h) + 1rem) 1.35rem 0;
  scrollbar-width: none;
}
.screen-scroll::-webkit-scrollbar { display: none; }
.scroll-spacer { height: calc(var(--nav-h) + 1rem); }

.app-section { margin-bottom: 1.5rem; }
.section-title-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.section-title-row h2 { font-size: 1.05rem; font-weight: 700; }
.see-all { font-size: 0.78rem; font-weight: 600; color: var(--primary); }

.cards-scroll { display: flex; gap: 1rem; overflow-x: auto; padding: 0 1.35rem 0.35rem; margin: 0 -1.35rem; scroll-snap-type: x mandatory; scrollbar-width: none; touch-action: pan-y; }
.cards-scroll::-webkit-scrollbar { display: none; }

/* Carrousel — défilement continu */
.marquee-track {
  overflow: hidden !important;
  width: max-content;
  scroll-snap-type: none !important;
  animation-name: marqueeScrollRight;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform;
  backface-visibility: hidden;
  touch-action: pan-y;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScrollRight {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(var(--marquee-shift), 0, 0); }
}

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

/* Repli visuel si une image est manquante */
.room-card-photo.img-fallback, .dt-hotel-img.img-fallback { background: linear-gradient(135deg, var(--primary-light), var(--lilac)); }
.room-card-photo.img-fallback img, .dt-hotel-img.img-fallback img { display: none; }
.room-card-photo.img-fallback::after, .dt-hotel-img.img-fallback::after {
  content: '\f6d5';
  font-family: 'bootstrap-icons';
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--primary);
}

.room-card { flex: 0 0 80%; max-width: 300px; scroll-snap-align: start; background: var(--white); border-radius: var(--radius-lg); text-align: left; border: none; padding: 0; cursor: pointer; touch-action: pan-y; }
.room-card-photo { position: relative; width: 100%; height: 220px; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--lilac)); margin-bottom: 0.85rem; }
.room-card-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-card-fav { position: absolute; top: 12px; right: 12px; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,0.92); color: var(--ink-soft); display: flex; align-items: center; justify-content: center; font-size: 1rem; box-shadow: 0 4px 12px rgba(0,0,0,0.18); transition: color 0.2s ease, transform 0.15s ease; }
.room-card-fav:active { transform: scale(0.9); }
.room-card-fav.is-active { color: #E23744; }
.room-availability-badge { position: absolute; bottom: 8px; left: 8px; color: #fff; padding: 3px 10px; border-radius: 12px; font-size: 0.62rem; font-weight: 700; z-index: 2; }
.room-card-name { font-size: 1.02rem; font-weight: 700; margin-bottom: 0.25rem; }
.room-card-loc { font-size: 0.78rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.55rem; }
.room-card-meta { display: flex; align-items: center; justify-content: space-between; }
.room-card-price { font-size: 0.96rem; font-weight: 700; color: var(--primary); }
.room-card-price small { font-weight: 500; color: var(--ink-soft); font-size: 0.72rem; }
.room-card-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.86rem; font-weight: 600; }
.room-card-rating i { color: #F5A623; }

.list-stack { display: flex; flex-direction: column; gap: 0.85rem; }
.room-list-item { display: flex; align-items: center; gap: 0.9rem; background: var(--white); border: 1px solid var(--gray-bg); border-radius: var(--radius-md); padding: 0.65rem; text-align: left; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; touch-action: pan-y; }
.room-list-item:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.room-list-photo { flex-shrink: 0; width: 72px; height: 72px; border-radius: var(--radius-sm); overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--lilac)); }
.room-list-photo img { width: 100%; height: 100%; object-fit: cover; }
.room-list-body { flex: 1; min-width: 0; }
.room-list-name { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.2rem; }
.room-list-loc { font-size: 0.72rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.35rem; }
.room-list-meta { display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.room-list-price { font-size: 0.84rem; font-weight: 700; color: var(--primary); }
.room-list-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.76rem; font-weight: 600; flex-shrink: 0; }
.room-list-rating i { color: #F5A623; }
.room-list-availability { margin-top: 4px; font-size: 0.7rem; font-weight: 600; }
.room-list-chevron { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; border: none; }

.section-membership { position: relative; width: 100%; height: 520px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1.9rem; display: flex; align-items: center; justify-content: center; }
.membership-bg { position: absolute; inset: 0; z-index: 1; }
.membership-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.65); }
.membership-content { position: relative; z-index: 2; width: 100%; height: 100%; padding: 30px 20px; display: flex; flex-direction: column; justify-content: space-between; text-align: center; color: white; }
.membership-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; margin-bottom: 5px; text-transform: uppercase; text-align: left; }
.membership-title span { color: #F5C119; }
.membership-desc { font-family: var(--font-body); font-size: 0.85rem; line-height: 1.4; max-width: 80%; text-align: left; margin-bottom: 20px; opacity: 0.9; }
.cartes-superposees { position: relative; width: 100%; max-width: 320px; height: 180px; margin: 0 auto 20px auto; }
.carte-visa, .carte-premium { position: absolute; width: 90%; border-radius: 15px; box-shadow: 0 10px 25px rgba(0,0,0,0.4); }
.carte-visa { top: 15px; left: 0; transform: rotate(-4deg); z-index: 1; }
.carte-premium { top: 0; right: 0; transform: rotate(4deg); z-index: 2; }
.badge-bientot-fixe { position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); background-color: #cda45e; color: white; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; padding: 8px 22px; border-radius: 30px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 3; white-space: nowrap; }
.membership-btn { display: inline-block; padding: 12px 25px; border: 1px solid white; border-radius: 30px; color: white; font-weight: 600; font-size: 0.9rem; background: rgba(255,255,255,0.12); transition: background 0.3s; max-width: 180px; margin: 0 auto; }
.membership-btn:hover { background: rgba(255,255,255,0.25); }

.menu-whatsapp-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: #fff; border: none; padding: 13px 22px; border-radius: var(--radius-pill); font-weight: 700; font-size: 0.88rem; margin-top: 10px; transition: background-color 0.2s ease; }
.menu-whatsapp-btn:hover { background: #1ebd5a; }
.menu-whatsapp-btn i { font-size: 1.05rem; }

/* NAVIGATION BASSE MOBILE */
#bottomNavContainer { position: absolute; left: 0; right: 0; bottom: 0; height: var(--nav-h); z-index: 20; }
.bottom-nav-curved { position: absolute; bottom: 0; left: 0; right: 0; height: 100%; padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px)); background: var(--white); border-top: 1px solid var(--gray-bg); display: flex; justify-content: space-around; align-items: center; box-shadow: 0 -6px 20px rgba(16,16,16,0.06); }
.nav-item-curved { background: transparent; border: none; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; font-size: 0.76rem; font-weight: 600; transition: background-color 0.2s ease, color 0.2s ease; padding: 10px 13px; border-radius: var(--radius-pill); }
.nav-item-curved span { display: none; }
.nav-item-curved i { font-size: 1.3rem; }
.nav-item-curved.is-active { background: var(--primary); color: var(--white); }
.nav-item-curved.is-active span { display: inline; }

.soon-toast { position: fixed; left: 50%; bottom: calc(var(--nav-h) + 20px); transform: translateX(-50%) translateY(10px); background: var(--ink); color: var(--white); font-size: 0.8rem; font-weight: 600; padding: 10px 20px; border-radius: var(--radius-pill); box-shadow: 0 8px 24px rgba(0,0,0,0.25); z-index: 10001; opacity: 0; pointer-events: none; transition: opacity 0.25s ease, transform 0.25s ease; max-width: 88vw; text-align: center; }
.soon-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* MINI PANIER FLOTTANT */
.mini-cart-bar {
  position: absolute;
  left: 12px; right: 12px;
  bottom: calc(var(--nav-h) + 14px);
  z-index: 22;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.15s ease;
}
.mini-cart-bar:active { transform: scale(0.98); }
.mini-cart-bar.is-visible { display: flex; }
.mini-cart-bar-text { font-size: 0.85rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-cart-bar-cta { font-size: 0.8rem; font-weight: 700; color: #F5C119; display: flex; align-items: center; gap: 4px; white-space: nowrap; flex-shrink: 0; }

/* MODALE CHAMBRE */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); z-index: 9999; display: none; align-items: flex-end; justify-content: center; padding: 20px 20px 0; animation: fadeIn 0.25s ease; }
.modal-overlay.is-open { display: flex; }
.modal-content-box { background: var(--white); width: 100%; max-width: 450px; border-radius: 30px 30px 0 0; padding: 0 0 40px; position: relative; max-height: 92vh; overflow-y: auto; overscroll-behavior: contain; animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.modal-topbar { position: sticky; top: 0; z-index: 3; display: flex; align-items: center; justify-content: space-between; background: var(--white); padding: 16px 16px 8px; }
.modal-back-btn, .modal-fav-btn { width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--gray-bg); color: var(--ink); font-size: 1.05rem; display: flex; align-items: center; justify-content: center; }
.modal-fav-btn { color: var(--ink-soft); }
.modal-fav-btn.is-active { color: #E23744; }
.modal-topbar-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.modal-image-wrapper { width: 100%; height: 240px; overflow: hidden; padding: 0 20px; }
.modal-image-wrapper img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; transition: opacity 0.25s ease; }
.modal-text-content { padding: 20px 20px 0; }
.modal-amenities-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-amenity { display: flex; align-items: center; gap: 6px; background: var(--gray-bg); color: var(--ink-soft); font-size: 0.72rem; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill); }
.modal-amenity-rating { background: #FFF4DE; color: #B8860B; margin-left: auto; }
.modal-amenity-rating i { color: #F5A623; }
.modal-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.modal-title-row h2 { font-size: 1.3rem; font-weight: 700; }
.modal-title-row #modalPrice { font-size: 1.02rem; font-weight: 700; color: var(--primary); white-space: nowrap; }
.modal-loc-row { font-size: 0.85rem; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.modal-desc-label { font-size: 0.92rem; font-weight: 700; margin: 18px 0 8px; display: flex; align-items: center; gap: 6px; }
#modalDescription { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.modal-preview-row { display: flex; gap: 10px; }
.modal-preview-thumb { flex: 1; height: 78px; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, var(--primary-light), var(--lilac)); cursor: pointer; position: relative; transition: transform 0.2s ease; }
.modal-preview-thumb:hover { transform: scale(1.04); }
.modal-preview-thumb img { width: 100%; height: 100%; object-fit: cover; }
.modal-preview-thumb.active { outline: 2px solid var(--primary); outline-offset: 2px; }
.modal-booking-form { background: #f8f9fa; border-radius: 16px; padding: 14px; }
.modal-form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.modal-form-group { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.modal-form-group label { font-size: 0.7rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; }
.modal-form-group input, .modal-form-group select { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-bg); border-radius: 10px; font-size: 0.85rem; font-family: var(--font-body); color: var(--ink); background: var(--white); outline: none; }
.modal-reserve-btn { width: 100%; border: none; background: var(--primary); color: white; padding: 16px; border-radius: 16px; font-weight: 700; font-size: 1rem; transition: background-color 0.2s ease; margin-top: 20px; }
.modal-reserve-btn:hover { background: var(--primary-dark); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.section-title-mobile { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }

.dt-riu-badges-mobile { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.dt-riu-badges-mobile span { border: 1px solid #333; padding: 4px 12px; border-radius: 20px; font-size: 0.65rem; font-weight: 600; }
.dt-riu-grid-mobile { display: flex; gap: 15px; align-items: center; background: #f8f9fa; padding: 15px; border-radius: 18px; }
.dt-riu-grid-mobile img { width: 100px; height: 100px; object-fit: cover; border-radius: 12px; }
.dt-riu-grid-mobile p { font-size: 0.8rem; color: #333; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.dt-mobile-booking-form { background: #f8f9fa; border-radius: 18px; padding: 16px; margin-top: 15px; }
.dt-mobile-booking-title { font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.dt-mobile-booking-title i { color: var(--primary); }
.dt-mobile-form-row { display: flex; gap: 10px; margin-bottom: 10px; }
.dt-form-group-mobile { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.dt-form-group-mobile label { font-size: 0.7rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 5px; }
.dt-form-group-mobile input, .dt-form-group-mobile select { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-bg); border-radius: 10px; font-size: 0.85rem; font-family: var(--font-body); color: var(--ink); background: var(--white); outline: none; }
.dt-btn-gold-full-mobile { width: 100%; background: #E6C696; border: none; padding: 13px; border-radius: 10px; font-weight: 700; color: #1A1A1A; font-size: 0.9rem; margin-top: 4px; transition: background-color 0.2s ease; }
.dt-btn-gold-full-mobile:hover { background: #d4b07f; }
.btn-whatsapp { background: #25D366 !important; color: #fff !important; }
.btn-whatsapp:hover { background: #1ebd5a !important; }

.dt-faq-item-mobile { border-bottom: 1px solid #eee; }
.dt-faq-question-mobile { width: 100%; background: none; border: none; padding: 15px 0; font-size: 0.9rem; font-weight: 600; display: flex; justify-content: space-between; align-items: center; text-align: left; }
.dt-faq-icon-mobile { font-weight: bold; transition: transform 0.3s; flex-shrink: 0; margin-left: 10px; }
.dt-faq-item-mobile.is-open .dt-faq-icon-mobile { transform: rotate(180deg); }
.dt-faq-answer-mobile { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.dt-faq-answer-mobile p { padding: 0 0 15px 0; font-size: 0.85rem; color: #555; line-height: 1.55; margin: 0; }
.dt-faq-item-mobile.is-open .dt-faq-answer-mobile { max-height: 320px; }

.dt-discover-hero-mobile { position: relative; margin-bottom: 1.9rem; padding: 0; }

/* HERO MOBILE */
.resto-hero-wrapper { position: relative; width: calc(100% + 2.7rem); margin: -1rem -1.35rem 1.5rem; }
.resto-hero-media { position: relative; width: 100%; height: 300px; overflow: hidden; background: var(--gray-bg); }
.resto-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block; }
.resto-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0.55) 100%); }

.typewriter-container { position: absolute; inset: 0; z-index: 3; display: flex; align-items: center; justify-content: center; padding: 1.5rem 2.1rem; text-align: center; }
.typewriter-container .typewriter-text { max-width: 280px; display: inline-block; }
.typewriter-text {
  display: inline;
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 5.6vw, 1.85rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  line-height: 1.45;
}
.typewriter-cursor { display: inline-block; width: 2px; height: 0.8em; background: #fff; margin-left: 2px; vertical-align: text-bottom; animation: cursorBlink 0.7s ease-in-out infinite; }
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

@media (max-width: 768px) { .typewriter-text { font-size: clamp(1.2rem, 5.8vw, 1.65rem); } }
@media (max-width: 380px) { .typewriter-text { font-size: clamp(1.1rem, 6vw, 1.45rem); } }

.resto-header-card { position: relative; z-index: 2; margin: -60px 1.35rem 0; background: #fff; border-radius: 20px; padding: 15px; box-shadow: 0 8px 30px rgba(0,0,0,0.15); }
.resto-header-top { display: flex; gap: 15px; align-items: flex-start; }
.resto-avatar { width: 70px; height: 70px; border-radius: 12px; overflow: hidden; flex-shrink: 0; }
.resto-avatar img { width: 100%; height: 100%; object-fit: cover; }
.resto-avatar.is-logo { background: #fff; padding: 8px; display: flex; align-items: center; justify-content: center; border: 1px solid #eee; }
.resto-avatar.is-logo img { object-fit: contain; width: 100%; height: 100%; }
.resto-header-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.resto-header-info p { font-size: 0.8rem; color: #888; }
.resto-rating-row { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: 0.8rem; font-weight: 600; }
.resto-stars { color: #F5A623; }
.resto-reviews { color: #888; font-weight: 400; }
.resto-header-bottom { margin-top: 12px; border-top: 1px solid #eee; padding-top: 12px; }
.resto-hours { font-size: 0.75rem; color: #666; margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.resto-actions { display: flex; gap: 10px; }
.resto-action-btn { flex: 1; background: #f8f9fa; border: none; border-radius: 8px; padding: 8px; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* VIDÉOS MOBILE */
.mobile-video-explainers { margin-bottom: 1.5rem; }
.mobile-video-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 1rem; background: #111; height: 210px; }
.mobile-video-card video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mobile-video-card-fallback { display: none; }
.mobile-video-card.video-error .mobile-video-card-fallback { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mobile-video-card.video-error video { display: none; }
.mobile-video-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(16,16,16,0.78) 100%); pointer-events: none; }
.mobile-video-card-label { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2; color: #fff; pointer-events: none; }
.mobile-video-card-label h4 { font-size: 0.98rem; font-weight: 700; margin-bottom: 2px; color: #fff; }
.mobile-video-card-label p { font-size: 0.75rem; color: rgba(255,255,255,0.85); }

.discover-hero-bg-mobile { position: relative; width: 100%; height: 350px; border-radius: var(--radius-lg); overflow: hidden; }
.discover-hero-bg-mobile img { width: 100%; height: 100%; object-fit: cover; }
.discover-hero-overlay-mobile { position: absolute; inset: 0; background: rgba(0,0,0,0.55); z-index: 1; }
.discover-hero-content-mobile { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; text-align: center; color: #fff; }
.discover-hero-content-mobile .discover-eyebrow { display: block; font-size: 0.72rem; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 6px; }
.discover-hero-content-mobile h2 { font-size: 1.8rem; font-weight: 500; line-height: 1.15; margin-bottom: 15px; color: #fff; }
.discover-hero-content-mobile p { font-size: 0.9rem; line-height: 1.6; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

/* ==========================================================================
   RESTAURANT — Mobile
   ========================================================================== */
.resto-status-wrap { display: flex; justify-content: center; margin-top: 15px; }
.resto-status-badge { display: inline-block; padding: 6px 20px; border-radius: 20px; font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; }
.resto-status-badge.is-open { background: #28a745; color: #fff; }
.resto-status-badge.is-closed { background: #dc3545; color: #fff; }
.resto-tabs-container { display: flex; background: #f1f1f1; border-radius: 8px; margin: 15px 0; overflow: hidden; }
.resto-tab { flex: 1; background: transparent; border: none; padding: 12px 5px; font-size: 0.75rem; font-weight: 600; color: #555; transition: background-color 0.2s ease, color 0.2s ease; text-align: center; }
.resto-tab.is-active { background: #fff; color: #000; box-shadow: 0 -2px 4px rgba(0,0,0,0.05); }
.resto-panel { display: none; }
.resto-panel.is-active { display: block; }
.resto-about-text { padding: 20px 0; color: #555; font-size: 0.9rem; line-height: 1.65; }
.resto-order-header h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 15px; }
.resto-search-bar { display: flex; background: #f8f9fa; border-radius: 8px; overflow: hidden; margin-bottom: 15px; border: 1px solid #eee; }
.resto-search-bar input { flex: 1; border: none; padding: 12px; background: transparent; outline: none; font-size: 0.9rem; min-width: 0; }
.resto-search-btn { background: transparent; border: none; padding: 0 15px; color: #999; border-left: 1px solid #eee; }
.resto-cat-filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 10px; margin-bottom: 15px; scrollbar-width: none; }
.resto-cat-filters::-webkit-scrollbar { display: none; }
.resto-cat-btn { flex-shrink: 0; background: #f8f9fa; border: 1px solid #eee; border-radius: 20px; padding: 8px 16px; font-size: 0.74rem; font-weight: 600; color: #555; transition: background-color 0.2s ease, color 0.2s ease; }
.resto-cat-btn.is-active { background: #FFC107; border-color: #FFC107; color: #000; }

.resto-menu-group { margin-bottom: 22px; }
.resto-group-title { font-size: 0.95rem; font-weight: 700; color: var(--terracotta); padding-bottom: 8px; border-bottom: 2px solid #FFC107; margin-bottom: 4px; }

.resto-no-results { display: none; flex-direction: column; align-items: center; text-align: center; padding: 26px 15px; background: #f8f9fa; border-radius: var(--radius-md); margin-bottom: 20px; }
.resto-no-results i { font-size: 1.6rem; color: var(--terracotta); margin-bottom: 8px; }
.resto-no-results p { font-size: 0.85rem; color: #666; }

.resto-plat-card { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; cursor: pointer; }
.resto-plat-card:hover { background: #fafafa; }
.resto-plat-left { flex: 1; padding-right: 10px; }
.resto-plat-left h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.resto-plat-badge { display: inline-block; background: #E63946; color: #fff; font-size: 0.6rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 4px; }
.resto-plat-desc { font-size: 0.75rem; color: #888; line-height: 1.4; margin-bottom: 5px; }
.resto-plat-right { display: flex; flex-direction: column; align-items: center; min-width: 84px; }
.resto-plat-img { width: 70px; height: 70px; border-radius: 10px; overflow: hidden; margin-bottom: 5px; background: #f1f1f1; }
.resto-plat-img img { width: 100%; height: 100%; object-fit: cover; }
.resto-plat-price { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.resto-add-btn { background: #FFC107; border: none; border-radius: 6px; padding: 5px 14px; font-size: 0.7rem; font-weight: 700; transition: transform 0.15s ease; }
.resto-add-btn:active { transform: scale(0.95); }

/* PANIER */
.resto-cart-box { margin-top: 25px; background: #f8f9fa; border-radius: 16px; padding: 16px; border: 1px solid #eee; }
.cart-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.cart-empty { color: #999; font-size: 0.85rem; margin: 0; }
.cart-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 6px 0; font-size: 0.88rem; }
.cart-row-name { min-width: 0; }
.cart-row-qty { color: #888; }
.cart-row-right { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.cart-row-remove { background: none; border: none; color: #c0392b; font-size: 0.9rem; padding: 2px 4px; line-height: 1; }
.cart-total-row { border-top: 1px solid #ddd; margin: 10px 0; padding-top: 10px; display: flex; justify-content: space-between; font-weight: 700; }

/* MODALE PLAT */
.plat-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 20px; animation: fadeIn 0.25s ease; }
.plat-modal-overlay.is-open { display: flex; }
.plat-modal-content { background: #fff; width: 100%; max-width: 400px; border-radius: 20px; overflow: hidden; animation: slideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1); max-height: 90vh; overflow-y: auto; overscroll-behavior: contain; }
.plat-modal-img { width: 100%; height: 230px; position: relative; background: #f1f1f1; }
.plat-modal-img img { width: 100%; height: 100%; object-fit: cover; }
.plat-modal-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; background: rgba(255,255,255,0.85); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: #333; z-index: 2; }
.plat-modal-body { padding: 20px; }
.plat-modal-title { font-size: 1.2rem; font-weight: 700; text-align: center; margin-bottom: 18px; }
.plat-modal-title::after { content: ''; display: block; width: 40px; height: 3px; background: #FFC107; margin: 8px auto 0; }
.plat-modal-label { font-size: 0.85rem; font-weight: 700; margin: 15px 0 5px; color: #111; }
.plat-modal-text { font-size: 0.9rem; color: #666; line-height: 1.5; margin-bottom: 10px; }
.plat-modal-footer { background: #fff; padding: 15px 20px 20px; border-top: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.plat-qty-control { display: flex; align-items: center; gap: 12px; background: #f8f9fa; padding: 4px 12px; border-radius: 8px; }
.plat-qty-btn { background: #fff; border: 1px solid #ddd; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.plat-qty-value { font-weight: 700; font-size: 1rem; min-width: 20px; text-align: center; }
.plat-total-price { font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.plat-add-cart-btn { background: #FFC107; border: none; padding: 10px 22px; border-radius: 8px; font-weight: 700; flex: 1; min-width: 150px; }

/* ==========================================================================
   PRÉLOADER
   ========================================================================== */
.app-preloader { position: fixed; inset: 0; z-index: 100000; display: flex; align-items: center; justify-content: center; background: #fff; transition: opacity 0.6s ease, visibility 0.6s ease; }
.app-preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 24px; }
.preloader-logo { width: 110px; height: 110px; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(0,0,0,0.1)); animation: preloaderPulse 1.8s ease-in-out infinite; border-radius: 20px; }
.preloader-title { font-family: var(--font-display); color: #101010; text-align: center; font-size: 1rem; letter-spacing: 0.3em; font-weight: 600; }
.preloader-title span { display: block; font-size: 1.35rem; font-weight: 800; color: var(--terracotta); letter-spacing: 0.14em; margin-top: 6px; }
.preloader-bar-track { width: 210px; height: 4px; background: rgba(0,0,0,0.1); border-radius: 999px; overflow: hidden; margin-top: 6px; }
.preloader-bar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--terracotta), #F5C119); border-radius: 999px; transition: width 0.25s ease; }
.preloader-percent { color: #555; font-size: 0.75rem; letter-spacing: 0.12em; font-weight: 600; }
@keyframes preloaderPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
body.is-preloading { overflow: hidden; }

/* ==========================================================================
   BOUTON WHATSAPP FLOTTANT
   ========================================================================== */
.fab-whatsapp-wrap { position: fixed; bottom: 20px; right: 20px; z-index: 9998; display: flex; align-items: center; gap: 10px; }
.fab-whatsapp-global { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #fff; color: #25D366; box-shadow: 0 6px 20px rgba(0,0,0,0.18); transition: transform 0.2s ease; flex-shrink: 0; }
.fab-whatsapp-global:hover { transform: scale(1.06); color: #25D366; }
.fab-whatsapp-global i { font-size: 1.9rem; line-height: 1; }
.wa-bubble { background: var(--white); color: var(--ink); font-size: 0.78rem; font-weight: 600; padding: 10px 16px; border-radius: var(--radius-pill); box-shadow: 0 6px 18px rgba(0,0,0,0.15); white-space: nowrap; opacity: 0; transform: translateX(8px); transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none; }
.wa-bubble.is-visible { opacity: 1; transform: translateX(0); }

@media (max-width: 991px) {
  .fab-whatsapp-wrap { bottom: calc(var(--nav-h) + 26px + env(safe-area-inset-bottom, 0px)); right: 16px; }
  .fab-whatsapp-global { width: 48px; height: 48px; }
  .fab-whatsapp-global i { font-size: 1.6rem; }
  .wa-bubble { font-size: 0.7rem; padding: 8px 14px; max-width: 180px; white-space: normal; }
}

/* ==========================================================================
   LOCALISATION & PAIEMENT (mobile)
   ========================================================================== */
.dt-localisation-section-mobile { margin-bottom: 1.5rem; }
.dt-localisation-section-mobile .section-title-row { justify-content: center; margin-bottom: 0.85rem; }
.loc-map-wrapper { position: relative; border-radius: var(--radius-lg); overflow: hidden; width: 100%; height: 220px; background: var(--gray-bg); }
.loc-map-wrapper iframe { position: relative; z-index: 1; width: 100%; height: 100%; border: 0; display: block; }

.dt-payment-section-mobile { margin-bottom: 1.5rem; }
.payment-wrapper { background: #fff; border-radius: 18px; border: 1px solid #eee; padding: 20px; }
.payment-icons-row { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 20px; }
.payment-icon-box { flex: 1; height: 54px; border-radius: 10px; display: flex; align-items: center; justify-content: center; border: 1px solid #eee; background: #fff; padding: 8px; font-weight: 800; font-size: 0.8rem; color: #333; position: relative; }
.payment-icon-box img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.payment-icon-box.is-cash { flex-direction: column; gap: 3px; font-size: 0.6rem; font-weight: 700; color: #444; }
.payment-icon-box.is-cash i { font-size: 1.25rem; color: var(--terracotta); }
.payment-icon-box.is-soon { opacity: 0.55; filter: grayscale(0.5); }
.payment-soon-tag { position: absolute; top: -8px; right: -6px; background: #cda45e; color: #fff; font-size: 0.52rem; font-weight: 700; padding: 2px 6px; border-radius: 8px; text-transform: uppercase; white-space: nowrap; }
.payment-note { font-size: 0.72rem; color: #888; margin-top: 10px; display: flex; align-items: flex-start; gap: 6px; line-height: 1.5; }
.payment-note i { margin-top: 2px; flex-shrink: 0; color: var(--terracotta); }

.credit-card-wrapper { position: relative; margin: 15px 0 28px; }
.credit-card-mockup { background: linear-gradient(135deg, #00D2FF, #3A7BD5); border-radius: 16px; padding: 20px; color: #fff; box-shadow: 0 6px 20px rgba(0,114,255,0.3); position: relative; }
.cc-chip { position: absolute; top: 20px; left: 20px; font-size: 1.5rem; }
.cc-brand { position: absolute; top: 20px; right: 20px; font-weight: 700; font-size: 1.2rem; letter-spacing: 1px; }
.cc-number { font-size: 1.15rem; letter-spacing: 2px; margin: 35px 0 15px; }
.cc-row { display: flex; justify-content: space-between; font-size: 0.85rem; gap: 10px; }
.cc-row div { flex: 1; }
.cc-row small { opacity: 0.8; display: block; margin-bottom: 2px; }
.cc-row span { font-weight: 700; }
.cc-finish-btn { width: 100%; background: linear-gradient(90deg, #00C6FF, #0072FF); border: none; padding: 15px; border-radius: 12px; color: #fff; font-weight: 700; font-size: 1rem; margin-top: 10px; }

.dt-payment-section-pc { padding: 40px 0; background: #fff; }
.dt-payment-section-pc .payment-wrapper { max-width: 600px; margin: 0 auto; }

/* ==========================================================================
   AVIS
   ========================================================================== */
.dt-reviews-section-mobile { margin-bottom: 1.5rem; }
.review-empty-state { background: #f8f9fa; border-radius: 18px; padding: 30px 20px; text-align: center; margin-bottom: 16px; }
.review-empty-left { text-align: left; }
.review-empty-state i { font-size: 2rem; color: var(--terracotta); margin-bottom: 10px; display: block; }
.review-empty-state p { font-size: 0.85rem; color: #666; line-height: 1.6; }

.review-form { background: #fff; border: 1px solid #eee; border-radius: 18px; padding: 18px; display: flex; flex-direction: column; }
.review-form label { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); margin: 10px 0 6px; }
.review-form label:first-of-type { margin-top: 0; }
.review-form input[type="text"], .review-form textarea {
  border: 1px solid var(--gray-bg); border-radius: 10px; padding: 10px 12px;
  font-family: inherit; font-size: 0.88rem; color: var(--ink); outline: none; resize: vertical;
  background: var(--white); width: 100%;
}
.review-form input[type="text"]:focus, .review-form textarea:focus { border-color: var(--primary); }
.review-form button { margin-top: 16px; }
.review-star-picker { display: flex; gap: 8px; font-size: 1.6rem; color: #ddd; }
.review-star-picker i { cursor: pointer; transition: color 0.15s ease, transform 0.1s ease; }
.review-star-picker i.is-active, .review-star-picker i.bi-star-fill { color: #F5A623; }
.review-star-picker i:hover { transform: scale(1.12); }

/* ==========================================================================
   VERSION ORDINATEUR
   ========================================================================== */
.desktop-site { display: none; }

@media (min-width: 992px) {
  .phone-frame { display: none !important; }
  .desktop-site { display: block; }

  .dt-header-curved { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; justify-content: center; }
  .dt-nav-container { background: #f4f4f0; border-radius: 0 0 24px 24px; padding: 10px 40px; display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1280px; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
  .dt-logo { display: flex; align-items: center; gap: 10px; }
  .dt-logo-img { height: 68px; width: auto; object-fit: contain; }
  .dt-nav-links { display: flex; gap: 30px; }
  .dt-nav-links a { font-size: 0.9rem; font-weight: 500; color: #333; }
  .dt-nav-right { display: flex; align-items: center; gap: 12px; }
  .dt-notif-wrap { position: relative; }
  .dt-icon-btn { position: relative; width: 42px; height: 42px; border-radius: 50%; border: 1px solid #ddd; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; color: #333; transition: background-color 0.2s ease, color 0.2s ease; }
  .dt-btn-outline { border: 1px solid #333; padding: 8px 20px; border-radius: 30px; font-weight: 500; font-size: 0.9rem; color: var(--ink); display: flex; align-items: center; gap: 6px; transition: background-color 0.2s ease, color 0.2s ease; }
  .dt-btn-outline:hover { background: #333; color: #fff; }

  .dt-hero-pill-wrap { display: flex; flex-direction: column; gap: 14px; }
  .dt-pill-form { display: flex; align-items: center; background: #fff; border-radius: 999px; box-shadow: 0 14px 40px rgba(16,16,16,0.12); padding: 6px; gap: 2px; flex-wrap: wrap; }
  .dt-pill-field { display: flex; align-items: center; gap: 10px; padding: 10px 16px; flex: 1 1 110px; min-width: 100px; }
  .dt-pill-field i { color: var(--primary); font-size: 1.05rem; flex-shrink: 0; }
  .dt-pill-field label { display: block; font-size: 0.65rem; font-weight: 700; color: #999; letter-spacing: 0.04em; margin-bottom: 2px; }
  .dt-pill-field input, .dt-pill-field select { border: none; background: transparent; font-size: 0.83rem; font-weight: 600; color: var(--ink); outline: none; padding: 0; font-family: var(--font-body); width: 100%; }
  .dt-pill-static { font-size: 0.83rem; font-weight: 600; color: var(--ink); }
  .dt-pill-divider { width: 1px; height: 30px; background: #eee; flex-shrink: 0; }
  .dt-pill-submit-btn { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background: var(--primary); color: #fff; border: none; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; transition: background-color 0.2s ease; margin-left: 4px; }
  .dt-pill-room-select { width: 100%; max-width: 380px; padding: 12px 18px; border-radius: 14px; border: 1px solid #ececec; background: #fff; font-size: 0.85rem; font-family: var(--font-body); color: var(--ink); outline: none; box-shadow: 0 4px 14px rgba(16,16,16,0.05); }

  .dt-hotels-section { padding: 50px 0; background: #f8f8f8; }
  .dt-section-title { font-family: 'Outfit', sans-serif; font-size: 2.4rem; font-weight: 600; text-align: center; margin-bottom: 28px; }
  .dt-section-title-sm { font-size: 1.8rem; }
  .dt-section-title-left { text-align: left; margin-bottom: 8px; }
  .dt-carousel-wrapper { position: relative; overflow: hidden; max-width: 1100px; margin: 0 auto; }
  .dt-carousel-track { display: flex; gap: 24px; padding-bottom: 20px; scrollbar-width: none; touch-action: pan-y; }
  .dt-hotel-card { position: relative; flex: 0 0 320px; background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.08); cursor: pointer; transition: transform 0.3s ease; }
  .dt-hotel-card:hover { transform: translateY(-8px); }
  .dt-hotel-img { position: relative; height: 280px; }
  .dt-hotel-img img { width: 100%; height: 100%; object-fit: cover; }
  .dt-hotel-badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,0.95); padding: 6px 14px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; display: flex; align-items: center; gap: 6px; }
  .dt-hotel-badge i { color: #F5A623; }
  .dt-hotel-availability { position: absolute; top: 16px; right: 16px; color: #fff; padding: 3px 12px; border-radius: 12px; font-size: 0.7rem; font-weight: 700; z-index: 2; }
  .dt-hotel-info { padding: 20px 22px; display: flex; justify-content: space-between; align-items: flex-end; }
  .dt-hotel-left h4 { font-size: 1.1rem; font-weight: 600; margin: 0 0 6px; color: #1A1A1A; }
  .dt-hotel-left p { font-size: 0.85rem; color: #888; margin: 0; display: flex; align-items: center; gap: 8px; }
  .dt-hotel-right { text-align: right; flex-shrink: 0; }
  .dt-price { display: block; font-weight: 700; font-size: 1.2rem; color: #1A1A1A; }

  .dt-riu-section { padding: 50px 0; background: #f8f9fa; }
  .dt-riu-header { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
  .dt-riu-logo { background: var(--terracotta); color: #fff; font-weight: 900; padding: 8px 12px; border-radius: 8px; font-size: 1.2rem; }
  .dt-riu-location { font-size: 1rem; font-weight: 500; color: #333; display: flex; align-items: center; gap: 5px; }
  .dt-riu-title { font-size: 2.4rem; font-weight: 700; margin-bottom: 20px; }
  .dt-riu-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
  .dt-riu-badges span { border: 1px solid #333; padding: 8px 18px; border-radius: 30px; font-size: 0.8rem; font-weight: 600; }
  .dt-riu-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; }
  .dt-riu-photos { display: flex; gap: 15px; margin-bottom: 25px; }
  .dt-riu-photos img { flex: 1; height: 200px; object-fit: cover; border-radius: 12px; }
  .dt-riu-left h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 15px; line-height: 1.4; }
  .dt-riu-left p { font-size: 1rem; color: #555; line-height: 1.6; }
  .dt-riu-right { background: #fff; padding: 30px; border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
  .dt-riu-info-box { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #eee; }
  .dt-riu-info-col h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 15px; }
  .dt-riu-contact-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #333; margin-bottom: 10px; }
  .dt-riu-contact-item i { color: #555; font-size: 1.1rem; }
  .dt-riu-map-section h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 10px; }
  .dt-riu-address { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; margin-bottom: 15px; }
  .dt-riu-map iframe { width: 100%; height: 180px; border-radius: 12px; border: 0; }

  .dt-delivery-section { padding: 40px 0; background: var(--white); }
  .dt-delivery-layout { display: grid; grid-template-columns: 1fr 2fr 1fr; gap: 20px; align-items: center; }
  .dt-chef-side { display: flex; justify-content: center; align-items: flex-end; height: 400px; }
  .dt-chef-side img { max-height: 100%; width: auto; object-fit: contain; border-radius: 20px; }
  .dt-delivery-content { text-align: center; padding: 0 20px; }
  .dt-delivery-content h2 { font-size: 2.1rem; font-weight: 700; margin-bottom: 10px; }
  .dt-delivery-sub { font-size: 1.05rem; color: #555; margin-bottom: 30px; }
  .dt-delivery-form { display: flex; flex-direction: column; align-items: center; gap: 15px; max-width: 600px; margin: 0 auto 30px; }
  .dt-delivery-form select { width: 100%; padding: 12px 18px; border: 1px solid #FFC107; border-radius: 8px; font-size: 1rem; background: #fff; font-family: var(--font-body); }
  .dt-delivery-input-group { display: flex; width: 100%; border: 1px solid #FFC107; border-radius: 8px; overflow: hidden; background: #fff; }
  .dt-delivery-input-group i { display: flex; align-items: center; padding-left: 15px; color: #888; font-size: 1.2rem; }
  .dt-delivery-input-group input { flex: 1; border: none; padding: 12px; outline: none; font-size: 1rem; min-width: 0; font-family: var(--font-body); }
  .dt-delivery-input-group button { background: #FFC107; border: none; padding: 0 30px; color: #1A1A1A; font-weight: 700; font-size: 1rem; transition: background-color 0.2s ease; }
  .dt-delivery-input-group button:hover { background: #e6a800; }
  .dt-delivery-slogan { font-size: 1.4rem; font-weight: 800; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
  .slogan-green { color: #28a745; }
  .slogan-orange { color: #FFC107; }
  .slogan-red { color: #dc3545; }

  .dt-discover-hero-section { padding: 60px 0; background: #fdfcf9; }
  .discover-hero-heading { max-width: 680px; margin: 0 auto 36px; text-align: center; }
  .discover-eyebrow { display: block; font-size: 0.8rem; letter-spacing: 0.16em; color: var(--terracotta); margin-bottom: 12px; }
  .discover-hero-heading h2 { font-size: 2.2rem; font-weight: 500; line-height: 1.2; margin-bottom: 14px; }
  .discover-hero-heading p { font-size: 1.02rem; line-height: 1.7; color: #555; }
  .discover-hero-video-wrap { position: relative; width: 100%; max-width: 1100px; margin: 0 auto; height: 520px; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); background: #111; }
  .discover-hero-video-wrap video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .discover-hero-bg-fallback { display: none; }
  .discover-hero-video-wrap.video-error .discover-hero-bg-fallback { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .discover-hero-video-wrap.video-error video { display: none; }

  .dt-faq-section { position: relative; padding: 50px 0 30px; background: var(--white); max-width: 900px; margin: 0 auto; }
  .dt-faq-item { border-bottom: 1px solid #e0e0e0; }
  .dt-faq-question { width: 100%; background: none; border: none; padding: 20px 0; font-size: 1rem; font-weight: 600; color: #111; display: flex; justify-content: space-between; align-items: center; text-align: left; transition: color 0.2s ease; }
  .dt-faq-icon { font-size: 1.2rem; transition: transform 0.3s ease; font-weight: bold; }
  .dt-faq-item.is-open .dt-faq-icon { transform: rotate(180deg); }
  .dt-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .dt-faq-answer p { padding: 0 0 20px; font-size: 0.95rem; color: #555; line-height: 1.6; margin: 0; }
  .dt-faq-item.is-open .dt-faq-answer { max-height: 300px; }

  .dt-delivery-content .menu-whatsapp-btn { margin: 4px auto 0; max-width: 340px; }

  .dt-footer { position: relative; color: #eee; padding: 60px 0 20px; margin-top: 20px; overflow: hidden; isolation: isolate; }
  .dt-footer-bg { position: absolute; inset: 0; z-index: -2; }
  .dt-footer-bg img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); }
  .dt-footer::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0.97) 100%); }
  .dt-footer-content { position: relative; }
  .dt-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; margin: 0 auto; }
  .dt-footer-col h4 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
  .dt-footer-col p { font-size: 0.9rem; line-height: 1.6; margin: 0 0 5px; color: #e4e4e4; }
  .dt-footer-col i { margin-right: 8px; color: var(--terracotta); }
  .dt-footer-bottom { text-align: center; border-top: 1px solid rgba(255,255,255,0.15); margin-top: 30px; padding-top: 20px; font-size: 0.8rem; color: #bbb; }

  /* Modale chambre — boîte centrée sur PC */
  .modal-overlay { align-items: center; padding: 20px; }
  .modal-content-box {
    max-width: 760px; width: 100%;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 340px 1fr;
    padding: 0;
    max-height: 88vh;
  }
  .modal-topbar { grid-column: 1 / -1; }
  .modal-image-wrapper { height: 100%; padding: 0; min-height: 320px; }
  .modal-image-wrapper img { border-radius: 0; height: 100%; }
  .modal-text-content { padding: 22px 28px 28px; overflow-y: auto; }

  /* Carrousels plats PC */
  .dt-resto-plats-section { padding: 50px 0; background: #fff; }
  .dt-plats-carousel-header { display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
  .dt-plats-carousel-header-second { margin-top: 50px; }
  .dt-plat-carousel-track { display: flex; gap: 24px; overflow-x: auto; padding: 6px 6px 20px; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
  .dt-plat-carousel-track::-webkit-scrollbar { display: none; }
  .dt-plat-carousel-card { flex: 0 0 270px; background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .dt-plat-carousel-card:hover { transform: translateY(-6px); box-shadow: 0 14px 28px rgba(0,0,0,0.12); }
  .dt-plat-carousel-img { position: relative; width: 100%; height: 180px; background: #f1f1f1; }
  .dt-plat-carousel-img img { width: 100%; height: 100%; object-fit: cover; }
  .dt-plat-carousel-badge { position: absolute; top: 12px; left: 12px; background: #E63946; color: #fff; font-size: 0.65rem; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
  .dt-plat-carousel-body { padding: 16px; text-align: center; }
  .dt-plat-carousel-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; min-height: 2.4em; display: flex; align-items: center; justify-content: center; }
  .dt-plat-carousel-price { display: block; font-weight: 700; font-size: 1.05rem; color: var(--primary); margin-bottom: 12px; }
  .plat-order-btn-vibrant { width: 100%; background: #FFC107; border: none; padding: 10px 14px; border-radius: 10px; font-weight: 700; font-size: 0.85rem; color: #1A1A1A; transition: background-color 0.2s ease; }
  .plat-order-btn-vibrant:hover { background: #e6ac00; }

  .resto-cart-box { max-width: 620px; margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   IDENTITÉ DESKTOP
   ========================================================================== */
@media (min-width: 992px) {
  .desktop-site {
    --dt-cream: #FFFFFF;
    --dt-cream-deep: #FFFFFF;
    --dt-ink: #1B1B1B;
    --dt-ink-soft: #5E564A;
    --dt-terracotta: #D9822B;
    --dt-terracotta-dark: #B3651A;
    --dt-gold: #CDA45E;
    --dt-line: rgba(27,27,27,0.1);
    background: #FFFFFF;
    color: var(--dt-ink);
  }
  .desktop-site h1, .desktop-site h2, .desktop-site h3, .desktop-site h4 { font-family: 'Fraunces', serif; color: var(--dt-ink); letter-spacing: -0.01em; }
  .desktop-site .dt-section-eyebrow { display: inline-block; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; color: var(--dt-terracotta); margin-bottom: 14px; }
  .desktop-site .dt-nav-container { background: rgba(247,239,225,0.94); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--dt-line); border-radius: 0; }
  .desktop-site .dt-nav-links a { font-family: var(--font-body); color: var(--dt-ink); position: relative; }
  .desktop-site .dt-nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px; background: var(--dt-terracotta); transition: width 0.25s ease; }
  .desktop-site .dt-nav-links a:hover::after { width: 100%; }
  .desktop-site .dt-icon-btn { border-color: var(--dt-line); color: var(--dt-ink); }
  .desktop-site .dt-icon-btn:hover { background: var(--dt-terracotta); color: #fff; border-color: var(--dt-terracotta); }
  .desktop-site .dt-btn-outline { border: 1px solid var(--dt-ink); color: var(--dt-ink); }
  .desktop-site .dt-btn-outline:hover { background: var(--dt-terracotta); border-color: var(--dt-terracotta); color: #fff; }
  .desktop-site .notif-clear-btn { color: var(--dt-terracotta); }
  .desktop-site .notif-item.is-unread { background: rgba(217,130,43,0.12); }
  .desktop-site .notif-item-icon { color: var(--dt-terracotta); }

  .desktop-site .dt-hero-banner { position: relative; width: 100%; height: 78vh; min-height: 540px; max-height: 780px; overflow: hidden; }
  .desktop-site .dt-hero-banner-media { position: absolute; inset: 0; background: #111; }
  .desktop-site .dt-hero-banner-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .desktop-site .dt-hero-banner-fallback { display: none; }
  .desktop-site .dt-hero-banner-media.video-error .dt-hero-banner-fallback { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .desktop-site .dt-hero-banner-media.video-error video { display: none; }
  .desktop-site .dt-hero-banner-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,20,12,0.35) 0%, rgba(27,20,12,0.15) 38%, rgba(27,20,12,0.62) 100%); }
  .desktop-site .dt-hero-banner-content { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 0 30px; }
  .desktop-site .dt-hero-sun { font-size: 2.1rem; color: var(--dt-gold); margin-bottom: 18px; }
  .desktop-site .dt-hero-wordmark { font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(2.7rem, 6vw, 5.4rem); line-height: 1.08; letter-spacing: 0.03em; color: #fff; text-shadow: 0 10px 40px rgba(0,0,0,0.35); max-width: 92vw; min-height: 1.2em; }
  .desktop-site .dt-hero-cursor { display: inline-block; width: 4px; height: 0.8em; background: #fff; margin-left: 6px; vertical-align: text-bottom; animation: cursorBlink 0.7s ease-in-out infinite; }
  .desktop-site .dt-hero-rule { width: 64px; height: 2px; background: var(--dt-gold); margin: 22px auto 16px; }
  .desktop-site .dt-hero-banner-sub { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.18em; color: rgba(255,255,255,0.9); }

  .desktop-site .dt-hero-book { background: var(--dt-cream); padding: 0; position: relative; }
  .desktop-site .dt-hero-pill-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; transform: translateY(-46px); }
  .desktop-site .dt-pill-form { background: #fff; box-shadow: 0 18px 44px rgba(27,27,27,0.18); max-width: 980px; width: 100%; }
  .desktop-site .dt-pill-field i { color: var(--dt-terracotta); }
  .desktop-site .dt-pill-submit-btn { background: var(--dt-terracotta); }
  .desktop-site .dt-pill-submit-btn:hover { background: var(--dt-terracotta-dark); }
  .desktop-site .dt-pill-room-select { border-color: var(--dt-line); }

  .desktop-site .dt-concept-section { background: var(--dt-cream); padding: 20px 0 70px; }
  .desktop-site .dt-concept-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
  .desktop-site .dt-concept-photo-col { position: relative; }
  .desktop-site .dt-concept-photo { width: 100%; height: 420px; object-fit: cover; border-radius: 4px; box-shadow: 0 24px 54px rgba(27,27,27,0.18); }
  .desktop-site .dt-concept-title { font-family: 'Fraunces', serif; font-weight: 400; font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
  .desktop-site .dt-concept-desc { font-family: var(--font-body); font-size: 1rem; line-height: 1.75; color: var(--dt-ink-soft); max-width: 62ch; margin-bottom: 28px; }
  .desktop-site .dt-concept-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; margin-bottom: 30px; }
  .desktop-site .dt-concept-fact { display: flex; align-items: flex-start; gap: 12px; }
  .desktop-site .dt-concept-fact i { font-size: 1.15rem; color: var(--dt-terracotta); margin-top: 3px; flex-shrink: 0; }
  .desktop-site .dt-concept-fact strong { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
  .desktop-site .dt-concept-fact span { display: block; font-size: 0.82rem; color: var(--dt-ink-soft); line-height: 1.5; }
  .desktop-site .dt-concept-photo-small { width: 220px; height: 150px; object-fit: cover; border-radius: 4px; box-shadow: 0 14px 30px rgba(27,27,27,0.16); }
  .desktop-site .dt-seal-badge { position: absolute; bottom: -30px; left: -30px; width: 128px; height: 128px; z-index: 3; animation: dtSealSpin 26s linear infinite; }
  .desktop-site .dt-seal-badge svg { width: 100%; height: 100%; }
  .desktop-site .dt-seal-badge text { fill: var(--dt-ink); font-family: var(--font-body); }
  .desktop-site .dt-seal-badge svg path#sealCircle { fill: none; }
  .desktop-site .dt-seal-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin: auto; background: var(--dt-terracotta); border-radius: 50%; color: #fff; font-size: 1.1rem; box-shadow: 0 6px 18px rgba(154,71,38,0.4); }
  @keyframes dtSealSpin { to { transform: rotate(360deg); } }

  .desktop-site .dt-section-title { font-family: 'Fraunces', serif; font-weight: 500; }
  .desktop-site .dt-hotels-section { background: var(--dt-cream-deep); }
  .desktop-site .dt-hotel-card { border-radius: 6px 28px 6px 28px; box-shadow: 0 10px 30px rgba(34,28,21,0.1); }
  .desktop-site .dt-hotel-left h4 { font-family: 'Fraunces', serif; }
  .desktop-site .dt-price { color: var(--dt-terracotta-dark); }
  .desktop-site .dt-riu-section { background: var(--dt-cream); }
  .desktop-site .dt-riu-logo { background: var(--dt-terracotta); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; padding: 0; font-family: 'Fraunces', serif; }
  .desktop-site .dt-riu-title { font-style: italic; font-weight: 500; }
  .desktop-site .dt-riu-badges span { border: 1px solid var(--dt-terracotta); color: var(--dt-terracotta-dark); font-family: var(--font-body); }
  .desktop-site .dt-riu-photos img { border-radius: 4px 22px 4px 22px; }
  .desktop-site .dt-riu-right { background: #fff; border: 1px solid var(--dt-line); box-shadow: 0 10px 30px rgba(34,28,21,0.06); }
  .desktop-site .dt-riu-contact-item i { color: var(--dt-terracotta); }
  .desktop-site .dt-discover-hero-section { background: var(--dt-cream); }
  .desktop-site .discover-hero-video-wrap { border-radius: 6px 46px 6px 46px; }
  .desktop-site .discover-eyebrow { color: var(--dt-terracotta); }
  .desktop-site .discover-hero-heading h2 { font-family: 'Fraunces', serif; font-weight: 400; }
  .desktop-site .discover-hero-heading p { color: var(--dt-ink-soft); }
  .desktop-site .dt-payment-section-pc { background: #fff; }
  .desktop-site .payment-wrapper { background: #fff; border-color: var(--dt-line); border-radius: 6px 24px 6px 24px; }
  .desktop-site #dtResto { background: #fff; position: relative; }
  .desktop-site #dtResto::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent, var(--dt-line), transparent); }
  .desktop-site .dt-delivery-section { background: #fff; }
  .desktop-site .dt-delivery-sub { color: var(--dt-ink-soft); }
  .desktop-site .dt-delivery-form select, .desktop-site .dt-delivery-input-group { border-color: var(--dt-line); }
  .desktop-site .dt-delivery-slogan .slogan-green { color: #4E8D5C; }
  .desktop-site .dt-delivery-slogan .slogan-orange { color: var(--dt-terracotta); }
  .desktop-site .dt-delivery-slogan .slogan-red { color: #B3432E; }
  .desktop-site .dt-resto-plats-section { background: #fff; }
  .desktop-site .dt-plat-carousel-card { border-radius: 6px 22px 6px 22px; border: 1px solid var(--dt-line); box-shadow: none; }
  .desktop-site .dt-plat-carousel-price { color: var(--dt-terracotta-dark); }
  .desktop-site .resto-cart-box { background: #fff; border: 1px solid var(--dt-line); }
  .desktop-site .dt-faq-section { background: #fff; max-width: 860px; }
  .desktop-site .dt-faq-question:hover { color: var(--dt-terracotta); }
  .desktop-site .dt-faq-item { border-bottom-color: var(--dt-line); }
  .desktop-site .dt-reviews-section-pc { background: var(--dt-cream-deep); padding: 60px 0 70px; }
  .desktop-site .dt-reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; max-width: 1000px; margin: 0 auto; }
  .desktop-site .dt-reviews-intro .review-empty-state { background: #fff; border: 1px solid var(--dt-line); }
  .desktop-site .dt-review-form-pc { border-radius: 6px 26px 6px 26px; border-color: var(--dt-line); }
  .desktop-site .dt-review-form-pc button.dt-btn-gold-full-mobile { background: var(--dt-terracotta); color: #fff; }
  .desktop-site .dt-review-form-pc button.dt-btn-gold-full-mobile:hover { background: var(--dt-terracotta-dark); }
  .desktop-site .dt-footer::before { background: linear-gradient(180deg, rgba(34,28,21,0.55) 0%, rgba(34,28,21,0.88) 60%, rgba(34,28,21,0.98) 100%); }
  .desktop-site .dt-footer-col i { color: var(--dt-gold); }
  .desktop-site .dt-btn-gold-full-mobile { background: var(--dt-gold); }
}

/* Largeurs intermédiaires */
@media (min-width: 992px) and (max-width: 1180px) {
  .desktop-site .dt-reviews-grid { grid-template-columns: 1fr; gap: 30px; }
  .desktop-site .dt-concept-grid { grid-template-columns: 1fr; gap: 36px; }
  .desktop-site .dt-concept-photo { height: 320px; }
  .desktop-site .dt-seal-badge { width: 96px; height: 96px; }
  .dt-riu-grid { grid-template-columns: 1fr; gap: 30px; }
  .dt-delivery-layout { grid-template-columns: 1fr; }
  .dt-chef-side { display: none; }
}