/* Screen Specific Layout Styles for kyadekhen */

/* --- Onboarding & Splash Screens --- */
.splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 48px 24px;
  text-align: center;
  background: radial-gradient(circle at top, #1E0E00 0%, var(--bg) 70%);
}

.splash-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  animation: float 4s ease-in-out infinite;
}

.splash-logo-container svg {
  width: 72px;
  height: 72px;
  fill: var(--gold);
  margin-bottom: 16px;
}

.splash-logo-container h1 {
  font-size: 40px;
  color: var(--gold);
  text-transform: lowercase;
}

.splash-logo-container p {
  color: var(--t2);
  font-size: 15px;
  margin-top: 8px;
}

.splash-footer {
  width: 100%;
}

.splash-footer p {
  color: var(--t3);
  font-size: 12px;
  margin-top: 16px;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Onboarding Step Container */
.onboarding-wizard {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step-indicator {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--line2);
}

.step-dot.active {
  background: var(--acc);
}

/* Slider Controls (Cinematic DNA Step 1) */
.slider-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.slider-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
  color: var(--t2);
}

.slider-input {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--card2);
  outline: none;
  border: 1px solid var(--line);
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--acc);
  cursor: pointer;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 10px rgba(232, 126, 4, 0.4);
}

/* Genre Checkbox Grid */
.genres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 12px 0;
}

.genre-checkbox-label {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
  padding: 8px;
  transition: all 0.2s ease;
}

.genre-checkbox-label span {
  font-size: 24px;
  margin-bottom: 4px;
}

.genre-checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.genre-checkbox-input:checked + .genre-checkbox-label {
  border-color: var(--acc);
  background: var(--amber-bg);
  color: var(--acc);
}

/* --- Sign In Screen --- */
.signin-card {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line2);
  padding: 24px 20px;
}

.signin-button-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.signin-btn {
  height: 52px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line2);
  background: var(--card2);
  color: var(--t1);
  width: 100%;
}

.signin-btn:hover {
  background: rgba(255, 255, 255, 0.04);
}

.signin-btn.google {
  background: #FFFFFF;
  color: #000000;
  border: none;
}

.signin-btn.google:hover {
  background: #F1F1F1;
}

/* --- Discover Feed System --- */
.discover-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.discover-search-btn {
  background: transparent;
  border: none;
  color: var(--t2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.discover-search-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Genre Chips Horizontal Row */
.genre-chips-row {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 12px 16px;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.genre-chips-row::-webkit-scrollbar {
  display: none; /* hide scrollbars on chips row */
}

.genre-chip {
  background: var(--card);
  color: var(--t2);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.genre-chip.active {
  background: var(--acc);
  color: #FFFFFF;
  border-color: var(--acc);
}

/* 2-Column Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 16px 16px 16px;
}

.content-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-card:hover {
  transform: translateY(-2px);
}

.poster-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--card2) 0%, var(--bg) 100%);
}

.poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.content-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-info {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-title {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--t1);
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  color: var(--t2);
}

.card-ratings {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating-imdb {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}

.rating-rt {
  display: flex;
  align-items: center;
  gap: 2px;
}

.rating-rt.green { color: var(--green); }
.rating-rt.amber { color: var(--acc2); }
.rating-rt.red { color: var(--red); }

/* --- Watch Modal bottom sheet content --- */
.watch-modal-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
}

.watch-modal-video {
  width: 100%;
  height: 100%;
  border: none;
}

.watch-modal-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.watch-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.watch-modal-title {
  font-size: 24px;
  line-height: 1.2;
}

.watch-modal-metadata {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--t2);
}

.watch-modal-ratings {
  display: flex;
  gap: 16px;
  margin: 8px 0;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: var(--card2);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.rating-badge.imdb { color: var(--gold); }

.watch-providers-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.watch-provider-btn {
  height: 48px;
  width: 100%;
  border-radius: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #FFFFFF;
  gap: 10px;
}

/* --- OTT Tracker Dashboard Styles --- */
.tracker-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.tracker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.tracker-title {
  font-size: 26px;
  color: var(--gold);
}

.spend-card {
  background: linear-gradient(135deg, var(--card-warm) 0%, var(--card) 100%);
  border: 1px solid rgba(232, 126, 4, 0.2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.spend-label {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--t2);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.spend-val-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spend-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--t1);
  font-family: 'Outfit', sans-serif;
}

.spend-value span {
  font-size: 16px;
  color: var(--t2);
  font-weight: 500;
}

.savings-banner {
  background: rgba(82, 232, 154, 0.1);
  border: 1px solid rgba(82, 232, 154, 0.2);
  color: var(--green);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Optimization Chart section */
.optimization-section {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.optimization-chart-container {
  position: relative;
  width: 90px;
  height: 90px;
  flex-shrink: 0;
}

.optimization-chart-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Outfit', sans-serif;
}

.optimization-percent {
  font-size: 20px;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
}

.optimization-label {
  font-size: 8px;
  color: var(--t3);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.optimization-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.optimization-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
}

.optimization-desc {
  font-size: 11px;
  color: var(--t2);
  line-height: 1.4;
}

/* SVG Donut circles styling */
.donut-circle-bg {
  fill: none;
  stroke: var(--line);
  stroke-width: 8;
}

.donut-circle-val {
  fill: none;
  stroke: var(--teal);
  stroke-width: 8;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 1s ease-in-out;
}

/* Active Subscriptions List */
.subs-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sub-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s ease;
}

.sub-card:hover {
  border-color: var(--line2);
}

.sub-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sub-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
}

.sub-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sub-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 6px;
}

.sub-cycle-badge {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--t2);
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
}

