/* Next Level CVs — Frontend Pricing Styles */

/* ── CURRENCY BAR ── */
.nlcvs-currency-bar {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  padding: .55rem 5vw;
  font-size: .74rem;
  background: rgba(48, 96, 216, .12);
  border-bottom: 1px solid rgba(110, 154, 248, .15);
  color: #c0d8fe;
  flex-wrap: wrap;
  position: relative;
  z-index: 999;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}
.nlcvs-currency-bar.visible { display: flex; }
#nlcvs-currency-label { letter-spacing: .04em; }
.nlcvs-currency-btns { display: flex; gap: .35rem; flex-wrap: wrap; }

.nlcvs-cur-btn {
  font-family: inherit;
  font-size: .66rem;
  font-weight: 600;
  padding: .2rem .65rem;
  background: rgba(48, 96, 216, .15);
  border: 1px solid rgba(110, 154, 248, .2);
  color: rgba(255,255,255,.5);
  cursor: pointer;
  transition: .2s;
  letter-spacing: .06em;
}
.nlcvs-cur-btn:hover  { color: #fff; background: rgba(48, 96, 216, .35); }
.nlcvs-cur-btn.active {
  background: rgba(48, 96, 216, .5);
  border-color: #6e9af8;
  color: #c0d8fe;
}

/* ── PRICE DISPLAY ── */
.nlcvs-price-display {
  display: inline-flex;
  align-items: baseline;
  gap: .1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 300;
  line-height: 1;
  color: #c0d8fe;
}
.nlcvs-currency-symbol {
  font-size: 1.1rem;
  vertical-align: super;
  color: rgba(255,255,255,.75);
}
.nlcvs-price-geo-line {
  font-size: .73rem;
  color: rgba(255,255,255,.45);
  margin-top: .2rem;
  display: none;
  letter-spacing: .04em;
}

/* ── SHORTCODE PACKAGE CARD ── */
.nlcvs-shortcode-card {
  background: linear-gradient(160deg, rgba(30,72,160,.25), rgba(15,42,94,.8));
  border: 1px solid rgba(110,154,248,.15);
  padding: 2rem 1.6rem;
  color: #fff;
  font-family: 'Outfit', 'Segoe UI', sans-serif;
}
.nlcvs-pkg-price { margin: .5rem 0 1.2rem; }

/* ── SHORTCODE PRICING SECTION ── */
.nlcvs-pricing-section .nlcvs-tab-nav {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 1px solid rgba(110,154,248,.15);
  margin-bottom: 0;
}
.nlcvs-pricing-section .nlcvs-tab-btn {
  font-family: 'Outfit', 'Segoe UI', sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; padding: .75rem 1.4rem;
  background: transparent; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  color: rgba(255,255,255,.45); cursor: pointer;
  transition: color .2s, border-color .2s;
}
.nlcvs-pricing-section .nlcvs-tab-btn.active { color: #c0d8fe; border-bottom-color: #6e9af8; }
.nlcvs-pricing-section .nlcvs-tab-panel { display: none; }
.nlcvs-pricing-section .nlcvs-tab-panel.active { display: block; }
