/* ============================================================
   DAY EXPERIENCE — Home V2 (maquette validée)
   Preprod preview uniquement
   ============================================================ */

:root {
  --red: #D01F3C;
  --red-bg: #fff0f2;
  --ink: #1a1a2e;
  --muted: #74748a;
  --border: #eaeaf2;
  --white: #fff;
  --off: #f6f6fa;
  --gold: #f5a623;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--white); color: var(--ink); -webkit-font-smoothing: antialiased; }

/* ── TOPBAR ── */
.dv2-topbar {
  background: var(--ink); color: rgba(255,255,255,.45);
  font-size: 11.5px; padding: 6px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.dv2-topbar a { color: inherit; text-decoration: none; transition: color .15s; }
.dv2-topbar a:hover { color: #fff; }
.dv2-topbar strong { color: rgba(255,255,255,.85); }

/* ── NAV ── */
.dv2-nav {
  background: var(--white); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  position: sticky; top: 0; z-index: 300; gap: 28px;
}
.dv2-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.dv2-logo-mark {
  width: 32px; height: 32px; background: var(--red);
  border-radius: 50% 50% 50% 0; display: grid; place-items: center;
  color: #fff; font-size: 14px; font-weight: 700; font-family: 'DM Serif Display', serif;
}
.dv2-logo-name { font-family: 'DM Serif Display', serif; font-size: 19px; color: var(--ink); line-height: 1; }
.dv2-logo-name em { color: var(--red); font-style: normal; }
.dv2-logo-sub { font-size: 9px; color: var(--muted); letter-spacing: 1.6px; text-transform: uppercase; margin-top: 2px; }
.dv2-nav-links { display: flex; gap: 2px; list-style: none; align-items: center; flex-shrink: 0; }
.dv2-nav-links a {
  color: var(--muted); font-size: 13px; font-weight: 500; text-decoration: none;
  padding: 7px 10px; border-radius: 8px; transition: color .18s, background .18s; white-space: nowrap;
}
.dv2-nav-links a:hover { color: var(--ink); background: var(--off); }
.dv2-nav-links .dv2-cart { background: var(--red); color: #fff !important; padding: 8px 15px; border-radius: 9px; font-weight: 600; }

/* ── HERO ── */
.dv2-hero {
  position: relative; height: 580px; overflow: visible;
  display: flex; align-items: center; justify-content: center;
}
.dv2-hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,15,30,.55) 0%, rgba(15,15,30,.72) 100%),
    url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1800&q=85') center/cover no-repeat;
}
.dv2-hero-inner {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  padding: 0 24px; max-width: 780px;
}
.dv2-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.8); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; backdrop-filter: blur(8px);
}
.dv2-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: 68px; color: #fff; line-height: 1.05; letter-spacing: -.5px;
}
.dv2-hero-title em { font-style: italic; color: #ffc8d0; }
.dv2-hero-subtitle { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 520px; }

/* ── Search Form V2 ── */
.dv2-sf-wrap { width: 100%; max-width: 660px; position: relative; }
.dv2-sf-bar {
  display: flex; background: #fff;
  border-radius: 14px; border: 2.5px solid transparent;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  overflow: hidden; transition: border-color .2s;
}
.dv2-sf-wrap.open .dv2-sf-bar {
  border-color: var(--red); border-radius: 14px 14px 0 0; overflow: visible;
}
.dv2-sf-bar-icon { display: flex; align-items: center; padding: 0 14px 0 18px; flex-shrink: 0; }
.dv2-sf-input-wrap { flex: 1; min-width: 0; display: flex; align-items: center; padding: 16px 0; }
.dv2-sf-input {
  border: none; background: transparent; outline: none;
  font-size: 15px; font-family: 'Inter', sans-serif;
  font-weight: 500; color: var(--ink); width: 100%;
}
.dv2-sf-input::placeholder { color: #c0c0d0; font-weight: 400; }
.dv2-sf-btn {
  background: var(--red); color: #fff; border: none; padding: 0 28px;
  font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  white-space: nowrap; flex-shrink: 0; transition: background .2s; min-height: 54px;
}
.dv2-sf-btn:hover { background: #b01830; }
.dv2-sf-btn svg { display: block; }
.dv2-sf-dd {
  display: none; position: absolute; top: 100%; left: 0; right: 0; z-index: 999;
  background: #fff; border: 2.5px solid var(--red);
  border-top: 1px solid #f0f0f4; border-radius: 0 0 16px 16px;
  overflow: hidden; box-shadow: 0 24px 48px rgba(0,0,0,.18);
  text-align: left; flex-direction: column;
}
.dv2-sf-wrap.open .dv2-sf-dd { display: flex; }
.dv2-sf-scroll-area {
  overflow-y: auto;
  max-height: 364px;
  scrollbar-width: thin;
  scrollbar-color: #d0d0e0 transparent;
}
.dv2-sf-scroll-area::-webkit-scrollbar { width: 4px; }
.dv2-sf-scroll-area::-webkit-scrollbar-track { background: transparent; }
.dv2-sf-scroll-area::-webkit-scrollbar-thumb { background: #d0d0e0; border-radius: 4px; }
.dv2-sf-section {
  display: flex; align-items: center; padding: 10px 16px 0;
}
.dv2-sf-section-lbl {
  font-size: 9px; font-weight: 700; letter-spacing: 1.3px;
  text-transform: uppercase; color: #c8c8d8; white-space: nowrap; padding-right: 10px;
}
.dv2-sf-section-line { flex: 1; height: 1px; background: #f0f0f8; }
.dv2-sf-item {
  display: flex; align-items: center; gap: 13px;
  padding: 9px 16px; cursor: pointer; transition: background .1s;
}
.dv2-sf-item:hover, .dv2-sf-item.dv2-active { background: #fafafa; }
.dv2-sf-icon {
  width: 34px; height: 34px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dv2-sf-ic-dest { background: #eef4ff; }
.dv2-sf-ic-dest svg { stroke: #2255cc; }
.dv2-sf-ic-prod { background: #fff8f0; }
.dv2-sf-ic-prod svg { stroke: #c06000; }
.dv2-sf-body { flex: 1; min-width: 0; }
.dv2-sf-name {
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.dv2-sf-name mark { background: none; color: var(--red); font-weight: 700; }
.dv2-sf-sub { font-size: 11px; color: var(--muted); margin-top: 1px; }
.dv2-sf-right { flex-shrink: 0; text-align: right; }
.dv2-sf-count { font-size: 11px; color: #bbb; white-space: nowrap; display: block; }
.dv2-sf-price { font-size: 12px; font-weight: 700; color: var(--red); white-space: nowrap; display: block; }
.dv2-sf-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; margin-top: 4px;
  border-top: 1.5px solid var(--border); background: #fafafa;
}
.dv2-sf-hint { font-size: 11px; color: #ccc; display: flex; gap: 3px; align-items: center; }
.dv2-sf-hint kbd {
  background: #eee; border: 1px solid #ddd; border-radius: 4px;
  padding: 1px 5px; font-size: 10px; color: #888;
}
.dv2-sf-all { font-size: 12px; font-weight: 700; color: var(--red); cursor: pointer; }
.dv2-sf-empty { padding: 16px; text-align: center; font-size: 13px; color: var(--muted); }

.dv2-hero-stats-row { display: flex; gap: 32px; }
.dv2-hero-stat-item { text-align: center; }
.dv2-hero-stat-num { font-family: 'DM Serif Display', serif; font-size: 28px; color: #fff; line-height: 1; }
.dv2-hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.55); margin-top: 2px; letter-spacing: .3px; }
.dv2-hero-sep { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* ── SECTIONS COMMUNES ── */
.dv2-section { padding: 72px 0; }
.dv2-container { max-width: 1380px; margin: 0 auto; padding: 0 48px; }
.dv2-section-header { margin-bottom: 36px; }
.dv2-section-header h2 { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--ink); line-height: 1.1; margin-bottom: 8px; }
.dv2-section-header p { font-size: 14px; color: var(--muted); }
.dv2-section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }

/* ── CITY CARDS (Top destinations) ── */
.dv2-city-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.dv2-city-card { cursor: pointer; transition: transform .25s; text-decoration: none; color: inherit; display: block; }
.dv2-city-card:hover { transform: translateY(-4px); }
.dv2-city-card-photo { border-radius: 14px; overflow: hidden; height: 150px; position: relative; margin-bottom: 10px; }
.dv2-city-card-photo-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .5s ease; }
.dv2-city-card:hover .dv2-city-card-photo-bg { transform: scale(1.07); }
.dv2-city-card-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.dv2-city-card-count { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── ATTRACTIONS ── */
.dv2-attr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dv2-attr-card { position: relative; border-radius: 14px; overflow: hidden; height: 200px; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.dv2-attr-card:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,.15); }
.dv2-attr-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s; filter: brightness(.75); }
.dv2-attr-card:hover .dv2-attr-bg { transform: scale(1.05); }
.dv2-attr-label {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-size: 24px; color: #fff;
  text-align: center; padding: 16px; line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ── DESTINATIONS GRID ── */
.dv2-dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dv2-dest-card { display: block; text-decoration: none; position: relative; border-radius: 16px; overflow: hidden; height: 240px; cursor: pointer; transition: transform .3s, box-shadow .3s; }
.dv2-dest-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.18); }
.dv2-dest-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.dv2-dest-card:hover .dv2-dest-card-bg { transform: scale(1.06); }
.dv2-dest-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,30,.75) 0%, rgba(15,15,30,.1) 55%, transparent 100%); }
.dv2-dest-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 20px 16px; }
.dv2-dest-city { font-family: 'DM Serif Display', serif; font-size: 26px; color: #fff; line-height: 1; margin-bottom: 5px; }
.dv2-dest-meta { display: flex; align-items: center; justify-content: space-between; }
.dv2-dest-count { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }
.dv2-dest-arrow { width: 28px; height: 28px; background: rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; color: #fff; font-size: 13px; backdrop-filter: blur(4px); }

/* ── FEATURES STRIP ── */
.dv2-features-strip { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 44px 0; }
.dv2-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.dv2-feat-item { text-align: center; }
.dv2-feat-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--red-bg); display: grid; place-items: center; font-size: 22px; margin: 0 auto 14px; }
.dv2-feat-title { font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 5px; }
.dv2-feat-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── EXPLORER PAR CATÉGORIE ── */
.dv2-explorer-section { background: var(--white); padding: 72px 0; }
.dv2-explorer-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 28px; overflow-x: auto; scrollbar-width: none;
}
.dv2-explorer-tabs::-webkit-scrollbar { display: none; }
.dv2-etab {
  padding: 14px 24px; font-size: 14px; font-weight: 500;
  color: var(--muted); cursor: pointer; white-space: nowrap;
  border-bottom: 2.5px solid transparent; margin-bottom: -2px;
  transition: color .18s, border-color .18s;
}
.dv2-etab.active { color: var(--ink); border-bottom-color: var(--ink); font-weight: 600; }
.dv2-etab:hover:not(.active) { color: var(--ink); }
.dv2-explorer-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; }
.dv2-explorer-item { padding: 12px 8px 12px 0; cursor: pointer; border-bottom: 1px solid var(--border); transition: background .15s; }
.dv2-explorer-item:hover .dv2-ei-name { color: var(--red); }
.dv2-ei-name { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 3px; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dv2-ei-count { font-size: 12px; color: var(--muted); font-weight: 300; }

/* ── BLOG ── */
.dv2-blog-section { background: var(--off); padding: 72px 0; }
.dv2-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dv2-blog-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: box-shadow .25s, transform .25s; background: #fff; }
.dv2-blog-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.dv2-blog-img { height: 190px; background-size: cover; background-position: center; transition: transform .5s; overflow: hidden; }
.dv2-blog-card:hover .dv2-blog-img { transform: scale(1.04); }
.dv2-blog-body { padding: 18px 20px 20px; }
.dv2-blog-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); background: var(--red-bg); padding: 3px 9px; border-radius: 20px; margin-bottom: 10px; }
.dv2-blog-title { font-weight: 700; font-size: 14.5px; color: var(--ink); line-height: 1.45; margin-bottom: 8px; }
.dv2-blog-excerpt { font-size: 12.5px; color: var(--muted); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ── CTA BANNER ── */
.dv2-cta-banner { background: var(--ink); padding: 64px 0; text-align: center; }
.dv2-cta-banner h2 { font-family: 'DM Serif Display', serif; font-size: 42px; color: #fff; margin-bottom: 12px; line-height: 1.1; }
.dv2-cta-banner p { font-size: 15px; color: rgba(255,255,255,.55); margin-bottom: 32px; }
.dv2-cta-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--red); color: #fff; border: none; padding: 15px 36px; border-radius: 100px; font-size: 14.5px; font-family: 'Inter', sans-serif; font-weight: 600; cursor: pointer; transition: all .22s; }
.dv2-cta-btn:hover { background: #b01830; transform: scale(1.03); }
.dv2-cta-btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(255,255,255,.7); border: 1.5px solid rgba(255,255,255,.25); padding: 15px 36px; border-radius: 100px; font-size: 14.5px; font-family: 'Inter', sans-serif; font-weight: 500; cursor: pointer; transition: all .22s; margin-left: 12px; }
.dv2-cta-btn-outline:hover { border-color: #fff; color: #fff; }

/* ── FOOTER ── */
.dv2-footer { background: var(--ink); padding: 56px 48px 32px; }
.dv2-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dv2-f-logo { font-family: 'DM Serif Display', serif; font-size: 20px; color: #fff; margin-bottom: 10px; }
.dv2-f-logo em { color: var(--red); font-style: normal; }
.dv2-f-desc { font-size: 12.5px; color: rgba(255,255,255,.35); line-height: 1.75; margin-bottom: 20px; }
.dv2-f-contact { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 2; }
.dv2-f-contact a { color: rgba(255,255,255,.6); text-decoration: none; }
.dv2-f-heading { font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 14px; }
.dv2-f-links { display: flex; flex-direction: column; gap: 9px; }
.dv2-f-links a { font-size: 13px; color: rgba(255,255,255,.5); text-decoration: none; transition: color .18s; }
.dv2-f-links a:hover { color: #fff; }
.dv2-footer-bottom { padding-top: 24px; display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,.25); }

/* ── UTILITIES ── */
.dv2-see-all { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; transition: gap .2s; white-space: nowrap; }
.dv2-see-all:hover { gap: 10px; }
.dv2-off-bg { background: var(--off); }

/* ── TOPBAR MOBILE ── */
.dv2-topbar-mobile { display: none; background: var(--ink); padding: 8px 16px; flex-direction: column; gap: 4px; }
.dv2-topbar-mobile-line1 { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.85); }
.dv2-topbar-mobile-line1 strong { color: #fff; }
.dv2-topbar-mobile-line2 { display: flex; gap: 12px; font-size: 11px; color: rgba(255,255,255,.45); }
.dv2-topbar-mobile-line2 a, .dv2-topbar-mobile-line1 a { color: inherit; text-decoration: none; }

/* ── HAMBURGER ── */
.dv2-hamburger { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 40px; height: 40px; background: transparent; border: none; cursor: pointer; padding: 4px; border-radius: 8px; flex-shrink: 0; }
.dv2-hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; transform-origin: center; }
.dv2-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dv2-hamburger.open span:nth-child(2) { opacity: 0; }
.dv2-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DRAWER ── */
.dv2-mobile-drawer { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100%; background: #fff; z-index: 500; transition: right .3s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; box-shadow: -4px 0 32px rgba(0,0,0,.15); }
.dv2-mobile-drawer.open { right: 0; }
.dv2-mobile-drawer-inner { display: flex; flex-direction: column; height: 100%; padding-top: 80px; overflow-y: auto; }
.dv2-mobile-nav-links { list-style: none; padding: 0 0 16px; border-bottom: 1px solid var(--border); margin: 0 0 16px; }
.dv2-mobile-nav-links li a { display: block; padding: 14px 24px; font-size: 15px; font-weight: 500; color: var(--ink); text-decoration: none; transition: background .15s, color .15s; }
.dv2-mobile-nav-links li a:hover { background: var(--off); color: var(--red); }
.dv2-mobile-cart-link { color: var(--red) !important; font-weight: 600 !important; }
.dv2-mobile-drawer-footer { display: flex; flex-direction: column; padding: 0 24px 32px; gap: 10px; }
.dv2-mobile-drawer-footer a { font-size: 13px; color: var(--muted); text-decoration: none; }

/* ── OVERLAY ── */
.dv2-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 499; opacity: 0; pointer-events: none; transition: opacity .3s; }
.dv2-mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ── ANIMATIONS ── */
@keyframes dv2FadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.dv2-hero-eyebrow { animation: dv2FadeUp .5s ease .1s both; }
.dv2-hero-title    { animation: dv2FadeUp .5s ease .2s both; }
.dv2-hero-subtitle { animation: dv2FadeUp .5s ease .3s both; }
.dv2-sf-wrap       { animation: dv2FadeUp .5s ease .4s both; }
.dv2-hero-stats-row{ animation: dv2FadeUp .5s ease .5s both; }

/* ── BADGE PREVIEW ── */
.dv2-preview-badge {
  position: fixed; bottom: 16px; right: 16px; z-index: 9999;
  background: var(--ink); color: #fff; font-size: 11px; font-weight: 600;
  padding: 8px 14px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  letter-spacing: .5px;
}

/* ============================================================
   RESPONSIVE — TABLETTE (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .dv2-topbar { padding: 6px 24px; }
  .dv2-nav { padding: 0 24px; gap: 16px; }
  .dv2-nav-links a { padding: 7px 8px; font-size: 12px; }
  .dv2-container { padding: 0 24px; }
  .dv2-section { padding: 52px 0; }
  .dv2-hero { height: 500px; }
  .dv2-hero-title { font-size: 50px; }
  .dv2-city-grid { grid-template-columns: repeat(3, 1fr); }
  .dv2-attr-grid { grid-template-columns: repeat(2, 1fr); }
  .dv2-dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dv2-features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dv2-explorer-grid { grid-template-columns: repeat(4, 1fr); }
  .dv2-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .dv2-footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dv2-section-header-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .dv2-topbar { display: none; }
  .dv2-topbar-mobile { display: flex; }
  .dv2-nav { padding: 0 16px; height: 56px; }
  .dv2-logo-sub { display: none; }
  .dv2-nav-links { display: none; }
  .dv2-hamburger { display: flex; }
  .dv2-container { padding: 0 16px; }
  .dv2-section { padding: 40px 0; }
  .dv2-hero { height: auto; min-height: 480px; padding: 80px 0 48px; align-items: flex-start; }
  .dv2-hero-inner { padding: 0 16px; gap: 20px; }
  .dv2-hero-title { font-size: 36px; }
  .dv2-hero-subtitle { font-size: 14px; }
  .dv2-sf-bar { border-radius: 12px; }
  .dv2-sf-wrap.open .dv2-sf-bar { border-radius: 12px 12px 0 0; }
  .dv2-sf-bar-icon { padding: 0 10px 0 14px; }
  .dv2-sf-input { font-size: 14px; }
  .dv2-sf-btn { padding: 0 16px; font-size: 13px; min-height: 50px; }
  .dv2-hero-stats-row { gap: 16px; }
  .dv2-hero-stat-num { font-size: 22px; }
  .dv2-hero-sep { display: none; }
  .dv2-section-header h2 { font-size: 26px; }
  .dv2-section-header-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .dv2-city-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dv2-city-card-photo { height: 110px; }
  .dv2-attr-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .dv2-attr-card { height: 140px; }
  .dv2-attr-label { font-size: 18px; }
  .dv2-dest-grid { grid-template-columns: 1fr; gap: 14px; }
  .dv2-dest-card { height: 200px; }
  .dv2-features-strip { padding: 32px 0; }
  .dv2-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .dv2-feat-icon { width: 44px; height: 44px; font-size: 18px; }
  .dv2-etab { padding: 12px 14px; font-size: 13px; }
  .dv2-explorer-grid { grid-template-columns: repeat(2, 1fr); }
  .dv2-blog-grid { grid-template-columns: 1fr; gap: 16px; }
  .dv2-cta-banner { padding: 48px 0; }
  .dv2-cta-banner h2 { font-size: 28px; }
  .dv2-cta-btn, .dv2-cta-btn-outline { display: block; width: calc(100% - 32px); margin: 0 16px; text-align: center; justify-content: center; }
  .dv2-cta-btn-outline { margin-left: 16px; margin-top: 12px; }
  .dv2-footer { padding: 40px 16px 24px; }
  .dv2-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .dv2-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .dv2-hero-title { font-size: 30px; }
  .dv2-city-grid { grid-template-columns: repeat(2, 1fr); }
  .dv2-attr-grid { grid-template-columns: 1fr; }
  .dv2-attr-card { height: 160px; }
  .dv2-features-grid { grid-template-columns: 1fr; }
  .dv2-explorer-grid { grid-template-columns: 1fr; }
  .dv2-section-header h2 { font-size: 22px; }
  .dv2-cta-banner h2 { font-size: 24px; }
}

/* ── jQuery UI Autocomplete — style V2 ── */
.ui-autocomplete {
  max-height: 320px;
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26,26,46,.12);
  background: var(--white);
  padding: 6px 0;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.ui-menu-item-wrapper {
  padding: 10px 18px;
  color: var(--ink);
  cursor: pointer;
  border-radius: 0;
  transition: background .15s;
}
.ui-menu-item-wrapper.ui-state-active,
.ui-menu-item-wrapper:hover {
  background: var(--red-bg);
  color: var(--red);
  border: none;
  margin: 0;
}

.dv2-explorer-item,
.dv2-explorer-item:hover,
.dv2-explorer-item:focus,
.dv2-explorer-item:visited {
    text-decoration: none !important;
}

a.dv2-explorer-item { text-decoration: none!important; color: inherit!important; }

/* ── ACTIVITÉS INCONTOURNABLES ── */
.container { max-width: 1380px; margin: 0 auto; padding: 0 48px; }
.section-header h2 { font-family: 'DM Serif Display', serif; font-size: 38px; color: var(--ink); line-height: 1.1; margin-bottom: 8px; }
.section-header p { font-size: 14px; color: var(--muted); }
.see-all { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--red); text-decoration: none; transition: gap .2s; white-space: nowrap; }
.see-all:hover { gap: 10px; }

.act-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.act-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  display: flex; flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  cursor: pointer;
}
.act-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.act-photo { position: relative; height: 190px; overflow: hidden; flex-shrink: 0; }
.act-photo-inner { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform .5s; }
.act-card:hover .act-photo-inner { transform: scale(1.05); }
.act-body { padding: 14px 16px 8px; flex: 1; }
.act-title {
  font-size: 14px; font-weight: 600; color: var(--ink);
  line-height: 1.45; margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.act-meta-row { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.act-duration-txt { font-size: 12px; color: var(--muted); }
.act-price-section { padding: 10px 16px 14px; border-top: 1px solid var(--border); }
.act-price-label { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.act-price-value { display: flex; align-items: baseline; gap: 2px; }
.act-price-num { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--red); line-height: 1; }
.act-price-sym { font-size: 14px; color: var(--red); font-weight: 600; }

@media (max-width: 1024px) { .container { padding: 0 24px; } .act-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .container { padding: 0 16px; } .act-grid { grid-template-columns: 1fr; } }

/* ══════════════════════════
   PRODUCT CARDS — Activités incontournables
   (grande photo, titre, durée + drapeaux, prix rouge)
══════════════════════════ */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.prod-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow .25s, transform .25s;
  border: 1px solid var(--border);
}
.prod-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.10);
  transform: translateY(-4px);
}
.prod-photo {
  height: 210px;
  overflow: hidden;
}
.prod-photo-inner {
  width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform .5s ease;
}
.prod-card:hover .prod-photo-inner { transform: scale(1.06); }
.prod-body {
  padding: 14px 16px 18px;
  display: flex; flex-direction: column; gap: 8px;
}
.prod-title {
  font-size: 14px; font-weight: 700; color: var(--ink);
  line-height: 1.45;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-meta {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.prod-duration { font-size: 13px; color: var(--muted); }
.prod-flags { font-size: 17px; letter-spacing: 2px; }
.prod-price { font-size: 13px; color: var(--ink); margin-top: 2px; }
.prod-price strong { font-size: 18px; font-weight: 700; color: var(--red); }
.prod-price span { font-size: 12px; color: var(--muted); }

/* ══════════════════════════
   ACTIVITÉS INCONTOURNABLES 
══════════════════════════ */
.act-meta-row {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; margin-bottom: 0;
}
.act-duration-txt { font-size: 12.5px; color: var(--muted); }
.act-meta-sep { color: var(--border); font-size: 11px; }
.act-price-section {
  display: flex; align-items: baseline; gap: 6px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.act-price-label { font-size: 11px; color: var(--muted); font-weight: 400; letter-spacing: .1px; white-space: nowrap; }
.act-price-value { display: flex; align-items: baseline; gap: 1px; }
.act-price-num {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; font-weight: 400; color: var(--red); line-height: 1;
}
.act-price-sym {
  font-family: 'DM Serif Display', serif;
  font-size: 14px; font-weight: 400; color: var(--red);
}
