:root {
  --bg-color: #FAF6EB;
  --color-1: #BB6F58;
  --color-2: #FAF6EB;
  --color-3: #2A211C;
  --footer-text-color: #2A211C;
  --footer-bg-color: #FAF6EB;
  --font-title: 'Outfit', sans-serif;
  --font-text: 'Manrope', sans-serif;
  --logo-height: 80px;
  --gold: #d7b07a;
  --gold-light: #e8c487;
  --dark-bg: #0f0d0c;
  --dark-bg-2: #0b0a09;
  --dark-bg-3: #120f0d;
  --cream: #f7f2eb;
  --glass-bg: rgba(255,255,255,.04);
  --glass-border: rgba(255,255,255,.08);
  --glass-border-hover: rgba(215,176,122,.24);
  --text-muted: rgba(247,242,235,.78);
  --text-dim: rgba(247,242,235,.58);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 120px; }

body {
  font-family: var(--font-text);
  background: var(--bg-color);
  color: var(--color-3);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-navbar {
  min-height: 100vh;
}

body.has-navbar .page-content {
  padding-top: calc(var(--logo-height) + 20px) !important;
  min-height: calc(100vh - var(--logo-height) - 20px);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(250,246,235,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42,33,28,.08);
  box-shadow: 0 2px 12px rgba(42,33,28,.06);
  padding: 10px 0;
  z-index: 1050;
}

.navbar-brand img { height: var(--logo-height); }

.navbar .nav-link {
  color: rgba(42,33,28,.5);
  font-size: 25px;
  font-weight: 400;
  transition: color .2s;
  padding: 8px 14px;
}

.navbar .nav-link:hover { color: rgba(42,33,28,.8); }

.navbar-toggler {
  border: 1px solid rgba(42,33,28,.15);
  border-radius: 12px;
  padding: 6px 10px;
  color: var(--color-3);
  font-size: 20px;
  line-height: 1;
}

.navbar-toggler:focus { box-shadow: none; }

/* Focus visible para navegação por teclado */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

.navbar-toggler:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.clubb-hero-new__select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.clubb-product-form-input:focus-visible,
.clubb-search-input:focus-visible,
.clubb-form-input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.offcanvas {
  background: var(--bg-color);
  border-left: 1px solid rgba(42,33,28,.08);
  max-width: 340px;
  z-index: 1060;
}

.offcanvas-backdrop {
  z-index: 1055;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(42,33,28,.08);
  padding: 16px 20px;
}

.offcanvas-title { color: var(--color-3); font-family: var(--font-title); }

.offcanvas-body .nav-link {
  color: rgba(42,33,28,.7);
  font-size: 16px;
  padding: 12px 10px;
  border-radius: 10px;
  transition: background .15s, color .15s;
}

.offcanvas-body .nav-link:hover {
  color: var(--color-3);
  background: rgba(215,176,122,.12);
}

.offcanvas-body hr {
  border-color: rgba(42,33,28,.08);
  margin: 8px 0;
}

.lang-flag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(42,33,28,.7);
  text-decoration: none;
  transition: background .15s, color .15s;
}

.lang-flag-btn:hover {
  background: rgba(215,176,122,.12);
  color: #2A211C;
}

/* Language dropdown */
.lang-dropdown .dropdown-menu {
  background: var(--bg-color);
  border: 1px solid rgba(42,33,28,.08);
  border-radius: 14px;
  padding: 8px;
  min-width: 180px;
}

.lang-dropdown .dropdown-item {
  color: rgba(42,33,28,.7);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
}

.lang-dropdown .dropdown-item:hover {
  background: rgba(42,33,28,.06);
  color: var(--color-3);
}

/* ===== HERO ===== */
.clubb-hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
  background: #000;
  isolation: isolate;
}

.clubb-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  background: #000;
}

.clubb-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,10,.06) 0%, rgba(10,10,10,.16) 55%, rgba(10,10,10,.22) 100%);
}

.clubb-hero-breadcrumb {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  max-width: min(78vw, 720px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8,8,8,.22);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.clubb-hero-breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.clubb-hero-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.clubb-hero-breadcrumb__link {
  text-decoration: none;
  color: rgba(247,242,235,.72);
  transition: color .2s;
}

.clubb-hero-breadcrumb__link:hover { color: #f7f2eb; }

.clubb-hero-breadcrumb__current { color: #f7f2eb; font-weight: 600; }

.clubb-hero-breadcrumb__sep {
  color: rgba(247,242,235,.36);
  font-size: 10px;
  line-height: 1;
  transform: translateY(-.5px);
}

.clubb-sound-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
  font-size: 20px;
}

.clubb-sound-btn:hover { background: rgba(255,255,255,.20); transform: scale(1.04); }
.clubb-sound-btn:active { transform: scale(0.98); }

/* ===== HERO NOVO (Video celular + Filtros) ===== */
.clubb-hero-new {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 24px 16px;
  min-height: 480px;
}

.clubb-hero-new__left {
  display: flex;
  justify-content: center;
}

/* Celular */
.clubb-hero-phone {
  position: relative;
  width: 300px;
  height: 570px;
  border-radius: 32px;
  border: 3px solid rgba(42,33,28,.12);
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 1px rgba(42,33,28,.04),
    0 16px 48px rgba(42,33,28,.18);
  flex-shrink: 0;
}

.clubb-hero-phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 20px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}

.clubb-hero-phone__notch::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
}

.clubb-hero-phone__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clubb-hero-phone__sound {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
  font-size: 14px;
}
.clubb-hero-phone__sound:hover { background: rgba(0,0,0,.6); transform: scale(1.06); }
.clubb-hero-phone__sound:active { transform: scale(0.96); }

/* Lado direito */
.clubb-hero-new__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  width: 100%;
}

.clubb-hero-new__head { max-width: 520px; }

.clubb-hero-new__eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.clubb-hero-new__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: .96;
  letter-spacing: -.045em;
  font-weight: 600;
  color: var(--color-3);
  text-wrap: balance;
  font-family: var(--font-title);
}

.clubb-hero-new__title span { color: var(--gold); }

