/* ── ElevateLens Pricing Cards — Stylesheet ─────────────────── */

.elpc-wrapper {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ── Toggle ─────────────────────────────────────────────────── */
/* ── Toggle wrapper — forces full width centering inside Elementor ── */
.elpc-toggle-outer {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 40px;
}

.elpc-toggle-wrap {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px;
}

.elpc-toggle-btn {
  padding: 10px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #8888AA;
  background: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  line-height: 1;
}

.elpc-toggle-btn.active {
  color: #ffffff;
}

/* ── Grid ───────────────────────────────────────────────────── */
.elpc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  overflow: hidden;
}

/* ── Card ───────────────────────────────────────────────────── */
.elpc-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: filter 0.25s ease;
  overflow: hidden;
}

.elpc-card:hover {
  filter: brightness(1.05);
}

.elpc-featured {
  position: relative;
}

/* ── Cover image ────────────────────────────────────────────── */
.elpc-card-image {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.elpc-card:hover .elpc-card-image {
  transform: scale(1.03);
}

/* ── Card body ──────────────────────────────────────────────── */
.elpc-card-body {
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ── Ribbon ─────────────────────────────────────────────────── */
.elpc-ribbon {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
  width: fit-content;
}

/* ── Icon & Identity ────────────────────────────────────────── */
.elpc-icon {
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1;
}

.elpc-name {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.elpc-tagline {
  font-size: 11px;
  color: #8888AA;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 28px;
  font-weight: 500;
}

/* ── Price ──────────────────────────────────────────────────── */
.elpc-price-small,
.elpc-price-large {
  margin-bottom: 24px;
}

.elpc-price-from {
  font-size: 11px;
  color: #8888AA;
  margin-bottom: 2px;
  font-weight: 400;
}

.elpc-price-amount {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.elpc-price-amount sup {
  font-size: 22px;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0;
}

.elpc-price-note {
  font-size: 11px;
  color: #8888AA;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── Divider ────────────────────────────────────────────────── */
.elpc-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 0 0 20px;
}

/* ── Features ───────────────────────────────────────────────── */
.elpc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.elpc-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #8888AA;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.5;
}

.elpc-features li:last-child {
  border-bottom: none;
}

.elpc-feat-chk {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 9px;
  font-weight: 700;
}

/* ── Time badge ─────────────────────────────────────────────── */
.elpc-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8888AA;
  padding: 9px 12px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.25);
  margin-bottom: 20px;
}

.elpc-time strong {
  color: #E8E8F0;
  font-weight: 600;
}

/* ── Button ─────────────────────────────────────────────────── */
.elpc-btn {
  display: block;
  text-align: center;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  transition: all 0.2s ease;
  margin-top: auto;
  cursor: pointer;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .elpc-grid {
    grid-template-columns: 1fr;
  }
  .elpc-card-image {
    height: 220px !important;
  }
}

@media (max-width: 480px) {
  .elpc-toggle-btn {
    padding: 9px 16px;
    font-size: 12px;
  }
  .elpc-card-body {
    padding: 28px 24px 24px;
  }
  .elpc-price-amount {
    font-size: 42px;
  }
}