.sub-renewal {
  font-size: 11px;
  color: var(--t2);
  margin-top: 2px;
}

.sub-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--t1);
  font-family: 'Outfit', sans-serif;
  text-align: right;
}

.sub-usage-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}

.sub-usage-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 700;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sub-usage-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

.sub-usage-bar {
  height: 100%;
  border-radius: 3px;
  width: 0%; /* Dynamic */
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.sub-usage-bar.high { background: var(--green); }
.sub-usage-bar.medium { background: var(--teal); }
.sub-usage-bar.low { background: var(--acc2); }
.sub-usage-bar.unused { background: var(--red); }

/* Smart Alerts */
.smart-alerts-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.smart-alert-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  position: relative;
}

.smart-alert-card.price-drop {
  border-left: 3px solid var(--green);
}

.smart-alert-card.warning {
  border-left: 3px solid var(--acc);
}

.smart-alert-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.smart-alert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.smart-alert-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.smart-alert-desc {
  font-size: 11px;
  color: var(--t2);
  line-height: 1.4;
}

.smart-alert-close {
  background: transparent;
  border: none;
  color: var(--t3);
  cursor: pointer;
  padding: 4px;
  font-size: 12px;
  line-height: 1;
  margin-top: -4px;
  margin-right: -4px;
}

.smart-alert-close:hover {
  color: var(--t2);
}

/* In Progress Rail */
.in-progress-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.in-progress-rail {
  display: flex;
  overflow-x: auto;
  gap: 12px;
  padding-bottom: 8px;
  width: 100%;
}

.in-progress-rail::-webkit-scrollbar {
  display: none;
}

.in-progress-card {
  width: 130px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.in-progress-poster-wrapper {
  position: relative;
  width: 130px;
  height: 75px; /* Cinematic landscape ratio */
  border-radius: 8px;
  overflow: hidden;
  background: var(--card2);
  border: 1px solid var(--line);
}

.in-progress-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.in-progress-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.in-progress-play-btn svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
  margin-left: 2px;
}

.in-progress-bar-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.4);
}

.in-progress-bar {
  height: 100%;
  background: var(--acc);
}

.in-progress-title {
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--t1);
}

.in-progress-episode {
  font-size: 10px;
  color: var(--t2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Locked / Blurred Teaser State */
.tracker-locked-container {
  position: relative;
  width: 100%;
}

.tracker-locked-blur {
  filter: blur(8px) brightness(0.4);
  pointer-events: none;
  user-select: none;
}

.tracker-locked-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 16px;
}

.locked-card {
  background: rgba(22, 22, 31, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 126, 4, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  border-radius: 20px;
  padding: 28px 24px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: scaleIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.locked-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(232, 126, 4, 0.1);
  border: 2px solid var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--acc);
  font-size: 24px;
  margin-bottom: 4px;
}

.locked-title {
  font-family: 'Outfit', 'Clash Display', sans-serif;
  font-size: 24px;
  color: var(--gold);
}

.locked-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}

