/* =========================
   ROOT & BASE
========================= */

:root {
  --primary: #1C1C1C;
  --primary-soft: #2A2A2A;
  --off-black: #1a1a1a;
  --mosa-grey: #2d2d2d;
  --background: #F2E9DF;
  --surface: #F8F3EC;
  --accent: #B96A2E;
  --accent-hover: #9E5725;
  --roman-copper: linear-gradient(135deg, #b87333 0%, #8b4513 100%);
  --text-light: #ffffff;
  --max-width: 1200px;
  --radius: 16px;
  --announcement-offset: 36px;
}

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

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--background);
  color: var(--primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--announcement-offset, 42px);
  position: relative;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section {
  padding: 110px 0;
}


@media (max-width: 640px) {
  section {
    padding: 90px 0;
  }
}

@media (min-width: 1100px) {
  section {
    padding: 130px 0;
  }
}

/* =========================
   REVEAL ANIMATIONS (Directional & Premium)
   ========================= */
.reveal {
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Directional Starts (More pronounced "from outside" effect) */
.reveal-up {
  transform: translateY(40px);
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

/* Basic Fallback (for existing .reveal usages) */
.reveal:not([class*="reveal-"]) {
  transform: translateY(20px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0) !important;
}

/* Stagger Delays */
.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delayed {
  transition-delay: 0.15s;
}

/* Backward compatibility */
.reveal-delayed-2 {
  transition-delay: 0.25s;
}

/* Backward compatibility */

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Mobile Optimizations - Slightly softened for smaller viewports */
@media (max-width: 768px) {
  .reveal-left {
    transform: translateX(-40px);
  }

  .reveal-right {
    transform: translateX(40px);
  }

  .reveal-up {
    transform: translateY(30px);
  }
}

section[id] {
  scroll-margin-top: 155px;
  /* Adjust based on header + announcement bar height */
}

/* =========================
   AUTOCOMPLETE DROPDOWN
   ========================= */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #161514;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: none;
  border-radius: 0 0 2px 2px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.2s ease;
  font-size: 14px;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item:hover {
  background: rgba(205, 168, 122, 0.1);
  color: #cda87a;
}

.suggestion-item .suggestion-main {
  font-weight: 600;
  display: block;
}

.suggestion-item .suggestion-sub {
  font-size: 11px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  width: 100%;
  top: var(--announcement-offset, 42px);
  padding: 16px 0;
  /* Slightly tighter for premium feel */
  z-index: 2000;

  background: rgba(14, 12, 11, 0.85);
  /* Proper glassmorphism */

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

header .container {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.logo,
.logo:visited {
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 0;
}

.logo:hover,
.logo:active {
  text-decoration: none;
}

.logo-full,
.logo-mobile {
  display: block;
  width: 100%;
  height: auto;
}

.logo-full {
  max-width: 220px;
}

.logo-mobile {
  display: none;
  max-width: 200px;
}

/* =========================
   HEADER ANNOUNCEMENT
========================= */
.header-announcement {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--accent);
  color: #fff;
  padding: 8px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.header-announcement .marquee-content {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
}

.header-announcement .marquee-content span {
  display: inline-block;
  padding-right: 12px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   TOP ANNOUNCEMENT BAR
========================= */

.top-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--announcement-offset);
  background: rgba(14, 12, 10, 0.98);
  /* Solid dark for consistency across all pages */
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: rgba(248, 243, 236, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  z-index: 2001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  white-space: nowrap;
}

.top-announcement-bar i {
  margin-right: 8px;
  font-size: 14px;
  color: var(--accent);
  opacity: 0.9;
}

.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.top-announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  /* Extra gap so it doesn't collide with its twin */
  padding-right: 16px;
}

.top-announcement-inner span {
  white-space: nowrap;
}

.top-announcement-inner .separator {
  opacity: 0.4;
  font-size: 8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.takeaway-fastlane-mobile {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 12, 10, 0.98);
  color: #F8F3EC;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  border-bottom: 2px solid var(--accent);
  display: none;
}

@media (max-width: 900px) {
  .takeaway-fastlane-mobile {
    display: block;
  }
}

/* =========================
   NAVIGATION
========================= */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav a {
  position: relative;
  padding-bottom: 10px;
  text-decoration: none;
  color: var(--background);
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav-current {
  position: relative;
  padding-bottom: 10px;
  color: var(--accent);
  font-weight: 500;
  font-size: 17px;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.nav a:hover::after,
.nav a[aria-current="page"]::after,
.nav-item.is-current>a::after {
  transform: scaleX(1);
}

.nav a[aria-current="page"],
.nav-item.is-current>a {
  color: var(--accent);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item--dropdown {
  position: relative;
}

.nav-dropdown-head {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-head>a {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  color: inherit;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-dropdown-toggle span {
  display: block;
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.22s ease;
}

.nav-item--dropdown.is-open .nav-dropdown-toggle span {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  display: grid;
  gap: 4px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(28, 28, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.22),
    0 2px 10px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 50;
}

.nav-dropdown a {
  display: block;
  padding: 11px 14px;
  border-radius: 12px;
  color: rgba(248, 243, 236, 0.88);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    transform 0.22s ease;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  color: #F8F3EC;
  background: rgba(185, 106, 46, 0.14);
  transform: translateX(2px);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-item--dropdown:hover .nav-dropdown-head>a,
.nav-item--dropdown:focus-within .nav-dropdown-head>a,
.nav-item--dropdown.is-open .nav-dropdown-head>a {
  color: var(--accent);
}

.nav-item--dropdown:hover .nav-dropdown-head>a::after,
.nav-item--dropdown:focus-within .nav-dropdown-head>a::after,
.nav-item--dropdown.is-open .nav-dropdown-head>a::after {
  transform: scaleX(1);
}

.nav-item--dropdown:hover .nav-dropdown-toggle,
.nav-item--dropdown:focus-within .nav-dropdown-toggle,
.nav-item--dropdown.is-open .nav-dropdown-toggle {
  color: var(--accent);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-self: end;
  flex-shrink: 0;
  min-width: 290px;
  justify-content: flex-end;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.language-switch a {
  color: var(--background);
  opacity: 0.62;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.language-switch a:hover {
  opacity: 1;
}

.language-switch .active {
  color: var(--accent);
  opacity: 1;
  font-weight: 600;
}

.hamburger {
  display: none;
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
  padding: 0;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.8px;
  background: var(--background);
  border-radius: 999px;
  opacity: 0.96;
  transition: transform 0.48s ease, opacity 0.36s ease, top 0.48s ease;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.nav-mobile-cta,
.nav-utility-mobile,
.nav-language-mobile,
.nav-link-rieu,
.nav-logo-n,
.nav-bottom-logo {
  display: none;
}

/* Mobile */
@media (max-width: 768px) {
  header .container {
    grid-template-columns: minmax(160px, 200px) minmax(0, 1fr) auto;
    gap: 16px;
  }

  header {
    z-index: 2705;
  }

  .logo-full {
    display: none;
  }

  .logo-mobile {
    display: block;
    width: 180px;
    max-width: none;
    height: auto;
  }

  .hamburger {
    display: block;
    z-index: 2706;
  }

  .hamburger span {
    background: #F8F3EC;
  }

  .hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
  }

  .header-reserve {
    display: none;
  }

  .language-switch {
    gap: 6px;
    font-size: 12px;
  }

  .nav {
    position: fixed;
    top: calc(88px + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100dvh;
    /* Cover the entire screen height natively */
    padding: 104px 28px 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    background:
      radial-gradient(circle at 15% 15%, rgba(185, 106, 46, 0.15) 0%, rgba(185, 106, 46, 0) 40%),
      radial-gradient(circle at 85% 85%, rgba(185, 106, 46, 0.1) 0%, rgba(185, 106, 46, 0) 45%),
      linear-gradient(180deg, #1c1917 0%, #0d0b0a 100%);
    isolation: isolate;
    border: 0;
    border-radius: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1), visibility 0s 0.65s;
    /* Longer, more boutique bezier + visibility delay to mask items resetting */
    z-index: 2600;
    overflow-y: auto;
  }

  .nav.active {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition: transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
  }

  /* Target all direct children for staggered entry */
  .nav>a,
  .nav>.nav-item,
  .nav>.nav-utility-mobile,
  .nav>.nav-language-mobile,
  .nav>.nav-logo-n,
  .nav>.nav-bottom-logo {
    opacity: 0;
    transform: translateX(30px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  }

  .nav.active>a,
  .nav.active>.nav-item,
  .nav.active>.nav-utility-mobile,
  .nav.active>.nav-language-mobile,
  .nav.active>.nav-logo-n,
  .nav.active>.nav-bottom-logo {
    opacity: 1;
    transform: translateX(0);
  }

  /* Sequential delays for that beautiful staggered feel */
  .nav.active>*:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav.active>*:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav.active>*:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav.active>*:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav.active>*:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav.active>*:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav.active>*:nth-child(7) {
    transition-delay: 0.4s;
  }

  .nav.active>*:nth-child(8) {
    transition-delay: 0.45s;
  }

  .nav.active>*:nth-child(9) {
    transition-delay: 0.5s;
  }

  .nav a {
    color: var(--background);
    font-size: clamp(24px, 5.8vw, 32px);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-align: center;
    opacity: 0.94;
    padding-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    color: var(--accent);
  }

  /* N Logo styling in navigation */
  .nav-logo-n {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
    margin-bottom: 20px;
  }

  .nav-n-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0.85;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3)) drop-shadow(0 0 15px rgba(185, 106, 46, 0.2));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-n-icon:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 20px rgba(185, 106, 46, 0.3));
  }

  .nav-link-rieu {
    display: flex !important;
    /* Fix for André Rieu link visibility on mobile */
    color: var(--accent) !important;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(185, 106, 46, 0.3);
  }

  .nav-item,
  .nav-item--dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown-head {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-left: 0;
    border-radius: 999px;
    border: 0;
    background: transparent;
    color: rgba(248, 243, 236, 0.68);
    flex-shrink: 0;
  }

  .nav-dropdown-toggle span {
    width: 9px;
    height: 9px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
  }

  .nav-dropdown {
    position: static;
    display: none;
    gap: 12px;
    min-width: 0;
    margin-top: 14px;
    padding: 18px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    justify-items: center;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item--dropdown.is-open .nav-dropdown {
    display: grid;
  }

  .nav-dropdown a {
    padding: 0;
    border-radius: 0;
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    line-height: 1.35;
    color: rgba(248, 243, 236, 0.85);
    font-style: italic;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a[aria-current="page"] {
    background: transparent;
    color: var(--accent);
    transform: none;
  }

  .nav-dropdown-toggle:hover {
    color: #fff;
  }

  .nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    margin-top: 44px;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  }

  .nav-mobile-cta--accent {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
  }

  .nav-mobile-cta:not(.nav-mobile-cta--accent) {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #F8F3EC;
  }

  .nav-utility-mobile {
    display: flex;
    gap: 14px;
    margin-top: 42px;
  }

  .nav-utility-mobile a {
    color: rgba(248, 243, 236, 0.64);
    font-size: 18px;
    transition: color 0.25s ease, transform 0.25s ease;
  }

  .nav-utility-mobile a:hover {
    color: var(--accent);
    transform: translateY(-1px);
  }

/* =========================
   CHECKOUT QUANTITY CONTROLS
========================= */
.checkout-qty {
  background: rgba(255,255,255,0.02);
  padding: 2px;
  display: inline-flex;
  align-items: center;
}
.checkout-qty .qty {
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  display: inline-block;
}
.checkout-qty .qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-size: 14px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s;
}
.checkout-qty .qty-btn:hover {
  background: rgba(255,255,255,0.06);
}
.checkout-qty .qty-btn:active {
  transform: translateY(1px);
}
@media (min-width: 900px) {
  .checkout-qty .qty-btn {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

/* =========================
   CHECKOUT ACTION TOAST
========================= */
.checkout-toast-container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.checkout-toast {
  background: #161514;
  color: #F8F3EC;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: all 260ms cubic-bezier(.2,.9,.2,1);
  font-size: 13px;
  pointer-events: auto;
  max-width: 280px;
}
.checkout-toast.active {
  opacity: 1;
  transform: translateY(0);
}
.checkout-toast .toast-strong {
  font-weight: 700;
  color: var(--accent);
  margin-right: 6px;
}

  .nav-language-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 14px;
    letter-spacing: 0.06em;
    font-family: 'Inter', sans-serif;
  }

  .nav-language-mobile a {
    color: rgba(248, 243, 236, 0.5);
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.3s ease, background 0.3s ease;
    font-weight: 500;
  }

  .nav-language-mobile a:hover {
    color: #F8F3EC;
    background: rgba(255, 255, 255, 0.06);
  }

  .nav-language-mobile .active {
    color: var(--accent);
    font-weight: 600;
    background: rgba(184, 115, 51, 0.1);
  }

  .nav-language-mobile .nav-lang-divider {
    color: rgba(255, 255, 255, 0.15);
    font-weight: 300;
    user-select: none;
  }

  .nav-link-rieu {
    color: var(--accent) !important;
    letter-spacing: 0.04em;
  }

  .nav-bottom-logo {
    margin-top: auto;
    padding-top: 32px;
    opacity: 0.22;
    pointer-events: none;
  }

  .nav-logo-small {
    width: 140px;
    height: auto;
    display: block;
    filter: brightness(10);
    /* Make SVG appear white on dark bg */
  }

  .nav::after {
    display: none;
    /* Replaced by nav-bottom-logo HTML element */
  }

  .nav>* {
    position: relative;
    z-index: 1;
  }

  .header-right {
    gap: 14px;
  }
}

/* =========================
   REVEAL (boutique)
========================= */

/* Specific delay for food grid items (Synchronized with new reveal delay system) */
.food-grid .food-card:nth-child(2) {
  transition-delay: 0.1s;
}

.food-grid .food-card:nth-child(3) {
  transition-delay: 0.2s;
}

/* Parallax Effect */
.highlight-image,
.craft-image,
.craft-gallery img {
  overflow: hidden;
}

.highlight-image img,
.craft-image img,
.craft-gallery img {
  will-change: transform;
  transform: translateY(calc(var(--parallax-y, 0) * 1px)) scale(1.1);
  /* Scale slightly to prevent edges */
  transition: transform 0.1s ease-out;
  /* Smooth JS updates */
}

.highlight-card h3 {
  position: relative;
  margin-bottom: 10px;
}

.highlight-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--accent);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: left center;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .highlight-card.reveal,
  .food-card.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .highlight-image img,
  .craft-image img,
  .craft-gallery img {
    transform: none !important;
    transition: none !important;
  }

  .highlight-card h3::after {
    transition: none;
  }
}

/* =========================
   ROASTERY / KOFFIELIJN — dark boutique continuation
========================= */

.roastery {
  position: relative;
  overflow: hidden;
  background-color: var(--off-black);
  background-image:
    radial-gradient(circle at 78% 16%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 36%);
  color: #ffffff;
  padding: 125px 0;
}

.roastery::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 20%);
  pointer-events: none;
}

.roastery .container {
  position: relative;
  z-index: 2;
}

.roastery-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.roastery-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.58);
}

.roastery-content h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.06;
  color: #F8F3EC;
}

.roastery-text {
  margin: 0 0 18px;
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(248, 243, 236, 0.74);
}

.roastery-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.roastery .btn-ghost-dark {
  background: transparent;
  color: rgba(248, 243, 236, 0.92);
  border: 1px solid rgba(248, 243, 236, 0.18);
  box-shadow: none;
}

.roastery .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(248, 243, 236, 0.30);
  color: #ffffff;
}

.roastery-image {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.roastery-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .roastery-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .roastery-image img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .roastery {
    padding: 96px 0;
  }

  .roastery-text {
    font-size: 17px;
  }

  .roastery-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .roastery-actions .btn,
  .roastery-actions .btn-ghost-dark {
    width: 100%;
    text-align: center;
  }

  .roastery-image {
    border-radius: 18px;
  }

  .roastery-image img {
    min-height: 280px;
  }
}

/* =========================
   TAKE-AWAY FASTLANE
========================= */

.takeaway-fastlane-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #161412 0%, #0a0908 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 115, 51, 0.15);
}

.takeaway-fastlane-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.fastlane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.fastlane-content-box {
  max-width: 540px;
}

.fastlane-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fastlane-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.15;
  color: #F8F3EC;
  margin-bottom: 32px;
}

