/* ============================================
   PRICING BUILDER
   ============================================ */

.pb-section {
  background: #0d0d0d;
  padding: 80px 40px;
  font-family: "Montserrat", sans-serif;
}

.pb-container {
  max-width: 1500px;
  margin: 0 auto;
}

/* HEADER */
.pb-header {
  text-align: center;
  margin-bottom: 3rem;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.pb-eyebrow {
  color: #1e90ff;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pb-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 8px 0 !important;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}

.pb-subtitle {
  color: #888888;
  font-size: 1.25rem;
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}

/* LAYOUT */
.pb-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2rem;
  align-items: stretch;
}

/* GOAL CARDS */
.pb-goals__grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.pb-goal-card {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
  user-select: none;
  position: relative;
}

.pb-goal-card:hover {
  border-color: rgba(30, 144, 255, 0.4);
}

.pb-goal-card__top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pb-goals__label {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 8px;
}

.pb-goals__helper {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 16px !important;
  line-height: 1.5;
}

.pb-goal-card__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 300px;
}

.pb-goals {
  margin-bottom: 0;
  padding-bottom: 24px;
}

.pb-slider:first-of-type {
  padding-top: 24px;
}

.pb-goal-card__desc {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.4;
  font-weight: 400;
}

.pb-goal-card--selected {
  border-color: #1e90ff;
  background: #0d1a2a;
}

.pb-goal-card__icon {
  font-size: 1.25rem;
}

.pb-goal-card__label {
  font-size: 1.25rem;
  font-weight: 700;
  color: #cccccc;
  line-height: 1.3;
}

.pb-goal-card--selected .pb-goal-card__label {
  color: #ffffff;
}

.pb-goal-card__check {
  display: none;
}

/* LEFT PANEL */
.pb-panel {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
}

/* RIGHT CARD */
.pb-card {
  align-self: flex-start;
  position: sticky;
  top: 24px;
  background: linear-gradient(135deg, #111111 0%, #0d1a2a 100%);
  border: 1px solid rgba(30, 144, 255, 0.4);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(30, 144, 255, 0.15);
}

.pb-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}

.pb-card__star {
  color: #1e90ff;
  font-size: 1.25rem;
}

.pb-card__title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}

.pb-plan-name {
  color: #1e90ff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.pb-plan-empty {
  color: #555555;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
}

.pb-card__footer {
  text-align: center;
  margin-top: 10px;
  color: #555555;
  font-size: 1.25rem;
}

/* SLIDER */
.pb-slider {
  margin-bottom: 2.5rem;
}

.pb-slider__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.pb-slider__icon {
  display: flex;
  align-items: center;
}

.pb-slider__label {
  font-weight: 700;
  font-size: 1.5rem;
  color: #ffffff;
  padding-bottom: 8px;
}

.pb-slider__track-wrap {
  position: relative;
  margin-bottom: 0.75rem;
}

.pb-slider__track {
  height: 5px;
  background: #2a2a2a;
  border-radius: 3px;
  position: relative;
}

.pb-slider__fill {
  position: absolute;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, #1e90ff, #60b4ff);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.pb-slider__dots {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: -10px;
}

.pb-slider__dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #444444;
  background: #1a1a1a;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  border-radius: 50% !important;
  padding: 0 !important;
}

.pb-slider__dot--active {
  border-color: #1e90ff;
  background: #1e90ff;
  transform: scale(1.35);
}

.pb-slider__dot--passed {
  border-color: #1e90ff;
  background: #1e90ff;
}

.pb-slider__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.pb-slider__step {
  text-align: center;
  cursor: pointer;
  flex: 1;
  min-width: 0;
}

.pb-slider__step-price {
  font-size: 1.25rem;
  font-weight: 500;
  color: #888888;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.pb-slider__step--active .pb-slider__step-price {
  color: #1e90ff;
  font-weight: 700;
}

.pb-slider__step-name {
  font-size: 0.8rem;
  color: #555555;
  line-height: 1.2;
  margin-top: 2px;
}