/* Barra de filtros */
.clubb-hero-new__filter-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Select dropdown */
.clubb-hero-new__select-wrap {
  position: relative;
  max-width: 320px;
}

.clubb-hero-new__select {
  width: 100%;
  padding: 10px 36px 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(42,33,28,.12);
  background: #fff;
  color: var(--color-3);
  font-size: 14px;
  font-family: var(--font-text);
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .2s;
}

.clubb-hero-new__select:focus {
  outline: none;
  border-color: var(--gold);
}

.clubb-hero-new__select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(42,33,28,.4);
  pointer-events: none;
}

/* Filter rows */
.clubb-hero-new__filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clubb-hero-new__filter-label {
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(42,33,28,.5);
  white-space: nowrap;
  min-width: 80px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
}

.clubb-hero-new__filter-label i {
  font-size: 10px;
  color: var(--gold);
}

/* Pills */
.clubb-hero-new__pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.clubb-hero-new__pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(42,33,28,.1);
  background: #fff;
  color: rgba(42,33,28,.6);
  font-size: 12px;
  font-weight: 500;
  font-family: var(--font-text);
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.clubb-hero-new__pill:hover {
  background: rgba(42,33,28,.04);
  border-color: rgba(42,33,28,.15);
  color: var(--color-3);
}

.clubb-hero-new__pill.is-active {
  background: var(--color-3);
  border-color: var(--color-3);
  color: #fff;
}

/* Stepper (+/- pessoas) */
.clubb-hero-new__stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(42,33,28,.1);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.clubb-hero-new__stepper-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  color: var(--color-3);
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  user-select: none;
}

.clubb-hero-new__stepper-btn:hover { background: rgba(42,33,28,.05); }
.clubb-hero-new__stepper-btn:active { background: rgba(42,33,28,.1); }

.clubb-hero-new__stepper-value {
  min-width: 36px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-3);
  font-family: var(--font-text);
}

/* Meta/count */
.clubb-hero-new__meta {
  display: flex;
  align-items: center;
}

.clubb-hero-new__count {
  font-size: 13px;
  color: rgba(42,33,28,.5);
}

/* ===== MARKET FIXED V3 (Home filter + product grid) ===== */
.clubb-market-fixed-v3 {
  position: relative;
  background: var(--dark-bg);
  color: var(--cream);
  padding: 24px 0 44px;
}

.clubb-market-fixed-v3__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

.clubb-market-fixed-v3__search-stage {
  position: relative;
  overflow: hidden;
  margin: 0 0 14px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(7,7,7,.08) 0%, rgba(7,7,7,.22) 30%, rgba(7,7,7,.58) 64%, #0b0a09 100%),
    url("https://pub-620c31dc3734443baf9d9243b655c506.r2.dev/clubbvideos/ChatGPT%20Image%201%20de%20mai.%20de%202026%2C%2020_42_33.png") center 55%/cover no-repeat;
  border: 0 !important;
  box-shadow: 0 18px 48px rgba(0,0,0,.22), inset 0 -150px 130px #0b0a09;
}

.clubb-market-fixed-v3__search-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 0%, rgba(215,176,122,.13), transparent 32%),
    linear-gradient(180deg, rgba(11,10,9,0) 0%, rgba(11,10,9,.12) 35%, rgba(11,10,9,.48) 64%, rgba(11,10,9,.88) 86%, #0b0a09 100%);
}

.clubb-market-fixed-v3__search-stage-content {
  position: relative;
  z-index: 1;
  padding: 28px 22px 18px;
}

.clubb-market-fixed-v3__head { max-width: 780px; margin: 0 0 14px; }
.clubb-market-fixed-v3__eyebrow { margin: 0 0 8px; font-size: 11px; line-height: 1; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.clubb-market-fixed-v3__title { margin: 0; font-size: clamp(30px,7vw,52px); line-height: .96; letter-spacing: -.045em; font-weight: 600; color: var(--cream) !important; text-wrap: balance; font-family: var(--font-title); }
.clubb-market-fixed-v3__subtitle { margin: 12px 0 0; max-width: 58ch; font-size: 15px; line-height: 1.55; color: var(--text-muted); }

/* Filter grid */
.clubb-market-fixed-v3__filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 8px;
  padding: 15px 0 8px;
}

.clubb-market-fixed-v3__filter {
  position: relative;
  width: 100%;
  min-height: 88px;
  padding: 9px 5px 13px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: rgba(247,242,235,.86);
  font-size: 11px;
  font-weight: 580;
  line-height: 1.14;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform .18s, color .18s, background .18s, border-color .18s, box-shadow .18s;
  -webkit-tap-highlight-color: transparent;
  font-family: var(--font-text);
  text-decoration: none;
}

.clubb-market-fixed-v3__filter:hover {
  transform: translateY(-2px);
  color: #fff;
}

.clubb-market-fixed-v3__filter.is-active {
  transform: translateY(-4px) scale(1.03);
  background: linear-gradient(180deg, rgba(215,176,122,.16), rgba(215,176,122,.06));
  color: #fff;
  border-color: rgba(232,196,135,.70);
  box-shadow: 0 14px 26px rgba(0,0,0,.18), 0 0 0 1px rgba(232,196,135,.16) inset, 0 0 22px rgba(232,196,135,.10);
}

.clubb-market-fixed-v3__filter-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
  transition: transform .18s, background .18s, box-shadow .18s;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.16));
}

.clubb-market-fixed-v3__filter-icon svg {
  width: 40px;
  height: 40px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.clubb-market-fixed-v3__filter.is-active .clubb-market-fixed-v3__filter-icon {
  color: var(--gold-light);
  background: rgba(232,196,135,.10);
  box-shadow: inset 0 0 0 1px rgba(232,196,135,.26), 0 8px 18px rgba(0,0,0,.16);
  transform: translateY(-1px) scale(1.04);
}

.clubb-market-fixed-v3__filter-label { display: block; max-width: 100%; text-decoration: none; }

.clubb-market-fixed-v3__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin: 10px 0 0; flex-wrap: wrap; }
.clubb-market-fixed-v3__count { font-size: 13px; color: rgba(247,242,235,.88); }

