/* Severall Friends Tickets - Donation Form Styles */

.sfst-donation-section {
    margin: 30px 0;
    padding: 25px 30px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    max-width: 500px;
}

.sfst-donation-heading {
    font-size: 22px;
    margin: 0 0 10px;
    padding-bottom: 12px;
    border-bottom: 2px solid #333;
}

.sfst-donation-message {
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

/* Amount buttons */
.sfst-amount-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.sfst-amount-btn {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 80px;
    padding: 14px 10px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.sfst-amount-btn:hover {
    border-color: #010961;
    color: #010961;
}

.sfst-amount-btn.sfst-amount-selected {
    background: #010961;
    border-color: #010961;
    color: #fff;
}

.sfst-amount-custom-btn {
    font-size: 14px;
}

/* Custom amount input */
.sfst-custom-amount-wrap {
    margin-bottom: 20px;
}

.sfst-custom-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 6px;
}

.sfst-input-group {
    display: flex;
    align-items: center;
    border: 2px solid #010961;
    border-radius: 6px;
    overflow: hidden;
}

.sfst-currency-symbol {
    padding: 12px 14px;
    background: #f5f5f5;
    color: #333;
    font-size: 18px;
    font-weight: 600;
    border-right: 1px solid #ddd;
}

.sfst-custom-input {
    flex: 1;
    padding: 12px 14px;
    border: none;
    font-size: 18px;
    outline: none;
    width: 100%;
}

.sfst-custom-input:focus {
    outline: none;
}

/* Donate button */
.sfst-donation-checkout {
    margin-top: 5px;
}

.sfst-donate-btn {
    display: block;
    width: 100%;
    padding: 14px 36px;
    background: #010961;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
}

.sfst-donate-btn:hover:not(:disabled) {
    background: #000842;
}

.sfst-donate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.sfst-donate-btn.sfst-loading {
    position: relative;
    color: transparent;
}

.sfst-donate-btn.sfst-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: sfst-spin 0.6s linear infinite;
}

@keyframes sfst-spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.sfst-donation-section .sfst-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-top: 15px;
    font-size: 14px;
}

.sfst-donation-section .sfst-message.sfst-error {
    background: #fef0f0;
    border: 1px solid #d63638;
    color: #d63638;
}

/* Secure note */
.sfst-donation-section .sfst-secure-note {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 15px;
}

.sfst-donation-section .sfst-lock-icon {
    font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
    .sfst-donation-section {
        padding: 15px;
    }

    .sfst-amount-btn {
        flex: 1 1 calc(50% - 10px);
    }
}
