/* ── Get Started Page ── */

.gs-page {
  color: #0d0d0d;
  font-family: inherit;
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: 130px;
}


/* ── Billing Toggle ── */
.bs-track {
  width: 46px;
  height: 25px;
  background: #e4dfd9;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
  flex-shrink: 0;
}
.bs-track.on {
  background: #e8347a;
}
.bs-thumb {
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.2s;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.bs-track.on .bs-thumb {
  left: 24px;
}
.bs-lbl {
  font-size: 13px;
  font-weight: 500;
  color: #777;
}
.bs-lbl.active {
  color: #0d0d0d;
  font-weight: 600;
}

/* ── Plan Cards ── */
.plan-card {
  border: 2px solid #e4dfd9;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.plan-card:hover {
  border-color: rgba(232, 52, 122, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(232, 52, 122, 0.08);
}
.plan-card.sel {
  border-color: #e8347a;
  background: linear-gradient(160deg, #fff, #fef0f6);
  box-shadow: 0 12px 40px rgba(232, 52, 122, 0.14);
}
.plan-card.sel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #e8347a, #f472b6);
}
.plan-check {
  width: 22px;
  height: 22px;
  border: 2px solid #e4dfd9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  font-size: 10px;
  color: transparent;
}
.plan-card.sel .plan-check {
  background: #e8347a;
  border-color: #e8347a;
  color: #fff;
}

/* ── Addon Category List ── */
.acl-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s;
  font-size: 13px;
  font-weight: 500;
  color: #777;
}
.acl-item:hover {
  background: #faf7f4;
  color: #0d0d0d;
}
.acl-item.active {
  background: rgba(232, 52, 122, 0.08);
  color: #e8347a;
  font-weight: 700;
}
.acl-count {
  margin-left: auto;
  font-size: 11px;
  font-weight: 700;
  background: #e8347a;
  color: #fff;
  border-radius: 100px;
  padding: 1px 7px;
  display: none;
}
.acl-count.on {
  display: block;
}

/* ── Service Tiles ── */
.svc {
  background: #fff;
  border: 1.5px solid #e4dfd9;
  border-radius: 10px;
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}
.svc:hover {
  border-color: rgba(232, 52, 122, 0.22);
  box-shadow: 0 3px 14px rgba(232, 52, 122, 0.07);
}
.svc.sel {
  border-color: #e8347a;
  background: rgba(232, 52, 122, 0.08);
}
.svc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #e4dfd9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
  color: transparent;
  transition: all 0.18s;
}
.svc.sel .svc-check {
  background: #e8347a;
  border-color: #e8347a;
  color: #fff;
}

/* ── Selected Chips ── */
.sel-chip {
  background: #0d0d0d;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sel-chip button {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: color 0.15s;
  padding: 0;
}
.sel-chip button:hover {
  color: #fff;
}

/* ── In-Person Box ── */
.inperson-box {
  background: linear-gradient(135deg, #1a1a1a, #2d1020);
  border-radius: 14px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.inperson-box::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(232, 52, 122, 0.18), transparent 70%);
  pointer-events: none;
}
@media (max-width: 640px) {
  .inperson-box {
    grid-template-columns: 1fr;
  }
}

/* ── Sticky Bar ── */
.gs-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d0d0d;
  z-index: 300;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.gs-sticky-bar.on {
  transform: translateY(0);
}
@media (max-width: 600px) {
  .gs-sb-inner {
    grid-template-columns: 1fr !important;
  }
  .gs-sb-right {
    justify-content: stretch;
  }
  .gs-sb-right button {
    width: 100%;
    text-align: center;
  }
}

/* ── Overlay + Drawer ── */
.gs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  backdrop-filter: blur(4px);
  z-index: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gs-overlay.on {
  opacity: 1;
  pointer-events: all;
}
.gs-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100vw;
  background: #fff;
  z-index: 401;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid #e4dfd9;
}
.gs-drawer.on {
  transform: translateX(0);
}

/* ── Drawer Cart Items ── */
.ci {
  border: 1px solid #e4dfd9;
  border-radius: 11px;
  padding: 13px;
  margin-bottom: 8px;
}
.ci-rm {
  background: none;
  border: none;
  cursor: pointer;
  color: #777;
  font-size: 15px;
  line-height: 1;
  transition: color 0.2s;
}
.ci-rm:hover {
  color: #ef4444;
}
.cib {
  flex: 1;
  padding: 7px 5px;
  background: #faf7f4;
  border: 1.5px solid #e4dfd9;
  border-radius: 7px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 11px;
  color: #777;
}
.cib strong {
  display: block;
  font-size: 13px;
  color: #0d0d0d;
  margin: 2px 0;
}
.cib.sel {
  border-color: #e8347a;
  background: rgba(232, 52, 122, 0.08);
  color: #e8347a;
}
.cib.sel strong {
  color: #e8347a;
}
.sv {
  display: inline-block;
  background: linear-gradient(90deg, #f97316, #e8347a);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
}

/* ── Checkout Modal ── */
.gs-mobg {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(8px);
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.gs-mobg.on {
  opacity: 1;
  pointer-events: all;
}
.gs-modal {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  padding: 30px;
  transform: scale(0.96);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.gs-mobg.on .gs-modal {
  transform: scale(1);
}

/* ── Modal Form Section Divider ── */
.gs-st {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #777;
  margin: 16px 0 11px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gs-st::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e4dfd9;
}

/* ── Form Inputs ── */
.gs-fg input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid #e4dfd9;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  background: #fff;
  color: #0d0d0d;
  outline: none;
  transition: border-color 0.2s;
}
.gs-fg input:focus {
  border-color: #e8347a;
}
.gs-fg input::placeholder {
  color: #bbb;
}

/* ── Pink CTA Buttons ── */
.gs-btn-pink {
  background: #e8347a;
  color: #fff;
  border: none;
  border-radius: 9px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.gs-btn-pink:hover {
  background: #d0266e;
  box-shadow: 0 6px 18px rgba(232, 52, 122, 0.3);
}
.gs-btn-pink:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── Close Buttons ── */
.gs-close-btn {
  width: 28px;
  height: 28px;
  background: #faf7f4;
  border: 1px solid #e4dfd9;
  border-radius: 7px;
  cursor: pointer;
  color: #777;
  font-size: 14px;
  display: grid;
  place-items: center;
}
.gs-close-btn:hover {
  border-color: #e8347a;
  color: #e8347a;
}

/* ── Success State ── */
.gs-succ {
  display: none;
  text-align: center;
  padding: 12px 0;
}