.pb-slider__step--active .pb-slider__step-name {
  color: #cccccc;
}

.pb-slider__desc {
  margin-top: 1rem;
  background: #0d0d0d;
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  box-sizing: border-box;
}

.pb-slider__desc-header {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}

.pb-slider__recommended {
  color: #1e90ff;
  font-size: 1.25rem;
  font-weight: 600;
  flex-shrink: 0;
  min-height: 30px;
}

.pb-slider__desc-text {
  color: #cccccc;
  font-size: 1.25rem;
  line-height: 1.5;
  min-height: 30px;
}

.pb-slider__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.pb-slider__tag {
  font-size: var(--global-kb-font-size-md, 1.1rem);
  color: #888888;
  background: #1a1a1a;
  padding: 10px 10px;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
}

/* STEPPER - MOBILE ONLY */
.pb-slider__stepper {
  display: none;
}

/* PRICING BREAKDOWN */
.pb-pricing {
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.pb-pricing__section {
  margin-bottom: 1rem;
}

.pb-price-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}

.pb-price-line__label,
.pb-price-line__value {
  font-size: 1.25rem;
}

.pb-price-line__label--default {
  color: #aaaaaa;
}
.pb-price-line__label--bold {
  color: #ffffff;
  font-weight: 700;
}
.pb-price-line__label--blue {
  color: #1e90ff;
}
.pb-price-line__label--grey {
  color: #666666;
}

.pb-price-line__value--default {
  color: #ffffff;
}
.pb-price-line__value--bold {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}
.pb-price-line__value--blue {
  color: #1e90ff;
}
.pb-price-line__value--grey {
  color: #666666;
}

.pb-pricing__total {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2a2a2a;
  padding-top: 8px;
  margin-top: 6px;
}

.pb-pricing__total-label {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.pb-pricing__total-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e90ff;
}

.pb-pricing__monthly {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #2a2a2a;
  padding-top: 10px;
  margin-top: 8px;
}