.fastlane-text {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248, 243, 236, 0.75);
  margin-bottom: 40px;
}

.fastlane-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.fastlane-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.fastlane-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(184, 115, 51, 0.1);
  border: 1px solid rgba(184, 115, 51, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  font-size: 20px;
}

.fastlane-feature-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #F8F3EC;
  margin-bottom: 4px;
}

.fastlane-feature-text p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(248, 243, 236, 0.55);
}

.fastlane-image-wrapper {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.fastlane-image-wrapper img {
  width: 100%;
  display: block;
  transform: scale(1.05);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-fly-particle {
  position: fixed;
  z-index: 99999;
  width: 24px;
  height: 16px;
  background: #4A2C1B;
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 2px 5px 12px rgba(0, 0, 0, 0.5), inset -3px -3px 8px rgba(0, 0, 0, 0.6), inset 2px 2px 4px rgba(255, 255, 255, 0.1);
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
  overflow: hidden;
}

.cart-fly-particle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #201007;
  border-radius: 50%;
  transform: translateY(-50%) rotate(-8deg);
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
}


.cart-bounce {
  animation: cart-bounce 0.3s ease-out;
}

@keyframes cart-bounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.fastlane-image-wrapper:hover img {
  transform: scale(1);
}

.fastlane-badge {
  position: absolute;
  bottom: 5px;
  right: -25px;
  background: var(--accent);
  color: #1A1715;
  padding: 16px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

@media (max-width: 991px) {
  .fastlane-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .fastlane-content-box {
    max-width: 100%;
    text-align: center;
  }

  .fastlane-features {
    align-items: center;
  }

  .fastlane-feature {
    text-align: left;
    max-width: 400px;
  }

  .fastlane-badge {
    right: 20px;
    bottom: -15px;
    transform: rotate(-3deg);
  }
}

/* =========================
   HIGHLIGHTS / DISCOVERY SECTION
========================= */

.highlights {
  background:
    radial-gradient(circle at 20% 18%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #161311 0%, #1C1A18 100%);
  margin-top: -34px;
  position: relative;
  z-index: 2;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  padding-top: 72px;
}

.highlights .section-eyebrow {
  color: rgba(248, 243, 236, 0.6);
}

.highlights .section-head h2 {
  color: #F8F3EC;
}

/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--roman-copper);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.hero .btn-ghost-dark {
  background: transparent;
  color: rgba(248, 243, 236, 0.92);
  border: 1px solid rgba(248, 243, 236, 0.18);
  box-shadow: none;
}

.hero .btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(248, 243, 236, 0.30);
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(184, 115, 51, 0.4);
  opacity: 0.95;
}

.btn:active {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  filter: brightness(0.98);
}

.btn:focus-visible {
  outline: none;
  box-shadow:
    0 10px 26px rgba(0, 0, 0, 0.16),
    0 0 0 3px rgba(185, 106, 46, 0.35);
}

.btn-ghost-dark:hover {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(28, 28, 28, 0.28);
}


/* =========================
   HIGHLIGHTS GRID (4 cards)
========================= */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  margin: 0 auto;
}

/* Laptop / klein desktop */
@media (max-width: 1180px) {
  .highlight-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

/* Mobiel */
@media (max-width: 768px) {
  .highlight-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

.highlight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.20);
}

.highlight-card h3 {
  color: #F8F3EC;
}

.highlight-card p {
  margin: 0;
  color: rgba(248, 243, 236, 0.78);
}



/* =========================
   HIGHLIGHT IMAGE
========================= */


.highlights::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.highlight-image {
  width: 100%;
  height: 190px;
  margin: 0 0 22px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(185, 106, 46, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  background: rgba(0, 0, 0, 0.06);
  position: relative;
}

@media (max-width: 768px) {
  .highlights {
    margin-top: -22px;
    padding-top: 56px;
  }

  .highlight-card {
    padding: 18px;
    border-radius: 18px;
  }
}

@media (min-width: 769px) {
  .highlight-card h3 {
    min-height: 56px;
  }

  .highlight-card p {
    min-height: 76px;
  }
}

@media (max-width: 520px) {
  .highlight-image {
    height: 220px;
  }
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  --sc: 1.02;
  filter: contrast(1.05) saturate(1.03);
}

.highlight-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%,
      rgba(255, 255, 255, 0.10),
      rgba(0, 0, 0, 0.16));
  pointer-events: none;
}


/* =========================
   CRAFT SECTION
========================= */

/* =========================
   CRAFT SECTION — in lijn met hero/highlights
========================= */

.craft {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    radial-gradient(circle at 82% 26%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #161311 0%, #1B1816 100%);
  color: var(--text-light);
  padding: 130px 0;
}

.craft::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 16%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.craft .container {
  position: relative;
  z-index: 2;
}

.craft-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  gap: 64px;
  align-items: center;
}

.craft-content {
  max-width: 620px;
}

.craft-eyebrow {
  margin: 0 0 16px;
  color: rgba(248, 243, 236, 0.68);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.craft-content h2 {
  margin: 0 0 24px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.04;
  color: #F8F3EC;
}

.craft-intro {
  margin: 0 0 22px;
  max-width: 60ch;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(248, 243, 236, 0.88);
}

.craft-content p {
  max-width: 560px;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: rgba(248, 243, 236, 0.72);
}

.craft-image {
  position: relative;
}

.craft-image img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.craft-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 560px;
}

.craft-gallery img {
  display: block;
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.craft-gallery img:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.24);
}

.craft-statement {
  margin-top: 82px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--accent);
  opacity: 0.95;
}

/* Tablet */
@media (max-width: 1100px) {
  .craft-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .craft-content {
    max-width: none;
  }

  .craft-image {
    max-width: 760px;
  }

  .craft-image img {
    height: 440px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .craft {
    padding: 96px 0;
  }

  .craft-inner {
    gap: 28px;
  }

  .craft-content h2 {
    font-size: 42px;
    line-height: 1.08;
  }

  .craft-intro {
    font-size: 18px;
  }

  .craft-content p {
    font-size: 17px;
  }

  .craft-image img {
    height: 300px;
    border-radius: 18px;
  }

  .craft-gallery {
    gap: 10px;
    margin-top: 24px;
  }

  .craft-gallery img {
    height: 82px;
    border-radius: 14px;
  }

  .craft-statement {
    margin-top: 50px;
    font-size: 26px;
  }
}



/* =========================
   RESERVE PAGE
========================= */


.reserve-intro {
  max-width: 1200px;
}

.reserve-intro h1 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #1C1C1C;
}

@media (min-width: 769px) {
  .reserve-intro h1 {
    white-space: nowrap;
  }
}

.reserve-intro p {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.72);
}


.reservation-form {
  max-width: 980px;
  padding: 34px;
  background: #F8F3EC;
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(28, 28, 28, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(28, 28, 28, 0.14);
  background: #fff;
  color: #1C1C1C;
  border-radius: 16px;
  padding: 16px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(28, 28, 28, 0.46);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  outline: none;
  border-color: rgba(185, 106, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 106, 46, 0.12);
  background: #fff;
}

.reservation-note {
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.62);
}

.privacy-note {
  margin: 18px 0 24px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(28, 28, 28, 0.62);
}

.reservation-form .btn {
  min-width: 220px;
}

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

@media (max-width: 640px) {
  .reserve-hero {
    padding: 124px 0 18px;
  }

  .reserve-intro h1 {
    font-size: 40px;
  }

  .reserve-intro p {
    font-size: 17px;
  }

  .reservation-section {
    padding: 18px 0 72px;
  }

  .reservation-form {
    padding: 22px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reservation-form textarea {
    min-height: 130px;
  }

  .reservation-form .btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   PARALLAX (CSS var driven)
   - werkt in elke moderne browser
   - behoudt je bestaande layout
========================= */

.highlight-image,
.craft-image,
.food-card {
  overflow: hidden;
}

/* We combineren translate + scale in één transform */
.highlight-image img,
.craft-image img,
.food-card img {
  --py: 0px;
  /* parallax offset */
  --sc: 1.02;
  /* basis scale */
  transform: translate3d(0, var(--py), 0) scale(var(--sc));
  will-change: transform;
}



/* reduced motion = geen parallax */
@media (prefers-reduced-motion: reduce) {

  .highlight-image img,
  .craft-image img,
  .food-card img {
    --py: 0px;
    transform: none !important;
  }
}

/* =========================
   MENU VISUAL / FOOD — dark boutique continuation
========================= */

.menu-visual {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 14%, rgba(185, 106, 46, 0.12) 0%, rgba(185, 106, 46, 0) 30%),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, #171412 0%, #1D1917 100%);
  color: var(--text-light);
  padding: 125px 0;
}

.menu-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 22%);
  pointer-events: none;
}

.menu-visual .container {
  position: relative;
  z-index: 2;
}

.menu-title {
  margin: 0 0 18px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 58px);
  line-height: 1.08;
  color: #F8F3EC;
}

.menu-intro {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(248, 243, 236, 0.74);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.food-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(185, 106, 46, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.food-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: #ff8c00;
  color: #fff;
  padding: 7px 14px;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 5;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.food-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
  filter: contrast(1.03) saturate(1.02);
}

.food-card:hover img {
  transform: scale(1.03);
}

.food-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(10, 10, 10, 0.82) 100%);
  color: #fff;
}

.food-overlay h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  line-height: 1.1;
}

.menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

@media (max-width: 768px) {
  .menu-visual {
    padding: 96px 0;
  }

  .menu-intro {
    margin-bottom: 30px;
    font-size: 17px;
  }

  .food-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .food-card {
    border-radius: 18px;
  }

  .food-card img {
    height: 320px;
  }

  .food-overlay {
    padding: 22px 20px;
  }

  .food-overlay h3 {
    font-size: 24px;
  }


  .menu-button {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-button .btn,
  .menu-button .btn-ghost-dark {
    width: 100%;
    text-align: center;
  }
}

/* =========================
   MENU PAGE
========================= */

.menu-page-hero {
  padding: 150px 0 34px;
}

/* ── Dark page variant (gebruikt op menu.html, brewstino.html etc.) ── */
body.page--dark {
  background-color: var(--off-black);
  color: #F8F3EC;
}

body.page--dark .menu-page-eyebrow {
  color: rgba(248, 243, 236, 0.5);
}

body.page--dark .menu-page-intro h1,
body.page--dark .menu-page-hero h1 {
  color: #F8F3EC;
}

body.page--dark .menu-page-subline {
  color: rgba(248, 243, 236, 0.68);
}

body.page--dark .menu-anchor-nav a {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  color: rgba(248, 243, 236, 0.65);
  padding: 8px 4px;
  margin: 0 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all 0.3s ease;
}

body.page--dark .menu-anchor-nav a:hover,
body.page--dark .menu-anchor-nav a.active {
  background: transparent;
  border-bottom-color: var(--accent);
  color: var(--accent);
  text-shadow: 0 0 15px rgba(184, 115, 51, 0.4);
}

.menu-sticky-wrapper {
  position: sticky;
  top: 130px;
  /* Increased offset to provide breathing room (Header 116px + 14px gap) */
  z-index: 1000;
  padding: 12px 0;
  margin-top: -20px;
  /* Pull it slightly into the hero overflow */
  transition: background 0.3s ease, backdrop-filter 0.3s ease;

  /* Glassmorphism */
  background: rgba(24, 22, 20, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-anchor-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;

  /* Hide scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu-anchor-nav::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .menu-sticky-wrapper {
    top: 116px;
    /* Increased gap to ensure visibility below fixed header (36px announcement + ~80px header) */
    padding: 12px 0;
  }

  .menu-anchor-nav {
    justify-content: flex-start;
    padding: 4px 20px;
    /* Added side padding so 'Ontbijt' isn't cut off */
    scroll-padding: 0 20px;
  }
}

body.page--dark .menu-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  padding: 56px 24px 24px;
  /* Synchronized relative padding for dark mode */
  border-radius: 16px;
}

body.page--dark .menu-item-top h3 {
  color: #F8F3EC;
}

body.page--dark .menu-item-price {
  color: #000;
  background: var(--accent);
}

body.page--dark .menu-item p {
  color: rgba(248, 243, 236, 0.7);
}

body.page--dark .menu-badge {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(248, 243, 236, 0.6);
}

body.page--dark .menu-badge--gold {
  background: var(--accent);
  color: #000;
}

body.page--dark .menu-item p.barista-notes {
  background: rgba(185, 106, 46, 0.1);
  color: #E3B081;
  border-left: 2px solid var(--accent);
}


.menu-page-intro {
  max-width: 900px;
}

.menu-page-hero h1 {
  position: relative;
  margin-bottom: -15px;
  z-index: 2;
}