/* Product grid */
.clubb-market-fixed-v3__grid { display: grid; gap: 14px; }

.clubb-market-fixed-v3__card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
  text-decoration: none;
  color: var(--cream);
  transition: transform .18s, border-color .18s, box-shadow .18s, background .18s;
}

.clubb-market-fixed-v3__card:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.055);
  border-color: var(--glass-border-hover);
  box-shadow: 0 22px 48px rgba(0,0,0,.26);
}

.clubb-market-fixed-v3__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #111; }
.clubb-market-fixed-v3__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.clubb-market-fixed-v3__media-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.10) 48%, rgba(0,0,0,.62) 100%); }

.clubb-market-fixed-v3__topchips {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  z-index: 2;
}

.clubb-market-fixed-v3__badge,
.clubb-market-fixed-v3__category {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(10,10,10,.56);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.clubb-market-fixed-v3__body { display: grid; gap: 12px; padding: 15px; }
.clubb-market-fixed-v3__title-row { display: grid; gap: 6px; }
.clubb-market-fixed-v3__card-title { margin: 0; font-size: 21px; line-height: 1.02; letter-spacing: -.03em; font-weight: 600; color: var(--cream) !important; font-family: var(--font-title); }
.clubb-market-fixed-v3__location { font-size: 12px; color: var(--text-dim); }
.clubb-market-fixed-v3__description { margin: 0; font-size: 13px; line-height: 1.52; color: rgba(247,242,235,.80); max-height: 4.6em; overflow: hidden; }

.clubb-market-fixed-v3__details { display: flex; flex-wrap: wrap; gap: 7px; }

.clubb-market-fixed-v3__detail {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 11px;
  color: rgba(247,242,235,.76);
}

.clubb-market-fixed-v3__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.clubb-market-fixed-v3__price { display: grid; gap: 4px; }
.clubb-market-fixed-v3__price-label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(247,242,235,.46); }
.clubb-market-fixed-v3__price-value { font-size: 22px; line-height: 1; font-weight: 700; color: var(--cream); white-space: nowrap; }

.clubb-market-fixed-v3__cta {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--gold);
  color: #171310;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  transition: background .2s;
  font-family: var(--font-text);
}

.clubb-market-fixed-v3__cta:hover { background: var(--gold-light); }

/* ===== CATEGORY PAGE (yachts pattern) ===== */
.clubb-category-hero {
  position: relative;
  min-height: 68vh;
  overflow: hidden;
  background: #0d0b0a;
  color: var(--cream);
}

@media (min-width: 768px) { .clubb-category-hero { min-height: 88vh; } }

.clubb-category-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.clubb-category-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,9,8,.03) 0%, rgba(10,9,8,.62) 100%),
              linear-gradient(90deg, rgba(10,9,8,.20) 0%, rgba(10,9,8,.03) 100%);
}

.clubb-category-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 16px 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 68vh;
}

@media (min-width: 768px) {
  .clubb-category-hero__inner { padding: 140px 40px 80px; min-height: 88vh; }
}

.clubb-category-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.clubb-category-hero__title {
  margin: 0;
  font-size: clamp(32px, 8.5vw, 66px);
  line-height: .93;
  letter-spacing: -.055em;
  font-weight: 600;
  font-family: var(--font-title);
  text-wrap: balance;
}

.clubb-category-hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.clubb-category-hero__signals span {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  color: rgba(247,242,235,.85);
}

.clubb-category-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.clubb-category-hero__btn {
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  text-decoration: none;
  transition: background .2s, transform .18s;
  font-family: var(--font-text);
}

.clubb-category-hero__btn--primary {
  background: var(--gold);
  color: #171310;
  border: 1px solid rgba(215,176,122,.24);
}

.clubb-category-hero__btn--primary:hover { background: var(--gold-light); transform: scale(1.02); }

.clubb-category-hero__btn--secondary {
  background: rgba(255,255,255,.08);
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.12);
}

.clubb-category-hero__btn--secondary:hover { background: rgba(255,255,255,.14); }

/* Category sections */
.clubb-section-dark {
  position: relative;
  background: var(--dark-bg);
  color: var(--cream);
  padding: 40px 0;
}

.clubb-section-dark__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) { .clubb-section-dark__inner { padding: 0 40px; } }

.clubb-section-dark__header {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.clubb-section-dark__eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.clubb-section-dark__title {
  margin: 0;
  font-size: clamp(30px, 6vw, 48px);
  line-height: .95;
  letter-spacing: -.045em;
  font-weight: 600;
  font-family: var(--font-title);
}

/* Subcategory cards */
.clubb-subcat-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) { .clubb-subcat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.clubb-subcat-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
  text-decoration: none;
  color: var(--cream);
  transition: transform .18s, border-color .18s;
}

@media (min-width: 768px) { .clubb-subcat-card { grid-template-columns: 96px minmax(0, 1fr); } }

.clubb-subcat-card:hover { transform: translateY(-2px); border-color: var(--glass-border-hover); }

.clubb-subcat-card__thumb {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

@media (min-width: 768px) { .clubb-subcat-card__thumb { width: 96px; height: 96px; } }

.clubb-subcat-card__body { display: flex; flex-direction: column; justify-content: center; gap: 6px; }

.clubb-subcat-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  font-size: 10px;
  color: rgba(247,242,235,.7);
}

.clubb-subcat-card__title { font-size: 20px; font-weight: 600; font-family: var(--font-title); }
@media (min-width: 768px) { .clubb-subcat-card__title { font-size: 22px; } }

.clubb-subcat-card__arrow { font-size: 12px; font-weight: 600; color: var(--gold); }

/* Feature cards (numbered) */
.clubb-features-grid {
  display: grid;
  gap: 12px;
}

@media (min-width: 768px) { .clubb-features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.clubb-feature-card {
  padding: 18px;
  border-radius: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}

.clubb-feature-card__number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  margin-bottom: 8px;
}

