.payment-methods-bar {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 15px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.payment-section {
    margin-bottom: 15px;
    padding: 15px;
    background: rgba(124, 184, 154, 0.05);
    border-radius: 6px;
}

.payment-section:last-child {
    margin-bottom: 0;
}

.payment-title {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgb(29, 57, 196);
}

.local-payment, .crypto-payment {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.local-payment:before {
    content: '\f09d';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: rgb(29, 57, 196);
}

.crypto-payment:before {
    content: '\f51e';
    font-family: 'Font Awesome 5 Free';
    position: absolute;
    left: 0;
    color: rgb(29, 57, 196);
}

.payment-methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 20px;
    padding: 5px 0;
}

.payment-method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-method-item:hover {
    transform: translateY(-2px);
}

.payment-method-icon {
    height: 35px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .payment-methods-bar {
        margin: 0 15px 20px;
        padding: 12px;
    }

    .payment-section {
        margin-bottom: 12px;
        padding: 12px;
    }

    .payment-title {
        margin-bottom: 10px;
        padding-bottom: 6px;
    }

    .local-payment, .crypto-payment {
        font-size: 14px;
        padding-left: 20px;
    }

    .payment-methods-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .payment-method-icon {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .payment-methods-bar {
        margin: 0 10px 15px;
        padding: 10px;
    }

    .payment-section {
        padding: 10px;
        margin-bottom: 10px;
    }

    .local-payment, .crypto-payment {
        font-size: 13px;
    }

    .payment-methods-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .payment-method-icon {
        height: 25px;
    }
} 