.menu-page-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.56);
}

.menu-page-intro h1 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.menu-page-subline {
  max-width: 760px;
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(28, 28, 28, 0.72);
}

.menu-page-nav {
  padding: 0 0 18px;
}



.menu-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  color: var(--primary);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.25s ease;
  border-bottom: 2px solid transparent;
}

.menu-anchor-nav a:hover {
  border-color: rgba(185, 106, 46, 0.35);
  color: var(--accent);
}

.menu-section {
  padding: 60px 0;
}

.menu-section--surface {
  background-color: var(--off-black);
  color: #ffffff;
}

.menu-section--surface .menu-section-eyebrow {
  color: rgba(248, 243, 236, 0.6);
}

.menu-section--surface .menu-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-section--surface .menu-item h3 {
  color: #F8F3EC;
}

.text-copper-gradient {
  background: linear-gradient(135deg, #b8860b, #d4af37, #cd7f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.badge-curator {
  display: inline-block;
  background: var(--roman-copper);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 11px;
  padding: 3px 6px;
  border-radius: 4px;
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .mobile-urgent {
    position: sticky;
    top: 60px;
    z-index: 1000;
    border: 1px solid rgba(184, 115, 51, 0.38);
    /* Even subtler border */
    background: rgba(28, 21, 16, 0.72);
    /* More transparent - video shines through */
    backdrop-filter: blur(14px);
    /* Glassmorphism */
    -webkit-backdrop-filter: blur(14px);
    color: rgba(255, 255, 255, 0.9);
    padding: 9px 14px;
    /* Compacter padding */
    margin: 36px 0 14px;
    border-radius: 10px;
    font-size: 14px;
    /* Slightly smaller to reduce visual weight */
    line-height: 1.5;
  }

  .desktop-only {
    display: none !important;
  }
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only {
    display: inline !important;
  }
}

.editorial-header {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: -15px;
  position: relative;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.menu-section-head {
  margin-bottom: 24px;
}

.menu-section-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.56);
}

.menu-section-head h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  line-height: 1.1;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  /* Forces equal height for all cards in a row */
  gap: 18px;
}

/* Bread Selection Guide UI */
.lunch-bread-guide {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px auto 60px;
  flex-wrap: wrap;
  max-width: 900px;
}

.bread-card {
  flex: 1;
  min-width: 140px;
  max-width: 180px;
  padding: 32px 16px;
  background: rgba(40, 40, 40, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bread-card:hover {
  transform: translateY(-8px);
  background: rgba(60, 60, 60, 0.6);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.bread-card i {
  font-size: 32px;
  color: var(--accent);
  transition: transform 0.4s ease;
}

.bread-card:hover i {
  transform: scale(1.1);
}

.bread-card h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  font-family: 'Playfair Display', serif;
}

.bread-card .price-status {
  display: block;
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  opacity: 0.9;
}

.bread-card.has-surcharge {
  border-color: rgba(185, 106, 46, 0.2);
}

@media (max-width: 600px) {
  .lunch-bread-guide {
    gap: 12px;
    margin: 30px auto 40px;
  }

  .bread-card {
    min-width: 125px;
    padding: 24px 12px;
  }

  .bread-card i {
    font-size: 24px;
  }

  .bread-card h4 {
    font-size: 14px;
  }
}

.bread-card.has-surcharge .price-status {
  color: #b96a2e;
}

body.page--dark .bread-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.06);
}

body.page--dark .bread-card h4 {
  color: #F8F3EC;
}

body.page--dark .bread-card .price-status {
  color: rgba(248, 243, 236, 0.4);
}

body.page--dark .bread-card.has-surcharge .price-status {
  color: var(--accent);
}

.menu-item {
  padding: 56px 24px 24px;
  /* Increased top padding to reserve space for absolute badges */
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 28, 28, 0.08);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  /* Allow absolute positioning of badges inside */
  height: 100%;
  /* Fill grid cell */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.menu-item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.menu-item-top h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  flex: 1;
}

.menu-item-price {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  background: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.menu-item-top span.badge-curator {
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-shadow: none;
}

.menu-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(28, 28, 28, 0.72);
  flex: 1;
  /* Pushes content below to the bottom */
}

/* SMART LABELS / BADGES */
.menu-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  pointer-events: none;
  /* Ensure clicks pass through to card if needed */
}

.menu-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.menu-badge--gold {
  background: var(--accent);
  color: #000;
}

.menu-badge--highlight {
  background: rgba(185, 106, 46, 0.1);
  color: #b96a2e;
}

/* FEATURED SPECIAL CARD */
.special-featured-container {
  margin-bottom: 60px;
}

.featured-header {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
}

.special-featured-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: rgba(128, 128, 128, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  min-height: 280px;
}

.special-card-image {
  height: 100%;
}

.special-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 16px;
  border-radius: 36px;
  /* Inner rounding for the image wrapper */
}

.special-card-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.special-card-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #fff;
  margin: 10px 0 12px;
  font-weight: 700;
}

.special-card-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 500px;
}

.special-card-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 768px) {
  .special-featured-card {
    grid-template-columns: 1fr;
  }

  .special-card-image {
    height: 200px;
  }

  .featured-header {
    font-size: 28px;
  }

  .special-card-content {
    padding: 24px;
  }

  .special-card-content h3 {
    font-size: 24px;
  }
}

/* COMPACT ADDONS */
.menu-addons {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.menu-addon-item {
  display: inline-block;
  background-color: var(--accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  font-style: normal;
  line-height: 1;
}

.menu-addon-item:not(:last-child)::after {
  display: none;
}

.menu-section--surface .menu-item p {
  color: rgba(248, 243, 236, 0.72);
}

.menu-item p.barista-notes {
  margin-top: 14px;
  font-size: 13px;
  color: var(--accent);
  padding: 10px 14px;
  background: rgba(185, 106, 46, 0.05);
  /* copper tint */
  border-left: 2px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.menu-section--surface .menu-item p.barista-notes {
  background: rgba(212, 175, 55, 0.05);
  /* slightly golden tint for dark mode */
}

.week-special-page {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 28, 28, 0.10);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.week-special-page-image {
  height: 240px;
  overflow: hidden;
  border-radius: 18px;
}

.week-special-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.week-special-page-text {
  margin: 0 0 20px;
  max-width: 560px;
  color: rgba(28, 28, 28, 0.72);
}

.week-special-page-item h3 {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.15;
}

.week-special-page-item p {
  margin: 0 0 12px;
  color: rgba(28, 28, 28, 0.72);
}

.week-special-page-item span {
  font-weight: 600;
  color: var(--accent);
}

.menu-cta {
  padding-top: 50px;
}

.menu-cta-box {
  padding: 34px;
  text-align: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(28, 28, 28, 0.10);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.menu-cta-box h2 {
  margin: 0 0 12px;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
}

.menu-cta-box p {
  margin: 0 0 22px;
  color: rgba(28, 28, 28, 0.72);
}

@media (max-width: 900px) {
  .menu-list {
    grid-template-columns: 1fr;
  }

  .week-special-page {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .menu-page-hero {
    padding: 126px 0 22px;
  }

  .menu-page-intro h1 {
    font-size: 40px;
  }

  .menu-page-subline {
    font-size: 17px;
  }

  .menu-section-head h2 {
    font-size: 32px;
  }

  .menu-item {
    padding: 56px 20px 24px;
    /* Keeping top padding for badge alignment space on mobile */
  }

  .menu-item-top {
    flex-direction: column;
    gap: 6px;
  }

  .week-special-page {
    padding: 20px;
  }

  .week-special-page-image {
    height: 220px;
  }

  .week-special-page-item h3 {
    font-size: 28px;
  }

  .menu-cta-box {
    padding: 26px 20px;
  }

  .menu-cta-box h2 {
    font-size: 30px;
  }
}


/* =========================
   ANDRÉ RIEU PAGE
========================= */

.event-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 92px;
  color: var(--background);
  text-align: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(185, 106, 46, 0.20), transparent 42%),
    linear-gradient(90deg, rgba(18, 18, 18, 0.92) 0%, rgba(28, 28, 28, 0.84) 46%, rgba(28, 28, 28, 0.94) 100%);
}

.event-hero--rieu {
  min-height: 520px;
  display: flex;
  align-items: center;
}

.event-hero .container {
  position: relative;
  z-index: 2;
}

.event-hero-copy {
  max-width: 860px;
  margin: 0 auto;
}

.event-hero-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(43vw, 620px);
  z-index: 1;
  pointer-events: none;
}

.event-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.18) 0%, rgba(12, 12, 12, 0.08) 38%, rgba(28, 28, 28, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 12, 12, 0.30) 0%, rgba(12, 12, 12, 0.06) 40%, rgba(12, 12, 12, 0.34) 100%);
}

.event-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
  filter: saturate(0.88) contrast(1.02) brightness(0.78);
}

.event-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 233, 223, 0.78);
}

.event-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 1.02;
  margin: 0 0 18px;
  text-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
}

.event-subline {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.event-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn-ghost-light {
  background: transparent;
  color: var(--background);
  border: 1px solid rgba(242, 233, 223, 0.20);
  box-shadow: none;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 233, 223, 0.32);
}

@media (max-width: 980px) {
  .event-hero {
    padding: 138px 0 82px;
  }

  .event-hero-media {
    width: 44vw;
    opacity: 0.58;
  }

  .event-hero h1 {
    font-size: clamp(40px, 8vw, 68px);
  }
}

@media (max-width: 768px) {
  .event-hero {
    min-height: auto;
    padding: 124px 0 72px;
    background:
      radial-gradient(circle at 24% 14%, rgba(185, 106, 46, 0.14), transparent 36%),
      linear-gradient(180deg, rgba(20, 20, 20, 0.94) 0%, rgba(24, 24, 24, 0.90) 100%);
  }

  .event-hero-copy {
    max-width: 100%;
  }

  .event-hero-media {
    inset: 0;
    width: 100%;
    opacity: 0.28;
  }

  .event-hero-media::after {
    background:
      linear-gradient(180deg, rgba(18, 18, 18, 0.46) 0%, rgba(18, 18, 18, 0.28) 34%, rgba(18, 18, 18, 0.58) 100%),
      linear-gradient(90deg, rgba(18, 18, 18, 0.62) 0%, rgba(18, 18, 18, 0.40) 42%, rgba(18, 18, 18, 0.62) 100%);
  }

  .event-hero-media img {
    object-position: center top;
    filter: saturate(0.82) contrast(0.98) brightness(1.28);
  }

  .event-hero h1 {
    font-size: clamp(36px, 10vw, 56px);
    line-height: 1.04;
    margin-bottom: 14px;
  }

  .event-subline {
    max-width: 92%;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
  }

  .event-hero .event-actions {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .event-hero .event-actions .btn,
  .event-hero .event-actions .btn-ghost-light {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px 20px;
    justify-content: center;
    text-align: center;
  }
}


.event-section--surface {
  background: var(--surface);
}

.event-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin: 0 0 16px;
}

.event-intro {
  max-width: 760px;
  margin: 0 0 28px;
  opacity: 0.85;
}


.event-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: stretch;
}

.event-panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 28, 28, 0.10);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.event-panel--dark {
  background: rgba(28, 28, 28, 0.92);
  color: var(--background);
  border-color: rgba(255, 255, 255, 0.10);
}

.event-panel h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
}

.event-list {
  margin: 0 0 18px;
  padding-left: 18px;
}

.event-list li {
  margin: 8px 0;
  opacity: 0.86;
}

.event-note {
  margin: 0 0 14px;
  opacity: 0.85;
}



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

  .event-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .event-section h2 {
    font-size: 32px;
  }
}

/* =========================
   RIEU VIDEO
========================= */

.rieu-video {
  padding: 86px 0 34px;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #171412 0%, #1B1715 100%);
  color: #F8F3EC;
}

.rieu-video-head {
  max-width: 820px;
  margin: 0 auto 30px;
  text-align: center;
}

.rieu-video-head h2 {
  margin: 0 0 14px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  color: #F8F3EC;
}

.rieu-video-head .event-intro {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(248, 243, 236, 0.74);
}

.rieu-video-frame {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(185, 106, 46, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    0 0 34px rgba(185, 106, 46, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rieu-video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

@media (max-width: 768px) {
  .rieu-video {
    padding: 54px 0 24px;
  }

  .rieu-video-head {
    margin-bottom: 20px;
  }

  .rieu-video-head h2 {
    font-size: 34px;
  }

  .rieu-video-frame {
    border-radius: 18px;
  }
}

/* =========================
   RIEU GALLERY
========================= */

.rieu-gallery {
  padding: 110px 0;
  background: var(--surface);
}

.rieu-gallery h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 14px;
}

.gallery-viewport {
  width: min(1480px, 96vw);
  margin: 26px auto 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(28, 28, 28, 0.10);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  padding: 18px 0;
}

.gallery-viewport::before,
.gallery-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  pointer-events: none;
  z-index: 2;
}

.gallery-viewport::before {
  left: 0;
  background: linear-gradient(90deg, rgba(248, 243, 236, 0.98), rgba(248, 243, 236, 0));
}

.gallery-viewport::after {
  right: 0;
  background: linear-gradient(-90deg, rgba(248, 243, 236, 0.98), rgba(248, 243, 236, 0));
}

.gallery-row {
  display: block;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  padding: 10px 56px;
  scrollbar-width: none;
  cursor: grab;
}

.gallery-row::-webkit-scrollbar {
  display: none;
}

.gallery-row:active {
  cursor: grabbing;
}

.gallery-row--second {
  padding-top: 0;
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  align-items: stretch;
  width: max-content;
}

.gallery-item {
  margin: 0;
  flex: 0 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(28, 28, 28, 0.10);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
}

.gallery-item img {
  display: block;
  width: 320px;
  height: 210px;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.02);
  cursor: zoom-in;
}

@media (max-width: 768px) {
  .gallery-item img {
    width: 260px;
    height: 180px;
  }

  .gallery-viewport::before,
  .gallery-viewport::after {
    width: 60px;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.lightbox.is-open {
  display: block;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, 0.72);
  opacity: 0;
  transition: opacity .28s ease;
}

.lightbox.is-open .lightbox-backdrop {
  opacity: 1;
}

.lightbox-dialog {
  position: relative;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 28px 18px;
}

.lightbox-figure {
  position: relative;
  /* <-- belangrijk: kruisje ankert nu in de foto */
  margin: 0;
  width: min(980px, calc(100vw - 36px));
  max-height: calc(100vh - 120px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
  background: rgba(16, 16, 16, 0.25);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
}

.lightbox.is-open .lightbox-figure {
  opacity: 1;
  transform: translateY(0);
}

.lightbox-img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 170px);
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.12);
}

