/* Subscription Payment Page */
.subscription-payment-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a5f3f 0%, #0f4229 100%);
  padding: 40px 20px;
}

.subscription-card {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.subscription-header {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(135deg, #1a5f3f 0%, #0f4229 100%);
  color: white;
}

.subscription-header .icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.subscription-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.subscription-header .subtitle {
  font-size: 16px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.subscription-benefits {
  padding: 40px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.subscription-benefits h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1f2937;
}

.benefits-grid {
  display: grid;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #f9fafb;
  border-radius: 8px;
}

.benefit-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1f2937;
}

.benefit-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.notification-cities {
  padding: 40px 30px;
  border-bottom: 1px solid #e5e7eb;
}

.notification-cities h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f2937;
}

.notification-cities .hint {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 25px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.city-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.city-checkbox:hover {
  border-color: #1a5f3f;
  background: #f3f4f6;
}

.city-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1a5f3f;
}

.city-checkbox input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: #1a5f3f;
}

.city-checkbox span {
  font-size: 14px;
  color: #374151;
}

.subscription-pricing {
  padding: 40px 30px;
  text-align: center;
  background: #f9fafb;
}

.price-box {
  display: inline-block;
  padding: 30px 60px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price-label {
  font-size: 14px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  color: #1a5f3f;
  line-height: 1;
}

.price-amount .currency {
  font-size: 24px;
  font-weight: 600;
  color: #6b7280;
}

.price-period {
  font-size: 14px;
  color: #6b7280;
  margin-top: 5px;
}

.payment-section {
  padding: 40px 30px;
}

.payment-section h2 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #1f2937;
}

.payment-method {
  padding: 25px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
}

.payment-method.disabled {
  opacity: 0.6;
  pointer-events: none;
}

.payment-method .payment-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.payment-method .payment-info h3 {
  font-size: 18px;
  margin-bottom: 5px;
  color: #1f2937;
}

.payment-method .payment-info p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 15px;
}

.payment-method .coming-soon {
  display: inline-block;
  padding: 4px 12px;
  background: #fef3c7;
  color: #92400e;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}

.bank-details {
  padding: 25px;
  background: #f0fdf4;
  border: 2px solid #1a5f3f;
  border-radius: 12px;
  margin-top: 20px;
}

.bank-details.hidden {
  display: none;
}

.bank-details h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: #0f4229;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #d1fae5;
}

.detail-row:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
}

.detail-row .label {
  font-weight: 600;
  color: #065f46;
}

.detail-row .value {
  color: #1f2937;
  font-family: monospace;
}

.subscription-actions {
  padding: 20px 30px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
}

.btn-link {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}

.btn-link:hover {
  color: #374151;
}

/* Responsive */
@media (max-width: 768px) {
  .subscription-card {
    border-radius: 0;
  }

  .subscription-header h1 {
    font-size: 24px;
  }

  .cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }

  .price-amount {
    font-size: 42px;
  }

  .benefits-grid {
    gap: 15px;
  }

  .benefit-item {
    padding: 15px;
  }
}
