/* --- AREA DONAZIONI DIRETTE --- */

.shop-container {
    margin-top: 140px;
    text-align: center;
}

.shop-subtitle {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
}

.checkout-embed-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, #11141a 100%);
    border: 2px solid rgba(255, 170, 0, 0.15);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.checkout-header {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.secure-badge {
    color: var(--secondary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.checkout-title {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
}

.store-frame-wrapper {
    padding: 40px;
    min-height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.store-placeholder {
    width: 100%;
}

.price-tag {
    font-size: 36px;
    color: var(--primary);
    font-weight: bold;
    margin: 10px 0 20px;
}

.btn-buy {
    background-color: var(--primary);
    color: #121214;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s ease;
    width: 100%;
}

.btn-buy:hover {
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
    transform: scale(1.02);
}

.payment-methods-footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
}

.method-badge {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.method-badge i {
    color: var(--secondary);
}