.logo-container {
    gap: 0;
    margin: 0;
    padding: 0;
}

/* Hide default scrollbar */
.scrollbar-hide {
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    scrollbar-width: none; /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

/* Custom scrollbar styling */
.scrollbar-custom {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap; /* Ensures items stay on one line */
    scroll-behavior: smooth; /* Smooth scrolling effect */
    padding-bottom: 10px; /* Optional padding for spacing */
}

/* Styling the scrollbar */
.scrollbar-custom::-webkit-scrollbar {
    height: 8px; /* Scrollbar height */
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: #888; /* Thumb (handle) color */
    border-radius: 10px;
}

.scrollbar-custom::-webkit-scrollbar-thumb:hover {
    background: #555; /* Hover color for thumb */
}

/* Optional styling for slider items */
.scrollbar-custom .item {
    display: inline-block;
    width: 250px; /* Example width of each item */
    margin-right: 15px; /* Space between items */
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px; /* Rounded corners */
}

/* @media screen and (max-width: 450px) {
    /* .headerLogoImg{
        height: fit-content;
    } *
    .store-name {
        font-size: 25px;
    }
} */