.locked-teaser {
  background: rgba(82, 232, 154, 0.08);
  border: 1px dashed rgba(82, 232, 154, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
}

/* --- Subscription Setup Wizard Styles --- */
.setup-wizard-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  flex: 1;
}

.setup-step {
  display: none;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  animation: fadeInStep 0.3s ease-out;
}

.setup-step.active {
  display: flex;
}

@keyframes fadeInStep {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.setup-progress-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setup-progress-indicator {
  display: flex;
  gap: 6px;
}

.setup-progress-dot {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
}

.setup-progress-dot.active {
  background: var(--acc);
}

/* Step 1: Provider Selection Grid */
.setup-provider-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.setup-provider-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.setup-provider-card:hover {
  border-color: var(--line2);
  transform: translateY(-1px);
}

.setup-provider-card.selected {
  border-color: var(--acc);
  background: var(--amber-bg);
}

.setup-provider-badge-initial {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #FFFFFF;
}

.setup-provider-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
}

.setup-provider-price {
  font-size: 11px;
  color: var(--t2);
}

.setup-provider-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.setup-provider-card.selected .setup-provider-check {
  border-color: var(--acc);
  background: var(--acc);
}

.setup-provider-check svg {
  width: 10px;
  height: 10px;
  fill: #FFFFFF;
  display: none;
}

.setup-provider-card.selected .setup-provider-check svg {
  display: block;
}

/* Step 2: Tiers Selection Accordion */
.setup-tiers-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.setup-tier-platform-group {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setup-tier-platform-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--t1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.setup-tier-radio-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.setup-tier-option-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.15s ease;
}

.setup-tier-option-label:hover {
  border-color: var(--line2);
}

.setup-tier-option-input {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--t3);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.setup-tier-option-input:checked {
  border-color: var(--acc);
}

.setup-tier-option-input:checked::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acc);
}

.setup-tier-option-label.checked {
  border-color: var(--acc);
  background: var(--amber-bg);
}

.setup-tier-option-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setup-tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--t1);
}

.setup-tier-desc {
  font-size: 10px;
  color: var(--t3);
  margin-top: 1px;
}

.setup-tier-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--t1);
  font-family: 'Outfit', sans-serif;
}

/* Step 3: Billing Cycle Select */
.setup-billing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.setup-billing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.setup-billing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.setup-billing-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}

.setup-billing-cycle-labels {
  display: flex;
  flex-direction: column;
}

.setup-billing-cycle-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--t1);
}

.setup-billing-savings {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  margin-top: 1px;
}

/* Switch styling */
.setup-switch {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 32px;
}

.setup-switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.setup-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--line);
  transition: .2s;
  border-radius: 16px;
  border: 1px solid var(--line2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--t2);
}

.setup-switch-slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 46px;
  left: 3px;
  bottom: 3px;
  background-color: var(--acc);
  transition: .2s;
  border-radius: 12px;
  z-index: 1;
}

.setup-switch-input:checked + .setup-switch-slider::before {
  transform: translateX(46px);
}

.setup-switch-text-m {
  position: relative;
  z-index: 2;
  margin-left: 2px;
}

.setup-switch-text-a {
  position: relative;
  z-index: 2;
  margin-right: 2px;
}

.setup-switch-input:not(:checked) + .setup-switch-slider .setup-switch-text-m {
  color: #FFFFFF;
}

.setup-switch-input:checked + .setup-switch-slider .setup-switch-text-a {
  color: #FFFFFF;
}

/* Wizard Fixed Footer */
.setup-footer-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  background: var(--bg2);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
}

.setup-footer-summary {
  display: flex;
  flex-direction: column;
}

.setup-footer-count {
  font-size: 11px;
  color: var(--t2);
  font-weight: 600;
}

.setup-footer-total {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Outfit', sans-serif;
  margin-top: 2px;
}

.setup-footer-total span {
  font-size: 11px;
  color: var(--t2);
  font-weight: 500;
}

.setup-footer-btn {
  width: 160px;
  height: 48px;
  font-size: 14px;
}

