/* Pay What You Want - Frontend Styles */

.mc-pwyw-wrapper {
    background: #f8f9fa;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
}

.mc-pwyw-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.mc-pwyw-minimum {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
}

.mc-pwyw-suggested {
    margin: 20px 0;
}

.mc-pwyw-suggested label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #495057;
}

.mc-pwyw-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mc-pwyw-quick-btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.mc-pwyw-quick-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.mc-pwyw-quick-btn.active {
    background: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
}

.mc-pwyw-custom {
    margin-top: 20px;
}

.mc-pwyw-custom label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #495057;
}

#mc-pwyw-input {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
}

.mc-pwyw-wrapper .input-group-text {
    background: white;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 767px) {
    .mc-pwyw-buttons {
        flex-direction: column;
    }
    
    .mc-pwyw-quick-btn {
        width: 100%;
    }
}
