/**
 * prestio-complete.css
 * Prestio.club — VIP Membership — Montenegro
 * Adriatic / Mediterranean Design System
 *
 * Palette:
 *   --prestio-navy:    #1D2B57  (Deep Navy — primary brand)
 *   --prestio-slate:   #7D889E  (Blue Grey — secondary)
 *   --prestio-mist:    #a6a6a6  (Neutral Grey — accents)
 *   --prestio-white:   #FFFFFF
 *   --prestio-ivory:   #F7F8FB  (Background)
 *   --prestio-pearl:   #EEF0F6  (Cards / sections)
 *   --prestio-aqua:    #4A7FA5  (Adriatic highlight)
 *   --prestio-gold:    #B8976A  (Warm accent — VIP tier)
 *
 * Typography:
 *   Headings  : Kumbh Sans (700 / 600) — geometric, clean
 *   Body text : Fraunces (300 Light) — literary, Mediterranean warmth
 *   UI labels : Kumbh Sans (400 / 500)
 */

/* ═══════════════════════════════════════════════════════════
   GOOGLE FONTS IMPORT
   ═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300&family=Kumbh+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════ */
:root {
  --prestio-navy:        #1D2B57;
  --prestio-navy-dark:   #141e3e;
  --prestio-navy-light:  #253570;
  --prestio-slate:       #7D889E;
  --prestio-slate-light: #A8B3C5;
  --prestio-mist:        #a6a6a6;
  --prestio-mist-light:  #d0d0d0;
  --prestio-white:       #FFFFFF;
  --prestio-ivory:       #F7F8FB;
  --prestio-pearl:       #EEF0F6;
  --prestio-aqua:        #4A7FA5;
  --prestio-aqua-dark:   #365f7d;
  --prestio-gold:        #B8976A;
  --prestio-gold-light:  #D4B88A;

  --prestio-font-heading: 'Kumbh Sans', -apple-system, sans-serif;
  --prestio-font-body:    'Fraunces', Georgia, serif;
  --prestio-font-ui:      'Kumbh Sans', -apple-system, sans-serif;

  --prestio-shadow-sm:   0 2px 8px rgba(29, 43, 87, 0.08);
  --prestio-shadow-md:   0 4px 20px rgba(29, 43, 87, 0.12);
  --prestio-shadow-lg:   0 8px 40px rgba(29, 43, 87, 0.18);
  --prestio-shadow-card: 0 1px 3px rgba(29, 43, 87, 0.06), 0 4px 16px rgba(29, 43, 87, 0.10);

  --prestio-radius-sm:   6px;
  --prestio-radius-md:   12px;
  --prestio-radius-lg:   20px;
  --prestio-radius-xl:   32px;
  --prestio-radius-full: 9999px;

  --prestio-transition:  all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   BASE — applied via .prestio-active on body
   ═══════════════════════════════════════════════════════════ */
body.prestio-active {
  font-family: var(--prestio-font-body);
  font-weight: 300;
  color: var(--prestio-navy);
  background-color: var(--prestio-ivory);
  -webkit-font-smoothing: antialiased;
}

body.prestio-active h1,
body.prestio-active h2,
body.prestio-active h3,
body.prestio-active h4,
body.prestio-active h5,
body.prestio-active h6 {
  font-family: var(--prestio-font-heading);
  font-weight: 700;
  color: var(--prestio-navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.prestio-active p,
body.prestio-active li,
body.prestio-active td,
body.prestio-active label {
  font-family: var(--prestio-font-body);
  font-weight: 300;
  line-height: 1.75;
  color: var(--prestio-navy);
}

/* ═══════════════════════════════════════════════════════════
   PRESTIO WRAPPER SCOPE (safe from theme conflicts)
   ═══════════════════════════════════════════════════════════ */
.prestio-wrap * {
  box-sizing: border-box;
}

.prestio-wrap {
  font-family: var(--prestio-font-body);
  font-weight: 300;
  color: var(--prestio-navy);
  background-color: var(--prestio-ivory);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION BAR
   ═══════════════════════════════════════════════════════════ */
.prestio-navbar {
  background: var(--prestio-white);
  border-bottom: 1px solid var(--prestio-pearl);
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--prestio-shadow-sm);
}

.prestio-navbar__brand {
  font-family: var(--prestio-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--prestio-navy);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.prestio-navbar__brand span {
  color: var(--prestio-aqua);
}

.prestio-navbar__nav {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.prestio-navbar__nav a {
  font-family: var(--prestio-font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--prestio-slate);
  text-decoration: none;
  transition: var(--prestio-transition);
  letter-spacing: 0.02em;
}

.prestio-navbar__nav a:hover,
.prestio-navbar__nav a.active {
  color: var(--prestio-navy);
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.prestio-hero {
  background: linear-gradient(135deg, var(--prestio-navy) 0%, var(--prestio-navy-light) 60%, var(--prestio-aqua-dark) 100%);
  color: var(--prestio-white);
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.prestio-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(74, 127, 165, 0.25) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7FA5' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.prestio-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.prestio-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(74, 127, 165, 0.2);
  border: 1px solid rgba(74, 127, 165, 0.4);
  color: var(--prestio-slate-light);
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--prestio-radius-full);
  margin-bottom: 1.5rem;
}

.prestio-hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--prestio-aqua);
  animation: prestio-pulse 2s infinite;
}

.prestio-hero__title {
  font-family: var(--prestio-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--prestio-white);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.prestio-hero__title span {
  color: var(--prestio-aqua);
}

.prestio-hero__subtitle {
  font-family: var(--prestio-font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--prestio-slate-light);
  max-width: 520px;
  line-height: 1.75;
  margin: 0 0 2.5rem;
}

.prestio-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.prestio-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 480px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}

.prestio-hero__stat-value {
  font-family: var(--prestio-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--prestio-white);
}

.prestio-hero__stat-label {
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--prestio-slate-light);
  letter-spacing: 0.04em;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.prestio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--prestio-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: var(--prestio-transition);
  white-space: nowrap;
}

/* Primary — Navy solid */
.prestio-btn--primary {
  background: var(--prestio-navy);
  color: var(--prestio-white);
  border-color: var(--prestio-navy);
}

.prestio-btn--primary:hover {
  background: var(--prestio-navy-dark);
  border-color: var(--prestio-navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 43, 87, 0.35);
  color: var(--prestio-white);
  text-decoration: none;
}

/* Secondary — Outlined */
.prestio-btn--secondary {
  background: transparent;
  color: var(--prestio-navy);
  border-color: var(--prestio-navy);
}

.prestio-btn--secondary:hover {
  background: var(--prestio-navy);
  color: var(--prestio-white);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Ghost — White outline (for dark backgrounds) */
.prestio-btn--ghost {
  background: rgba(255,255,255,0.1);
  color: var(--prestio-white);
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}

.prestio-btn--ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
  color: var(--prestio-white);
  text-decoration: none;
}

/* Aqua accent */
.prestio-btn--aqua {
  background: var(--prestio-aqua);
  color: var(--prestio-white);
  border-color: var(--prestio-aqua);
}

.prestio-btn--aqua:hover {
  background: var(--prestio-aqua-dark);
  border-color: var(--prestio-aqua-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(74, 127, 165, 0.35);
  color: var(--prestio-white);
  text-decoration: none;
}

.prestio-btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  border-radius: var(--prestio-radius-lg);
}

.prestio-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════ */
.prestio-card {
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-lg);
  box-shadow: var(--prestio-shadow-card);
  border: 1px solid var(--prestio-pearl);
  overflow: hidden;
  transition: var(--prestio-transition);
}

.prestio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--prestio-shadow-lg);
}