.lightbox-img {
  cursor: zoom-out;
}

.lightbox-caption {
  padding: 12px 14px 14px;
  font-size: 13px;
  color: rgba(242, 233, 223, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.20);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(242, 233, 223, 0.95);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
  z-index: 3;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

.lightbox-close span {
  font-size: 26px;
  line-height: 1;
  transform: translateY(-1px);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

  .lightbox-backdrop,
  .lightbox-figure {
    transition: none;
  }
}

/* =========================
   INTERNATIONAL PHONE INPUT
========================= */

.iti {
  width: 100%;
}

.iti input {
  width: 100%;
}

.iti__country-container {
  z-index: 20;
}

.iti__selected-country {
  border-radius: 16px 0 0 16px;
}

.iti--separate-dial-code .iti__selected-country {
  background: #fff;
  border: 1px solid rgba(28, 28, 28, 0.14);
  border-right: 0;
}

.iti--separate-dial-code input {
  padding-left: 96px !important;
}

.iti__dropdown-content {
  width: max-content !important;
  min-width: 0 !important;
  max-width: 360px !important;
}

.iti__country-list {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 360px !important;
  border-radius: 16px;
  border: 1px solid rgba(28, 28, 28, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow-x: hidden;
}

.iti__country {
  white-space: nowrap;
}

.iti__country-name,
.iti__dial-code {
  white-space: nowrap;
}

.iti__search-input {
  font-family: 'Inter', sans-serif;
  padding-left: 52px !important;
}

/* =========================
   FOOTER / LOCATIE — CLEAN REWORK
========================= */

.site-footer--minimal {
  background: #120f0d;
  color: rgba(248, 243, 236, 0.72);
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer--minimal::before {
  display: none;
}

.site-footer--minimal .footer-bottom-simple {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
  text-align: left;
}

.site-footer--minimal .footer-bottom-simple p {
  margin: 0;
  color: rgba(248, 243, 236, 0.72);
  font-size: 15px;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .site-footer--minimal {
    padding: 22px 0 28px;
  }

  .site-footer--minimal .footer-bottom-simple {
    text-align: left;
  }

  .site-footer--minimal .footer-bottom-simple p {
    font-size: 14px;
  }
}


.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 30%),
    linear-gradient(180deg, #12100F 0%, #0D0C0B 100%);
  color: rgba(242, 233, 223, 0.88);
  padding: 96px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 18%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 2;
}

.footer-location-shell {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 760px);
  gap: 56px;
  align-items: center;
}

.footer-location-copy {
  max-width: 460px;
}

.footer-location-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.56);
}

.footer-location-copy h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
  color: #F8F3EC;
}

.footer-location-address {
  margin: 0;
  font-size: 22px;
  line-height: 1.55;
  color: rgba(242, 233, 223, 0.88);
}

.footer-hours-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 24px;
}

.footer-hours-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16);
}

.footer-hours-item span {
  color: rgba(242, 233, 223, 0.72);
}

.footer-hours-item strong {
  color: #F8F3EC;
  font-weight: 600;
  white-space: nowrap;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 26px;
}

.footer-contact-links a {
  color: rgba(242, 233, 223, 0.88);
  text-decoration: none;
  transition: color 0.25s ease;
}

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

.footer-location-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-route-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.footer-route-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.footer-route-btn--ghost {
  background: transparent;
  color: rgba(242, 233, 223, 0.90);
  border: 1px solid rgba(242, 233, 223, 0.16);
  box-shadow: none;
}

.footer-route-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 233, 223, 0.28);
  color: #fff;
}

.footer-location-map {
  width: 100%;
  max-width: 760px;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.footer-location-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: saturate(0.82) contrast(0.98) brightness(0.90);
}

.footer-bottom-simple {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(185, 106, 46, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 600px) {
  .footer-bottom-simple {
    justify-content: center;
    text-align: center;
  }
}

.footer-bottom-simple p {
  margin: 0;
  font-size: 15px;
  color: rgba(242, 233, 223, 0.60);
}

@media (max-width: 1100px) {
  .footer-location-shell {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-location-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 64px 0 22px;
  }

  .footer-location-shell {
    gap: 22px;
  }

  .footer-location-copy h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .footer-location-address {
    font-size: 18px;
    line-height: 1.45;
  }

  .footer-hours-list {
    gap: 10px;
    margin: 22px 0 20px;
  }

  .footer-hours-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
  }

  .footer-hours-item span,
  .footer-hours-item strong {
    font-size: 15px;
    line-height: 1.35;
  }

  .footer-contact-links {
    gap: 8px;
    margin-bottom: 20px;
  }

  .footer-contact-links a {
    font-size: 16px;
  }

  .footer-location-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer-route-btn {
    width: 100%;
    min-height: 46px;
    justify-content: center;
  }

  .footer-route-btn--ghost {
    width: 100%;
    min-height: 46px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(242, 233, 223, 0.14);
    box-shadow: none;
    justify-content: center;
    text-align: center;
    color: rgba(242, 233, 223, 0.82);
    border-radius: 999px;
  }

  .footer-route-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(242, 233, 223, 0.24);
    color: #fff;
  }

  .footer-location-map {
    display: none;
  }

  .footer-bottom-simple {
    margin-top: 26px;
    padding-top: 18px;
  }

  .footer-bottom-simple p {
    font-size: 14px;
  }
}

.footer-hours-label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer-hours-label i,
.footer-contact-link i {
  width: 18px;
  text-align: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}

.footer-hours-label span {
  color: rgba(242, 233, 223, 0.72);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(242, 233, 223, 0.88);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-contact-link span {
  color: inherit;
}

@media (max-width: 768px) {

  .footer-hours-label,
  .footer-contact-link {
    gap: 10px;
  }

  .footer-hours-label i,
  .footer-contact-link i {
    font-size: 15px;
  }
}

/* =========================
   HERO — REFINED VERSION
========================= */

.hero.hero--video {
  position: relative;
  min-height: 84svh;
  padding: 150px 0 78px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 106, 46, 0.18) 0%, rgba(185, 106, 46, 0) 36%),
    #120f0d;
}

.hero.hero--video .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(260px, 300px);
  justify-content: space-between;
  align-items: end;
  column-gap: 72px;
}

.hero-video,
.hero-overlay,
.hero-glow,
.hero-vignette {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  filter: saturate(0.95) contrast(1.0) brightness(1.2);
}

.hero-overlay {
  z-index: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 9, 8, 0.40) 0%,
      rgba(10, 9, 8, 0.25) 28%,
      rgba(10, 9, 8, 0.10) 58%,
      rgba(10, 9, 8, 0.15) 100%),
    linear-gradient(180deg,
      rgba(10, 9, 8, 0.10) 0%,
      rgba(10, 9, 8, 0.00) 36%,
      rgba(10, 9, 8, 0.25) 100%);
}

.hero-glow {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 74% 34%, rgba(185, 106, 46, 0.22) 0%, rgba(185, 106, 46, 0.08) 18%, rgba(185, 106, 46, 0) 42%),
    radial-gradient(circle at 18% 50%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 36%);
}

.hero-vignette {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.15) 100%);
}

.hero.hero--video .hero-copy {
  max-width: 720px;
  margin: 0;
  padding-top: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.hero.hero--video .hero-eyebrow {
  margin: 0 0 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 233, 223, 0.78);
}

.hero.hero--video .hero-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  gap: 10px;
  margin: 0 0 24px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 243, 236, 0.14);
  background: rgba(248, 243, 236, 0.06);
  color: rgba(248, 243, 236, 0.92);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.hero.hero--video .hero-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(185, 106, 46, 0.45);
}

.hero.hero--video h1 {
  max-width: 10.4ch;
  margin: 0 0 20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 1.01;
  text-wrap: balance;
  text-shadow: 0 16px 38px rgba(0, 0, 0, 0.32);
}

.hero.hero--video .hero-subline {
  max-width: 60ch;
  margin: 0;
  font-size: 18px;
  line-height: 1.78;
  color: rgba(255, 255, 255, 0.86);
}

.hero.hero--video .hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero.hero--video .btn {
  min-width: 210px;
  text-align: center;
}

.hero.hero--video .btn {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* =========================
   HERO SIGNATURE DESKTOP
========================= */

.hero-note--desktop {
  position: absolute;
  right: 0;
  bottom: 240px;
  width: 100%;
  max-width: 286px;
  margin: 0;
  padding: 20px 20px 18px;
  border-radius: 22px;
  border: 1px solid rgba(248, 243, 236, 0.08);
  background: linear-gradient(180deg,
      rgba(24, 21, 19, 0.66) 0%,
      rgba(16, 14, 13, 0.56) 100%);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  color: var(--text-light);
  text-align: left;
}

.hero-note-label,
.hero-signature-label {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(248, 243, 236, 0.60);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-note--desktop strong,
.hero-signature-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(23px, 1.95vw, 29px);
  line-height: 1.06;
  color: #ffffff;
}

.hero-note--desktop p,
.hero-signature-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.58;
  color: rgba(248, 243, 236, 0.74);
}

/* =========================
   HERO SIGNATURE MOBILE
========================= */

.hero-signature--mobile {
  display: none;
  background: linear-gradient(180deg, #120f0d 0%, #181513 100%);
  padding: 0 0 26px;
}

.hero-signature-card {
  max-width: 520px;
  margin: 0 auto;
  padding: 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(248, 243, 236, 0.12);
  background: linear-gradient(180deg, rgba(24, 21, 19, 0.88) 0%, rgba(18, 16, 14, 0.82) 100%);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  color: var(--text-light);
}

/* =========================
   HIGHLIGHTS START AFTER HERO
========================= */



@media (max-width: 1100px) {
  .hero.hero--video .container {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 38px;
  }

  .hero.hero--video h1 {
    max-width: 10.8ch;
  }

  .hero-note--desktop {
    right: 0;
    bottom: 228px;
    max-width: 270px;
    padding: 18px 18px 17px;
  }
}

/* =========================
   HERO MOBILE
========================= */

@media (max-width: 768px) {
  .hero.hero--video .hero-copy {
    max-width: 100%;
    text-align: center;
    align-items: center;
  }

  .hero.hero--video .container {
    display: block;
  }

  .hero-video {
    object-position: 66% center;
    filter: saturate(1.0) contrast(1.0) brightness(0.96);
  }

  /* Iets minder vignette op mobiel voor meer helderheid */
  .hero-vignette {
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.35) 100%);
  }

  /* Donkerdere overlay op mobiel voor betere leesbaarheid en diepte */
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(10, 9, 8, 0.52) 0%,
        rgba(10, 9, 8, 0.30) 35%,
        rgba(10, 9, 8, 0.82) 100%);
  }

  .hero.hero--video .hero-copy {
    max-width: 100%;
    text-align: center;
  }

  .hero.hero--video .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .hero.hero--video .hero-kicker {
    margin: 0 0 20px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .hero.hero--video h1 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.08;
  }

  .hero.hero--video .hero-subline {
    max-width: 100%;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.6;
  }

  .hero.hero--video .hero-actions {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
  }

  .hero.hero--video .btn {
    width: calc(50% - 5px);
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
    min-width: 0;
  }

  .hero.hero--video .btn-ghost-dark,
  .hero.hero--video .hero-secondary {
    width: 100%;
    padding: 12px 14px;
  }

  .hero-note--desktop {
    display: none;
  }

  .hero-signature--mobile {
    display: block;
  }

  .highlights {
    margin-top: 0;
    padding-top: 68px;
  }
}

@media (max-width: 520px) {
  .hero.hero--video {
    padding: 124px 0 46px;
  }

  .hero.hero--video h1 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero.hero--video .hero-subline {
    font-size: 16px;
  }

  .hero-signature-card {
    padding: 22px 20px;
  }
}

.hero-social-proof {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(248, 243, 236, 0.7);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.hero-google-count {
  font-size: 13px;
  color: rgba(248, 243, 236, 0.65);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(248, 243, 236, 0.6);
  font-size: 20px;
  animation: scrollBounce 2s infinite;
  z-index: 10;
}

@keyframes scrollBounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}


/* =========================
   RESERVE + ANDRÉ RIEU
   DARK BOUTIQUE OVERRIDES
========================= */

/* =========================
   RESERVE PAGE
========================= */

.reserve-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 106, 46, 0.14) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #161311 0%, #1B1816 100%);
  color: #F8F3EC;
}

.reserve-intro h1 {
  color: #F8F3EC;
}

.reserve-intro p {
  color: rgba(248, 243, 236, 0.74);
}

.reservation-section {
  position: relative;
  padding: 20px 0 100px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #1B1816 0%, #171412 100%);
}

.reservation-form {
  max-width: 980px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  border: 1px solid rgba(28, 28, 28, 0.10);
  background: rgba(248, 243, 236, 0.96);
  color: #1C1C1C;
}

.reservation-form input::placeholder,
.reservation-form textarea::placeholder {
  color: rgba(28, 28, 28, 0.46);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: rgba(185, 106, 46, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 106, 46, 0.12);
  background: #F8F3EC;
}

.reservation-note,
.privacy-note {
  color: rgba(248, 243, 236, 0.64);
}

/* =========================
   ANDRÉ RIEU PAGE
========================= */

.event-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #171412 0%, #1D1917 100%);
  color: #F8F3EC;
}

.event-section--surface {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #1B1816 0%, #171412 100%);
}

.event-section h2 {
  color: #F8F3EC;
}

.event-intro {
  color: rgba(248, 243, 236, 0.74);
  opacity: 1;
}




.event-panel--dark {
  background: rgba(18, 16, 14, 0.92);
  color: #F8F3EC;
  border-color: rgba(255, 255, 255, 0.10);
}


/* =========================
   RIEU GALLERY
========================= */

.rieu-gallery {
  padding: 110px 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 32%),
    linear-gradient(180deg, #171412 0%, #1D1917 100%);
  color: #F8F3EC;
}

.rieu-gallery h2 {
  color: #F8F3EC;
}

.gallery-viewport {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.gallery-viewport::before {
  background: linear-gradient(90deg, rgba(23, 20, 18, 0.96), rgba(23, 20, 18, 0));
}

.gallery-viewport::after {
  background: linear-gradient(-90deg, rgba(23, 20, 18, 0.96), rgba(23, 20, 18, 0));
}

.gallery-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.20);
  background: rgba(255, 255, 255, 0.03);
}

