/* Enhanced Modal Styling */
.buy-pro-modal-content {
  padding: 30px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.buy-pro-modal-content h3 {
  color: #28a745;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.buy-pro-modal-content h3::before {
  content: "✓";
  background: #28a745;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
}

/* Cart Summary Styling */
.cart-summary {
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-summary h3 {
  color: #495057;
  font-size: 1.2rem;
  margin-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 10px;
}

.cart-summary h3::before {
  content: "🛒";
  margin-right: 8px;
}

.cart-item {
  padding: 8px 0;
  border-bottom: 1px solid #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-item:last-of-type {
  border-bottom: none;
  font-weight: 600;
  color: #28a745;
  font-size: 1.1rem;
}

.cart-item strong {
  color: #495057;
}

/* Modal Actions Styling */
.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 25px;
  flex-wrap: wrap;
}

.modal-actions .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  min-width: 140px;
  text-align: center;
}

.modal-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-actions .btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.modal-actions .btn-secondary:hover {
  background-color: #5a6268;
}

.modal-actions .btn-primary {
  background-color: #007bff;
  color: #fff;
}

.modal-actions .btn-primary:hover {
  background-color: #0056b3;
}

.modal-actions .btn-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: #fff;
  font-weight: 600;
}

.modal-actions .btn-success:hover {
  background: linear-gradient(135deg, #218838 0%, #1ea080 100%);
}

/* Responsive Design */
@media (max-width: 576px) {
  .buy-pro-modal-content {
    padding: 20px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions .btn {
    width: 100%;
    min-width: auto;
  }
}

