/* Payment Options Styles */

.payment-options {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: stretch;
    justify-content: flex-start;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex: 1;
    min-width: 120px;
    max-width: 150px;
}

.payment-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.payment-icon-wrapper {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    background-color: transparent;
}

.payment-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.apple-pay-image {
    transform: scale(0.8);
}

.google-pay-image {
    transform: scale(1.3);
}

.payment-option span {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* Mobile: sve 3 payment opcije u jednom redu */
@media (max-width: 768px) {
    .payment-options {
        flex-wrap: nowrap;
        gap: 10px;
        justify-content: space-between;
        padding-top: 15px;
    }
    
    .payment-option {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 10px 5px;
    }
    
    .payment-icon-wrapper {
        height: 60px;
        margin-bottom: 8px;
    }
    
    .payment-option span {
        font-size: 14px;
    }
}


@media (max-width: 768px) {
    footer {
        padding-top: 70px;
    }
}
