/* SOLUNA — Shared styles */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap');

:root {
  --bg: #F6F2E8;
  --ink: #0A0A0A;
  --ink-soft: #1a1a1a;
  --rule: #d8d2c2;
  --serif: 'EB Garamond', 'Times New Roman', serif;
  --sans: 'Satoshi', 'Helvetica Neue', Arial, sans-serif;
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 28px 56px;
  background: transparent;
}

.site-header.has-rule {
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}

.site-header .lang {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  justify-self: start;
}

/* Language dropdown */
.lang-wrap {
  position: relative;
  justify-self: start;
  padding-bottom: 12px; /* hover bridge */
}
.lang-wrap .lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: inherit;
}
.lang-wrap .lang::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s ease;
}
.lang-wrap:hover .lang::after,
.lang-wrap:focus-within .lang::after,
.lang-wrap.open .lang::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.lang-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 100px;
  padding: 8px 0;
  list-style: none;
  background: var(--bg);
  border: 1px solid var(--rule);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  z-index: 200;
}
.lang-wrap:hover .lang-menu,
.lang-wrap:focus-within .lang-menu,
.lang-wrap.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu li { margin: 0; padding: 0; }
.lang-menu [data-lang] {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s ease;
}
.lang-menu [data-lang]:hover {
  background: rgba(10, 10, 10, 0.06);
}
.lang-menu [data-lang].is-active {
  font-weight: 700;
}

/* On-image (home) variant: dark dropdown panel */
.site-header.on-image .lang-menu {
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}
.site-header.on-image .lang-menu [data-lang] {
  color: #fff;
}
.site-header.on-image .lang-menu [data-lang]:hover {
  background: rgba(255, 255, 255, 0.12);
}

.site-header nav {
  display: flex;
  gap: 48px;
  justify-self: center;
}

.site-header nav a {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: inherit;
  transition: opacity .2s;
}

.site-header nav a:hover { opacity: 0.6; }

.reserve-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  cursor: pointer;
  justify-self: end;
  transition: background .25s ease, color .25s ease;
}

.reserve-btn:hover {
  background: transparent;
  color: var(--ink);
}

/* Hero header variant — light text on dark image */
.site-header.on-image {
  background: transparent;
  border-bottom: none;
}
.site-header.on-image .lang,
.site-header.on-image nav a {
  color: #fff;
}
.site-header.on-image .reserve-btn {
  background: #fff;
  color: var(--ink);
  transition: background .25s ease, color .25s ease;
}
.site-header.on-image .reserve-btn:hover {
  background: var(--ink);
  color: #fff;
  opacity: 1;
}

/* ============ FOOTER ============ */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  padding: 40px 56px;
  border-top: 1px solid var(--rule);
}

.site-footer .brand {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer .social {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer .social .label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer .social .links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.site-footer .social .links .dot {
  display: inline-block;
  width: 3px; height: 3px;
  background: var(--ink);
  border-radius: 50%;
  margin: 0 6px;
}

/* ============ PAGE LAYOUT ============ */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex: 1;
  padding: 0 56px;
  padding-top: 96px;
}

/* Section divider that goes edge-to-edge */
.rule {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0 -56px;
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.35;
}

/* ============ FORM CONTROLS ============ */
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.field > label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 14px 18px;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.field input[type="date"] {
  cursor: pointer;
  padding-right: 16px;
  /* Force a stable text rendering so the date string stays left-aligned */
  font-variant-numeric: tabular-nums;
}

/* Style the native calendar icon to match the design (dark, no filter halo) */
.field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.85;
  filter: invert(0);
  padding: 4px;
  margin-left: 8px;
  transition: opacity .15s ease;
}
.field input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}
.field input[type="date"]::-webkit-inner-spin-button,
.field input[type="date"]::-webkit-clear-button {
  display: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
  font-family: var(--sans);
}

.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%230A0A0A' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink);
  opacity: 0.55;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.chip:hover {
  background: var(--ink);
  color: #fff;
}
.chip.active {
  background: var(--ink);
  color: #fff;
}

