/* ==========================================
   STRIPE PACKAGES - BASE STYLES
   Estilos base para el sistema de paquetes Stripe
   ========================================== */

/* Info Banner */
.stripe-info-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.stripe-info-banner i {
    font-size: 1.3rem;
    color: #6366f1;
}

/* Packages Section */
.packages-section {
    margin-top: 1.5rem;
}

.packages-title {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Packages Grid */
.stripe-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Package Cards */
.stripe-package-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stripe-package-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.06) 100%);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.stripe-package-card.selected {
    border-color: #ffd700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.stripe-package-card.popular {
    border-color: rgba(255, 215, 0, 0.6);
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
    color: #333;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Package Elements - DESKTOP BASE */
.package-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.package-name {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* USD amount - desktop base 1.5rem, mobile override a 1.75rem en media query */
.package-usd-amount {
    color: #ffd700;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0.25rem 0;
}

/* SPS amount - desktop base 0.95rem, mobile override a 1rem en media query */
.package-sps-amount {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.package-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* Selected Package Info - DESKTOP BASE (horizontal) */
.stripe-package-selected-info {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    /* Mobile override a flex-direction: column en media query <640px */
}

.selected-package-details {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-icon {
    font-size: 2rem;
}

.selected-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.selected-name {
    color: #ffd700;
    font-weight: 600;
    font-size: 1rem;
}

.selected-amounts {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Change Package Button */
.change-package-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.85rem;
}

.change-package-btn:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
}