.clubb-feature-card__title { font-size: 22px; font-weight: 600; font-family: var(--font-title); margin-bottom: 8px; }
@media (min-width: 768px) { .clubb-feature-card__title { font-size: 24px; } }

.clubb-feature-card__text { font-size: 13px; line-height: 1.55; color: var(--text-muted); }

/* CTA box */
.clubb-cta-box {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 18px;
  border-radius: 30px;
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  text-align: center;
}

.clubb-cta-box__title { font-size: clamp(24px, 5vw, 36px); font-weight: 600; font-family: var(--font-title); margin-bottom: 12px; }
.clubb-cta-box__text { font-size: 15px; color: var(--text-muted); margin-bottom: 20px; }

.clubb-cta-box__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* ===== PRODUCT DETAIL ===== */
.clubb-product-gallery {
  display: grid;
  gap: 4px;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 5/3;
}

.clubb-product-gallery__main {
  grid-column: 1;
  grid-row: 1;
  overflow: hidden;
}

.clubb-product-gallery__side {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
}

@media (max-width: 767px) {
  .clubb-product-gallery { grid-template-columns: 1fr; aspect-ratio: 16/10; }
  .clubb-product-gallery__side { grid-column: 1; grid-row: 2; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
}

.clubb-product-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

.clubb-product-gallery__more {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(10,10,10,.56);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

/* Booking sidebar */
.clubb-booking-sidebar {
  background: var(--color-1);
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.clubb-booking-sidebar__header {
  padding: 18px 20px;
  background: rgba(0,0,0,.12);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-title);
}

.clubb-booking-sidebar__body { padding: 20px; }

/* Sticky CTA */
.clubb-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s;
  font-family: var(--font-text);
}

.clubb-sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.34); }

@media (max-width: 767px) {
  .clubb-sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }
}

/* ===== PRODUCT PAGE (Light theme like reference) ===== */
.clubb-product-page {
  background: var(--bg-color);
  color: var(--color-3);
  min-height: 80vh;
  margin-bottom: 40px;
}

.clubb-product-top__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--color-3);
  margin: 0;
  padding-top: 120px;
  line-height: 1.1;
  text-align: left;
}

.clubb-product-mobile-cta {
  position: sticky;
  top: 100px;
  z-index: 100;
  margin-bottom: 16px;
}

.clubb-product-mobile-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  border-radius: 999px;
  background: var(--color-1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  font-family: var(--font-text);
}

.clubb-product-location {
  margin-top: 12px;
}

.clubb-product-location a {
  color: var(--color-3);
  text-decoration: none;
  font-size: 14px;
}

.clubb-product-location a:hover {
  text-decoration: underline;
}

/* Gallery */
.clubb-product-gallery-new {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/3;
  margin-bottom: 24px;
}

.clubb-product-gallery-new__main {
  position: relative;
  height: 100%;
}

.clubb-product-gallery-new__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.clubb-product-gallery-new__more {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(10,10,10,.56);
  border: 1px solid rgba(255,255,255,.10);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.clubb-product-gallery-new__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: 100%;
}

.clubb-product-gallery-new__side-img {
  height: 100%;
}

.clubb-product-gallery-new__side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .clubb-product-gallery-new {
    grid-template-columns: 1fr;
    aspect-ratio: 16/10;
  }
  .clubb-product-gallery-new__side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

/* Tags */
.clubb-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.clubb-product-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.08);
  font-size: 12px;
  color: #2A211C;
  font-weight: 500;
}

/* Product cards (light theme) */
.clubb-product-card {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.clubb-product-card__body {
  padding: 24px;
}

.clubb-product-card__title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-title);
  color: var(--color-3);
  margin: 0 0 16px;
}

/* Highlights */
.clubb-product-highlights {
  list-style: none;
  padding: 0;
  margin: 0;
}

.clubb-product-highlights li {
  padding: 6px 0;
  font-size: 14px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.clubb-product-highlights li i {
  color: var(--color-1);
  margin-top: 3px;
  font-size: 12px;
}

/* Product accordion (light) */
.clubb-product-accordion .accordion-item {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 12px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.clubb-product-accordion .accordion-button {
  background: #fff;
  color: var(--color-3);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 18px;
  box-shadow: none;
}

.clubb-product-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--color-1);
}

.clubb-product-accordion .accordion-button::after {
  filter: none;
}

.clubb-product-accordion .accordion-body {
  padding: 0 18px 14px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

/* Booking sidebar */
.clubb-product-sidebar {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  position: sticky;
  top: 100px;
}

.clubb-product-sidebar__header {
  padding: 20px 24px;
  background: var(--color-1);
  color: #fff;
  text-align: center;
}

.clubb-product-sidebar__header h2 {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-title);
  margin: 0 0 4px;
}

.clubb-product-sidebar__header small {
  opacity: .85;
  font-size: 13px;
}

.clubb-product-sidebar__body {
  padding: 24px;
  background: #fff;
}

.clubb-product-form-group {
  margin-bottom: 16px;
}

.clubb-product-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-3);
}

.clubb-product-form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  color: var(--color-3);
  font-size: 14px;
  outline: none;
  font-family: var(--font-text);
  transition: border-color .2s;
}

.clubb-product-form-input:focus {
  border-color: var(--color-1);
}

.clubb-product-sidebar__submit {
  width: 100%;
  padding: 14px;
  border-radius: 999px;
  border: none;
  background: var(--color-1);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-text);
  transition: background .2s;
}

.clubb-product-sidebar__submit:hover {
  background: #a5604d;
}

.clubb-product-sidebar__whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-text);
}

.clubb-product-sidebar__whatsapp:hover {
  background: #1fb855;
  color: #fff;
}

