/* .collections-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    align-items: center;
    height: fit-content;
    gap: 10px;
    box-sizing: border-box;
    overflow-y: auto;
    margin-bottom: -10px;
    padding-bottom: 10px;
    margin-left: -10px;
    padding-left: 10px;
}

.collections-card .content-divider {
    width: 1px;
    height: 100%;
    background-color: #bebebe;
    display: inline-block;
} */



/* 
.collections-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    height: fit-content;
    gap: 10px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0px 0 10px 0px;
    margin: 0;
}

.collections-card .content-divider {
    width: 1px;
    height: 100%;
    background-color: #bebebe;
    display: inline-block;
} */


.collections-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
    align-items: center;
    height: fit-content;
    gap: 10px;
    box-sizing: border-box;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 10px 10px 10px;
    margin: 0;
    -webkit-mask-image: none;
    mask-image: none;
}

/* Both sides masked */
.collections-card.mask-both {
    -webkit-mask-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0px,
            rgba(0, 0, 0, 0.3) 5px,
            rgba(0, 0, 0, 0.6) 10px,
            rgba(0, 0, 0, 0.85) 15px,
            rgba(0, 0, 0, 1) 20px,
            rgba(0, 0, 0, 1) calc(100% - 20px),
            rgba(0, 0, 0, 0.85) calc(100% - 15px),
            rgba(0, 0, 0, 0.6) calc(100% - 10px),
            rgba(0, 0, 0, 0.3) calc(100% - 5px),
            rgba(0, 0, 0, 0) 100%);
    mask-image:
        linear-gradient(to right,
            rgba(0, 0, 0, 0) 0px,
            rgba(0 0 0 / 42%) 5px,
            rgba(0 0 0 / 81%) 10px,
            rgb(0 0 0) 15px,
            rgb(0 0 0) 20px,
            rgb(0 0 0) calc(100% - 20px),
            rgb(0 0 0) calc(100% - 15px),
            rgb(0 0 0 / 81%) calc(100% - 10px),
            rgb(0 0 0 / 42%) calc(100% - 5px),
            rgba(0, 0, 0, 0) 100%)
}

/* Scrollbar container size */
.collections-card::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Scrollbar track */
.collections-card::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

/* Scrollbar track piece */
.collections-card::-webkit-scrollbar-track-piece {
    background: transparent;
}

/* Corner (if both scrollbars are visible) */
.collections-card::-webkit-scrollbar-corner {
    background: transparent;
}

/* Scrollbar thumb */
.collections-card::-webkit-scrollbar-thumb {
    background: #01043b75;
    border-radius: 10px;

    /* Simulate left/right padding using transparent borders */
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    background-clip: padding-box;
}

/* Thumb hover effect */
.collections-card::-webkit-scrollbar-thumb:hover {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-radius: 10px;
    background: #01043bab;
    background-clip: padding-box;
}