/* Buy page specific styles */
/* Note: Common styles are now in common.css */

/* Package Selection Styles */
.buy-package-selection {
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.package-selection-title {
    color: #f8f9fa;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.package-options {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.package-option {
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option input[type="radio"] {
    display: none;
}

.package-card {
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    max-width: 120px;
    flex: 1;
}

.package-option:hover .package-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(74, 144, 226, 0.5);
    transform: translateY(-2px);
}

.package-option input[type="radio"]:checked + .package-card {
    background: rgba(74, 144, 226, 0.2);
    border-color: #4a90e2;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.package-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.package-count {
    color: #f8f9fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0;
}

.package-description {
    color: rgba(248, 249, 250, 0.7);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Price Display Enhancements */
.buy-price-details .price-per-star {
    color: rgba(248, 249, 250, 0.8);
    font-size: 0.9rem;
    font-style: italic;
}

/* Username input LTR direction */
#username {
    direction: ltr;
    text-align: left;
}

/* Buy page specific responsive adjustments */
@media (max-width: 768px) {
    .buy-hero {
        min-height: 70vh;
    }
    
    .buy-form-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .package-options {
        flex-direction: row;
        gap: 0.25rem;
    }
    
    .package-card {
        padding: 0.5rem;
        min-width: 60px;
        max-width: 80px;
    }
    
    .package-icon {
        font-size: 1.2rem;
        height: 1.2rem;
        margin-bottom: 0.2rem;
    }
    
    .package-count {
        font-size: 0.75rem;
    }
} 