/* ═══════════════════════════════════════
   BE FAMOUS ITALIA — Membership page styles
   ═══════════════════════════════════════ */

.nav-active { color: var(--gold) !important; }

/* ── TOGGLE MENSILE/ANNUALE ── */
.mem-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 3.5rem;
}
.mem-toggle {
  position: relative;
  width: 64px;
  height: 32px;
  background: rgba(189,164,117,0.15);
  border: 1px solid rgba(189,164,117,0.4);
  border-radius: 20px;
  cursor: pointer;
  flex-shrink: 0;
}
.mem-toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: var(--gold);
  border-radius: 50%;
  transition: transform .25s ease;
}
.mem-toggle.active .mem-toggle-knob { transform: translateX(32px); }
.mem-toggle-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color .2s;
}
.mem-toggle-label.on { color: var(--white); font-weight: 500; }
.mem-save-badge {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(189,164,117,0.15);
  color: var(--gold);
  border: 1px solid rgba(189,164,117,0.4);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

/* ── PRICING CARD ── */
.mem-pricing-wrap {
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}
.mem-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: var(--black-soft);
  border: 1px solid rgba(189,164,117,0.3);
  padding: 3rem 2.8rem;
  text-align: center;
}
.mem-card-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.mem-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
}
.mem-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}
.mem-price-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--white);
}
.mem-price-period {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.mem-price-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2.2rem;
  min-height: 1.2rem;
}
.mem-price-note strong { color: var(--gold); }

.mem-features {
  list-style: none;
  text-align: left;
  margin: 0 0 2.4rem;
}
.mem-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.mem-features li:last-child { border-bottom: none; }
.mem-features .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(189,164,117,0.15);
  color: var(--gold);
  font-size: 0.65rem;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}

.mem-cta-btn {
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 1.1rem 1.5rem;
  transition: all 0.25s;
  text-decoration: none;
}
.mem-cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.mem-cta-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  margin-top: 1rem;
}

/* ── COMPARAZIONE FREE ── */
.mem-compare {
  max-width: 760px;
  margin: 5rem auto 0;
  padding: 0 2rem;
  text-align: center;
}
.mem-compare p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
}
.mem-compare a { color: var(--gold); text-decoration: underline; }

/* ── FAQ ── */
.mem-faq {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mem-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1.6rem 0;
}
.mem-faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--white);
}
.mem-faq-item p {
  font-size: 0.82rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

@media (max-width: 640px) {
  .mem-card { padding: 2.4rem 1.6rem; }
}
