/* Professional Payment Icons Styling for Luxury Wood */
.luxury-payment-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.luxury-payment-icons:hover {
    opacity: 1;
}

.payment-label {
    font-size: 0.75rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.25rem;
}

.payment-icons-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.payment-icon {
    transition: all 0.3s ease;
    filter: grayscale(0.3) opacity(0.9);
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.payment-icon:hover {
    filter: grayscale(0) opacity(1);
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Size variations */
.luxury-payment-icons.small .payment-icon {
    height: 24px;
    width: auto;
}

.luxury-payment-icons.medium .payment-icon {
    height: 32px;
    width: auto;
}

.luxury-payment-icons.large .payment-icon {
    height: 40px;
    width: auto;
}

/* Specific icon styling */
.payment-icon.visa {
    background: white;
    padding: 2px;
}

.payment-icon.mastercard {
    background: white;
    padding: 2px;
}

.payment-icon.paypal {
    background: #003087;
    padding: 2px;
}

.payment-icon.amex {
    background: white;
    padding: 2px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .luxury-payment-icons {
        justify-content: center;
        margin: 0.5rem 0;
    }

    .payment-label {
        font-size: 0.7rem;
    }

    .luxury-payment-icons.small .payment-icon {
        height: 20px;
    }

    .luxury-payment-icons.medium .payment-icon {
        height: 26px;
    }
}

/* Integration with header */
.header-top .luxury-payment-icons {
    margin-left: auto;
}

.header-top .payment-label {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
    .header-top .luxury-payment-icons {
        display: none; /* Hide on smaller screens for cleaner mobile header */
    }
}

/* Footer integration (if you want to show them there too) */
.footer .luxury-payment-icons {
    justify-content: center;
    margin: 1rem 0;
}

.footer .payment-label {
    color: #999;
}
