/* =============================================
   DELICATESSEN PARIS — CSS
   Palette: vert pâle #d4e5d0, blanc #fafaf8, vert foncé #2d5a27, noir doux #1a1a18
============================================= */

:root {
  --green-pale: #daebd5;
  --green-mid: #b8d4b2;
  --green-deep: #6b9e64;
  --green-dark: #4a7c44;
  --white: #f7f2e8;
  --cream: #efe9dc;
  --black: #1a1a18;
  --grey: #6b6b69;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

/* ======================== NAV ======================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#navbar.scrolled {
  background: rgba(250,250,248,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--white);
  transition: color 0.4s ease;
}

#navbar.scrolled .nav-logo { color: var(--green-deep); }

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-link { color: var(--black); }
.nav-link:hover { color: var(--green-mid) !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

#navbar.scrolled .nav-burger span { background: var(--black); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  display: none;
  flex-direction: column;
  padding: 24px 32px;
  gap: 20px;
  z-index: 999;
  
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ======================== HERO ======================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg-wrap {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
  filter: blur(1px) saturate(0.85);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  max-width: 860px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.hero-title .line1 {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title .line2 {
  color: var(--green-pale);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--green-pale);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 1.3s forwards;
}

.btn-hero {
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-cave {
  background: var(--green-deep);
  color: var(--white);
  border: 2px solid var(--green-deep);
}
.btn-cave:hover { background: transparent; color: var(--white); border-color: var(--white); }

.btn-place {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-place:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-mid);
  animation: scrollAnim 2s ease 2.5s infinite;
}

@keyframes scrollAnim {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ======================== SECTION LAYOUT ======================== */
#cave, #place {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#cave { background: var(--cream); }
#place { background: var(--cream); }

.shop-slide { background: var(--cream) !important; }

.section-nav {
  background: var(--green-deep);
  padding: 0 48px;
  position: sticky;
  top: 64px;
  z-index: 100;
}

.place-nav { background: var(--green-dark); }

.section-nav-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  height: 60px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.1em;
  color: var(--green-pale);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 48px;
}

.slide-tabs {
  display: flex;
  gap: 4px;
}

.tab-btn {
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.tab-btn.active { background: rgba(255,255,255,0.15); color: var(--white); }

/* ======================== SLIDER ======================== */
.slider-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  padding: 64px 64px 100px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow-y: auto;
}

.slide.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  position: relative;
}

.slide-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

/* ======================== CAVE HISTOIRE ======================== */
.cave-histoire {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cave-histoire-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a38;
  margin-bottom: 20px;
}

.cave-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-num {
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--green-deep);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

/* Cave mosaic — same layout as place mosaic */
.cave-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cave-mosaic-item { overflow: hidden; border-radius: var(--radius); }
.cave-mosaic-item.cave-big { grid-column: 1 / -1; height: 280px; }
.cave-mosaic-item.cave-vert { height: 340px; }

.cave-mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cave-mosaic-item:hover img { transform: scale(1.05); }

.cave-histoire-imgs {
  padding-bottom: 0;
}

.focus-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.focus-sub {
  font-size: 15px;
  color: var(--grey);
  margin-bottom: 36px;
  margin-top: -12px;
}

/* Swiper container */
.focus-swiper {
  position: relative;
  overflow: hidden;
}

.focus-slides-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.focus-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: 520px;
}

/* Left: bottle image */
.focus-bottle-wrap {
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  overflow: hidden;
  position: relative;
}

.focus-bottle-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}

.focus-slide:hover .focus-bottle-wrap img {
  transform: scale(1.04);
}

/* Right: info */
.focus-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.focus-num {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--green-pale);
  line-height: 1;
  margin-bottom: 8px;
}

.focus-region-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.focus-detail h3 {
  font-size: 44px;
  margin: 6px 0 8px;
  line-height: 1.1;
  color: var(--green-dark);
}

.focus-producer {
  font-size: 13px;
  color: var(--grey);
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  font-style: italic;
}

.focus-divider {
  width: 40px;
  height: 2px;
  background: var(--green-mid);
  margin-bottom: 20px;
}

.focus-long-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a38;
  margin-bottom: 20px;
}

.focus-accord {
  background: var(--green-pale);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 28px;
}

.focus-accord-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.focus-accord p {
  font-size: 13px;
  color: var(--green-dark);
  line-height: 1.6;
}