/* =========================
   MOBILE TUNING
========================= */

@media (max-width: 768px) {
  .reserve-hero {
    padding: 124px 0 18px;
  }

  .reservation-section {
    padding: 18px 0 72px;
  }

  .reservation-form {
    padding: 22px;
    border-radius: 18px;
  }

  .event-section {
    padding: 90px 0;
  }

  .rieu-gallery {
    padding: 90px 0;
  }
}

/* =========================
   HIGHLIGHTS — SUBTIELE HOVER
========================= */

.highlight-card {
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.highlight-image {
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.highlight-image img {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

/* Alleen op desktop/laptop met muis */
@media (hover: hover) and (pointer: fine) {
  .highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 106, 46, 0.20);
    background: rgba(255, 255, 255, 0.04);
    box-shadow:
      0 24px 50px rgba(0, 0, 0, 0.24),
      0 0 34px rgba(185, 106, 46, 0.10),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .highlight-card:hover .highlight-image {
    border-color: rgba(185, 106, 46, 0.34);
    box-shadow:
      0 22px 44px rgba(0, 0, 0, 0.18),
      0 0 24px rgba(185, 106, 46, 0.12);
  }

  .highlight-card:hover .highlight-image img {
    --sc: 1.08;
    filter: contrast(1.06) saturate(1.05);
  }

  .highlight-card-link:hover h3::after,
  .highlight-card-link:focus-visible h3::after {
    opacity: 1;
    transform: scaleX(1);
  }

}

/* end @media hover */

/* =========================
   NAOVENANT REWORK OVERRIDES
========================= */

body.menu-open {
  overflow: hidden;
}

.section-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.56);
}

.section-head {
  margin-bottom: 28px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .menu-intro,
.section-head--center .takeaway-intro {
  margin-left: auto;
  margin-right: auto;
}

.header-shell {
  align-items: center;
}

.header-right--clean {
  gap: 12px;
}

.header-rieu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease, color .25s ease;
}

.header-rieu:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #F8F3EC;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(185, 106, 46, 0.28);
}



.food-overlay p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(248, 243, 236, 0.84);
}


.reserve-hero--dark {
  position: relative;
  overflow: hidden;
  padding: 150px 0 34px;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 106, 46, 0.14) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #161311 0%, #1B1816 100%);
  color: #F8F3EC;
}



.reservation-mode-section {
  padding: 0 0 22px;
  background: linear-gradient(180deg, #1B1816 0%, #171412 100%);
}

.reservation-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.reservation-mode-card {
  text-align: left;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  color: #F8F3EC;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}



.reservation-mode-eyebrow {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.56);
}

.reservation-mode-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  line-height: 1.1;
}

.reservation-mode-card p {
  margin: 10px 0 0;
  color: rgba(248, 243, 236, 0.74);
}

.reservation-section--rich {
  position: relative;
  padding: 20px 0 100px;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #171412 0%, #141210 100%);
}

.reservation-form {
  max-width: 1000px;
  margin: 40px auto 0;
}

.reservation-form-fields {
  min-width: 0;
}

.form-grid--labels {
  align-items: start;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field label,
.form-label-static {
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 243, 236, 0.82);
}

.form-field--full {
  margin-top: 18px;
}

.concert-date-option {
  position: relative;
  display: block;
}

.concert-date-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.concert-date-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 243, 236, 0.88);
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}

.concert-date-option input:checked+span {
  border-color: rgba(185, 106, 46, 0.56);
  background: rgba(185, 106, 46, 0.18);
  color: #ffffff;
}

.reservation-section--rich .reservation-form input,
.reservation-section--rich .reservation-form select,
.reservation-section--rich .reservation-form textarea {
  background: rgba(248, 243, 236, 0.96);
}

.reservation-section--rich .reservation-form input::placeholder,
.reservation-section--rich .reservation-form textarea::placeholder {
  color: rgba(28, 28, 28, 0.42);
}

.reservation-section--rich .reservation-note,
.reservation-section--rich .privacy-note {
  color: rgba(248, 243, 236, 0.68);
}

.reservation-section--rich .reservation-note a,
.reservation-section--rich .privacy-note a {
  color: #F8F3EC;
}







.event-info-strip {
  padding: 34px 0 34px;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.94) 0%, rgba(24, 24, 24, 0.90) 100%);
}

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

.event-info-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  text-align: center;
  color: #F8F3EC;
}

.event-info-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.1;
}

.event-info-card span {
  display: block;
  margin-top: 6px;
  color: rgba(248, 243, 236, 0.68);
}







/* NIEUW BLOK HIER PLAATSEN */
.event-section--dates {
  padding: 72px 0 84px;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #171412 0%, #1B1715 100%);
}

.rieu-dates-ceremony {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 42px;
  text-align: center;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.025) 100%);
  border: 1px solid rgba(185, 106, 46, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.rieu-dates-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.58);
}

.rieu-dates-title {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  color: #F8F3EC;
}

.rieu-dates-divider {
  width: 92px;
  height: 1px;
  margin: 22px auto 30px;
  background: linear-gradient(90deg, rgba(185, 106, 46, 0) 0%, rgba(185, 106, 46, 0.85) 50%, rgba(185, 106, 46, 0) 100%);
}

.rieu-dates-list {
  display: grid;
  gap: 18px;
}

.rieu-date-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.rieu-date-row:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(185, 106, 46, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.rieu-date-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.rieu-date-range {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  line-height: 1.2;
  color: #F8F3EC;
}

.rieu-date-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.rieu-date-cta {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.rieu-date-row:hover .rieu-date-cta {
  transform: translateX(4px);
}

/* --- PERSUASION BADGES --- */
.badge-scarce {
  padding: 6px 12px;
  background: rgba(184, 115, 51, 0.15);
  border: 1px solid rgba(184, 115, 51, 0.4);
  color: var(--accent);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-urgent {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
  color: #ef4444;
  animation: badge-pulse 2s infinite;
}

.badge-popular {
  background: rgba(185, 106, 46, 0.15);
  border-color: rgba(185, 106, 46, 0.6);
  color: #fbbf24;
}

@keyframes badge-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .event-section--dates {
    padding: 52px 0 60px;
  }

  .rieu-dates-ceremony {
    padding: 32px 22px;
    border-radius: 20px;
  }

  .rieu-dates-kicker {
    margin-bottom: 10px;
    font-size: 11px;
    letter-spacing: 0.18em;
  }

  .rieu-dates-divider {
    margin: 18px auto 24px;
    width: 72px;
  }

  .rieu-dates-list {
    gap: 12px;
  }

  .rieu-date-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }

  .rieu-date-status {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 15px;
  }

  .rieu-date-range {
    font-size: 24px;
    line-height: 1.25;
  }
}

.event-actions--left {
  justify-content: flex-start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(28, 28, 28, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 20px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 20px;
  color: rgba(28, 28, 28, 0.72);
}

@media (max-width: 980px) {

  .event-info-grid,
  .event-date-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concert-date-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {

  .header-rieu,
  .language-switch {
    display: none;
  }


  .reservation-mode-card strong {
    font-size: 24px;
  }
}

/* =========================
   NAOVENANT REVIEWS SECTION
========================= */

/* =========================
   NAOVENANT REVIEWS GRID
   DARK VERSION
========================= */

.reviews-section {
  position: relative;
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #1A1715 0%, #141210 100%);
  overflow: hidden;
  color: #F8F3EC;
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 88% 72%, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 24%);
  pointer-events: none;
}

.hero-review-quote {
  margin: 10px auto 60px;
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 20px;
}

.hero-review-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.4;
  color: var(--accent);
  margin-bottom: 22px;
  font-style: italic;
}

.hero-review-author {
  font-size: 14px;
  color: #F8F3EC;
  letter-spacing: 0.05em;
}

.hero-review-author .author-name {
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
}

.hero-review-author .author-rating {
  color: var(--accent);
  margin-top: 6px;
  font-size: 16px;
}

.google-score-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto 48px;
  padding: 18px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  max-width: 320px;
}

.google-score-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.google-score-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #F8F3EC;
  line-height: 1;
}

.google-score-stars {
  font-size: 18px;
  letter-spacing: 2px;
}
.google-score-stars .star-empty {
  color: rgba(255,255,255,0.12);
}
.google-score-stars .star-filled {
  color: #f5c842;
}

.google-score-count {
  font-size: 13px;
  color: rgba(248,243,236,0.5);
  font-family: 'Inter', sans-serif;
  width: 100%;
  margin-top: 2px;
}

.reviews-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.reviews-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.56);
}

.reviews-head h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.06;
  color: #F8F3EC;
}

.reviews-intro {
  margin: 0 auto;
  max-width: 640px;
  color: rgba(248, 243, 236, 0.72);
  line-height: 1.75;
}

.reviews-slider-container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.reviews-track.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}

.reviews-track.is-dragging .review-card {
  user-select: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.review-card {
  flex: 0 0 calc(33.333% - 15px);
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease, border-color 0.3s ease;
  user-select: none;
}

.review-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(185, 106, 46, 0.3);
  transform: translateY(-5px) scale(1.01);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #9E5725 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  box-shadow: 0 10px 20px rgba(185, 106, 46, 0.15);
}

.review-author-info strong {
  display: block;
  font-size: 16px;
  color: #F8F3EC;
  margin-bottom: 4px;
}

.review-rating {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-date {
  font-size: 12px;
  letter-spacing: 0;
  color: rgba(248, 243, 236, 0.4);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.review-text {
  margin: 0;
  color: rgba(248, 243, 236, 0.75);
  line-height: 1.7;
  font-size: 15px;
  flex: 1;
}

/* Dots Pagination */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  padding: 0;
}

.dot.active {
  background: var(--accent);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(185, 106, 46, 0.4);
}

@media (max-width: 980px) {
  .review-card {
    flex: 0 0 calc(50% - 11px);
  }
}

@media (max-width: 640px) {
  .review-card {
    flex: 0 0 100%;
  }

  .reviews-track {
    gap: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .review-card {
    padding: 28px;
    border-radius: 20px;
  }
}

.reviews-google-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #F8F3EC;
  text-decoration: none;
  font-weight: 600;
  transition: background .22s ease, transform .22s ease, border-color .22s ease;
}

.reviews-google-link:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .reviews-google-link {
    display: flex;
    width: fit-content;
    margin: 24px auto 0;
    text-align: center;
  }
}

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

}

/* =========================
   RESERVE UX TUNING
========================= */

.reservation-mode-card {
  position: relative;
  min-height: 136px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.reservation-mode-card:not(.is-active) {
  opacity: 0.82;
}


.reservation-mode-card strong {
  margin-bottom: 6px;
}

/* =========================
   RESERVATION MODE — CLEAN ACTIVE STATE
========================= */

.reservation-mode-card {
  position: relative;
  min-height: 136px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition: all 0.25s ease;
}

/* Hover (subtiel, NIET oranje) */
.reservation-mode-card:hover {
  border-color: rgba(185, 106, 46, 0.34);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Actief = boutique oranje */
.reservation-mode-card.is-active {
  border-color: rgba(185, 106, 46, 0.7);

  background: linear-gradient(180deg,
      rgba(185, 106, 46, 0.14) 0%,
      rgba(185, 106, 46, 0.08) 100%);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.2),
    0 0 28px rgba(185, 106, 46, 0.16);

  transform: translateY(-2px);
  opacity: 1;
}

/* Niet actief = rust */
.reservation-mode-card:not(.is-active) {
  opacity: 0.65;
}

.reservation-form--split {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  border-radius: 26px;
}

.form-grid--labels {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.form-field {
  gap: 8px;
}

.form-field label,
.form-label-static {
  font-size: 13px;
  letter-spacing: 0.01em;
  color: rgba(248, 243, 236, 0.78);
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  min-height: 58px;
  border-radius: 18px;
}

.reservation-form textarea {
  width: 100%;
  min-height: 144px;
  margin-top: 0;
  padding: 18px;
  border-radius: 18px;
  resize: vertical;
}



#rieuDateWrap {
  grid-column: span 2;
}

.concert-date-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  /* Consistente boutique spatiëring */
}


.concert-date-option span {
  min-height: 62px;
  padding: 0 12px;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  border-radius: 16px;
}

.concert-date-option input:checked+span {
  box-shadow: 0 0 0 1px rgba(185, 106, 46, 0.18) inset;
}

.reservation-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 100%;
}

.reservation-note a {
  white-space: nowrap;
}

.privacy-note {
  margin-top: 12px;
  margin-bottom: 20px;
  max-width: 100%;
}

#reservationSubmit {
  margin-top: 0;
  min-width: 240px;
  padding: 15px 34px;
}

@media (max-width: 1100px) {
  .reservation-form--split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .form-grid--labels {
    grid-template-columns: 1fr 1fr;
  }

  #rieuDateWrap {
    grid-column: 1 / -1;
  }

  .concert-date-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reservation-mode-grid {
    grid-template-columns: 1fr;
  }

  .reservation-mode-card {
    min-height: auto;
    padding: 20px;
  }

  .form-grid--labels {
    grid-template-columns: 1fr;
  }

  .concert-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .concert-date-option span {
    min-height: 56px;
    font-size: 14px;
  }
}

@media (max-width: 320px) {
  .concert-date-grid {
    grid-template-columns: 1fr;
  }

  .concert-date-option span {
    min-height: 44px;
  }
}

.is-hidden {
  display: none !important;
}

[hidden] {
  display: none !important;
}

@media (min-width: 769px) and (max-width: 1280px) {

  .logo-full {
    max-width: 205px;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 15px;
  }

  .header-right {
    gap: 8px;
  }
}

/* =========================
   COMBO BAR UNDER HERO
========================= */








@media (max-width: 900px) {
  .combo-bar-grid {
    grid-template-columns: 1fr;
  }

  .combo-bar-item strong {
    font-size: 20px;
  }
}

.hero-fastline {
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(248, 243, 236, 0.92);
}

@media (max-width: 768px) {
  .hero-fastline {
    font-size: 16px;
    text-align: center;
  }
}


/* =========================
   BREWSTINO TEASER — HOME
========================= */

.brewstino-teaser-home {
  position: relative;
  overflow: hidden;
  padding: 72px 0 82px;
  background:
    radial-gradient(circle at 18% 20%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 34%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(180deg, #171412 0%, #1D1917 100%);
  color: #F8F3EC;
}

.brewstino-teaser-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 18%);
  pointer-events: none;
}

.brewstino-teaser-home .container {
  position: relative;
  z-index: 2;
}