/* Calendar Widget (light theme) */
.clubb-calendar {
  border: 1px solid rgba(0,0,0,.1);
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.clubb-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 600;
  font-family: var(--font-title);
  font-size: 14px;
  color: var(--color-3);
}
.clubb-calendar__nav {
  background: none;
  border: 1px solid rgba(0,0,0,.12);
  color: var(--color-3);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.clubb-calendar__nav:hover {
  border-color: var(--color-1);
  color: var(--color-1);
}
.clubb-calendar__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 11px;
  color: rgba(42,33,28,.45);
  margin-bottom: 6px;
  font-family: var(--font-text);
  font-weight: 600;
}
.clubb-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.clubb-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 13px;
  font-family: var(--font-text);
  cursor: pointer;
  transition: all .15s;
  border: 1px solid transparent;
  color: var(--color-3);
}
.clubb-calendar__day--empty {
  cursor: default;
}
.clubb-calendar__day--disabled {
  color: rgba(42,33,28,.2);
  cursor: not-allowed;
}
.clubb-calendar__day--available {
  background: rgba(215,176,122,.1);
  border-color: rgba(215,176,122,.2);
  color: var(--color-3);
}
.clubb-calendar__day--available:hover {
  background: rgba(215,176,122,.22);
  border-color: var(--gold);
}
.clubb-calendar__day--unavailable {
  color: rgba(42,33,28,.3);
  cursor: not-allowed;
}
.clubb-calendar__day--selected {
  background: var(--gold) !important;
  color: #fff !important;
  font-weight: 600;
  border-color: var(--gold) !important;
}
.clubb-calendar__day--in-range {
  background: rgba(215,176,122,.18);
  border-color: transparent;
  border-radius: 0;
}
.clubb-calendar__day--in-range:first-child,
.clubb-calendar__day--in-range:last-child {
  border-radius: 8px;
}

/* Product meta row */
.clubb-product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}
.clubb-product-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(42,33,28,.55);
  text-decoration: none;
  font-family: var(--font-text);
}
.clubb-product-meta-item:hover {
  color: var(--color-1);
}

/* Product categories badges */
.clubb-product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.clubb-product-category-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(215,176,122,.08);
  border: 1px solid rgba(215,176,122,.18);
  font-size: 12px;
  color: var(--color-1);
  text-decoration: none;
  font-family: var(--font-text);
}
.clubb-product-category-badge:hover {
  background: rgba(215,176,122,.15);
  color: var(--color-1);
}

/* Summary */
.clubb-product-summary {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(42,33,28,.6);
  font-family: var(--font-text);
}

/* Included / Not Included */
.clubb-product-included h4 {
  font-family: var(--font-title);
  font-size: 14px;
  margin-bottom: 8px;
}
.clubb-product-included p, .clubb-product-included div {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(42,33,28,.65);
}

/* Pricing plans */
.clubb-product-pricing {
  display: grid;
  gap: 12px;
}
.clubb-product-pricing__item {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  background: #fafafa;
}
.clubb-product-pricing__value {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-1);
  font-family: var(--font-title);
  white-space: nowrap;
}
.clubb-product-pricing__unit {
  font-size: 13px;
  color: rgba(42,33,28,.45);
  font-family: var(--font-text);
}
.clubb-product-pricing__desc {
  font-size: 13px;
  color: rgba(42,33,28,.7);
  margin-left: auto;
  font-family: var(--font-text);
}

/* Sidebar price */
.clubb-product-sidebar__price {
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  margin-bottom: 16px;
  background: #fafafa;
}
.clubb-product-sidebar__price-label {
  display: block;
  font-size: 12px;
  color: rgba(42,33,28,.45);
  font-family: var(--font-text);
}
.clubb-product-sidebar__price-value {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-1);
  font-family: var(--font-title);
  margin: 4px 0;
}
.clubb-product-sidebar__price-unit {
  display: block;
  font-size: 13px;
  color: rgba(42,33,28,.45);
  font-family: var(--font-text);
}

/* Sticky CTA (product) */
.clubb-product-sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1040;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--color-1);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.28);
  transition: transform .2s, box-shadow .2s;
  font-family: var(--font-text);
}

.clubb-product-sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0,0,0,.34); color: #fff; }

@media (max-width: 767px) {
  .clubb-product-sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 16px;
    justify-content: center;
  }
}

/* ===== SHARED BUTTONS ===== */
.btn-clubb-gold {
  background: var(--gold);
  color: #171310;
  border: 1px solid rgba(215,176,122,.24);
  border-radius: 999px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  font-family: var(--font-text);
}

.btn-clubb-gold:hover { background: var(--gold-light); color: #171310; }

.btn-clubb-outline {
  background: transparent;
  color: #2A211C;
  border: 1px solid rgba(42,33,28,.2);
  border-radius: 999px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  font-family: var(--font-text);
  cursor: pointer;
}

.btn-clubb-outline:hover { background: rgba(42,33,28,.06); }

.btn-clubb-secondary {
  background: rgba(255,255,255,.08);
  color: #eead51;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  font-family: var(--font-text);
}

.btn-clubb-secondary:hover { background: rgba(255,255,255,.15); color: #fff; }

.btn-clubb-whatsapp {
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
  font-family: var(--font-text);
}

.btn-clubb-whatsapp:hover { background: #1fb855; color: #fff; }

/* ===== COOKIE BANNER ===== */
.clubb-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1060;
  background: rgba(15,13,12,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 14px 16px;
  color: var(--cream);
}

.clubb-cookie__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.clubb-cookie__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.clubb-cookie__text { font-size: 13px; color: var(--text-muted); }
.clubb-cookie__text a { color: var(--gold); text-decoration: underline; }

.clubb-cookie__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.clubb-cookie__option {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.clubb-cookie__option input[type="checkbox"] {
  accent-color: var(--gold);
}

.clubb-cookie__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 220px;
}

.clubb-cookie__btn {
  background: var(--cream);
  color: #171310;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  font-family: var(--font-text);
  text-align: center;
  width: 100%;
}

.clubb-cookie__btn:hover { background: #fff; }

.clubb-cookie__btn--outline {
  background: var(--cream);
  color: #171310;
  border: none;
}

.clubb-cookie__btn--outline:hover { background: #fff; }

.clubb-cookie__btn--secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,.3);
}

.clubb-cookie__btn--secondary:hover { background: rgba(255,255,255,.1); }

@media (max-width: 640px) {
  .clubb-cookie__inner {
    flex-direction: column;
    gap: 12px;
  }

  .clubb-cookie__actions {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px;
    min-width: 0;
    width: 100%;
  }

  .clubb-cookie__btn {
    padding: 14px 40px;
    font-size: 12px;
    width: auto;
    min-width: 130px;
  }

  .clubb-cookie__btn--secondary {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .clubb-cookie__btn:not(.clubb-cookie__btn--secondary):nth-child(1) {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .clubb-cookie__btn--outline {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
  }
}

/* ===== WHATSAPP FAB ===== */
.clubb-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1050;
  width: 65px;
  height: 65px;
  border-radius: 999px;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.34);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  color: #fff;
}

.clubb-whatsapp-fab:hover { transform: scale(1.06); box-shadow: 0 12px 32px rgba(37,211,102,.4); color: #fff; }

/* ===== STATIC PAGES ===== */
.clubb-static-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 16px 60px;
  color: var(--color-3);
}

.clubb-static-page h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  margin-bottom: 24px;
}

.clubb-static-page p,
.clubb-static-page li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #444;
}

.clubb-static-page h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.clubb-static-page h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

/* ===== SEARCH PAGE ===== */
.clubb-search-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--cream);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  font-family: var(--font-text);
}