.focus-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.focus-price-big {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--green-deep);
  line-height: 1;
}

/* Focus name nav bar */
.focus-name-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  
  padding-bottom: 0;
}

.focus-name-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey);
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.focus-name-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: var(--green-deep);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.focus-name-btn.active {
  color: var(--green-dark);
  font-weight: 600;
}

.focus-name-btn.active::after {
  transform: scaleX(1);
}

.focus-name-btn:hover { color: var(--green-deep); }

.focus-name-sep {
  color: var(--green-pale);
  font-size: 18px;
  padding: 0 20px;
  user-select: none;
}

/* Focus numbers removed */
.focus-num { display: none; }

/* Focus nav (arrows/dots) removed */
.focus-nav { display: none; }

.btn-add {
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-add:hover { background: var(--green-dark); transform: scale(1.03); }

/* ======================== SHOP ======================== */
.shop-wrap { max-width: 1300px; margin: 0 auto; }
.shop-header { margin-bottom: 8px; }
.shop-sub { font-size: 15px; color: var(--grey); margin-bottom: 36px; }

.shop-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.shop-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.shop-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45,90,39,0.1);
}

.shop-item img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
  background: #ffffff;
}

.shop-item-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.shop-item-region {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.shop-item-price {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.shop-item-btn {
  width: 100%;
  padding: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.shop-item-btn:hover { background: var(--green-dark); }

/* Shop content wrapper */
.shop-content-wrap {
  position: relative;
  min-height: 400px;
}

/* Product detail panel */
.shop-detail-panel {
  display: none;
  flex-direction: column;
  gap: 0;
}

.shop-detail-panel.open {
  display: flex;
  animation: fadeUp 0.4s ease forwards;
}

.shop-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 28px;
  transition: color 0.3s ease;
}

.shop-back-btn:hover { color: var(--green-dark); }

.shop-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.shop-detail-img {
  background: #ffffff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  min-height: 360px;
}

.shop-detail-img img {
  max-height: 320px;
  width: 100%;
  object-fit: contain;
}

.shop-detail-info { display: flex; flex-direction: column; gap: 0; }

.shop-detail-region {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  width: fit-content;
}

.shop-detail-info h3 {
  font-size: 36px;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.15;
}

.shop-detail-producer {
  font-size: 13px;
  color: var(--grey);
  font-style: italic;
  margin-bottom: 16px;
}

.shop-detail-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a38;
  margin-bottom: 20px;
}

/* CART */
.cart-panel {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 140px;
}

.cart-title {
  font-family: var(--font-display);
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 16px;
}

.cart-empty {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 20px 0;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

.cart-item-name { flex: 1; color: rgba(255,255,255,0.85); }
.cart-item-qty { 
  display: flex; align-items: center; gap: 8px;
  color: var(--green-pale);
  font-size: 12px;
}

.qty-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 20px; height: 20px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 12px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.qty-btn:hover { background: rgba(255,255,255,0.2); }

.cart-item-price { font-family: var(--font-display); font-size: 16px; min-width: 50px; text-align: right; }

.cart-total-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 8px;
}

.cart-total-wrap span:last-child {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--green-pale);
}

.btn-order {
  width: 100%;
  padding: 14px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  margin-top: 8px;
  transition: all 0.3s ease;
}

.btn-order:hover { background: var(--white); }

.cart-note {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ======================== SLIDER ARROWS ======================== */
.slider-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 48px;
  background: var(--cream);
}

.place-arrows { background: var(--cream); }

.arr-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green-deep);
  background: transparent;
  color: var(--green-deep);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}

.arr-btn:hover { background: var(--green-deep); color: var(--white); }

.arr-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-pale);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background: var(--green-deep);
  width: 24px;
  border-radius: 4px;
}

/* ======================== PLACE CONCEPT ======================== */
.place-concept {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.place-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mosaic-item { overflow: hidden; border-radius: var(--radius); }
.mosaic-item.big { grid-column: 1 / -1; height: 280px; }
.mosaic-item.vert { height: 340px; }
.mosaic-item.wide { grid-column: 1 / -1; height: 240px; }

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.mosaic-item:hover img { transform: scale(1.05); }

.place-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #3a3a38;
  margin-bottom: 20px;
}