.prestio-card__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--prestio-pearl);
}

.prestio-card__body {
  padding: 1.75rem;
}

.prestio-card__footer {
  padding: 1.25rem 1.75rem;
  background: var(--prestio-ivory);
  border-top: 1px solid var(--prestio-pearl);
}

/* ═══════════════════════════════════════════════════════════
   PRICING PLANS
   ═══════════════════════════════════════════════════════════ */
.prestio-plans {
  background: var(--prestio-ivory);
  padding: 5rem 2rem;
}

.prestio-plans__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 3rem auto 0;
}

.prestio-plan-card {
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-xl);
  border: 2px solid var(--prestio-pearl);
  padding: 2.5rem 2rem;
  transition: var(--prestio-transition);
  position: relative;
  overflow: hidden;
}

.prestio-plan-card:hover {
  border-color: var(--prestio-aqua);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74, 127, 165, 0.15);
}

.prestio-plan-card--featured {
  background: var(--prestio-navy);
  border-color: var(--prestio-navy);
  color: var(--prestio-white);
  transform: scale(1.04);
}

.prestio-plan-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 16px 50px rgba(29, 43, 87, 0.35);
}

.prestio-plan-card--featured .prestio-plan-card__price,
.prestio-plan-card--featured .prestio-plan-card__tier,
.prestio-plan-card--featured .prestio-plan-card__feature {
  color: var(--prestio-white);
}

.prestio-plan-card--featured .prestio-plan-card__period {
  color: var(--prestio-slate-light);
}

.prestio-plan-card__badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--prestio-gold);
  color: var(--prestio-white);
  font-family: var(--prestio-font-ui);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 0 0 var(--prestio-radius-sm) var(--prestio-radius-sm);
}

.prestio-plan-card__tier {
  font-family: var(--prestio-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prestio-aqua);
  margin-bottom: 0.75rem;
}

.prestio-plan-card__price {
  font-family: var(--prestio-font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--prestio-navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.prestio-plan-card__price sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.prestio-plan-card__period {
  font-family: var(--prestio-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--prestio-mist);
  margin-bottom: 1.5rem;
}

.prestio-plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.prestio-plan-card__feature {
  font-family: var(--prestio-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--prestio-navy);
  padding: 0.4rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.prestio-plan-card__feature::before {
  content: '✓';
  font-family: var(--prestio-font-ui);
  font-weight: 700;
  color: var(--prestio-aqua);
  flex-shrink: 0;
  margin-top: 0.05em;
}

.prestio-plan-card--featured .prestio-plan-card__feature::before {
  color: var(--prestio-gold-light);
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADINGS
   ═══════════════════════════════════════════════════════════ */
.prestio-section {
  padding: 5rem 2rem;
}

.prestio-section--dark {
  background: var(--prestio-navy);
  color: var(--prestio-white);
}

.prestio-section--pearl {
  background: var(--prestio-pearl);
}

.prestio-section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.prestio-section__badge {
  display: inline-block;
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prestio-aqua);
  background: rgba(74, 127, 165, 0.1);
  border: 1px solid rgba(74, 127, 165, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--prestio-radius-full);
  margin-bottom: 1rem;
}

.prestio-section--dark .prestio-section__badge {
  color: var(--prestio-aqua);
  background: rgba(74, 127, 165, 0.2);
  border-color: rgba(74, 127, 165, 0.35);
}

.prestio-section__title {
  font-family: var(--prestio-font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--prestio-navy);
  margin: 0 0 1rem;
  letter-spacing: -0.025em;
}

.prestio-section--dark .prestio-section__title {
  color: var(--prestio-white);
}

.prestio-section__subtitle {
  font-family: var(--prestio-font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--prestio-slate);
  line-height: 1.75;
}

.prestio-section--dark .prestio-section__subtitle {
  color: var(--prestio-slate-light);
}

/* ═══════════════════════════════════════════════════════════
   BENEFITS GRID
   ═══════════════════════════════════════════════════════════ */
.prestio-benefits__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.prestio-benefit-card {
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--prestio-pearl);
  transition: var(--prestio-transition);
}

.prestio-benefit-card:hover {
  border-color: var(--prestio-aqua);
  box-shadow: 0 6px 24px rgba(74, 127, 165, 0.12);
  transform: translateY(-2px);
}

.prestio-benefit-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(74, 127, 165, 0.1);
  border-radius: var(--prestio-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.prestio-benefit-card__title {
  font-family: var(--prestio-font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--prestio-navy);
  margin: 0 0 0.5rem;
}

.prestio-benefit-card__text {
  font-family: var(--prestio-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--prestio-slate);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS — Steps
   ═══════════════════════════════════════════════════════════ */
.prestio-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.prestio-step {
  text-align: center;
  position: relative;
}

.prestio-step__num {
  font-family: var(--prestio-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--prestio-pearl);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.prestio-step__icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--prestio-aqua), var(--prestio-navy-light));
  border-radius: var(--prestio-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  box-shadow: 0 6px 20px rgba(74, 127, 165, 0.3);
}

.prestio-step__title {
  font-family: var(--prestio-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--prestio-navy);
  margin: 0 0 0.5rem;
}

.prestio-step__text {
  font-family: var(--prestio-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--prestio-slate);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.prestio-form {
  font-family: var(--prestio-font-ui);
}

.prestio-form__group {
  margin-bottom: 1.25rem;
}

.prestio-form__label {
  display: block;
  font-family: var(--prestio-font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--prestio-slate);
  margin-bottom: 0.45rem;
}

.prestio-form__input,
.prestio-form__select,
.prestio-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--prestio-font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--prestio-navy);
  background: var(--prestio-white);
  border: 1.5px solid var(--prestio-mist-light);
  border-radius: var(--prestio-radius-md);
  transition: var(--prestio-transition);
  outline: none;
  appearance: none;
}

.prestio-form__input:focus,
.prestio-form__select:focus,
.prestio-form__textarea:focus {
  border-color: var(--prestio-aqua);
  box-shadow: 0 0 0 3px rgba(74, 127, 165, 0.12);
}

.prestio-form__input::placeholder {
  color: var(--prestio-mist);
  font-weight: 300;
}

.prestio-form__input.is-invalid {
  border-color: #e05252;
}

.prestio-form__error {
  font-family: var(--prestio-font-ui);
  font-size: 0.78rem;
  color: #e05252;
  margin-top: 0.3rem;
}

.prestio-form__hint {
  font-family: var(--prestio-font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--prestio-mist);
  margin-top: 0.3rem;
  font-style: italic;
}

/* Checkbox */
.prestio-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.prestio-form__checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 2px solid var(--prestio-mist-light);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--prestio-aqua);
}

.prestio-form__checkbox span {
  font-family: var(--prestio-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--prestio-slate);
  line-height: 1.5;
}

.prestio-form__checkbox span a {
  color: var(--prestio-aqua);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   MEMBER DASHBOARD
   ═══════════════════════════════════════════════════════════ */
.prestio-dashboard {
  background: var(--prestio-ivory);
  min-height: 100vh;
}

.prestio-dashboard__header {
  background: linear-gradient(135deg, var(--prestio-navy) 0%, var(--prestio-navy-light) 100%);
  color: var(--prestio-white);
  padding: 3rem 2rem 4rem;
}

.prestio-dashboard__header h1 {
  font-family: var(--prestio-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--prestio-white);
  margin: 0 0 0.5rem;
}

.prestio-dashboard__header p {
  font-family: var(--prestio-font-body);
  font-weight: 300;
  color: var(--prestio-slate-light);
  margin: 0;
}

.prestio-dashboard__content {
  max-width: 1100px;
  margin: -2rem auto 0;
  padding: 0 2rem 4rem;
  position: relative;
}

.prestio-dashboard__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .prestio-dashboard__grid {
    grid-template-columns: 1fr;
  }
}