.pb-pricing__monthly-label,
.pb-pricing__monthly-value {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* CHECKLIST */
.pb-checklist {
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  margin-bottom: 1.25rem;
}

.pb-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.pb-check__icon-wrap {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pb-check__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(30, 144, 255, 0.13);
  border: 1px solid #1e90ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #1e90ff;
  font-size: 11px;
}

.pb-check__text {
  color: #cccccc;
  font-size: 16px;
}

/* DISCLAIMER */
.pb-disclaimer {
  background: rgba(30, 144, 255, 0.07);
  border: 1px solid rgba(30, 144, 255, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 1.25rem;
  font-size: 14px;
  color: #888888;
  line-height: 1.5;
}

/* BUTTON */
.pb-btn {
  background: #1e90ff;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 16px 28px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  transition:
    background 0.2s ease,
    transform 0.1s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.pb-btn:hover {
  background: #1670cc;
  box-shadow: 0 6px 28px rgba(30, 144, 255, 0.45);
  transform: translateY(-1px);
}

.pb-btn--full {
  width: 100%;
  text-align: center;
}

.pb-btn--loading {
  background: #1670cc;
  cursor: not-allowed;
}

/* MODAL */
.pb-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.pb-modal {
  background: #111111;
  border: 1px solid rgba(30, 144, 255, 0.27);
  border-radius: 16px;
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(30, 144, 255, 0.2);
}

.pb-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.pb-modal__eyebrow {
  color: #1e90ff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.pb-modal__title {
  color: #ffffff;
  margin: 0 0 12px 0 !important;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
}

.pb-modal__subtitle {
  color: #888888;
  font-size: 0.82rem;
  margin: 6px 0 0;
}

.pb-modal__close {
  background: none;
  border: none;
  color: #555555;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 22.406px;
}

.pb-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1.5rem;
}

.pb-modal__field {
  display: flex;
  flex-direction: column;
}

.pb-modal__input {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Montserrat", sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.pb-modal__input:focus {
  border-color: #1e90ff;
}

.pb-modal__input--error {
  border-color: #ff4444;
}

.pb-modal__error {
  color: #ff4444;
  font-size: 0.72rem;
  margin-top: 4px;
}

.pb-modal__footer {
  text-align: center;
  margin-top: 10px;
  color: #444444;
  font-size: 0.7rem;
}

/* ADD-ONS SECTION */
.pb-addons {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #2a2a2a;
}

.pb-addons__header {
  margin-bottom: 20px;
}

.pb-addons__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.pb-addons__desc {
  font-size: 1.25rem;
  color: #888888;
  line-height: 1.6;
  margin: 0;
}

.pb-addons__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.pb-addons__tab {
  background: transparent;
  border: 1px solid #2a2a2a;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 18px;
  font-weight: 600;
  color: #666666;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}

.pb-addons__tab--active {
  background: #1e90ff;
  border-color: #1e90ff;
  color: #ffffff;
}

.pb-addons__tab:hover:not(.pb-addons__tab--active) {
  border-color: rgba(30, 144, 255, 0.4);
  color: #aaaaaa;
}

.pb-addons__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pb-addon {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.pb-addon:hover {
  border-color: rgba(30, 144, 255, 0.4);
}

.pb-addon--checked {
  border-color: #1e90ff;
  background: #0d1a2a;
}

.pb-addon__checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid #444444;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ffffff;
  transition: all 0.15s;
  background: transparent;
}

.pb-addon--checked .pb-addon__checkbox {
  background: #1e90ff;
  border-color: #1e90ff;
}

.pb-addon__icon {
  font-size: 20px;
  flex-shrink: 0;
}

.pb-addon__body {
  flex: 1;
  min-width: 0;
}

.pb-addon__name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
}

.pb-addon__desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pb-addon__price {
  font-size: 16px;
  font-weight: 700;
  color: #1e90ff;
}

.pb-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.pb-btn--outline {
  background: transparent;
  border: 2px solid #1e90ff;
  color: #1e90ff;
  box-shadow: none;
}

.pb-btn--outline:hover {
  background: #1e90ff;
  color: #ffffff;
}

/* PRICING PAGE HERO */

#post-819
  > div
  > div
  > div.kb-row-layout-wrap.kb-row-layout-id819_a305d5-84.alignnone.wp-block-kadence-rowlayout
  > div {
  max-width: 1200px;
  margin: 0 auto;
}

.pb-hero {
  background: #0d0d0d;
  padding: 72px 40px 48px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

.pb-hero__eyebrow {
  display: inline-block;
  color: #1e90ff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 0 0 0 0;
}

.pb-hero__headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 16px 0;
  line-height: 1.15;
  font-family: "Montserrat", sans-serif;
  margin-top: 0px !important;
}

.pb-hero__subtext {
  font-size: 20px;
  color: #888888;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  margin: 0 0 12px 0 !important;
}

/* AVATAR GLOW */
#pb-avatar-new,
#pb-avatar-returning {
  position: relative;
  overflow: visible;
}

#pb-avatar-new::before,
#pb-avatar-returning::before {
  content: "";
  position: absolute;
  top: -25%;
  left: 55%;
  transform: translateX(-50%);
  width: 750px;
  height: 850px;
  background:
    radial-gradient(
      ellipse 40% 35% at 50% 45%,
      rgba(150, 210, 255, 1) 0%,
      rgba(80, 170, 255, 0.9) 15%,
      rgba(30, 144, 255, 0.6) 35%,
      rgba(20, 80, 200, 0.25) 60%,
      rgba(10, 40, 160, 0) 80%
    ),
    radial-gradient(
      ellipse 60% 55% at 48% 48%,
      rgba(30, 100, 255, 0.2) 0%,
      rgba(10, 50, 200, 0.1) 50%,
      transparent 75%
    ),
    radial-gradient(
      circle at 35% 40%,
      rgba(100, 180, 255, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 65% 55%,
      rgba(50, 130, 255, 0.12) 0%,
      transparent 35%
    ),
    radial-gradient(
      circle at 45% 65%,
      rgba(80, 160, 255, 0.1) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 60% 35%,
      rgba(120, 190, 255, 0.1) 0%,
      transparent 25%
    );
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(8px);
}

#pb-avatar-new::after,
#pb-avatar-returning::after {
  content: "";
  position: absolute;
  top: -5%;
  left: 60%;
  transform: translateX(-50%);
  width: 750px;
  height: 750px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 2px
  );
  background-size: 20px 20px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    black 10%,
    transparent 60%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black 0%,
    black 10%,
    transparent 60%
  );
}