.clubb-search-input::placeholder { color: rgba(247,242,235,.4); }
.clubb-search-input:focus { border-color: var(--gold); }

/* ===== AUTH PAGES ===== */
.clubb-auth-card {
  max-width: 420px;
  margin: 80px auto;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(42,33,28,.08);
  box-shadow: 0 16px 40px rgba(42,33,28,.08);
}

.clubb-auth-card h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
  text-align: center;
  color: var(--color-3);
}

.clubb-form-group { margin-bottom: 16px; }
.clubb-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-3);
}

.clubb-form-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(42,33,28,.12);
  background: #fff;
  color: var(--color-3);
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  font-family: var(--font-text);
}

.clubb-form-input:focus { border-color: var(--color-1); }

select.clubb-form-input {
  background: #fff;
  color: var(--color-3);
  cursor: pointer;
}

/* ===== CART ===== */
.clubb-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(42,33,28,.08);
  margin-bottom: 12px;
}

.clubb-cart-item img { width: 80px; height: 80px; border-radius: 12px; object-fit: cover; }

/* ===== FLASH MESSAGES ===== */
.clubb-flash {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 1070;
  max-width: 400px;
  padding: 14px 20px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(12px);
  animation: flashIn .3s ease, flashOut .3s ease 3.7s forwards;
}

.clubb-flash--success { background: rgba(34,197,94,.9); color: #fff; }
.clubb-flash--error { background: rgba(239,68,68,.9); color: #fff; }

@keyframes flashIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes flashOut { from { opacity: 1; } to { opacity: 0; pointer-events: none; } }

/* ===== ERROR PAGES ===== */
.clubb-error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-bg);
  color: var(--cream);
}

.clubb-error-page__code {
  font-size: 120px;
  font-weight: 700;
  font-family: var(--font-title);
  color: rgba(247,242,235,.12);
  line-height: 1;
}