/* ============ IMAGE SLOT defaults ============ */
image-slot {
  background: #e9e3d2;
  color: #8a8169;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Mobile-only line break: <br class="m-only"> renders a break only ≤ 768px */
.m-only { display: none; }
@media (max-width: 768px) {
  .m-only { display: inline; }
}

/* =====================================================================
   MOBILE — Hamburger menu + responsive layouts (≤ 768px)
   ===================================================================== */

.mobile-menu-toggle  { display: none; }
.mobile-menu        { display: none; }
.mobile-lang-wrap   { display: none; }

@media (max-width: 768px) {

  /* HEADER ------------------------------------------------ */
  .site-header {
    grid-template-columns: auto 1fr auto;
    /* Respect the iPhone notch / Dynamic Island via env(safe-area-inset-top).
       Falls back to 14px on browsers without safe-area support. */
    padding: calc(env(safe-area-inset-top, 0px) + 14px) 22px 14px;
    background: var(--bg);
  }
  .site-header.has-rule {
    border-bottom: 1px solid var(--rule);
  }
  .site-header.on-image {
    background: transparent;
    border-bottom: none;
  }
  .site-header .lang-wrap,
  .site-header > nav,
  .site-header > .reserve-btn { display: none; }

  /* LANGUAGE SWITCHER (left side) ------------------------- */
  .mobile-lang-wrap {
    display: block;
    position: relative;
    justify-self: start;
  }
  .mobile-lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
  }
  .mobile-lang-wrap.on-image .mobile-lang-toggle { color: #fff; }
  .mobile-lang-toggle .chevron {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-right: 1.4px solid currentColor;
    border-bottom: 1.4px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .2s ease;
  }
  .mobile-lang-wrap.open .mobile-lang-toggle .chevron {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .mobile-lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -8px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    min-width: 90px;
    background: var(--bg);
    border: 1px solid var(--rule);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity .2s, transform .2s, visibility .2s;
    z-index: 200;
  }
  .mobile-lang-wrap.open .mobile-lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-lang-wrap.on-image .mobile-lang-menu {
    background: rgba(10, 10, 10, 0.85);
    border-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  .mobile-lang-menu li { margin: 0; padding: 0; list-style: none; }
  .mobile-lang-menu [data-lang] {
    display: block;
    width: 100%;
    padding: 12px 22px;
    background: none;
    border: none;
    text-align: left;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
  }
  .mobile-lang-wrap.on-image .mobile-lang-menu [data-lang] { color: #fff; }
  .mobile-lang-menu [data-lang]:hover,
  .mobile-lang-menu [data-lang]:focus {
    background: rgba(10, 10, 10, 0.06);
  }
  .mobile-lang-wrap.on-image .mobile-lang-menu [data-lang]:hover,
  .mobile-lang-wrap.on-image .mobile-lang-menu [data-lang]:focus {
    background: rgba(255, 255, 255, 0.12);
  }
  .mobile-lang-menu [data-lang].is-active { font-weight: 700; }

  /* HAMBURGER ICON ---------------------------------------- */
  .mobile-menu-toggle {
    display: block;
    width: 30px;
    height: 22px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    justify-self: end;
  }
  .mobile-menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
    margin: 6px 0;
    width: 100%;
    transition: background .2s;
  }
  .mobile-menu-toggle.on-image span {
    background: #fff;
  }

  /* FULL-SCREEN OVERLAY MENU ------------------------------ */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    /* Same safe-area handling as the header so the close button
       sits below the notch / Dynamic Island, and the action button
       above the home indicator. */
    padding:
      calc(env(safe-area-inset-top, 0px) + 14px)
      22px
      calc(env(safe-area-inset-bottom, 0px) + 32px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s;
  }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .mobile-menu-brand {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
  }
  .mobile-menu-close {
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
  }
  .mobile-menu-close span {
    display: block;
    position: absolute;
    top: 50%; left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--ink);
    border-radius: 1px;
  }
  .mobile-menu-close span:first-child { transform: rotate(45deg); }
  .mobile-menu-close span:last-child  { transform: rotate(-45deg); }

  .mobile-menu-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 0;
  }
  .mobile-menu-nav a {
    font-family: var(--serif);
    font-weight: 500;
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.01em;
    color: var(--ink);
    text-decoration: none;
  }

  .mobile-menu-actions {
    margin-bottom: 28px;
  }
  .mobile-menu-actions .btn-primary {
    display: flex;
    width: 100%;
    padding: 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
  }

  .mobile-menu-social {
    padding: 0 32px 32px;
    text-align: center;
  }
  .mobile-menu-social-rule {
    border: none;
    border-top: 1px solid var(--rule);
    margin-bottom: 16px;
  }
  .mobile-menu-social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  .mobile-menu-social-links a {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000000;
    opacity: 0.4;
    text-decoration: none;
    transition: opacity .2s;
  }
  .mobile-menu-social-links a:hover { opacity: 0.75; }
  .mobile-menu-social-links span {
    font-size: 10px;
    color: var(--ink);
    opacity: 0.25;
    user-select: none;
  }

  .mobile-menu-lang {
    text-align: center;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }
  .mobile-menu-lang button {
    background: none;
    border: none;
    padding: 10px 8px;
    cursor: pointer;
    font: inherit;
    letter-spacing: inherit;
    text-transform: inherit;
    color: var(--ink);
    opacity: 0.55;
    transition: opacity .15s;
  }
  .mobile-menu-lang button.is-active {
    opacity: 1;
    border-bottom: 1.5px solid var(--ink);
  }
  .mobile-menu-lang .sep { opacity: 0.35; }

  /* FOOTER ------------------------------------------------ */
  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 22px;
    text-align: center;
  }
  .site-footer .brand {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  .site-footer .social {
    text-align: center;
    align-items: center;
  }
  .site-footer .social .links {
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 10px;
  }

  /* COMMON LAYOUT ----------------------------------------- */
  .page-main {
    padding: 0 22px;
    /* Header height (status-bar inset + 14 + content ~30 + 14) ≈ 60 + inset */
    padding-top: calc(env(safe-area-inset-top, 0px) + 60px);
  }
  .rule {
    margin: 0 -22px;
  }

  /* FORM FIELDS ------------------------------------------- */
  .field input[type="text"],
  .field input[type="email"],
  .field input[type="tel"],
  .field input[type="date"],
  .field input[type="time"],
  .field textarea,
  .field select {
    padding: 14px 16px;
    font-size: 14px; /* prevents iOS zoom on focus */
  }

  /* CHIPS ------------------------------------------------- */
  .chip {
    padding: 11px 16px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  /* CLUB PRIVÉ MODAL (already partially mobile-friendly) -- */
  .cp-card {
    padding: 44px 24px 28px;
  }
  .cp-card h2 { font-size: 28px; }
  .cp-lead   { font-size: 15px; }
}

/* ============ CLUB PRIVÉ MODAL ============ */
.cp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}
.cp-modal[hidden] { display: none; }
.cp-modal.cp-open {
  opacity: 1;
  visibility: visible;
}