.place-vibes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.vibe-tag {
  padding: 6px 14px;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ======================== CHEF DU MOMENT ======================== */
.chef-wrap {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.chef-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.chef-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.chef-handle {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 16px;
}

.chef-handle a {
  color: var(--green-deep);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.chef-handle a:hover { color: var(--green-dark); text-decoration: underline; }

.chef-bio {
  font-size: 15px;
  line-height: 1.8;
  color: #3a3a38;
  margin-bottom: 16px;
}

/* 2 rows × 3 thumbnail grid below the text */
.chef-plats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 28px;
}

.chef-plat {
  border-radius: var(--radius);
  overflow: hidden;
}

.chef-plat img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.chef-plat:hover img { transform: scale(1.07); }

/* Tall portrait on the right */
.chef-portrait-wrap {
  position: sticky;
  top: 148px;
  border-radius: var(--radius);
  overflow: hidden;
}

.chef-portrait-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  transition: transform 0.6s ease;
}

.chef-portrait-wrap:hover img { transform: scale(1.03); }

/* ======================== CARTE INTEMPORELLE ======================== */
.carte-wrap { max-width: 1200px; margin: 0 auto; }
.carte-sub { font-size: 15px; color: var(--grey); margin-bottom: 36px; margin-top: -12px; }

.carte-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 56px;
  align-items: start;
}

.carte-section { margin-bottom: 32px; }

.carte-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 12px;
  padding-bottom: 8px;
  
}

.carte-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 9px 0;
  
  font-size: 14px;
  gap: 16px;
}

.carte-item span:first-child { color: #3a3a38; }
.carte-item span:last-child {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--green-deep);
  white-space: nowrap;
}

.carte-food-imgs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.carte-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ======================== RÉSERVATION ======================== */
.resa-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.resa-left h2 { margin-bottom: 16px; }
.resa-left > p { font-size: 15px; color: var(--grey); margin-bottom: 28px; line-height: 1.7; }

.resa-infos { margin-bottom: 28px; }
.resa-info-item {
  font-size: 14px;
  color: #3a3a38;
  padding: 8px 0;
  
  line-height: 1.5;
}

.resa-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.resa-imgs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}

.resa-form-wrap { display: flex; align-items: flex-start; }
.resa-form { width: 100%; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { margin-bottom: 20px; }

.form-group label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  transition: border-color 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-deep);
}

.form-group textarea {
  height: 90px;
  resize: vertical;
}

.btn-resa {
  width: 100%;
  padding: 16px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-resa:hover { background: var(--green-dark); transform: translateY(-1px); }

.resa-success {
  width: 100%;
  text-align: center;
  padding: 60px 32px;
}

/* ======================== INSTAGRAM ======================== */
#insta {
  background: var(--green-deep);
  padding: 80px 64px;
}

.insta-header {
  text-align: center;
  margin-bottom: 48px;
}

.insta-header h2 {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 8px;
}

.insta-header p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.insta-item {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45,90,39,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay span { color: var(--white); font-size: 14px; font-weight: 500; }

.btn-insta {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 14px 36px;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.btn-insta:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ======================== AVIS ======================== */
#avis {
  background: var(--cream);
  padding: 80px 0;
  overflow: hidden;
}

.avis-header {
  text-align: center;
  padding: 0 64px;
  margin-bottom: 48px;
}

.avis-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.global-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.stars { font-size: 18px; color: #f0b429; }
.note-num { font-family: var(--font-display); font-size: 28px; color: var(--green-deep); }
.note-sur { font-size: 13px; color: var(--grey); }

.avis-track {
  display: flex;
  gap: 24px;
  padding: 8px 64px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.avis-track::-webkit-scrollbar { display: none; }

.avis-card {
  flex: 0 0 320px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  
  scroll-snap-align: start;
}

.avis-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.avis-stars { color: #f0b429; font-size: 14px; }
.avis-name { font-size: 13px; font-weight: 600; color: var(--green-dark); }

.avis-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a48;
  font-style: italic;
  margin-bottom: 16px;
}

.avis-date {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.05em;
}

.avis-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 64px;
}

.avis-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--green-deep);
  background: transparent;
  color: var(--green-deep);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.avis-btn:hover { background: var(--green-deep); color: var(--white); }

/* ======================== CONTACT ======================== */
#contact { background: var(--white); }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  min-height: 500px;
}

