/* --- PAGE SPECIFIC OVERRIDES --- */
.upgrade-wrapper {
  padding: 30px 20px;
}

.nav-back-btn {
  margin: 0 0 20px !important;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--electric-grape);
  margin: 15px 0;
  font-family: Montserrat, sans-serif;
}

.price-tag span {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.upgrade-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.5;
  font-family: Montserrat, sans-serif;
}

.feature-list {
  text-align: left;
  margin: 0 auto 30px;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-item img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h3 {
  margin: 0 0 5px;
  color: var(--deep-midnight);
  font-size: 1.1rem;
  font-family: Montserrat, sans-serif;
}

.feature-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  font-family: Montserrat, sans-serif;
}

.upgrade-action-btn {
  width: 100%;
  max-width: 400px;
  padding: 15px;
  font-size: 1.1rem;
  background-color: var(--golden-hour);
  color: var(--deep-midnight);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-family: Montserrat, sans-serif;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

.upgrade-action-btn:hover {
  background-color: #f1b74d;
  transform: translateY(-2px);
}

.upgrade-action-btn.manage-btn {
  background-color: var(--electric-grape);
  color: white;
}

.upgrade-action-btn.manage-btn:hover {
  background-color: #541568;
}

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */
body.dark-mode .feature-text h3 {
  color: var(--bright-sky);
}

body.dark-mode .upgrade-subtitle,
body.dark-mode .feature-text p,
body.dark-mode .price-tag span {
  color: #ccc;
}

/* =========================================
   EXTRACTED INLINE STYLES
   ========================================= */
.upgrade-header {
  position: relative;
}