/* VIP Card */
.prestio-vip-card {
  background: linear-gradient(135deg, var(--prestio-navy) 0%, var(--prestio-aqua-dark) 100%);
  border-radius: var(--prestio-radius-xl);
  padding: 2rem;
  color: var(--prestio-white);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  box-shadow: var(--prestio-shadow-lg);
}

.prestio-vip-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(74, 127, 165, 0.2);
  border-radius: 50%;
}

.prestio-vip-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -20px;
  width: 220px;
  height: 220px;
  background: rgba(29, 43, 87, 0.3);
  border-radius: 50%;
}

.prestio-vip-card__logo {
  font-family: var(--prestio-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.prestio-vip-card__tier {
  font-family: var(--prestio-font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--prestio-gold-light);
  position: relative;
  z-index: 1;
  margin-top: 0.25rem;
}

.prestio-vip-card__number {
  font-family: var(--prestio-font-ui);
  font-size: 1rem;
  letter-spacing: 0.2em;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   QR CODE DISPLAY
   ═══════════════════════════════════════════════════════════ */
.prestio-qr-wrap {
  text-align: center;
  padding: 2rem;
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-xl);
  border: 2px solid var(--prestio-pearl);
  box-shadow: var(--prestio-shadow-sm);
}

.prestio-qr-wrap img,
.prestio-qr-wrap canvas {
  display: block;
  margin: 0 auto;
  border-radius: var(--prestio-radius-md);
  border: 8px solid var(--prestio-white);
  box-shadow: var(--prestio-shadow-md);
}

.prestio-qr-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--prestio-slate);
  margin-top: 1rem;
}

.prestio-qr-countdown__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--prestio-aqua);
  animation: prestio-pulse 2s infinite;
}

/* ═══════════════════════════════════════════════════════════
   MERCHANT MAP & CARDS
   ═══════════════════════════════════════════════════════════ */
.prestio-map-wrap {
  border-radius: var(--prestio-radius-xl);
  overflow: hidden;
  box-shadow: var(--prestio-shadow-md);
  border: 2px solid var(--prestio-pearl);
}

.prestio-merchant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.prestio-merchant-card {
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-lg);
  border: 1px solid var(--prestio-pearl);
  overflow: hidden;
  transition: var(--prestio-transition);
}

.prestio-merchant-card:hover {
  border-color: var(--prestio-aqua);
  box-shadow: 0 8px 28px rgba(74, 127, 165, 0.14);
  transform: translateY(-3px);
}

.prestio-merchant-card__photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.prestio-merchant-card__body {
  padding: 1.25rem 1.5rem;
}

.prestio-merchant-card__category {
  font-family: var(--prestio-font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prestio-aqua);
  margin-bottom: 0.4rem;
}

.prestio-merchant-card__name {
  font-family: var(--prestio-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--prestio-navy);
  margin: 0 0 0.5rem;
}

.prestio-merchant-card__address {
  font-family: var(--prestio-font-body);
  font-size: 0.825rem;
  font-weight: 300;
  color: var(--prestio-slate);
}

.prestio-merchant-card__city {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--prestio-mist);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════
   ALERTS & MESSAGES
   ═══════════════════════════════════════════════════════════ */
.prestio-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--prestio-radius-md);
  font-family: var(--prestio-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.prestio-alert--success {
  background: rgba(74, 127, 165, 0.08);
  border: 1px solid rgba(74, 127, 165, 0.25);
  color: var(--prestio-aqua-dark);
}

.prestio-alert--error {
  background: rgba(224, 82, 82, 0.07);
  border: 1px solid rgba(224, 82, 82, 0.25);
  color: #c0392b;
}

.prestio-alert--info {
  background: rgba(29, 43, 87, 0.05);
  border: 1px solid rgba(29, 43, 87, 0.15);
  color: var(--prestio-navy);
}

.prestio-alert--warning {
  background: rgba(184, 151, 106, 0.1);
  border: 1px solid rgba(184, 151, 106, 0.3);
  color: #8a6a3a;
}

/* ═══════════════════════════════════════════════════════════
   BADGES / STATUS PILLS
   ═══════════════════════════════════════════════════════════ */
.prestio-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--prestio-radius-full);
}

.prestio-badge--active   { background: rgba(74, 127, 165, 0.12); color: var(--prestio-aqua-dark); }
.prestio-badge--pending  { background: rgba(184, 151, 106, 0.12); color: #8a6a3a; }
.prestio-badge--expired  { background: rgba(166, 166, 166, 0.15); color: #555; }
.prestio-badge--approved { background: rgba(74, 127, 165, 0.12); color: var(--prestio-aqua-dark); }
.prestio-badge--silver   { background: rgba(166, 166, 166, 0.12); color: #555; }
.prestio-badge--gold     { background: rgba(184, 151, 106, 0.15); color: #8a6a3a; }
.prestio-badge--platinum { background: rgba(29, 43, 87, 0.08); color: var(--prestio-navy); }

/* ═══════════════════════════════════════════════════════════
   TABLE (Admin + Member views)
   ═══════════════════════════════════════════════════════════ */
.prestio-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: var(--prestio-font-ui);
  font-size: 0.875rem;
}

.prestio-table thead th {
  font-family: var(--prestio-font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--prestio-slate);
  background: var(--prestio-ivory);
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--prestio-pearl);
  white-space: nowrap;
}

.prestio-table tbody td {
  padding: 0.9rem 1rem;
  color: var(--prestio-navy);
  border-bottom: 1px solid var(--prestio-pearl);
  vertical-align: middle;
}

.prestio-table tbody tr:hover td {
  background: var(--prestio-ivory);
}

/* ═══════════════════════════════════════════════════════════
   LOGIN / REGISTER PAGE
   ═══════════════════════════════════════════════════════════ */
.prestio-auth {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--prestio-ivory);
}

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

  .prestio-auth__aside {
    display: none;
  }
}