.brewstino-teaser-box {
  max-width: 840px;
  margin: 0 auto;
  padding: 34px 36px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brewstino-teaser-eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 243, 236, 0.58);
}

.brewstino-teaser-box h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  color: #F8F3EC;
}

.brewstino-teaser-box p {
  max-width: 620px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(248, 243, 236, 0.74);
}

.brewstino-teaser-home .btn {
  min-width: 220px;
  text-align: center;
}

@media (max-width: 768px) {
  .brewstino-teaser-home {
    padding: 58px 0 68px;
  }

  .brewstino-teaser-box {
    padding: 26px 22px;
    border-radius: 18px;
  }

  .brewstino-teaser-box h2 {
    font-size: 36px;
  }

  .brewstino-teaser-box p {
    font-size: 17px;
  }

  .brewstino-teaser-home .btn {
    width: 100%;
    min-width: 0;
  }
}





.brewstino-intro {
  max-width: 760px;
}





.footer-location-map {
  position: relative;
  cursor: pointer;
}

.footer-location-map iframe {
  pointer-events: none;
}

.footer-location-map-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 18px;
  text-decoration: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.12) 0%,
      rgba(0, 0, 0, 0) 24%);
}

.footer-location-map-link span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(28, 28, 28, 0.78);
  border: 1px solid rgba(248, 243, 236, 0.14);
  color: #F8F3EC;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-location-map:hover .footer-location-map-link span {
  transform: translateY(-1px);
  background: rgba(185, 106, 46, 0.92);
  border-color: rgba(185, 106, 46, 0.92);
}

@media (max-width: 768px) {
  .footer-location-map-link {
    padding: 14px;
  }

  .footer-location-map-link span {
    min-height: 36px;
    font-size: 13px;
  }
}

.espresso-highlight {
  background: linear-gradient(135deg, #b8860b, #d4af37, #cd7f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.badge-scarce {
  display: inline-block;
  background: linear-gradient(135deg, #b8860b, #cd7f32);
  color: #171412;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  margin-left: 12px;
  text-transform: uppercase;
  vertical-align: middle;
  animation: pulse-scarce 2s infinite;
}

@keyframes pulse-scarce {
  0% {
    box-shadow: 0 0 0 0 rgba(185, 106, 46, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(185, 106, 46, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(185, 106, 46, 0);
  }
}

.highlight-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.highlight-card-link p {
  margin-bottom: 24px;
}

.highlight-arrow {
  margin-top: auto;
  align-self: flex-start;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(248, 243, 236, 0.34);
  color: #F8F3EC;
  font-size: 18px;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.highlight-card-link:hover .highlight-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateX(2px);
}

/* =========================
   FOOTER BOUTIQUE
========================= */

.footer-boutique {
  position: relative;
  overflow: hidden;
  padding: 72px 0 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 106, 46, 0.10) 0%, rgba(185, 106, 46, 0) 32%),
    linear-gradient(180deg, #120f0d 0%, #0d0c0b 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 243, 236, 0.78);
}

.footer-boutique::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 18%);
  pointer-events: none;
}

.footer-boutique .container {
  position: relative;
  z-index: 1;
}

.footer-boutique-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.footer-boutique-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 18px;
}

.footer-boutique-logo img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
}

.footer-boutique-text {
  max-width: 320px;
  margin: 0 0 22px;
  line-height: 1.8;
  color: rgba(248, 243, 236, 0.68);
}

.footer-boutique-socials {
  display: flex;
  gap: 14px;
}

.footer-boutique-socials a {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #F8F3EC;
  border: 1px solid rgba(248, 243, 236, 0.18);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.25s ease;
}

.footer-boutique-socials a:hover {
  color: #fff;
  border-color: rgba(185, 106, 46, 0.48);
  background: rgba(185, 106, 46, 0.16);
  transform: translateY(-1px);
}

.footer-boutique-col h3 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.15;
  color: #F8F3EC;
}

.footer-boutique-col a,
.footer-boutique-col p {
  display: block;
  margin: 0 0 12px;
  color: rgba(248, 243, 236, 0.72);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-boutique-col a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-boutique-col--cta p {
  max-width: 360px;
  margin-bottom: 20px;
}

.footer-boutique-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-boutique-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff !important;
  border: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.25s ease;
}

.footer-boutique-btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-boutique-btn--ghost {
  background: transparent;
  color: #F8F3EC !important;
  border: 1px solid rgba(248, 243, 236, 0.18);
}

.footer-boutique-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(185, 106, 46, 0.42);
  color: #fff !important;
}

.footer-boutique-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(185, 106, 46, 0.18);
}

.footer-boutique-bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(248, 243, 236, 0.52);
}

@media (max-width: 1100px) {
  .footer-boutique-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .footer-boutique {
    padding: 54px 0 24px;
  }

  .footer-boutique-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-boutique-logo img {
    max-width: 160px;
  }

  .footer-boutique-col h3 {
    font-size: 22px;
  }

  .footer-boutique-actions {
    flex-direction: column;
  }

  .footer-boutique-btn {
    width: 100%;
  }
}

/* =========================
   HOMEPAGE FOOTER LOWER
========================= */

.footer-home-lower {
  margin-top: 56px;
  padding-top: 38px;
  border-top: 1px solid rgba(185, 106, 46, 0.18);
}

.footer-home-lower-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-home-links h3,
.footer-home-cta h3 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  line-height: 1.15;
  color: #F8F3EC;
}

.footer-home-links a {
  display: block;
  margin: 0 0 12px;
  color: rgba(248, 243, 236, 0.72);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.25s ease, transform 0.25s ease;
}

.footer-home-links a:hover {
  color: var(--accent);
  transform: translateX(2px);
}

.footer-home-cta p {
  max-width: 360px;
  margin: 0 0 20px;
  color: rgba(248, 243, 236, 0.72);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .footer-home-lower-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-home-cta {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer-home-lower {
    margin-top: 32px;
    padding-top: 26px;
  }
}

@media (max-width: 640px) {
  .footer-home-lower-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-home-links h3,
  .footer-home-cta h3 {
    font-size: 22px;
  }
}

/* =========================
   HOMEPAGE FOOTER NEWSLETTER
========================= */

.footer-home-newsletter h3 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  color: #F8F3EC;
}

.footer-home-newsletter p {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(248, 243, 236, 0.74);
}

.footer-newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  max-width: 520px;
}

.footer-newsletter-form input {
  flex: 1;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(248, 243, 236, 0.22);
  border-radius: 8px;
  background: #F8F3EC;
  color: #1C1C1C;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-newsletter-form input::placeholder {
  color: rgba(28, 28, 28, 0.52);
}

.footer-newsletter-form input:focus {
  border-color: rgba(185, 106, 46, 0.6);
  box-shadow: 0 0 0 4px rgba(185, 106, 46, 0.12);
}

.footer-newsletter-form button {
  width: 58px;
  min-width: 58px;
  border: 1px solid rgba(248, 243, 236, 0.22);
  border-radius: 8px;
  background: #F8F3EC;
  color: #1C1C1C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-newsletter-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .footer-home-newsletter {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-home-newsletter h3 {
    font-size: 40px;
    line-height: 1.04;
  }

  .footer-home-newsletter p {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .footer-newsletter-form {
    max-width: 100%;
  }

  .footer-newsletter-form input {
    min-height: 54px;
    font-size: 15px;
  }

  .footer-newsletter-form button {
    width: 54px;
    min-width: 54px;
    font-size: 20px;
  }
}

/* =========================
   NAOVENANT FAVORITES
========================= */
/* =========================
   WEBSHOP PRODUCT CARDS
========================= */
.coffee-store-section {
  background:
    radial-gradient(circle at 82% 16%, rgba(185, 106, 46, 0.08) 0%, rgba(185, 106, 46, 0) 34%),
    linear-gradient(180deg, #1D1917 0%, #120F0D 100%);
  color: #F8F3EC;
  padding: 110px 0;
}

.coffee-store-section .section-eyebrow {
  color: rgba(248, 243, 236, 0.6);
}

.coffee-store-section h2 {
  color: #F8F3EC;
}

.coffee-store-section .menu-intro {
  color: rgba(248, 243, 236, 0.8);
}

/* =========================
   DARK SECTION OVERRIDE
   Forces dark background on any section that uses this modifier.
   Used by brewstino shop sections.
========================= */
.menu-section--dark,
.shop-section,
.menu-hero-minimal {
  background: linear-gradient(180deg, #181412 0%, #0d0b0a 100%);
  /* Slightly darker/deeper but subtle */
  color: #F8F3EC;
  position: relative;
  overflow: hidden;
}


.hero-container-inner {
  position: relative;
  z-index: 10;
  /* Text stays clear above overlay */
}

.menu-section--dark h1,
.menu-section--dark h2,
.menu-section--dark h3,
.shop-section h1,
.shop-section h2,
.shop-section h3,
.menu-hero-minimal h1,
.menu-hero-minimal h2 {
  color: #F8F3EC;
}

.menu-section--dark .section-eyebrow,
.shop-section .section-eyebrow,
.menu-hero-minimal .section-eyebrow {
  color: var(--accent);
}

/* =========================
   NEW SHOP GRID UI
========================= */
.shop-controls,
.shop-tabs-container {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.shop-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
  overflow-x: auto;
}

.shop-tabs li {
  font-size: 15px;
  font-weight: 500;
  color: rgba(248, 243, 236, 0.6);
  cursor: pointer;
  padding-bottom: 10px;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.shop-tabs li:hover {
  color: rgba(248, 243, 236, 0.9);
}

.shop-tabs li.active {
  color: #F8F3EC;
}

.shop-tabs li.active::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
}

.shop-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns for a more premium, spacious look */
  gap: 30px;
}

.hero-subheadline {
  font-size: 18px;
  margin-bottom: 5px;
  color: rgba(248, 243, 236, 0.9);
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 25px;
  color: var(--accent);
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .shop-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .shop-card {
    padding-top: 25px;
  }

  .shop-card-eyebrow {
    font-size: 9px;
  }

  .shop-card h3 {
    font-size: 18px;
    margin: 0 0 10px 0;
  }

  .shop-card-tag,
  .shop-card-flavor {
    display: none;
  }

  .shop-card-image {
    padding: 0 10px 20px 10px;
  }

  .shop-card-image img {
    height: 140px;
  }

  .sc-footer-basket {
    display: none !important;
  }

  .sc-footer-price {
    border-right: none;
    flex: 1;
    font-size: 16px;
    padding: 12px;
  }
}

/* --- BOUTIQUE SHOP CARD --- */
.shop-card {
  background: #1a130f;
  /* Match the dark premium image background */
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  /* Sharper boutique corners */
  padding: 50px 30px;
  text-align: center;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.shop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.1);
}

.shop-card-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  /* Premium luxury tracking */
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.shop-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  /* Slightly larger for confidence */
  margin-bottom: 4px;
  color: #fff;
  font-weight: 700;
}

.shop-card-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  font-size: 11px;
  border-radius: 4px;
  margin-bottom: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.shop-card-image {
  background: transparent;
  padding: 10px 40px 30px 40px;
  display: flex;
  justify-content: center;
}

.shop-card-image img {
  height: 240px;
  object-fit: contain;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.shop-card:hover .shop-card-image img {
  transform: scale(1.04);
}

.shop-card-flavor {
  padding: 0 30px 30px 30px;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-style: italic;
  color: rgba(248, 243, 236, 0.85);
  line-height: 1.4;
  flex-grow: 1;
}

/* SPLIT BOTTOM BAR */
.shop-card-footer {
  display: flex;
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-footer-price {
  flex: 1.5;
  padding: 18px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: #fff;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-footer-basket {
  flex: 1;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  /* Larger icon for better visibility */
  color: #fff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
}

.sc-footer-basket i {
  transition: transform 0.3s ease;
}

.shop-card:hover .sc-footer-basket {
  background: var(--accent);
  color: #000;
  /* Dark icon on gold background for high contrast */
}

.shop-card:hover .sc-footer-basket i {
  transform: scale(1.2) rotate(-5deg);
}

/* --- PRODUCT BADGE --- */
.sc-badge {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  padding: 4px 14px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 50px;
  /* Elegant pill shape */
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  pointer-events: none;
  overflow: hidden;
}

.sc-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  animation: badgeShine 4s infinite ease-in-out;
}

@keyframes badgeShine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.shop-card-image {
  position: relative;
  aspect-ratio: 1/1;
  /* Ensuring perfect uniformity */
  overflow: hidden;
  background: #000;
}

.shop-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Shows the full bag with beans clearly */
  transition: transform 0.5s ease;
}

/* Hide the old tax hint and detail button logic */
.shop-card-tax-hint,
.shop-card-hover-btn {
  display: none;
}

/* --- PRODUCT DETAIL MODAL (NEW) --- */
.product-modal-glass {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.product-modal-glass.active {
  opacity: 1;
  pointer-events: auto;
}

.product-modal-content {
  background: #1a130f;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  overflow: hidden;
  position: relative;
}

@media (max-width: 850px) {
  .product-modal-content {
    flex-direction: column;
    overflow-y: auto;
  }
}

.pm-left {
  flex: 1;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.pm-left img {
  max-width: 100%;
  max-height: 450px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.pm-right {
  flex: 1.2;
  padding: 60px;
  display: flex;
  flex-direction: column;
  color: #fff;
}

@media (max-width: 600px) {
  .pm-right {
    padding: 30px;
  }

  .pm-left {
    padding: 30px;
  }
}

.pm-eyebrow {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 600;
}

.pm-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 20px;
}

.pm-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.pm-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
}

.pm-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.pm-meta-item i {
  font-size: 18px;
  color: var(--accent);
}

/* TOGGLE GROUP (Size Selection) */
.pm-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  display: block;
  opacity: 0.6;
}

.pm-size-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
}

.size-btn {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

.size-btn.active {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* CUSTOM DROPDOWN (Grind) */
.pm-grind-wrap {
  margin-bottom: 40px;
}

.pm-grind-select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) 50%;
}