.clubb-error-page__title { font-size: 28px; font-weight: 600; margin: 12px 0; }
.clubb-error-page__text { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* ===== ACCORDION ===== */
.clubb-accordion .accordion-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.clubb-accordion .accordion-button {
  background: transparent;
  color: var(--cream);
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  box-shadow: none;
}

.clubb-accordion .accordion-button:not(.collapsed) { background: transparent; color: var(--gold); }

.clubb-accordion .accordion-button::after {
  filter: invert(1);
}

.clubb-accordion .accordion-body {
  padding: 0 20px 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== ADMIN ===== */
.clubb-admin-layout {
  min-height: 100vh;
  background: #f5f3ef;
  color: var(--color-3);
}

.clubb-admin-sidebar {
  background: #fff;
  border-right: 1px solid rgba(42,33,28,.08);
  padding: 24px 16px;
  min-height: 100vh;
}

.clubb-admin-sidebar__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  color: rgba(42,33,28,.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background .15s, color .15s;
  margin-bottom: 4px;
}

.clubb-admin-sidebar__link i {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.clubb-admin-sidebar__link:hover,
.clubb-admin-sidebar__link--active {
  background: rgba(215,176,122,.12);
  color: #2A211C;
}

.clubb-admin-card {
  background: #fff;
  border: 1px solid rgba(42,33,28,.08);
  border-radius: 16px;
  padding: 20px;
}

.clubb-admin-stat {
  text-align: center;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(42,33,28,.08);
}

.clubb-admin-stat__value { font-size: 32px; font-weight: 700; font-family: var(--font-title); color: var(--color-1); }
.clubb-admin-stat__label { font-size: 13px; font-weight: 500; color: rgba(42,33,28,.65); margin-top: 4px; }

/* ===== RESPONSIVE (Mobile filter grid) ===== */
@media (max-width: 767px) {
  /* Hero novo mobile */
  .clubb-hero-new {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 0 12px;
    min-height: auto;
  }

  .clubb-hero-new__left { justify-content: center; }

  .clubb-hero-phone {
    width: 100%;
    height: auto;
    aspect-ratio: 9 / 16;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }

  .clubb-hero-phone__notch { display: none; }

  .clubb-hero-new__right { gap: 12px; padding: 0 16px; }

  .clubb-hero-new__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .clubb-hero-new__select-wrap {
    max-width: 100%;
  }

  .clubb-hero-new__filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .clubb-hero-new__filter-label {
    font-size: 10px;
    min-width: auto;
  }

  .clubb-hero-new__pills {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .clubb-hero-new__pill {
    padding: 5px 11px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .clubb-market-fixed-v3__filters {
    grid-template-columns: repeat(4, 1fr);
    gap: 9px 5px;
    padding: 12px 0 6px;
  }

  .clubb-market-fixed-v3__filter {
    min-height: 80px;
    padding: 7px 2px 11px;
    gap: 7px;
    font-size: 10.5px;
  }

  .clubb-market-fixed-v3__filter-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .clubb-market-fixed-v3__filter-icon svg { width: 32px; height: 32px; }

  .clubb-market-fixed-v3__search-stage {
    margin: 10px 0 16px;
    padding-top: 168px;
    border-radius: 24px;
  }

  .clubb-market-fixed-v3__title { font-size: clamp(29px, 8vw, 36px); }
}

@media (min-width: 768px) {
  .clubb-market-fixed-v3 { padding: 34px 0 52px; }
  .clubb-market-fixed-v3__inner { padding: 0 40px; }
  .clubb-market-fixed-v3__search-stage { margin-bottom: 18px; border-radius: 32px; }
  .clubb-market-fixed-v3__search-stage-content { padding: 30px 28px 18px; }
  .clubb-market-fixed-v3__filters { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); gap: 8px; padding: 18px 0 8px; }
  .clubb-market-fixed-v3__filter { min-height: 94px; padding: 8px 5px 13px; font-size: 12px; }
  .clubb-market-fixed-v3__filter.is-active { transform: translateY(-4px) scale(1.035); }
  .clubb-market-fixed-v3__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .clubb-market-fixed-v3__card-title { font-size: 24px; }
  .clubb-market-fixed-v3__price-value { font-size: 24px; }
}

@media (min-width: 1180px) {
  .clubb-market-fixed-v3__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ===== CADASTUR BAR ===== */
.clubb-cadastur {
  background: rgba(255,255,255,.5);
  border-top: 1px solid rgba(42,33,28,.06);
  padding: 40px 16px;
}

.clubb-cadastur__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.clubb-cadastur__logo {
  flex: 0 0 auto;
}

.clubb-cadastur__logo img {
  height: 50px;
  width: auto;
  display: block;
}

.clubb-cadastur__logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.clubb-cadastur__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #2A211C;
}

.clubb-cadastur__text strong {
  color: #1a1a1a;
  font-weight: 700;
}

@media (max-width: 600px) {
  .clubb-cadastur__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== CONCIERGE ===== */
.cr-concierge-final,
.cr-concierge-final * {
  box-sizing: border-box;
}

.cr-concierge-final {
  --bg: #100d0b;
  --surface: rgba(255,255,255,.045);
  --surface-strong: rgba(20,16,14,.94);
  --text: #f8efe0;
  --muted: rgba(248,239,224,.72);
  --gold: #d7b07a;
  --line: rgba(248,239,224,.12);

  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(215,176,122,.10), transparent 28%),
    linear-gradient(180deg, #130f0d 0%, var(--bg) 100%);
  color: var(--text);
  padding: 30px 0 34px;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.cr-concierge-final__inner {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 15px;
}

.cr-concierge-final__shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(215,176,122,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.032));
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
  padding: 24px 15px 18px;
}

.cr-concierge-final__intro {
  max-width: 680px;
  margin: 0 auto 20px;
  text-align: center;
}

.cr-concierge-final__eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.cr-concierge-final__title {
  margin: 0 auto;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 10.8vw, 74px);
  line-height: .9;
  letter-spacing: -.058em;
  font-weight: 500;
  text-wrap: balance;
}

.cr-concierge-final__subtitle {
  margin: 13px auto 0;
  max-width: 34ch;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.46;
  text-wrap: pretty;
}

.cr-concierge-final__panel {
  display: grid;
  gap: 14px;
}

.cr-concierge-final__statement {
  padding: 15px;
  border-radius: 24px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(248,239,224,.10);
}

.cr-concierge-final__statement p {
  margin: 0;
  color: rgba(248,239,224,.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -.044em;
  font-weight: 500;
  text-wrap: balance;
}

.cr-concierge-final__grid {
  display: grid;
  gap: 10px;
}

.cr-concierge-final__card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(248,239,224,.09);
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
}

.cr-concierge-final__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(215,176,122,.10);
  border: 1px solid rgba(215,176,122,.22);
  color: var(--gold);
}

.cr-concierge-final__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.cr-concierge-final__card h3 {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.18;
  font-weight: 820;
  letter-spacing: -.01em;
}

.cr-concierge-final__card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.42;
}

.cr-concierge-final__cta-area {
  display: grid;
  gap: 11px;
  padding-top: 2px;
}

.cr-concierge-final__cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  background: var(--text);
  color: #15100d !important;
  -webkit-text-fill-color: #15100d;
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0,0,0,.22);
  -webkit-tap-highlight-color: transparent;
}

.cr-concierge-final__cta svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.cr-concierge-final__note {
  margin: 0;
  color: rgba(248,239,224,.62);
  font-size: 12.5px;
  line-height: 1.46;
  text-align: center;
}

@media (min-width: 760px) {
  .cr-concierge-final {
    padding: 54px 0 56px;
  }

  .cr-concierge-final__inner {
    padding: 0 42px;
  }

  .cr-concierge-final__shell {
    border-radius: 36px;
    padding: 38px;
  }

  .cr-concierge-final__intro {
    margin-bottom: 28px;
  }

  .cr-concierge-final__subtitle {
    max-width: 46ch;
    font-size: 16px;
  }

  .cr-concierge-final__panel {
    grid-template-columns: .9fr 1.1fr;
    gap: 18px;
    align-items: stretch;
  }

  .cr-concierge-final__statement {
    display: flex;
    align-items: flex-end;
    padding: 22px;
    min-height: 100%;
  }

  .cr-concierge-final__statement p {
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: .98;
    max-width: 11.5ch;
  }

  .cr-concierge-final__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .cr-concierge-final__card {
    min-height: 138px;
    padding: 16px;
  }

  .cr-concierge-final__cta-area {
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    margin-top: 2px;
  }

  .cr-concierge-final__cta {
    width: auto;
    min-width: 238px;
    padding-left: 26px;
    padding-right: 26px;
  }

  .cr-concierge-final__note {
    text-align: left;
    font-size: 13.5px;
  }
}

@media (min-width: 1080px) {
  .cr-concierge-final__shell {
    padding: 46px 48px 42px;
  }

  .cr-concierge-final__card {
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }

  .cr-concierge-final__card:hover {
    transform: translateY(-2px);
    border-color: rgba(215,176,122,.22);
    background: rgba(255,255,255,.055);
  }

  .cr-concierge-final__cta {
    transition: transform .18s ease, box-shadow .18s ease;
  }

  .cr-concierge-final__cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0,0,0,.28);
  }
}

