.custom-color-picker-wrapper{
    border: 1px solid #E5E7EB;
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 25px;
}
.custom-color-picker-wrapper h4{
    font-size: 16px;
    line-height: 24px;
    color: #1F2421;
    font-weight: 700 !important;
    text-align: left;
    padding-bottom: 25px;
}
.custom-color-picker-wrapper .swatch-grid{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 17px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    max-height: 135px;
    overflow: hidden;
    scrollbar-width: thin;
    scrollbar-color: #FDB913 transparent;
}
.custom-color-picker-wrapper .swatch-grid:hover{
    overflow-y: auto;
}
/* WebKit (Chrome, Safari, Edge) Scrollbar Styles */
.custom-color-picker-wrapper .swatch-grid::-webkit-scrollbar {
    width: 1px; /* Makes the scrollbar very thin */
}
.custom-color-picker-wrapper .swatch-grid::-webkit-scrollbar-track {
    background: transparent; /* Keeps the background clean */
    border-radius: 10px;
}
.custom-color-picker-wrapper .swatch-grid::-webkit-scrollbar-thumb {
    background: #FDB913; 
    border-radius: 10px; /* Rounds the edges of the scrollbar thumb */
}
.custom-color-picker-wrapper .swatch-grid::-webkit-scrollbar-thumb:hover {
    background: #e6a711; /* Slightly darker yellow/gold on hover for a nice interaction */
}
.display-color-box{
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.swatch-bottom-display{
    background: #F1F3F5;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 15px;
    flex-direction: row-reverse;
}
.swatchTitle{
    font-size: 9px;
    line-height: 14px;
    color: #9CA3AF;
    display: block;
}
h3.display-name{
    font-size: 14px;
    line-height: 20px;
    color: #1F2421;
    font-weight: 700 !important;
}
.display-stock{
    font-size: 9px;
    line-height: 14px;
    color: #16A34A;
    display: block;
}
.active-swatch{
    padding: 2px;
}
.color-swatch img{
    border-radius: 50% !important;
}
.color-swatch{
    border: 1px solid #E5E7EB;
}
.swatch-filters{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    padding-bottom: 25px;
}
.swatch-filters .swatch-filter-btn{
    background-color: #ECEEF1;
    padding: 6px 15px;
    border-radius: 25px;
    color: #1F2421;
    font-size: 12px;
    line-height: 18px;
    border: 0;
    font-weight: 700;
}

@media(max-width: 900px){
    .swatch-filters{
        flex-wrap: wrap;
    }
    .custom-color-picker-wrapper{
        padding: 15px;
    }
}