.pb-avatar__img {
  position: relative;
  z-index: 2;
  width: auto !important;
  height: 500px !important;
  max-width: none !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  display: block !important;
  margin: 0 auto !important;
}

/* MEDIA QUERIES */

@media (max-width: 900px) {
  #pricing-builder-root,
  .pb-container {
    width: 100% !important;
    max-width: 100% !important;
  }

  #pricing-builder-root {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pb-layout {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .pb-layout > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }

  .pb-panel {
    margin-bottom: 2rem !important;
  }

  .pb-card {
    position: static !important;
  }
}

@media (max-width: 767px) {
  #pricing-builder-root {
    margin: 0 auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pb-section,
  .pb-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pb-hero {
    padding: 48px 20px 24px;
  }
  .pb-hero__eyebrow {
    font-size: 15px;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }
  .pb-hero__headline {
    font-size: clamp(26px, 8vw, 34px);
    margin-bottom: 14px;
  }
  .pb-hero__subtext {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.6;
  }

  .pb-title {
    font-size: 1.75rem;
  }
  .pb-panel {
    max-width: 100%;
    padding: 1.5rem;
  }
  .pb-card {
    padding: 16px !important;
  }

  .pb-goals__grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .pb-goal-card {
    min-width: 0;
    padding: 12px !important;
  }
  .pb-goal-card__label,
  .pb-goal-card__desc {
    overflow-wrap: break-word;
  }

  .pb-addons__grid {
    grid-template-columns: 1fr !important;
  }

  .pb-slider__step-price {
    font-size: 0.7rem !important;
    letter-spacing: -0.02em !important;
    white-space: nowrap !important;
  }

  .pb-slider__desc {
    display: block !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    grid-template-columns: 1fr !important;
  }

  .pb-slider__desc-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
    grid-template-columns: none !important;
  }

  .pb-slider__recommended {
    display: inline-block !important;
    width: auto !important;
    max-width: max-content !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
  }

  .pb-slider__desc-text {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
    line-height: 1.5 !important;
  }

  .pb-slider__tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .pb-slider__tag {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .pb-slider__step {
    width: 14px !important;
    height: 14px !important;
  }

  .pb-slider__step--active,
  .pb-slider__step--filled {
    width: 16px !important;
    height: 16px !important;
  }

  .pb-slider {
    margin-bottom: 8px !important;
  }

  .pb-slider__labels {
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  .pb-slider__label:last-child .pb-slider__step-price,
  .pb-slider__step-price:last-child {
    transform: translateX(-4px) !important;
  }

  /* hide the dot track + per-step labels */
  .pb-slider__track-wrap,
  .pb-slider__labels {
    display: none !important;
  }

  /* show the stepper */
  .pb-slider__stepper {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    margin: 12px 0 4px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .pb-slider__stepper-btn {
    flex: 0 0 auto !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 10px !important;
    border: 1px solid #2a2a2a !important;
    background: #1a1a1a !important;
    color: #1e90ff !important;
    font-size: 24px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    -webkit-tap-highlight-color: transparent !important;
    transition:
      background 0.15s ease,
      border-color 0.15s ease !important;
  }

  .pb-slider__stepper-btn:active {
    background: #222 !important;
    border-color: #1e90ff !important;
  }

  .pb-slider__stepper-btn:disabled {
    opacity: 0.35 !important;
    cursor: default !important;
  }

  .pb-slider__stepper-value {
    flex: 1 1 auto !important;
    text-align: center !important;
    min-width: 0 !important;
  }

  .pb-slider__stepper-price {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #1e90ff !important;
    white-space: nowrap !important;
  }
}