@media (max-width: 380px) {
  .cr-concierge-final {
    padding: 28px 0 32px;
  }

  .cr-concierge-final__inner {
    padding: 0 13px;
  }

  .cr-concierge-final__shell {
    border-radius: 26px;
    padding: 22px 13px 16px;
  }

  .cr-concierge-final__intro {
    margin-bottom: 18px;
  }

  .cr-concierge-final__title {
    font-size: clamp(36px, 10.4vw, 44px);
  }

  .cr-concierge-final__subtitle {
    font-size: 13.5px;
  }

  .cr-concierge-final__statement {
    padding: 14px;
    border-radius: 22px;
  }

  .cr-concierge-final__statement p {
    font-size: 21px;
  }

  .cr-concierge-final__card {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 13px;
    border-radius: 20px;
  }

  .cr-concierge-final__icon {
    width: 38px;
    height: 38px;
  }

  .cr-concierge-final__card h3 {
    font-size: 13.5px;
  }

  .cr-concierge-final__card p {
    font-size: 12.5px;
  }

  .cr-concierge-final__cta {
    font-size: 12px;
    letter-spacing: .07em;
  }
}

/* ===== BACK TO TOP ===== */
.clubb-back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 1040;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(42,33,28,.08);
  border: 1px solid rgba(42,33,28,.10);
  color: var(--color-3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .2s, transform .2s, background .2s;
}

.clubb-back-to-top--visible { opacity: 1; transform: translateY(0); }
.clubb-back-to-top:hover { background: rgba(42,33,28,.14); }

/* ===== CAROUSEL ===== */
.clubb-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.clubb-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.clubb-carousel__track::-webkit-scrollbar { display: none; }

.clubb-carousel__slide {
  min-width: 100%;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.clubb-carousel__slide img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  cursor: pointer;
  user-select: none;
}

.clubb-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
  color: #2A211C;
  border: none;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s, transform .2s;
}

.clubb-carousel__arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.05);
}

.clubb-carousel__arrow:active {
  transform: translateY(-50%) scale(.95);
}

.clubb-carousel__arrow--prev { left: 12px; }
.clubb-carousel__arrow--next { right: 12px; }

.clubb-carousel__thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.clubb-carousel__thumbs::-webkit-scrollbar { display: none; }

.clubb-carousel__thumb {
  width: 64px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  background: none;
  transition: border-color .2s, opacity .2s;
  opacity: .6;
}

.clubb-carousel__thumb.active {
  border-color: var(--gold);
  opacity: 1;
}

.clubb-carousel__thumb:hover {
  opacity: .85;
}

.clubb-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (max-width: 767px) {
  .clubb-carousel__arrow { width: 36px; height: 36px; font-size: 14px; }
  .clubb-carousel__arrow--prev { left: 8px; }
  .clubb-carousel__arrow--next { right: 8px; }
  .clubb-carousel__thumb { width: 52px; height: 40px; }
}

/* ===== LIGHTBOX ===== */
.clubb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clubb-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.88);
}

.clubb-lightbox__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.clubb-lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
  cursor: grab;
  transition: opacity .2s;
}

.clubb-lightbox__img:active {
  cursor: grabbing;
}

.clubb-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: background .2s;
}

.clubb-lightbox__close:hover {
  background: rgba(255,255,255,.25);
}

.clubb-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(4px);
  transition: background .2s, transform .2s;
}

.clubb-lightbox__arrow:hover {
  background: rgba(255,255,255,.22);
}

.clubb-lightbox__arrow:active {
  transform: translateY(-50%) scale(.92);
}

.clubb-lightbox__arrow--prev { left: -70px; }
.clubb-lightbox__arrow--next { right: -70px; }

.clubb-lightbox__counter {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
}

@media (max-width: 767px) {
  .clubb-lightbox__arrow { width: 40px; height: 40px; font-size: 16px; }
  .clubb-lightbox__arrow--prev { left: 8px; }
  .clubb-lightbox__arrow--next { right: 8px; }
  .clubb-lightbox__close { top: -44px; right: 8px; }
  .clubb-lightbox__img { border-radius: 0; max-height: 80vh; }
  .clubb-lightbox__counter { bottom: 8px; background: rgba(0,0,0,.5); padding: 4px 12px; border-radius: 12px; }
}

/* ==================== ORDER TIMELINE ==================== */
.order-timeline {
  padding: 24px;
}

.order-timeline__step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
}

.order-timeline__step:last-child {
  padding-bottom: 0;
}

.order-timeline__marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.order-timeline__step--completed .order-timeline__marker {
  background: #16a34a;
  color: #fff;
}

.order-timeline__step--active .order-timeline__marker {
  background: var(--gold, #C8A96E);
  color: #171310;
}

.order-timeline__step--pending .order-timeline__marker {
  background: rgba(42,33,28,.08);
  color: rgba(42,33,28,.3);
}

.order-timeline__step--cancelled .order-timeline__marker {
  background: #dc2626;
  color: #fff;
}

.order-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.order-timeline__label {
  font-size: 14px;
  font-weight: 600;
  color: #2A211C;
}

.order-timeline__step--pending .order-timeline__label {
  color: rgba(42,33,28,.4);
}

.order-timeline__date {
  font-size: 12px;
  color: rgba(42,33,28,.45);
}

.order-timeline__note {
  font-size: 12px;
  color: rgba(42,33,28,.55);
  font-style: italic;
  margin-top: 2px;
}

.order-timeline__line {
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: rgba(42,33,28,.1);
}

.order-timeline__step--completed .order-timeline__line {
  background: #16a34a;
}

@media (max-width: 767px) {
  .order-timeline { padding: 16px; }
  .order-timeline__step { gap: 12px; }
  .order-timeline__marker { width: 28px; height: 28px; font-size: 12px; }
  .order-timeline__line { left: 13px; }
  .order-timeline__label { font-size: 13px; }
}