.prestio-auth__aside {
  background: linear-gradient(160deg, var(--prestio-navy) 0%, var(--prestio-aqua-dark) 100%);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.prestio-auth__aside::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%234A7FA5' fill-opacity='0.1'%3E%3Cpath d='M40 40 L80 0 L80 80 Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.prestio-auth__aside-logo {
  font-family: var(--prestio-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--prestio-white);
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.prestio-auth__aside-logo span {
  color: var(--prestio-aqua);
}

.prestio-auth__aside-title {
  font-family: var(--prestio-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--prestio-white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.prestio-auth__aside-text {
  font-family: var(--prestio-font-body);
  font-size: 1rem;
  font-weight: 300;
  color: var(--prestio-slate-light);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.prestio-auth__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.prestio-auth__box {
  width: 100%;
  max-width: 400px;
}

.prestio-auth__title {
  font-family: var(--prestio-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--prestio-navy);
  margin: 0 0 0.5rem;
}

.prestio-auth__subtitle {
  font-family: var(--prestio-font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--prestio-slate);
  margin: 0 0 2rem;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.prestio-footer {
  background: var(--prestio-navy-dark);
  color: var(--prestio-slate-light);
  padding: 4rem 2rem 2rem;
}

.prestio-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

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

@media (max-width: 560px) {
  .prestio-footer__grid {
    grid-template-columns: 1fr;
  }
}

.prestio-footer__brand {
  font-family: var(--prestio-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--prestio-white);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.prestio-footer__brand span {
  color: var(--prestio-aqua);
}

.prestio-footer__tagline {
  font-family: var(--prestio-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--prestio-slate);
  line-height: 1.65;
}

.prestio-footer__heading {
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prestio-mist-light);
  margin: 0 0 1rem;
}

.prestio-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prestio-footer__links li {
  margin-bottom: 0.5rem;
}

.prestio-footer__links a {
  font-family: var(--prestio-font-body);
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--prestio-slate);
  text-decoration: none;
  transition: var(--prestio-transition);
}

.prestio-footer__links a:hover {
  color: var(--prestio-white);
}

.prestio-footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.prestio-footer__copy {
  font-family: var(--prestio-font-ui);
  font-size: 0.78rem;
  color: var(--prestio-mist);
}

.prestio-footer__cities {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.prestio-footer__city {
  font-family: var(--prestio-font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--prestio-mist);
  opacity: 0.7;
}

/* ═══════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════ */
.prestio-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 2rem;
  background: var(--prestio-pearl);
  border-top: 1px solid var(--prestio-mist-light);
  border-bottom: 1px solid var(--prestio-mist-light);
}

.prestio-trust__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--prestio-slate);
}

/* ═══════════════════════════════════════════════════════════
   SCANNER PAGE
   ═══════════════════════════════════════════════════════════ */
.prestio-scanner {
  max-width: 560px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.prestio-scanner__video-wrap {
  position: relative;
  border-radius: var(--prestio-radius-xl);
  overflow: hidden;
  background: var(--prestio-navy);
  aspect-ratio: 1;
  box-shadow: var(--prestio-shadow-lg);
}

.prestio-scanner__video-wrap video,
.prestio-scanner__video-wrap canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prestio-scanner__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prestio-scanner__finder {
  width: 55%;
  aspect-ratio: 1;
  border: 3px solid var(--prestio-aqua);
  border-radius: var(--prestio-radius-md);
  box-shadow: 0 0 0 4000px rgba(29, 43, 87, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════ */
.prestio-lang {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.prestio-lang__btn {
  font-family: var(--prestio-font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--prestio-radius-sm);
  border: 1px solid var(--prestio-pearl);
  background: var(--prestio-white);
  color: var(--prestio-slate);
  cursor: pointer;
  transition: var(--prestio-transition);
  text-decoration: none;
}

.prestio-lang__btn:hover,
.prestio-lang__btn.active {
  background: var(--prestio-navy);
  color: var(--prestio-white);
  border-color: var(--prestio-navy);
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes prestio-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes prestio-fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes prestio-slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.prestio-animate-in {
  animation: prestio-fadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) both;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═══════════════════════════════════════════════════════════ */
.prestio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 640px) {
  .prestio-container {
    padding: 0 1rem;
  }

  .prestio-hero {
    padding: 5rem 1rem 4rem;
  }

  .prestio-hero__title {
    font-size: 2rem;
  }

  .prestio-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .prestio-plan-card--featured {
    transform: none;
  }

  .prestio-navbar {
    padding: 0 1rem;
  }
}

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

/* ═══════════════════════════════════════════════════════════
   ADMIN CSS (backend media path)
   ═══════════════════════════════════════════════════════════ */
.prestio-admin-dash {
  font-family: var(--prestio-font-ui);
}

.prestio-admin-dash .stat-card {
  background: var(--prestio-white);
  border-radius: var(--prestio-radius-lg);
  border: 1px solid var(--prestio-pearl);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.prestio-admin-dash .stat-card__val {
  font-family: var(--prestio-font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--prestio-navy);
  line-height: 1;
}

.prestio-admin-dash .stat-card__label {
  font-family: var(--prestio-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--prestio-slate);
}

/* ═══════════════════════════════════════════════════════════
   CITY TAGS — Montenegro specifics
   ═══════════════════════════════════════════════════════════ */
.prestio-city-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--prestio-radius-full);
}

.prestio-city-tag--kotor     { background: rgba(29, 43, 87, 0.08); color: var(--prestio-navy); }
.prestio-city-tag--budva     { background: rgba(74, 127, 165, 0.1); color: var(--prestio-aqua-dark); }
.prestio-city-tag--podgorica { background: rgba(125, 136, 158, 0.1); color: var(--prestio-slate); }
.prestio-city-tag--tivat     { background: rgba(184, 151, 106, 0.1); color: #8a6a3a; }

/* ═══════════════════════════════════════════════════════════
   DIVIDERS
   ═══════════════════════════════════════════════════════════ */
.prestio-divider {
  border: none;
  border-top: 1px solid var(--prestio-pearl);
  margin: 2rem 0;
}

.prestio-divider--thick {
  border-top: 2px solid var(--prestio-pearl);
}

/* ═══════════════════════════════════════════════════════════
   SPINNER / LOADER
   ═══════════════════════════════════════════════════════════ */
.prestio-spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--prestio-pearl);
  border-top-color: var(--prestio-aqua);
  border-radius: 50%;
  animation: prestio-spin 0.7s linear infinite;
}

@keyframes prestio-spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════
   PRINT RESET
   ═══════════════════════════════════════════════════════════ */
@media print {
  .prestio-navbar,
  .prestio-footer,
  .prestio-hero__cta { display: none; }

  body.prestio-active {
    background: white;
  }
}


/* ═══════════════════════════════════════════════════════════
   MERCHANTS MAP INTERACTIVE — Carte partenaires Prestio
   Vue : com_prestio / view=merchants / layout=default
   Joomla 6.0.4 — VipMembership Component
   -------------------------------------------------------
   Fusion depuis : auralife-merchants-map.css
   Adapté palette : Adriatic / Mediterranean Design System
     Navy sombre sidebar : #0d1829
     Fond cartes         : #0d1829 / #111f33
     Or Prestio          : var(--prestio-gold)   → #B8976A
     Or clair survol     : var(--prestio-gold-light) → #D4B88A
     Texte principal     : var(--prestio-ivory)  → #F7F8FB
     Texte secondaire    : var(--prestio-slate)  → #7D889E
     Texte tertiaire     : var(--prestio-mist)   → #a6a6a6
     Bordures discrètes  : rgba(184,151,106,.15)
   ═══════════════════════════════════════════════════════════ */

/* ── Variables locales carte (évite la répétition RGBA) ──────────────── */
.merchants-map-page {
  --map-gold:          var(--prestio-gold);
  --map-gold-light:    var(--prestio-gold-light);
  --map-bg-deep:       #080f1c;
  --map-bg-sidebar:    #0d1829;
  --map-bg-card:       #111f33;
  --map-bg-item:       #0a1524;
  --map-text-primary:  var(--prestio-ivory);
  --map-text-muted:    var(--prestio-slate);
  --map-text-dim:      #4a6070;
  --map-border:        rgba(184, 151, 106, 0.15);
  --map-border-hover:  rgba(184, 151, 106, 0.55);
  --map-gold-glow:     rgba(184, 151, 106, 0.12);
}

/* ── Reset périmètre ────────────────────────────────────────────────── */
.merchants-map-page *,
.merchants-map-page *::before,
.merchants-map-page *::after {
    box-sizing: border-box;
}

/* ── Conteneur principal ────────────────────────────────────────────── */
.merchants-map-container {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 80px);
    min-height: 500px;
    background: var(--map-bg-deep);
    font-family: var(--prestio-font-ui);
    overflow: hidden;
}

/* ── Sidebar ────────────────────────────────────────────────────────── */
.map-sidebar {
    width: 380px;
    min-width: 320px;
    max-width: 420px;
    background: var(--map-bg-sidebar);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-right: 1px solid var(--map-border);
    z-index: 10;
}

.sidebar-header {
    padding: 18px 20px 14px;
    border-bottom: 1px solid var(--map-border);
    background: linear-gradient(135deg, #0a1422 0%, #0d1829 100%);
    flex-shrink: 0;
}

.sidebar-header h3 {
    font-family: var(--prestio-font-heading);
    color: var(--map-gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 4px;
}

.merchant-count {
    color: var(--map-text-muted);
    font-family: var(--prestio-font-ui);
    font-size: 0.78rem;
    margin: 0;
}

/* ── Toggle mobile ──────────────────────────────────────────────────── */
.mobile-toggle {
    display: none;
    padding: 10px 16px;
    gap: 8px;
    background: #0a1422;
    border-bottom: 1px solid var(--map-border);
    flex-shrink: 0;
}

.btn-toggle-view {
    flex: 1;
    background: transparent;
    border: 1px solid rgba(184, 151, 106, 0.25);
    color: var(--map-text-muted);
    padding: 7px 12px;
    border-radius: var(--prestio-radius-full);
    font-family: var(--prestio-font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: var(--prestio-transition);
}

.btn-toggle-view.active,
.btn-toggle-view:hover {
    background: var(--map-gold);
    border-color: var(--map-gold);
    color: #050d1a;
}

/* ── Filtres ────────────────────────────────────────────────────────── */
.filters-section {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(184, 151, 106, 0.08);
    background: #0a1220;
    flex-shrink: 0;
    overflow-y: auto;
}

.search-box {
    position: relative;
    margin-bottom: 10px;
}

.search-box .fas.fa-search {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--map-text-dim);
    pointer-events: none;
}

.search-box .form-control {
    padding-left: 36px;
    background: var(--map-bg-card);
    border: 1px solid rgba(184, 151, 106, 0.2);
    color: var(--map-text-primary);
    border-radius: var(--prestio-radius-full);
    font-family: var(--prestio-font-ui);
    font-size: 0.84rem;
}

.search-box .form-control:focus {
    border-color: var(--map-gold);
    box-shadow: 0 0 0 3px var(--map-gold-glow);
    background: var(--map-bg-card);
    color: var(--map-text-primary);
}

.search-box .form-control::placeholder {
    color: var(--map-text-dim);
}

.btn-location {
    background: transparent;
    border: 1px solid rgba(184, 151, 106, 0.3);
    color: var(--map-gold);
    padding: 8px 16px;
    border-radius: var(--prestio-radius-full);
    font-family: var(--prestio-font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--prestio-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    width: 100%;
}

.btn-location:hover,
.btn-location.active {
    background: var(--map-gold);
    border-color: var(--map-gold);
    color: #050d1a;
}

.filter-card {
    background: var(--map-bg-card);
    border: 1px solid rgba(184, 151, 106, 0.1);
    border-radius: var(--prestio-radius-md);
    padding: 10px 12px;
    margin-bottom: 8px;
}

.filter-label {
    display: block;
    color: var(--map-text-muted);
    font-family: var(--prestio-font-ui);
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.filter-card .form-select {
    background-color: var(--map-bg-item);
    border: 1px solid rgba(184, 151, 106, 0.2);
    color: var(--map-text-primary);
    font-family: var(--prestio-font-ui);
    font-size: 0.84rem;
    border-radius: var(--prestio-radius-sm);
    width: 100%;
}

.filter-card .form-select:focus {
    border-color: var(--map-gold);
    box-shadow: 0 0 0 2px var(--map-gold-glow);
    background-color: var(--map-bg-item);
    color: var(--map-text-primary);
    outline: none;
}

.active-filters {
    background: var(--map-gold-glow);
    border: 1px solid rgba(184, 151, 106, 0.2);
    border-radius: var(--prestio-radius-sm);
    padding: 8px 12px;
    font-family: var(--prestio-font-ui);
    font-size: 0.78rem;
    color: var(--map-text-muted);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-reset-filters {
    background: transparent;
    border: 1px solid rgba(184, 151, 106, 0.25);
    color: var(--map-gold);
    padding: 3px 10px;
    border-radius: var(--prestio-radius-full);
    font-family: var(--prestio-font-ui);
    font-size: 0.74rem;
    cursor: pointer;
    transition: var(--prestio-transition);
    white-space: nowrap;
}

.btn-reset-filters:hover {
    background: var(--map-gold-glow);
    border-color: var(--map-gold);
}

/* ── Liste des partenaires ──────────────────────────────────────────── */
.merchants-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px 12px;
}

.merchants-list::-webkit-scrollbar         { width: 3px; }
.merchants-list::-webkit-scrollbar-track   { background: #0a1220; }
.merchants-list::-webkit-scrollbar-thumb   { background: var(--map-gold); border-radius: 2px; }

/* ── Carte partenaire (sidebar) ─────────────────────────────────────── */
.merchant-card {
    background: var(--map-bg-card);
    border: 1px solid var(--map-border);
    border-radius: var(--prestio-radius-md);
    padding: 12px 14px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: var(--prestio-transition);
}

.merchant-card:hover,
.merchant-card.highlighted {
    border-color: var(--map-gold);
    background: #152035;
    box-shadow: 0 4px 16px var(--map-gold-glow);
    transform: translateY(-1px);
}

.merchant-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.merchant-icon {
    width: 36px;
    height: 36px;
    background: var(--map-gold-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--map-gold);
    font-size: 0.9rem;
    flex-shrink: 0;
    border: 1px solid rgba(184, 151, 106, 0.2);
}

.merchant-info        { flex: 1; min-width: 0; }

.merchant-info h4 {
    color: var(--map-text-primary);
    font-family: var(--prestio-font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.merchant-category {
    color: var(--map-gold);
    font-family: var(--prestio-font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.distance-badge {
    font-size: 0.7rem;
    font-family: var(--prestio-font-ui);
    font-weight: 500;
    color: var(--map-gold);
    background: var(--map-gold-glow);
    padding: 2px 8px;
    border-radius: var(--prestio-radius-full);
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(184, 151, 106, 0.15);
}

.merchant-address {
    color: var(--map-text-dim);
    font-family: var(--prestio-font-body);
    font-size: 0.76rem;
    font-weight: 300;
    margin-top: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.merchant-benefits {
    color: var(--map-text-muted);
    font-family: var(--prestio-font-body);
    font-size: 0.74rem;
    font-weight: 300;
    margin-top: 5px;
    font-style: italic;
}

/* ── État vide ──────────────────────────────────────────────────────── */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #2a3a4a;
}

.empty-state i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
    color: #1a2a3a;
}

.empty-state p {
    font-family: var(--prestio-font-body);
    font-size: 0.875rem;
    color: var(--map-text-dim);
}

/* ── Panneau carte ──────────────────────────────────────────────────── */
.map-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile portrait (≤ 767px)
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 767.98px) {

    .merchants-map-container {
        flex-direction: column;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .map-sidebar {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        max-height: none;
        overflow: visible;
        border-right: none;
        border-bottom: 1px solid var(--map-border);
    }

    /* Liste bornée + scroll interne */
    .merchants-list {
        max-height: 40vh;
        overflow-y: auto;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .map-panel {
        height: 55vw;
        min-height: 260px;
        max-height: none;
        flex-shrink: 0;
    }

    #map {
        height: 100%;
        min-height: 260px;
    }

    /* Masquage via toggle mobile */
    .map-sidebar.panel-hidden { display: none; }
    .map-panel.panel-hidden   { display: none; }
}

/* ── Mobile paysage (≤ 896px landscape) ────────────────────────────── */
@media (max-width: 896px) and (orientation: landscape) {
    .merchants-map-container {
        flex-direction: row;
        height: calc(100vh - 60px);
    }

    .map-sidebar {
        width: 280px;
        min-width: 240px;
    }

    .map-panel,
    #map { height: 100%; }
}

/* ── Tablette portrait (768–1023px) ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023.98px) {
    .merchants-map-container { height: calc(100vh - 80px); }
    .map-sidebar              { width: 300px; }
}

/* ═══════════════════════════════════════════════════════════════════════
   POPUP LEAFLET — thème Prestio Adriatic
   ═══════════════════════════════════════════════════════════════════════ */
.leaflet-popup-content-wrapper {
    background: var(--map-bg-card);
    border: 1px solid rgba(184, 151, 106, 0.35);
    border-radius: var(--prestio-radius-md);
    box-shadow: 0 8px 32px rgba(5, 13, 26, 0.7);
    color: var(--map-text-primary);
}

.leaflet-popup-tip {
    background: var(--map-bg-card);
}

.leaflet-popup-content {
    margin: 14px 16px;
    color: var(--map-text-primary);
    font-family: var(--prestio-font-ui);
}

.popup-title {
    font-family: var(--prestio-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--map-gold);
    margin-bottom: 4px;
}

.popup-category {
    font-family: var(--prestio-font-ui);
    font-size: 0.74rem;
    color: var(--map-text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.popup-address {
    font-family: var(--prestio-font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--map-text-muted);
    margin-bottom: 6px;
}

.popup-benefits {
    font-family: var(--prestio-font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--map-gold);
    font-style: italic;
    background: var(--map-gold-glow);
    border: 1px solid rgba(184, 151, 106, 0.15);
    padding: 6px 8px;
    border-radius: var(--prestio-radius-sm);
    margin-top: 6px;
}

/* Bouton itinéraire dans popup */
.popup-itinerary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    padding: 7px 14px;
    background: var(--prestio-navy);
    color: var(--prestio-white);
    font-family: var(--prestio-font-ui);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: var(--prestio-radius-full);
    border: 1px solid var(--map-gold);
    transition: var(--prestio-transition);
    white-space: nowrap;
}

.popup-itinerary:hover {
    background: var(--map-gold);
    color: #050d1a;
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 4px 12px var(--map-gold-glow);
}

/* ═══════════════════════════════════════════════════════════════════════
   MARQUEUR PERSONNALISÉ Leaflet — style Prestio
   ═══════════════════════════════════════════════════════════════════════ */
.custom-marker {
    background: var(--prestio-navy);
    border: 2px solid var(--map-gold);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--map-gold);
    font-size: 0.8rem;
    box-shadow: 0 2px 8px rgba(5, 13, 26, 0.6);
    transition: var(--prestio-transition);
}

.custom-marker:hover,
.custom-marker.active {
    transform: scale(1.25);
    background: var(--map-gold);
    color: #050d1a;
    border-color: var(--prestio-navy);
    z-index: 1000 !important;
    box-shadow: 0 4px 16px var(--map-gold-glow);
}

/* ═══════════════════════════════════════════════════════════
   FIN BLOC MERCHANTS MAP INTERACTIVE — v1.0.0
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   PRESTIO HOME — Vue publique d'accueil (.vip-homepage)
   Version : v1.3.0 — Adaptation chirurgicale à la palette Prestio
   Portée  : Tous les composants visuels du fichier home/default.php
             (navbar, hero, benefits, pricing, steps, CTA, partenariat)
   Couleurs : exclusivement issues des variables --prestio-* (aucun or)
   Typo    : Kumbh Sans (titres/UI) — Fraunces Light (corps)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Conteneur racine + reset cosmétique --------------------------------- */
.vip-homepage {
  font-family: var(--prestio-font-body);
  color: var(--prestio-navy);
  background-color: var(--prestio-ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

.vip-homepage .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.vip-homepage h1,
.vip-homepage h2,
.vip-homepage h3,
.vip-homepage h4 {
  font-family: var(--prestio-font-heading);
  color: var(--prestio-navy);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vip-homepage p { font-family: var(--prestio-font-body); font-weight: 300; }

.vip-homepage .gradient-text {
  background: linear-gradient(135deg, var(--prestio-navy) 0%, var(--prestio-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ── Navbar ------------------------------------------------------------- */
.vip-homepage .vip-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 248, 251, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--prestio-pearl);
  transition: box-shadow 0.25s ease;
}

.vip-homepage .vip-navbar .nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.vip-homepage .logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--prestio-font-heading);
  font-weight: 700; font-size: 1.4rem;
  color: var(--prestio-navy);
}

.vip-homepage .logo-icon { font-size: 1.6rem; }
.vip-homepage .vip-label { color: var(--prestio-aqua); font-weight: 500; }

.vip-homepage .nav-menu {
  display: flex; gap: 2rem; align-items: center;
}

.vip-homepage .nav-link {
  font-family: var(--prestio-font-ui);
  color: var(--prestio-slate);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.vip-homepage .nav-link:hover { color: var(--prestio-navy); }

.vip-homepage .nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.vip-homepage .btn-login {
  font-family: var(--prestio-font-ui);
  color: var(--prestio-navy);
  text-decoration: none;
  padding: 0.6rem 1.1rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.vip-homepage .btn-login:hover { background: var(--prestio-pearl); }

.vip-homepage .btn-cta {
  font-family: var(--prestio-font-ui);
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  text-decoration: none;
  padding: 0.7rem 1.3rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(29, 43, 87, 0.18);
}

.vip-homepage .btn-cta:hover {
  background: var(--prestio-navy-dark);
  transform: translateY(-1px);
  color: var(--prestio-ivory);
}

.vip-homepage .mobile-menu-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 0.4rem;
}
.vip-homepage .mobile-menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--prestio-navy); border-radius: 2px;
}

/* ── Hero ---------------------------------------------------------------- */
.vip-homepage .hero-section {
  position: relative;
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, var(--prestio-ivory) 0%, var(--prestio-pearl) 100%);
  overflow: hidden;
}

.vip-homepage .particles-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 127, 165, 0.10) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(29, 43, 87, 0.08) 0, transparent 45%);
  pointer-events: none;
}

.vip-homepage .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.vip-homepage .hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--prestio-pearl);
  color: var(--prestio-navy);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-family: var(--prestio-font-ui);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(29, 43, 87, 0.08);
}

.vip-homepage .hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.vip-homepage .hero-subtitle {
  font-size: 1.15rem;
  color: var(--prestio-slate);
  margin-bottom: 2rem;
  max-width: 540px;
}

.vip-homepage .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.vip-homepage .stat-box {
  background: #fff;
  border: 1px solid var(--prestio-pearl);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.vip-homepage .stat-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(29, 43, 87, 0.08);
}

.vip-homepage .stat-icon { font-size: 1.4rem; }
.vip-homepage .stat-value {
  font-family: var(--prestio-font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--prestio-navy);
  margin-top: 0.2rem;
}
.vip-homepage .stat-label {
  font-family: var(--prestio-font-ui);
  font-size: 0.8rem;
  color: var(--prestio-slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.vip-homepage .hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.9rem;
  margin-bottom: 1.6rem;
}

.vip-homepage .btn-primary-large {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  text-decoration: none;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 12px 30px rgba(29, 43, 87, 0.25);
  transition: transform 0.2s ease, background 0.2s ease;
}
.vip-homepage .btn-primary-large:hover {
  background: var(--prestio-navy-dark);
  transform: translateY(-2px);
  color: var(--prestio-ivory);
}

.vip-homepage .btn-secondary-large {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent;
  color: var(--prestio-navy);
  text-decoration: none;
  padding: 1rem 1.6rem;
  border-radius: 12px;
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--prestio-navy);
  transition: background 0.2s ease, color 0.2s ease;
}
.vip-homepage .btn-secondary-large:hover {
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
}

.vip-homepage .trust-badges {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-family: var(--prestio-font-ui);
  font-size: 0.85rem;
  color: var(--prestio-slate);
}

/* ── Hero phone mockup --------------------------------------------------- */
.vip-homepage .hero-visual { display: flex; justify-content: center; }

.vip-homepage .phone-mockup {
  width: 280px;
  background: var(--prestio-navy);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(29, 43, 87, 0.30),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.vip-homepage .phone-screen {
  background: var(--prestio-ivory);
  border-radius: 24px;
  padding: 1rem;
  min-height: 480px;
  display: flex; flex-direction: column; gap: 1rem;
}

.vip-homepage .status-bar {
  display: flex; justify-content: space-between;
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  color: var(--prestio-slate);
}

.vip-homepage .profile-header {
  display: flex; align-items: center; gap: 0.75rem;
}

.vip-homepage .avatar-circle {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--prestio-navy), var(--prestio-aqua));
  color: var(--prestio-ivory);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--prestio-font-heading);
  font-weight: 700; font-size: 0.85rem;
}

.vip-homepage .profile-info h4 { margin: 0; font-size: 0.95rem; }
.vip-homepage .profile-info p  { margin: 0; font-size: 0.8rem; color: var(--prestio-slate); }
.vip-homepage .tier-gold       { color: var(--prestio-aqua) !important; font-weight: 600; }

.vip-homepage .qr-display {
  background: #fff;
  border: 1px solid var(--prestio-pearl);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.vip-homepage .qr-code-animated {
  position: relative;
  width: 160px; height: 160px;
  margin: 0 auto 0.8rem;
  background:
    repeating-linear-gradient(0deg, var(--prestio-navy) 0 6px, transparent 6px 12px),
    repeating-linear-gradient(90deg, var(--prestio-navy) 0 6px, transparent 6px 12px);
  background-color: var(--prestio-ivory);
  border-radius: 8px;
  overflow: hidden;
}

.vip-homepage .qr-code-animated .qr-box {
  position: absolute; inset: 12px;
  border: 6px solid var(--prestio-ivory);
  border-radius: 4px;
  pointer-events: none;
}

.vip-homepage .scan-line {
  position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--prestio-aqua);
  box-shadow: 0 0 10px rgba(74, 127, 165, 0.6);
  animation: prestio-scan 2.4s linear infinite;
}

@keyframes prestio-scan {
  0%   { top: 0; }
  50%  { top: calc(100% - 2px); }
  100% { top: 0; }
}

.vip-homepage .qr-timer {
  font-family: var(--prestio-font-ui);
  font-size: 0.8rem;
  color: var(--prestio-slate);
  margin: 0;
}

.vip-homepage .quick-actions {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem;
}
.vip-homepage .action-btn {
  background: #fff;
  border: 1px solid var(--prestio-pearl);
  border-radius: 12px;
  padding: 0.7rem 0.4rem;
  text-align: center;
  font-family: var(--prestio-font-ui);
  font-size: 0.75rem;
  color: var(--prestio-navy);
  display: flex; flex-direction: column; gap: 0.25rem; align-items: center;
}

/* ── Sections génériques (header) --------------------------------------- */
.vip-homepage .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.vip-homepage .section-badge {
  display: inline-block;
  background: var(--prestio-pearl);
  color: var(--prestio-aqua);
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.vip-homepage .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 0.8rem;
}

.vip-homepage .section-subtitle {
  color: var(--prestio-slate);
  font-size: 1.05rem;
  margin: 0;
}

/* ── Benefits ----------------------------------------------------------- */
.vip-homepage .benefits-section { padding: 5rem 0; background: #fff; }

.vip-homepage .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.vip-homepage .benefit-card {
  background: var(--prestio-ivory);
  border: 1px solid var(--prestio-pearl);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vip-homepage .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(29, 43, 87, 0.10);
  border-color: rgba(74, 127, 165, 0.35);
}

.vip-homepage .benefit-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--prestio-ivory);
  margin-bottom: 1.2rem;
  background: var(--prestio-navy);
}

/* Variantes de gradients — toutes ramenées à la palette Prestio */
.vip-homepage .gradient-purple { background: linear-gradient(135deg, var(--prestio-navy), var(--prestio-aqua)); }
.vip-homepage .gradient-blue   { background: linear-gradient(135deg, var(--prestio-aqua), var(--prestio-navy-light)); }
.vip-homepage .gradient-pink   { background: linear-gradient(135deg, var(--prestio-navy-light), var(--prestio-slate)); }
.vip-homepage .gradient-orange { background: linear-gradient(135deg, var(--prestio-aqua-dark), var(--prestio-navy)); }
.vip-homepage .gradient-green  { background: linear-gradient(135deg, var(--prestio-aqua), var(--prestio-aqua-dark)); }
.vip-homepage .gradient-red    { background: linear-gradient(135deg, var(--prestio-navy-dark), var(--prestio-navy)); }

.vip-homepage .benefit-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.vip-homepage .benefit-card p {
  margin: 0;
  color: var(--prestio-slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Pricing ------------------------------------------------------------ */
.vip-homepage .pricing-section {
  padding: 5rem 0;
  background: var(--prestio-ivory);
}

/* Le HTML insère plusieurs `.pricing-grid` dans des <p> — on neutralise */
.vip-homepage .pricing-section p { margin: 0 0 1.5rem; }

.vip-homepage .pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.vip-homepage .pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--prestio-pearl);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vip-homepage .pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(29, 43, 87, 0.10);
  border-color: rgba(29, 43, 87, 0.18);
}

.vip-homepage .pricing-card.featured {
  border: 2px solid var(--prestio-navy);
  box-shadow: 0 24px 50px rgba(29, 43, 87, 0.18);
  transform: translateY(-4px);
}

.vip-homepage .popular-tag {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.vip-homepage .tier-badge {
  display: inline-block;
  font-family: var(--prestio-font-ui);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.10em;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

/* Aucune teinte or — Silver = slate, Gold = aqua, Platinum = navy */
.vip-homepage .tier-badge.tier-silver {
  background: var(--prestio-pearl);
  color: var(--prestio-slate);
  border: 1px solid rgba(125, 136, 158, 0.30);
}
.vip-homepage .tier-badge.tier-gold {
  background: rgba(74, 127, 165, 0.12);
  color: var(--prestio-aqua-dark);
  border: 1px solid rgba(74, 127, 165, 0.30);
}
.vip-homepage .tier-badge.tier-platinum {
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  border: 1px solid var(--prestio-navy-dark);
}

.vip-homepage .pricing-header { margin-bottom: 1.4rem; }

.vip-homepage .price-amount {
  display: flex; align-items: flex-start;
  font-family: var(--prestio-font-heading);
  color: var(--prestio-navy);
  line-height: 1;
}

.vip-homepage .price-amount .currency {
  font-size: 1.4rem; font-weight: 600;
  margin-top: 0.4rem; margin-right: 0.15rem;
}

.vip-homepage .price-amount .amount {
  font-size: 3.4rem; font-weight: 700;
}

.vip-homepage .price-amount .decimal {
  font-size: 1.5rem; font-weight: 600;
  margin-top: 0.4rem;
}

.vip-homepage .price-period {
  font-family: var(--prestio-font-ui);
  font-size: 0.9rem;
  color: var(--prestio-slate);
  margin-top: 0.3rem;
}

.vip-homepage .save-badge {
  display: inline-block;
  background: rgba(74, 127, 165, 0.14);
  color: var(--prestio-aqua-dark);
  font-family: var(--prestio-font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.6rem;
}

.vip-homepage .features-list {
  list-style: none;
  padding: 0; margin: 0 0 1.6rem;
  flex-grow: 1;
}

.vip-homepage .features-list li {
  font-family: var(--prestio-font-body);
  font-weight: 300;
  color: var(--prestio-navy);
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--prestio-pearl);
  font-size: 0.95rem;
}

.vip-homepage .features-list li:last-child { border-bottom: 0; }

.vip-homepage .btn-pricing {
  display: block;
  text-align: center;
  text-decoration: none;
  background: transparent;
  color: var(--prestio-navy);
  border: 2px solid var(--prestio-navy);
  border-radius: 12px;
  padding: 0.85rem 1.2rem;
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.vip-homepage .btn-pricing:hover {
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  transform: translateY(-1px);
}

.vip-homepage .btn-pricing.btn-pricing-featured {
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
}
.vip-homepage .btn-pricing.btn-pricing-featured:hover {
  background: var(--prestio-navy-dark);
  border-color: var(--prestio-navy-dark);
}

.vip-homepage .pricing-note {
  text-align: center;
  font-family: var(--prestio-font-ui);
  font-size: 0.9rem;
  color: var(--prestio-slate);
  margin-top: 1.2rem;
}

/* Sous-titres "Famille / Association / Entreprise" insérés via `.steps-container` */
.vip-homepage .pricing-section .steps-container {
  display: flex; justify-content: center; align-items: center;
  gap: 0; padding: 0; margin: 1.5rem 0;
}
.vip-homepage .pricing-section .steps-container span {
  display: inline-block;
  font-family: var(--prestio-font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--prestio-navy);
  background: var(--prestio-pearl);
  padding: 0.5rem 1.6rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ── How It Works ------------------------------------------------------- */
.vip-homepage .how-it-works-section {
  padding: 5rem 0;
  background: #fff;
}

.vip-homepage .how-it-works-section .steps-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 1rem;
}

.vip-homepage .step-item {
  position: relative;
  background: var(--prestio-ivory);
  border: 1px solid var(--prestio-pearl);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vip-homepage .step-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(29, 43, 87, 0.10);
}

.vip-homepage .step-number {
  font-family: var(--prestio-font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--prestio-pearl);
  -webkit-text-stroke: 1px var(--prestio-aqua);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.vip-homepage .step-icon {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.vip-homepage .step-content h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}
.vip-homepage .step-content p {
  margin: 0;
  color: var(--prestio-slate);
  font-size: 0.95rem;
  line-height: 1.55;
}

.vip-homepage .step-connector {
  align-self: center;
  height: 2px; min-width: 30px;
  background: linear-gradient(90deg, var(--prestio-aqua), var(--prestio-pearl));
  border-radius: 2px;
}

/* ── Final CTA --------------------------------------------------------- */
.vip-homepage .final-cta-section {
  padding: 5rem 0;
  background: var(--prestio-ivory);
}

.vip-homepage .cta-box-premium {
  background: linear-gradient(135deg, var(--prestio-navy) 0%, var(--prestio-navy-light) 60%, var(--prestio-aqua-dark) 100%);
  border-radius: 28px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: center;
  color: var(--prestio-ivory);
  box-shadow: 0 30px 60px rgba(29, 43, 87, 0.30);
  position: relative; overflow: hidden;
}

.vip-homepage .cta-box-premium h2 {
  color: var(--prestio-ivory);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.8rem;
}

.vip-homepage .cta-box-premium p {
  color: var(--prestio-slate-light);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.vip-homepage .cta-buttons { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-start; }

.vip-homepage .btn-cta-large {
  display: inline-block;
  background: var(--prestio-ivory);
  color: var(--prestio-navy);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-family: var(--prestio-font-ui);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.vip-homepage .btn-cta-large:hover {
  background: #fff;
  transform: translateY(-2px);
  color: var(--prestio-navy-dark);
}

.vip-homepage .cta-note {
  font-family: var(--prestio-font-ui);
  font-size: 0.85rem;
  color: var(--prestio-slate-light);
  margin: 0;
}

.vip-homepage .cta-visual { display: flex; justify-content: center; }

.vip-homepage .floating-card {
  position: relative;
  width: 280px; height: 170px;
  background: linear-gradient(135deg, var(--prestio-aqua) 0%, var(--prestio-navy-light) 100%);
  border-radius: 18px;
  padding: 1.5rem;
  color: var(--prestio-ivory);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: prestio-float 4s ease-in-out infinite;
}

.vip-homepage .card-shine {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.18) 50%, transparent 70%);
  animation: prestio-shine 3.5s ease-in-out infinite;
}

.vip-homepage .card-content { position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
}

.vip-homepage .card-logo {
  font-family: var(--prestio-font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.vip-homepage .card-name {
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.vip-homepage .card-number {
  font-family: 'Kumbh Sans', monospace;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

@keyframes prestio-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

@keyframes prestio-shine {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* ── Merchant Partnership ---------------------------------------------- */
.vip-homepage .merchant-partnership-section {
  padding: 4rem 0 5rem;
  background: #fff;
}

.vip-homepage .partnership-box {
  background: var(--prestio-pearl);
  border: 1px solid rgba(29, 43, 87, 0.08);
  border-radius: 22px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 2rem;
  align-items: center;
}

.vip-homepage .partnership-content h3 {
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
}

.vip-homepage .partnership-content p {
  color: var(--prestio-slate);
  margin-bottom: 1.2rem;
}

.vip-homepage .btn-partnership {
  display: inline-block;
  background: var(--prestio-navy);
  color: var(--prestio-ivory);
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-family: var(--prestio-font-ui);
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.vip-homepage .btn-partnership:hover {
  background: var(--prestio-navy-dark);
  transform: translateY(-2px);
  color: var(--prestio-ivory);
}

.vip-homepage .partnership-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}

.vip-homepage .partnership-stat {
  background: #fff;
  border: 1px solid var(--prestio-pearl);
  border-radius: 14px;
  padding: 1.2rem 0.8rem;
  text-align: center;
}

.vip-homepage .partnership-stat .stat-value {
  font-family: var(--prestio-font-heading);
  color: var(--prestio-navy);
  font-size: 1.5rem;
  font-weight: 700;
}

.vip-homepage .partnership-stat .stat-label {
  color: var(--prestio-slate);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

/* ── Responsive --------------------------------------------------------- */
@media (max-width: 992px) {
  .vip-homepage .hero-grid { grid-template-columns: 1fr; }
  .vip-homepage .hero-visual { order: -1; margin-bottom: 1rem; }
  .vip-homepage .cta-box-premium { grid-template-columns: 1fr; padding: 2.5rem; text-align: center; }
  .vip-homepage .cta-buttons { align-items: center; }
  .vip-homepage .partnership-box { grid-template-columns: 1fr; text-align: center; }
  .vip-homepage .how-it-works-section .steps-container {
    grid-template-columns: 1fr;
  }
  .vip-homepage .step-connector { display: none; }
}

@media (max-width: 768px) {
  .vip-homepage .nav-menu { display: none; }
  .vip-homepage .mobile-menu-toggle { display: flex; }
  .vip-homepage .hero-section { padding: 3rem 0 2.5rem; }
  .vip-homepage .hero-stats { grid-template-columns: 1fr; }
  .vip-homepage .price-amount .amount { font-size: 2.6rem; }
  .vip-homepage .cta-box-premium { padding: 2rem 1.5rem; }
  .vip-homepage .partnership-benefits { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .vip-homepage .container { padding: 0 1rem; }
  .vip-homepage .btn-primary-large,
  .vip-homepage .btn-secondary-large { width: 100%; justify-content: center; }
  .vip-homepage .trust-badges { font-size: 0.78rem; gap: 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════════════════
   FIN BLOC PRESTIO HOME — v1.3.0
   ═══════════════════════════════════════════════════════════════════════ */