/* ACTION BAR (Price + Add) */
.pm-action-bar {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.pm-qty-box {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.pm-qty-box button {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  height: 50px;
  cursor: pointer;
  font-size: 18px;
}

.pm-qty-box input {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  text-align: center;
  font-weight: 600;
  pointer-events: none;
}

.pm-add-main {
  flex: 1;
  background: var(--accent);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.pm-add-main:hover {
  background: var(--accent);
  filter: brightness(1.1);
}

.pm-add-main .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
}

.pm-close-x {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 50;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.pm-close-x:hover {
  opacity: 1;
}

.product-modal-image {
  flex: 1;
  background: #110c09;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.product-modal-image img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

.product-modal-info {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
}

.pm-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent);
  margin: 0 0 10px 0;
  text-transform: uppercase;
  font-weight: 600;
}

.pm-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #F8F3EC;
  margin: 0 0 15px 0;
}

.pm-price {
  font-size: 28px;
  font-weight: 500;
  color: #d8c2a5;
  margin: 0 0 30px 0;
}

.pm-variation-group {
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.03);
  padding: 20px;
  border-radius: 8px;
}

.pm-variation-group label {
  display: block;
  font-size: 14px;
  color: rgba(248, 243, 236, 0.8);
  margin-bottom: 12px;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper::after {
  content: '\f0d7';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: var(--accent);
  pointer-events: none;
}

.pm-select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: #000;
  border: 1px solid rgba(185, 106, 46, 0.4);
  color: #F8F3EC;
  padding: 14px 15px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.pm-select:focus {
  outline: none;
  border-color: var(--accent);
}

.pm-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.pm-qty {
  display: flex;
  align-items: center;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  overflow: hidden;
  height: 50px;
}

.qty-btn {
  background: transparent;
  border: none;
  color: #fff;
  width: 40px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.pm-qty input {
  width: 45px;
  background: transparent;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-family: inherit;
  -moz-appearance: textfield;
}

.pm-qty input::-webkit-outer-spin-button,
.pm-qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pm-add-btn {
  flex-grow: 1;
  height: 50px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.pm-add-btn:hover {
  background: #a35d28;
  transform: scale(1.02);
}

.pm-description {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 243, 236, 0.7);
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.pm-back-link {
  background: none;
  border: none;
  color: rgba(248, 243, 236, 0.5);
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
  padding: 0;
  margin-top: auto;
  transition: color 0.3s;
}

.pm-back-link:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .product-modal-layout {
    flex-direction: column;
  }

  .product-modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }

  .product-modal-image {
    padding: 30px;
  }

  .product-modal-info {
    padding: 30px;
  }
}

/* --- BOUTIQUE STYLE HERO --- */
.menu-hero-minimal.hero--boutique {
  background-color: transparent !important;
  color: #F8F3EC !important;
  padding-top: 120px;
  /* Reduced for breadcrumb view */
}

/* Updated hero default view for better conversion */
#hero-default-view {
  display: block;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out;
}

#hero-default-view h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-subheadline {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.hero-cta-btn {
  background: var(--accent);
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--accent);
}

.hero-cta-btn:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-trust-line {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Reduced height for the boutique hero */
#shop-hero:not(.hero--boutique) {
  padding-top: 120px;
  padding-bottom: 30px;
  /* Reduced from 60px to bring tagline closer to shop filters */
}

/* Reduce top padding for the shop section to bridge the gap with the hero tagline */
#bestel.shop-section {
  padding-top: 40px;
  /* Reduced from 110px */
}

.hero--boutique .section-eyebrow,
.hero--boutique .pm-eyebrow,
.hero--boutique .pm-label {
  color: var(--accent) !important;
  opacity: 1;
}

.hero--boutique h1,
.hero--boutique h2,
.hero--boutique p,
.hero--boutique span {
  color: #F8F3EC !important;
}

.hp-breadcrumb {
  font-size: 13px;
  color: rgba(248, 243, 236, 0.5);
  margin-bottom: 25px;
  text-align: left;
  letter-spacing: 0.5px;
}

.hp-breadcrumb a {
  color: rgba(248, 243, 236, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.hp-breadcrumb a:hover {
  color: #fff;
}

.hp-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  /* Keep it compact and centered */
  margin: 0 auto;
}

.hp-left {
  display: flex;
  justify-content: center;
}

.hp-left img {
  width: 100%;
  max-width: 380px;
  /* Restrict image size so it's not overwhelmingly large */
  height: auto;
  border-radius: 8px;
  /* Subtle rounding for boutique feel */
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
  /* Move shadow here from hero--boutique */
}

@media (max-width: 900px) {
  .hp-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hp-left img {
    max-width: 300px;
  }
}

.hp-title-main {
  font-family: var(--font-primary);
  font-size: 42px;
  margin: 5px 0 20px;
  font-weight: 500;
  line-height: 1.1;
}

.hp-short-desc {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 650px;
  color: rgba(248, 243, 236, 0.7) !important;
}

.hp-meta-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.hp-meta-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 15px;
  color: #F8F3EC;
}

.hp-meta-item i {
  width: 20px;
  font-size: 18px;
  text-align: center;
  color: var(--accent);
}

