/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #777777;
}

::-webkit-scrollbar-thumb:hover {
    background: #575757;
}
/* End Custom Scrollbar */

#product-main-slider {
    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        height: 100%;
    }
}

#product-main-slider {
    .swiper,
    .swiper-wrapper,
    .swiper-slide {
        height: 100%;
    }
}

/* Tom Select (Custom) Start */
.ts-dropdown {
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: all 0.2s;
    width: 100%;
    background-color: #fff; /* bg-white */
    margin-top: 0.5rem; /* mt-2 */

    &.focus {
        height: 100%;
        border-color: #5b96f5; /* border-blue-500 */
        box-shadow: 0 0 0 2px #5b96f5; /* focus:ring-2 focus:ring-blue-500 */
    }

    .optgroup {
        .optgroup-header {
            margin-top: 0.25rem;
            font-weight: 600; /* font-semibold */
        }
    }

    .option {
        padding: 0.5rem 0.75rem; /* px-3 py-2 */
        cursor: pointer;
        color: #374151; /* text-gray-700 */
        transition:
            background 0.2s,
            color 0.2s;
        font-size: 0.875rem; /* text-sm */
        margin: 0.25rem 0;

        &:hover {
            background-color: #dbeafe; /* bg-blue-100 */
            color: #2563eb; /* text-blue-600 */
        }

        &.selected {
            background-color: #095aa1; /* bg-blue-500 */
            color: #fff; /* text-white */
        }
    }
}

.ts-control {
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: all 0.2s;
    width: 100%;

    input {
        outline: none !important;
        box-shadow: none !important;
    }

    &.focus {
        border-color: #5b96f5; /* border-blue-500 */
        box-shadow: 0 0 0 2px #5b96f5; /* focus:ring-2 focus:ring-blue-500 */
    }

    .item {
        background-color: #fafafa;
        color: #000;
        font-size: 0.875rem; /* text-sm */
        border-radius: 0.5rem; /* rounded-lg */
        margin-right: 0.25rem;
        margin-bottom: 0.25rem;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow */
    }
}
/* Tom Select (Custom) End */

/* Alpine.js Transitions */
[x-cloak] {
    display: none !important;
}