.profile-banner-section {
  margin-top: 2rem;
}

.profile-banner-section .profile-banner-actions {
  text-align: center;
  margin-top: 2rem;
}

.profile-banner-section .profile-banner-actions .auth-btn {
  min-width: 240px;
}

.profile-banner-section .profile-banner-actions .auth-btn[data-banner-upgrade] {
  position: relative;
}

.profile-banner-section .profile-banner-actions .auth-btn.banner-active {
  background: #1f2937;
  border-color: #111827;
  color: #f9fafb;
}

.profile-banner-section .profile-banner-actions .auth-btn.banner-active .profile-banner-price-tag {
  display: none;
}

.profile-banner-section .profile-banner-actions .profile-banner-price-tag {
  font-size: 0.9rem;
  opacity: 0.8;
}

.profile-banner-section .profile-banner-actions .auth-btn[data-banner-upgrade] i {
  font-size: 1.1rem;
}

.profile-banner-section .banner-preview {
  width: 100%;
  height: 200px;
  background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.profile-banner-section .banner-preview.custom {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.profile-banner-section .banner-preview [data-banner-default],
.profile-banner-section .banner-preview [data-banner-custom] {
  text-align: center;
}


.profile-banner-section .banner-preview i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.profile-banner-section .banner-upgrade {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  transition: background 0.3s ease;
}

.profile-banner-section .banner-preview.custom .banner-upgrade {
  background: rgba(17, 24, 39, 0.7);
}

.profile-banner-section .profile-banner-benefits {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.profile-banner-section .profile-banner-benefits h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
}

.profile-banner-section .profile-banner-benefits ul {
  margin: 1rem 0 0 0;
  padding-right: 1.25rem;
  color: #475467;
  line-height: 1.8;
}

.profile-banner-section .profile-banner-benefits li {
  margin-bottom: 0.5rem;
}

.profile-banner-modal .profile-banner-price {
  text-align: center;
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 1rem;
  font-weight: 600;
}

.profile-banner-modal .profile-banner-price span {
  display: block;
  font-size: 0.95rem;
  color: #667085;
  margin-top: 0.5rem;
}

.profile-banner-modal .theme-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 1.5rem 0;
}

.profile-banner-modal .theme-option {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.85rem;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.profile-banner-modal .theme-option i {
  font-size: 1.1rem;
}

.profile-banner-modal .theme-option:hover {
  border-color: #e74c3c;
  color: #e74c3c;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.15);
}

.profile-banner-modal .theme-option.selected {
  border-color: #27ae60;
  background: rgba(39, 174, 96, 0.08);
  color: #1f7a39;
}

.profile-banner-modal .profile-banner-payment-info {
  background: #e8f5e8;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #1f7a39;
  display: none;
}

.profile-banner-modal .profile-banner-payment-info.active {
  display: block;
}

.profile-banner-modal .profile-banner-payment-info.success {
  background: #e8f5e8;
  color: #1f7a39;
}

.profile-banner-modal .profile-banner-payment-info.warning {
  background: #fef3c7;
  color: #92400e;
}

.profile-banner-modal .profile-banner-payment-info.processing {
  background: #eff6ff;
  color: #1d4ed8;
}

.profile-banner-modal .profile-banner-payment-info.error {
  background: #fee2e2;
  color: #b91c1c;
}

.profile-banner-modal .modal-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 768px) {
  .profile-banner-modal .theme-options {
    grid-template-columns: 1fr;
  }

  .profile-banner-section .profile-banner-actions .auth-btn {
    width: 100%;
  }
}

body.profile-banner-modal-open {
  overflow: hidden;
}