.cp-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.cp-card {
  position: relative;
  max-width: 540px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--bg);
  padding: 56px 48px 40px;
  border: 1px solid var(--ink);
  transform: translateY(12px) scale(0.98);
  transition: transform .35s ease;
}
.cp-modal.cp-open .cp-card {
  transform: translateY(0) scale(1);
}

.cp-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
  transition: opacity .15s;
}
.cp-close:hover { opacity: 1; }

.cp-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.cp-lead {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 32px;
}

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

.cp-field {
  margin-bottom: 20px;
}
.cp-field label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.cp-field input {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 12px 16px;
  width: 100%;
  outline: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
}
.cp-field input:focus {
  background: rgba(255,255,255,0.4);
}

.cp-error {
  padding: 12px 16px;
  margin-bottom: 16px;
  background: #fff;
  border: 1px solid #b53b3b;
  color: #b53b3b;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
}
.cp-error[hidden] { display: none; }

.cp-submit {
  width: 100%;
  padding: 16px;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.cp-legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.7;
}
.cp-legal[hidden] { display: none; }

.cp-success {
  text-align: center;
  padding: 20px 0 0;
  animation: cpFadeIn .4s ease;
}
.cp-success[hidden] { display: none; }
.cp-check {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--ink);
}
.cp-check svg { width: 100%; height: 100%; }
.cp-success h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 16px;
}
.cp-redirect {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

@keyframes cpFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 540px) {
  .cp-card { padding: 48px 28px 32px; }
  .cp-card h2 { font-size: 30px; }
  .cp-lead { font-size: 16px; }
  .cp-row { grid-template-columns: 1fr; gap: 0; }
}

/* Footer link to the Club Privé — inherits the same style as Instagram/Facebook */
.site-footer .club-prive-trigger {
  cursor: pointer;
  transition: opacity .15s ease;
}
.site-footer .club-prive-trigger:hover {
  opacity: 0.6;
}

/* ============ BAR PAGE — SUB-FILTER SPACING ============
   Equal breathing room above and below the filter row.
   Higher specificity (.bar-section .sub-filters-wrap = 0-2-0) overrides
   bar.html's inline <style> (.sub-filters-wrap = 0-1-0).
   :has() collapses bar-section's own top padding when filters are visible
   so the wrap's padding-top takes sole responsibility for the gap. */
.bar-section .sub-filters-wrap {
  padding: 56px 0;   /* identical space above (rule → filters) and below (filters → h2) */
}
.bar-section:has(.sub-filters-wrap:not([hidden])) {
  padding-top: 0;    /* hand the top gap to sub-filters-wrap when it's visible */
}

@media (max-width: 768px) {
  .bar-section .sub-filters-wrap {
    padding: 28px 0;
  }
}