.contact-block {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cave-contact { background: var(--green-deep); }
.cave-contact .contact-tag { color: var(--green-pale); }
.cave-contact h3 { color: var(--white); }
.cave-contact .contact-addr { color: rgba(255,255,255,0.8); }
.cave-contact .hours-row { border-bottom-color: rgba(255,255,255,0.15); }
.cave-contact .hours-row span { color: rgba(255,255,255,0.8); }
.cave-contact .hours-row span:last-child { color: var(--white); }
.cave-contact .hours-row.closed span { color: rgba(255,255,255,0.4); }
.cave-contact .hours-row.closed span:last-child { color: rgba(255,255,255,0.4); }
.cave-contact .contact-link { color: var(--green-pale); }
.cave-contact .contact-link:hover { color: var(--white); }
.place-contact { background: var(--white); }

.contact-block-inner { max-width: 300px; }

.contact-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
  display: block;
  margin-bottom: 12px;
}

.contact-block h3 {
  font-size: 32px;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.contact-addr {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a48;
  margin-bottom: 24px;
}

.contact-hours {
  margin-bottom: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(45,90,39,0.12);
  gap: 16px;
}

.hours-row.closed { color: var(--grey); opacity: 0.6; }
.hours-row span:last-child { font-weight: 500; color: var(--green-deep); }
.hours-row.closed span:last-child { color: var(--grey); }

.contact-link {
  display: block;
  font-size: 14px;
  color: var(--green-deep);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.contact-link:hover { color: var(--green-dark); text-decoration: underline; }

.contact-map {
  overflow: hidden;
}

.contact-map iframe { display: block; }

/* ======================== FOOTER ======================== */
.footer-bar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: var(--white); }

/* ======================== MODAL ======================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal {
  background: var(--white);
  border-radius: 8px;
  padding: 48px;
  max-width: 480px;
  width: 90%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  font-size: 18px; cursor: pointer;
  color: var(--grey);
}

.modal h3 {
  font-size: 26px;
  color: var(--green-dark);
  margin-bottom: 10px;
}

.modal > p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.6;
}

.modal-form { display: flex; flex-direction: column; gap: 14px; }

.modal-form input {
  padding: 12px 16px;
  
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}

.modal-form input:focus { border-color: var(--green-deep); }

.modal-summary {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 13px;
  line-height: 1.8;
  color: #3a3a38;
}

.btn-order-confirm {
  padding: 14px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-order-confirm:hover { background: var(--green-dark); }

/* ======================== SUCCESS ======================== */
.success-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ======================== TOAST ======================== */
.cart-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  z-index: 3000;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  white-space: nowrap;
}

.cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ======================== UTILS ======================== */
.hidden { display: none !important; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
  .cave-histoire, .place-concept, .resa-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .focus-slide { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .focus-bottle-wrap { height: 320px; }
  .focus-num { font-size: 56px; }
  .focus-detail h3 { font-size: 28px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .cart-panel { position: static; }
  .contact-split { grid-template-columns: 1fr 1fr; }
  .contact-map { display: none; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ======================== PARALLAX SCROLL ANIMATIONS ======================== */
[data-anim] {
  opacity: 0;
  will-change: transform, opacity;
}

[data-anim="fade-up"] {
  transform: translateY(48px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anim="fade-left"] {
  transform: translateX(-48px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anim="fade-right"] {
  transform: translateX(48px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anim="fade-scale"] {
  transform: scale(0.94);
  transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-anim].anim-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }
[data-delay="6"] { transition-delay: 0.6s !important; }

/* Slide title uses serif font */
.slide-title {
  font-family: var(--font-serif) !important;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

/* Titles: elegant serif for h2/h3, display for h4 labels */
h2, h3 { font-family: var(--font-serif) !important; letter-spacing: 0.01em; font-weight: 600; }
h4 { font-family: var(--font-display) !important; letter-spacing: 0.12em; }

/* Slide title stays serif */
.slide-title {
  font-family: var(--font-serif) !important;
}
.avis-card { border: none !important; box-shadow: 0 4px 24px rgba(0,0,0,0.05); }

/* Shop item lighter shadow, no border */
.shop-item { border: none !important; }

/* Focus name-nav - remove bottom border line */
.focus-name-nav { border-bottom: none !important; padding-bottom: 4px; }

/* Form inputs - remove green border */
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid rgba(0,0,0,0.1) !important;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-deep) !important;
}

/* ======================== MOBILE FIXES ======================== */

/* Hide on mobile / show only on mobile */
.mobile-hide { display: block; }
.mobile-only-show { display: none; }
.mobile-hide-soft { display: block; }

/* Parapluies image: hidden on desktop, shown after text on mobile */
.mobile-parapluies {
  display: none;
}

@media (max-width: 768px) {

  /* ---- OVERFLOW FIX: prevents horizontal scroll ---- */
  html, body { overflow-x: hidden; max-width: 100vw; }
  * { max-width: 100%; }
  [data-anim="fade-left"] { transform: translateX(0) !important; }
  [data-anim="fade-right"] { transform: translateX(0) !important; }

  /* ---- NAV ---- */
  #navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  /* ---- HERO ---- */
  .hero-content { padding: 0 24px 60px; }
  .hero-scroll { display: none; }
  .hero-btns { flex-direction: column; align-items: flex-start; }

  /* ---- SECTION NAV: center label, hide tabs on very small ---- */
  .section-nav { padding: 0 16px; }
  .section-nav-inner {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 8px;
    align-items: center;
  }
  .section-label {
    border-right: none;
    padding-right: 0;
    font-size: 15px;
    text-align: center;
    width: 100%;
  }
  .slide-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .tab-btn { padding: 6px 10px; font-size: 10px; }

  /* ---- SLIDES ---- */
  .slide { padding: 28px 20px 80px; }
  .slide-title { font-size: 26px !important; }

  /* ---- CAVE ---- */
  .cave-histoire { grid-template-columns: 1fr !important; gap: 32px; }
  .cave-histoire-text p { font-size: 14px; }
  .cave-stats { gap: 24px; }

  /* ---- FOCUS SWIPER ---- */
  .focus-slide { grid-template-columns: 1fr !important; min-height: auto; }
  .focus-bottle-wrap { height: 280px; }
  .focus-name-nav { flex-wrap: wrap; justify-content: center; gap: 4px 0; }
  .focus-name-sep { padding: 0 8px; }
  .focus-name-btn { font-size: 12px; }

  /* ---- SHOP ---- */
  .shop-layout { grid-template-columns: 1fr !important; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-detail-inner { grid-template-columns: 1fr; gap: 24px; }
  .shop-detail-img { min-height: 220px; }
  .shop-detail-info h3 { font-size: 24px; }

  /* ---- PLACE CONCEPT: keep only place1 (big) on mobile, parapluies after text ---- */
  .mobile-hide { display: none !important; }
  .mobile-hide-soft { display: none !important; }
  .mobile-only-show { display: block !important; }
  .mobile-parapluies {
    display: block;
    margin-top: 24px;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .mobile-parapluies img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
  }
  .place-mosaic {
    grid-template-columns: 1fr !important;
  }
  .mosaic-item.big { height: 220px; }
  .mosaic-item.wide { height: 200px; grid-column: auto; }
  .place-concept { grid-template-columns: 1fr !important; gap: 32px; }
  .place-text p { font-size: 14px; }

  /* ---- CARTE ---- */
  .carte-layout { grid-template-columns: 1fr; }
  .carte-food-imgs { display: grid; grid-template-columns: repeat(3, 1fr); }

  /* ---- CHEF ---- */
  .chef-wrap { grid-template-columns: 1fr !important; gap: 32px; }
  .chef-portrait-wrap { position: static; }
  .chef-plats-grid { grid-template-columns: repeat(3, 1fr); }

  /* ---- RESA ---- */
  .resa-wrap { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr; }
  .resa-imgs { display: none; }

  /* ---- INSTAGRAM ---- */
  #insta { padding: 48px 16px; }
  .insta-header { margin-bottom: 28px; padding: 0; }
  .insta-header h2 {
    font-size: 22px !important;
    text-align: center;
    word-break: break-word;
  }
  .insta-header p { font-size: 12px; text-align: center; }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }
  .btn-insta { font-size: 11px; padding: 10px 20px; }

  /* ---- AVIS ---- */
  .avis-header { padding: 0 16px; }
  .avis-track { padding: 8px 16px; }
  .avis-nav { padding: 0 16px; }

  /* ---- CONTACT ---- */
  .contact-split { grid-template-columns: 1fr !important; }
  .contact-map { display: none; }

  /* ---- FOOTER ---- */
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; padding: 16px 20px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 64px; }
  .btn-hero { padding: 12px 22px; font-size: 12px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .carte-food-imgs { display: none; }
  .focus-price-big { font-size: 32px; }
  .focus-detail h3 { font-size: 22px !important; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-plats-grid { grid-template-columns: repeat(2, 1fr); }
}
