.elementor-1346 .elementor-element.elementor-element-51af86c3{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-723049a0 *//* ============================================
   AYAMA CLUB — Membership Required Card
   Brand: Luxury Yoga · Permanent Jewellery
   Palette: Warm cream, antique gold, deep charcoal
   ============================================ */

:root {
  --cream:        #f5f0e8;
  --warm-white:   #fdfaf5;
  --gold:         #b8945a;
  --gold-light:   #d4aa70;
  --gold-dark:    #8c6e3f;
  --charcoal:     #2c2825;
  --text-muted:   #7a6e63;
  --border:       rgba(184, 148, 90, 0.18);
  --shadow:       rgba(44, 40, 37, 0.08);
  --radius:       14px;
  --radius-sm:    9px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(184,148,90,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184,148,90,0.05) 0%, transparent 55%);
  font-family: 'Jost', sans-serif;
  padding: 2rem;
}

/* ── Card ── */
.card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow:
    0 2px 4px var(--shadow),
    0 12px 40px rgba(44,40,37,0.06);
  max-width: 560px;
  width: 100%;
  padding: 3rem 2.5rem 2.5rem;
  text-align: center;
  animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Lock Icon ── */
.lock-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(184,148,90,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.lock-icon svg {
  width: 24px;
  height: 24px;
}

/* ── Typography ── */
.title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto 1.75rem;
  letter-spacing: 0.015em;
}

/* ── Plan List ── */
.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  text-align: left;
}

.plan-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.plan-item:hover {
  border-color: rgba(184,148,90,0.45);
  box-shadow: 0 2px 10px rgba(184,148,90,0.1);
}

.diamond {
  color: var(--gold);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.plan-label {
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
  color: var(--charcoal);
}

.dash {
  color: var(--text-muted);
  margin: 0 0.1rem;
}

.plan-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.92rem;
  font-style: italic;
  transition: color 0.2s;
}

.plan-link:hover {
  color: var(--gold);
  text-decoration: underline;
}

.plan-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 300;
}

/* ── Shop Button ── */
.shop-btn {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 2.4rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  margin-bottom: 1.2rem;
}

.shop-btn:hover {
  background: var(--gold);
  color: var(--warm-white);
}

/* ── Login Footer ── */
.login-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.login-link {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 400;
  border-bottom: 1px solid rgba(140,110,63,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.login-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .card {
    padding: 2.25rem 1.5rem 2rem;
  }
  .title {
    font-size: 1.65rem;
  }
}/* End custom CSS */