.hp-selection-area {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer--minimal .footer-bottom-simple {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 600px) {
  .site-footer--minimal .footer-bottom-simple {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hp-selection-area {
    flex-direction: column;
    gap: 25px;
  }
}

.hp-selection-group {
  flex: 1;
}

/* Blanche Dael Action Bar */
.hp-action-bar-new {
  display: flex;
  align-items: stretch;
  gap: 15px;
  height: 56px;
}

.hp-qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

.hp-qty-selector button {
  background: transparent;
  border: none;
  width: 48px;
  height: 100%;
  cursor: pointer;
  font-size: 18px;
  color: #F8F3EC;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-qty-selector button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hp-qty-selector input {
  width: 40px;
  border: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #F8F3EC;
  background: transparent;
}

.hp-buy-btn {
  flex: 1;
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hp-buy-btn:hover {
  background: var(--accent-hover);
  box-shadow: 0 4px 12px rgba(185, 106, 46, 0.25);
}

.hp-buy-btn span {
  color: #fff !important;
}

.hp-buy-btn i {
  font-size: 18px;
  color: #fff !important;
}

.hero--boutique .pm-grind-wrap select {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #F8F3EC;
  border-radius: 4px;
}

.hero--boutique .pm-grind-wrap select option {
  background: #1a1a1a;
  color: #F8F3EC;
}

.hero--boutique .size-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(248, 243, 236, 0.7);
  height: 40px;
  padding: 0 20px;
  border-radius: 4px;
}

.hero--boutique .size-btn.active {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}

.cart-toggle {
  background: transparent;
  border: none;
  color: var(--background);
  font-size: 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-toggle:hover {
  color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  /* Slightly wider for breathability */
  background: rgba(20, 18, 17, 0.82);
  /* Glassmorphism */
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: #F8F3EC;
  z-index: 3001;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-sidebar.active {
  transform: translateX(0);
}

.cart-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #120F0D;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-header h2 {
  margin: 0;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #cda87a;
}

.cart-close {
  background: transparent;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #fff;
  transition: opacity 0.2s;
}

.cart-close:hover {
  opacity: 0.7;
}

.cart-notification {
  background: rgba(185, 106, 46, 0.15);
  color: #F8F3EC;
  padding: 16px 24px;
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  margin: 16px 24px 0;
  display: none;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-img img {
  width: 100%;
  display: block;
}

.cart-item-info h4 {
  margin: 0 0 4px;
  font-size: 17px;
  font-family: 'Playfair Display', serif;
  color: #F8F3EC;
}

.cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: rgba(248, 243, 236, 0.9);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-item-qty {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  align-items: center;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F8F3EC;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.cart-item-qty .qty {
  width: 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #F8F3EC;
}

.cart-item-remove {
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: rgba(248, 243, 236, 0.6);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
  padding-right: 0;
}

.cart-item-remove:hover {
  opacity: 1;
  color: #fff;
}

.cart-footer {
  padding: 24px;
  background: #120F0D;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: #F8F3EC;
}

.cart-footer-text {
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  color: rgba(248, 243, 236, 0.6);
  line-height: 1.5;
  margin-bottom: 24px;
}

.cart-international-note {
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: rgba(248, 243, 236, 0.38);
  line-height: 1.4;
  margin-top: 12px;
  margin-bottom: 16px;
  font-style: italic;
}

.shipping-notice {
  font-size: 16px;
  font-family: 'Playfair Display', serif;
  text-align: left;
  background: transparent;
  color: #F8F3EC;
  padding: 0;
}

.subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  color: rgba(248, 243, 236, 0.6);
}

.cart-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.btn-continue,
.btn-checkout-new {
  padding: 16px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-continue {
  background: transparent;
  border: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset;
  color: #F8F3EC;
}

.btn-continue:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-checkout-new {
  background: #F8F3EC;
  border: none;
  color: #171412;
}

.btn-checkout-new:hover {
  background: #fff;
  color: #000;
}

/* =========================
   CART TOAST NOTIFICATION
========================= */
.cart-toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 11000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.cart-toast {
  pointer-events: auto;
  min-width: 320px;
  max-width: 400px;
  background: rgba(22, 19, 17, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.cart-toast.active {
  transform: translateX(0);
  opacity: 1;
}

.cart-toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-toast-icon {
  color: var(--accent);
  font-size: 18px;
}

.cart-toast-message {
  color: #F8F3EC;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.cart-toast-actions {
  padding-left: 30px;
  /* Align with text */
}

.cart-toast-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.2s ease;
}

.cart-toast-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .cart-toast-container {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .cart-toast {
    min-width: 100%;
    max-width: 100%;
  }
}

/* =========================
   FOOTER
========================= */
/* =========================
   WEBSHOP PREVIEW 
========================= */

.webshop-preview {
  padding: 80px 0;
  background: var(--primary);
}

.webshop-preview .section-intro {
  color: rgba(248, 243, 236, 0.7);
  margin-top: 10px;
}

.webshop-preview h2 {
  color: #F8F3EC;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 106, 46, 0.25);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(185, 106, 46, 0.1);
  }
}

.product-image-wrapper {
  display: block;
  overflow: hidden;
  position: relative;
  height: 240px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-image {
    transform: scale(1.08);
  }
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 20px;
  color: #F8F3EC;
  margin: 0 0 8px 0;
}

.product-desc {
  color: rgba(248, 243, 236, 0.7);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-price {
  font-weight: 600;
  font-size: 18px;
  color: var(--accent);
}

.product-footer .btn-sm {
  padding: 8px 18px;
  min-height: 40px;
  font-size: 13px;
  border-radius: 999px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8F3EC;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.product-footer .btn-sm:hover {
  background: var(--accent);
  border-color: var(--accent);
}

/* =========================
   DYNAMIC REVIEWS CONFIG
========================= */

.review-mini-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.reviews-status-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(248, 243, 236, 0.7);
  font-family: inherit;
  font-size: 15px;
  padding: 40px 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    /* Zorgt ervoor dat alle reviews op mobile onder elkaar zakken */
  }
}

/* =========================
   STICKY MOBIELE CTA
========================= */

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: rgba(14, 12, 10, 0.98);
  border-top: 1px solid rgba(185, 106, 46, 0.2);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(100%);
  transition: transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.sticky-mobile-cta.is-visible {
  transform: translateY(0);
}

.sticky-mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  background: #B8732F;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.sticky-mobile-cta-btn:hover,
.sticky-mobile-cta-btn:active {
  background: #c9813a;
  transform: scale(0.99);
}

.sticky-mobile-cta-btn i {
  font-size: 16px;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: block;
  }
}

/* =========================
   MOBILE POLISH (480px)
   ========================= */

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

  .btn-checkout-new {
    order: -1;
  }

  .qty-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .cart-footer {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }
}

/* =========================
   BOUTIQUE POLISH & EFFECTS
   ========================= */

/* ============/* Consolidated Reveal Animations managed at the top */
d-2 {
  transition-delay: 0.25s;
}

/* Float Animation */
@keyframes drinkFloat {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* =========================
   HERO PRODUCT REDESIGN (BOUTIQUE)
   ========================= */

.hp-expert-badge {
  font-size: 11px;
  font-weight: 600;
  color: #cda87a;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 4px;
  background: rgba(205, 168, 122, 0.1);
  border: 1px solid rgba(205, 168, 122, 0.2);
}

.hp-expertise-bars {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.hp-stat-bar {
  flex: 1;
  max-width: 150px;
}

.hp-stat-bar span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(248, 243, 236, 0.6);
  margin-bottom: 6px;
}

.hp-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.hp-bar-fill {
  height: 100%;
  background: #a37255;
  /* Boutique button brown */
  border-radius: 2px;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hp-flavor-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0 25px 0;
}

.hp-flavor-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #F8F3EC;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hp-flavor-item i {
  color: #cda87a;
  font-size: 14px;
}

.hp-expert-quote {
  font-family: "Georgia", "Times New Roman", serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(248, 243, 236, 0.85);
  line-height: 1.6;
  border-left: 2px solid #a37255;
  padding-left: 15px;
  margin-bottom: 35px;
}

/* Volume Selector */
.hp-volume-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.volume-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.volume-box:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.volume-box.active {
  background: rgba(163, 114, 85, 0.15);
  border-color: #a37255;
  box-shadow: 0 4px 15px rgba(163, 114, 85, 0.1);
}

.vb-badge {
  background: linear-gradient(135deg, #dfc29f 0%, #cda87a 100%);
  color: #120F0D;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  vertical-align: middle;
}

.vb-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.vb-radio-inner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cda87a;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.volume-box.active .vb-radio {
  border-color: #cda87a;
}

.volume-box.active .vb-radio-inner {
  transform: scale(1);
}

.vb-info {
  flex: 1;
}

.vb-title {
  font-size: 16px;
  font-weight: 600;
  color: #F8F3EC;
}

.vb-discount {
  font-size: 12px;
  font-weight: 500;
  color: #cda87a;
  margin-left: 8px;
  padding: 2px 6px;
  background: rgba(205, 168, 122, 0.15);
  border-radius: 4px;
}

.vb-price {
  font-size: 16px;
  font-weight: 600;
  color: #F8F3EC;
}

/* Shipping Progress */
.hp-shipping-progress {
  margin-top: 25px;
  background: rgba(255, 255, 255, 0.03);
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.sp-text {
  font-size: 13px;
  color: rgba(248, 243, 236, 0.8);
  margin-bottom: 8px;
  font-weight: 500;
  text-align: center;
}

.sp-track {
  width: 100%;
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  overflow: hidden;
}

.sp-fill {
  height: 100%;
  background: linear-gradient(90deg, #a37255 0%, #cda87a 100%);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 0%;
  /* Dynamic */
}

/* Button Animation */
.hp-buy-animated {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hp-buy-animated:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(163, 114, 85, 0.3);
  filter: brightness(1.1);
}

.hp-buy-animated::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(30deg) translate(-100%, -100%);
  transition: all 0.6s ease;
}

.hp-buy-animated:hover::after {
  transform: rotate(30deg) translate(100%, 100%);
}

/* =========================
   RELATED PRODUCTS
   ========================= */
.hp-related-products {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease;
}

.hp-related-title {
  font-size: 16px;
  color: #cda87a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.hp-related-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.hp-related-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.2);
}

.hp-related-img {
  width: 40px;
  height: 40px;
  background: rgba(205, 168, 122, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cda87a;
  margin-right: 15px;
  font-size: 16px;
}

.hp-related-info {
  flex: 1;
}

.hp-related-info h4 {
  font-size: 14px;
  color: #F8F3EC;
  margin: 0 0 4px 0;
}

.hp-related-info span {
  font-size: 13px;
  color: rgba(248, 243, 236, 0.6);
}

.hp-related-add {
  background: #a37255;
  color: #F8F3EC;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hp-related-add:hover {
  background: #cda87a;
  transform: scale(1.1);
}

.drink-float {
  animation: drinkFloat 4s ease-in-out infinite;
  will-change: transform;
}

/* Responsive adjustments for float */
@media (prefers-reduced-motion: reduce) {
  .drink-float {
    animation: none;
  }
}

/* Cart Summary Sidebar */
.cart-summary {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-bottom: 5px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
  color: rgba(248, 243, 236, 0.7);
}

.summary-row.total-row {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  color: #F8F3EC;
  font-weight: 700;
}

.shipping-progress-mini {
  margin-bottom: 25px;
}

/* Cart Discount Section */
.cart-discount-section {
  margin-bottom: 25px;
  text-align: left;
}

.cart-discount-toggle {
  font-size: 13px;
  color: #cda87a;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
  margin-bottom: 5px;
}

.cart-discount-toggle:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.cart-discount-field {
  display: none;
  gap: 10px;
  margin-top: 10px;
  animation: slideDown 0.3s ease-out forwards;
}

.cart-discount-field.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

#cart-discount-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F8F3EC;
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 4px;
  outline: none;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxmZXR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjY1IiBudW1PY3RhdmVzPSIzIiBzdGljaHlWb3J0ZXg9InRydWUiLz48L3N2Zz4=');
  opacity: 0.9;
}

#cart-discount-btn {
  background: #cda87a;
  color: #1a1a1a;
  border: none;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#cart-discount-btn:hover {
  background: #e1bc8e;
}

/* =========================
   SHIPPING OPTIMIZATION
   ========================= */

.blink-urgent {
  animation: blink-animation 1s steps(5, start) infinite;
  -webkit-animation: blink-animation 1s steps(5, start) infinite;
  color: #ff4757 !important;
  font-weight: 700;
}

@keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

@-webkit-keyframes blink-animation {
  to {
    visibility: hidden;
  }
}

.dominant-carrier {
  border: 2px solid #cda87a !important;
  background: rgba(205, 168, 122, 0.08) !important;
  position: relative;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.dominant-carrier::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0 0 20px rgba(205, 168, 122, 0.15);
  pointer-events: none;
  border-radius: inherit;
}

.shipping-promo-banner {
  width: 100%;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.promo-state-normal {
  background: rgba(255, 255, 255, 0.03);
  color: #F8F3EC;
}

.promo-state-near {
  background: rgba(205, 168, 122, 0.15);
  color: #cda87a;
  border-color: rgba(205, 168, 122, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-state-reached {
  background: rgba(46, 204, 113, 0.1);
  color: #2ecc71;
  border-color: rgba(46, 204, 113, 0.3);
}

.verder-btn.urgent-error {
  background: #ff4757 !important;
  color: #fff !important;
  cursor: not-allowed !important;
  opacity: 1 !important;
  box-shadow: 0 0 20px rgba(255, 71, 87, 0.3);
}

/* =========================
   GLOBAL CART ENHANCEMENTS
   ========================= */

/* Header Cart Icon */
.header-icon-btn.cart-toggle {
  display: flex;
  position: relative;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  font-size: 1.1rem;
  margin-right: 15px;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}

.header-icon-btn.cart-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  color: #cda87a;
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #cda87a;
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  animation: badgeIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes badgeIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* Bounce Animation for Icon */
.cart-bounce {
  animation: cart-bounce 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

@keyframes cart-bounce {

  0%,
  100% {
    transform: scale(1);
  }

  33% {
    transform: scale(1.2) rotate(-5deg);
  }

  66% {
    transform: scale(0.9) rotate(5deg);
  }
}

/* Fly to Cart Particle */
.cart-fly-particle {
  position: fixed;
  width: 12px;
  height: 12px;
  background: #cda87a;
  border-radius: 50%;
  z-index: 10000;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  box-shadow: 0 0 10px rgba(205, 168, 122, 0.6);
}

/* Cart Toast (Optional UI) */
.cart-toast-container {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cart-toast {
  background: #1a1a1a;
  border: 1px solid rgba(205, 168, 122, 0.3);
  color: #f8f3ec;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.cart-toast.active {
  transform: translateX(0);
}

.cart-toast-icon {
  color: #2ecc71;
  font-size: 1.2rem;
}

.cart-toast-message {
  font-size: 14px;
  font-weight: 500;
}

.cart-toast-link {
  color: #cda87a;
  text-decoration: underline;
  font-weight: 600;
  cursor: pointer;
}

/* =========================
   ROASTERY STORY SECTION & CINEMATIC MOSAIC
========================= */
.roastery-story-section {
  padding: 160px 0;
  background: #120f0d;
  overflow: hidden;
}

.roastery-flex {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 120px;
  align-items: flex-start;
  /* Changed from center to allow sticky more room */
}

.roastery-content {
  max-width: 440px;
  position: sticky;
  top: 18vh;
  z-index: 10;
}

.roastery-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  /* Centering buttons relative to each other */
  margin-top: 40px;
  width: fit-content;
  /* Ensure container is only as wide as the buttons */
}

.btn-secondary-link {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(248, 243, 236, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(248, 243, 236, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary-link:hover {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  opacity: 1;
}

.roastery-text {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(248, 243, 236, 0.6);
  margin-bottom: 25px;
  font-family: 'Inter', sans-serif;
}

/* Atmospheric Cinematic Mosaic */
.roastery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(16, 50px);
  gap: 0;
  /* Removing gap for overlap control */
  position: relative;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  background: #000;
  transition: transform 0.4s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Subtle dark mask for text legibility */
.mosaic-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.mosaic-item--1 {
  border-color: rgba(255, 255, 255, 0.1);
}

/* The Secret to the WOW factor: Smooth Parallax on Img */
.mosaic-item img {
  width: 100%;
  height: 130%;
  /* Extra height for parallax travel */
  object-fit: cover;
  display: block;
  position: absolute;
  top: -15%;
  left: 0;
  opacity: 0.85;
  transition: opacity 0.6s ease;
  will-change: transform;
  transform: translateY(calc(var(--parallax-y, 0) * 1.2px));
  /* Using the JS variable with a multiplier */
}

.mosaic-item:hover img {
  opacity: 1;
}

/* Asymmetric Composition */
.mosaic-item--1 {
  grid-column: 1 / 11;
  grid-row: 1 / 10;
  z-index: 2;
}

.mosaic-item--2 {
  grid-column: 8 / 13;
  grid-row: 8 / 16;
  z-index: 4;
}

.mosaic-item--3 {
  grid-column: 2 / 9;
  grid-row: 10 / 15;
  z-index: 3;
}

.mosaic-item--4 {
  grid-column: 7 / 12;
  grid-row: 2 / 7;
  z-index: 1;
  opacity: 0.6;
  /* Deeper background element */
}

/* Floating Glass Overlay (Extra WOW) */
.roastery-glass-panel {
  position: absolute;
  grid-column: 1 / 6;
  grid-row: 14 / 18;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 5;
  border-radius: 4px;
}

.glass-caption {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--accent-gold);
  margin-bottom: 15px;
  text-transform: uppercase;
}

.glass-quote {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

.mosaic-item:hover img {
  opacity: 1;
}

/* Mosaic Item 1: The wide anchor (People/Machine) */
.mosaic-item--1 {
  grid-column: 1 / 13;
  grid-row: 1 / 8;
  z-index: 1;
}

/* Mosaic Item 2: Vertical Detail (Gauge) */
.mosaic-item--2 {
  grid-column: 1 / 5;
  grid-row: 8 / 15;
  z-index: 3;
}

/* Mosaic Item 3: Landscape Detail (Beans) */
.mosaic-item--3 {
  grid-column: 5 / 13;
  grid-row: 8 / 12;
  z-index: 2;
}

/* Mosaic Item 4: Portrait Detail (Handle) */
.mosaic-item--4 {
  grid-column: 5 / 9;
  grid-row: 12 / 18;
  z-index: 4;
}

.roastery-coords {
  position: absolute;
  left: -80px;
  bottom: 0;
  writing-mode: vertical-rl;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  color: rgba(205, 168, 122, 0.4);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 20;
}

/* Atmospheric Cinematic Mosaic - The Masterpiece (6 Photos) */
.roastery-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(20, 45px);
  /* Expanded for 6 photos */
  gap: 0;
  position: relative;
}

/* Offset shifts for 'Floating' rhythm - Refined for 6 items */
.mosaic-item--1 {
  grid-column: 1 / 11;
  grid-row: 1 / 10;
  z-index: 2;
  transform: translateY(0);
}

.mosaic-item--2 {
  grid-column: 9 / 13;
  grid-row: 9 / 17;
  z-index: 5;
  transform: translateY(-40px);
}

.mosaic-item--3 {
  grid-column: 1 / 8;
  grid-row: 11 / 18;
  z-index: 4;
  transform: translateY(10px);
}

.mosaic-item--4 {
  grid-column: 7 / 11;
  grid-row: 3 / 8;
  z-index: 1;
  opacity: 0.6;
  transform: translateY(30px);
}

.mosaic-item--5 {
  grid-column: 9 / 13;
  grid-row: 1 / 6;
  z-index: 3;
  transform: translateY(-10px);
}

.mosaic-item--6 {
  grid-column: 8 / 13;
  grid-row: 16 / 21;
  z-index: 6;
  transform: translateY(-60px);
}

/* Floating Glass Overlay (Extra WOW) */
.roastery-glass-panel {
  position: absolute;
  grid-column: 1 / 7;
  grid-row: 16 / 21;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 30;
  /* High z-index to stay above background items */
  border-radius: 4px;
}

/* Artistic Detail Overlays */
.mosaic-item::after {
  content: attr(data-label);
  position: absolute;
  top: 25px;
  left: 25px;
  font-size: 10px;
  color: #fff;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 500;
  opacity: 0.8;
}

.roastery-decorative-line {
  position: absolute;
  height: 120px;
  width: 1px;
  background: rgba(205, 168, 122, 0.3);
  left: -40px;
  top: 10%;
}

.roastery-stamp-badge {
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: var(--accent-gold);
  color: #1a1a1a;
  padding: 20px 30px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  z-index: 20;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1200px) {
  .roastery-flex {
    gap: 80px;
    grid-template-columns: 380px 1fr;
  }
}

@media (max-width: 992px) {
  .roastery-flex {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .roastery-content {
    max-width: 100%;
    text-align: center;
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .roastery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
    gap: 20px;
    max-width: 800px;
    margin: 40px auto 0;
  }

  /* Clearer, calmer grid for tablets */
  .mosaic-item {
    grid-column: span 3 !important;
    grid-row: auto !important;
    height: 300px;
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .mosaic-item--1 {
    grid-column: span 6 !important;
    height: 400px;
  }

  .roastery-glass-panel {
    position: relative;
    grid-column: span 6 !important;
    grid-row: auto !important;
    margin-top: 20px;
    padding: 30px;
  }

  .roastery-coords {
    position: static;
    writing-mode: horizontal-tb;
    margin-top: 20px;
    opacity: 0.6;
  }

  .roastery-decorative-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .mosaic-item {
    grid-column: span 6 !important;
    height: 350px;
  }

  .roastery-glass-panel {
    padding: 25px;
  }
}

/* =========================
   FOOTER CREDITS
   ========================= */
.footer-credit {
  display: flex;
  font-size: 11px;
  opacity: 0.4;
  color: inherit;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  transition: opacity 0.3s ease;
  margin-top: 0;
}

.footer-credit a {
  color: inherit;
  text-decoration: none;
}

.footer-credit:hover {
  opacity: 0.8;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Flex layout voor footer regels */
.footer-bottom-simple,
.footer-boutique-bottom,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

@media (max-width: 600px) {

  .footer-bottom-simple,
  .footer-boutique-bottom,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- BARISTA'S BLUEPRINT (TECHNICAL SPECS) --- */
.shop-card-blueprint {
  margin: 0 30px 30px 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-card-blueprint h4 {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 15px;
  text-align: center;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  text-align: left;
}

.blueprint-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.blueprint-label {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
}

.blueprint-value {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
}

/* Mobile adjustments for blueprint */
@media (max-width: 600px) {
  .shop-card-blueprint {
    display: none;
    /* Keep mobile cards compact */
  }
}

/* ── Star rating animation ── */
.star-rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
}

.star-track {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}

.star-empty {
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
}

.star-filled {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 0%;
  color: #f5c842;
  letter-spacing: 2px;
  white-space: nowrap;
  transition: width 2.2s cubic-bezier(0.25, 0, 0.4, 1);
}

.star-score {
  font-size: 13px;
  font-weight: 600;
  color: #f5c842;
  font-family: 'Inter', sans-serif;
}

/* ── Why Naovenant strip ── */
.why-strip {
  background: #12100F;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0;
}

.why-strip-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #B96A2E);
  margin: 0 0 40px;
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: 16px;
}

.why-strip-item:last-child {
  border-right: none;
}

.why-strip-icon-wrap {
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent, #B96A2E);
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.why-strip-img-wrap {
  border: none;
  background: transparent;
}

.why-strip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-strip-img-wrap img[src*="shotpiston"] {
  object-fit: contain;
  background: transparent;
}



.why-strip-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(248,243,236,0.7);
  line-height: 1.6;
  max-width: 140px;
}

@media (max-width: 768px) {
  .why-strip {
    padding: 40px 0;
  }
  .why-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-strip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 20px;
  }
  .why-strip-item:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.06);
  }
  .why-strip-item:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

.lipton-desktop {
  display: flex;
}

@media (max-width: 768px) {
  .lipton-desktop {
    display: none !important;
  }
}

.rieu-sponsor-mobile {
  display: none;
}

@media (max-width: 768px) {
  .rieu-sponsor-mobile {
    display: flex !important;
  }
}