.product-filter-text {
    cursor: pointer;
    color: #4b5563;
    transition: color 0.3s;
}

.product-filter-text:hover {
    color: #2563eb;
}

.product-filter-text-active {
    color: #2563eb;
    font-weight: 600;
}

.product-underline {
    height: 2px;
    background-color: #2563eb;
    position: relative;
    top: 4px;
    transition: transform 0.3s, width 0.3s;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(200, 200, 200, 0.1); /* Debug: Visualize grid */
}

.product-item:hover, .product-item-homepage:hover, .related-products-carousel .swiper-slide:hover {
    transform: translateY(-5px);
}

.product-item-homepage, .related-products-carousel .swiper-slide {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* background: red; */
}

.products .short-description p span, .additional-information .accordion {
    font-family: var(--global-font-family) !important;
}

.related-products-carousel .swiper-slide:hover {
    --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, #0000001a), 0 4px 6px -4px var(--tw-shadow-color, #0000001a);
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
    border-radius: var(--radius-2xl);
}

ul[type="circle"]{
    padding-left: 15px;
}

ul[type="circle"] li{
    list-style-type: circle;
}

.product-filter-text.disabled {
    cursor: default;
    color: #9ca3af;
}

.products-section {
    display: block;
}

.product-item a {
    display: block;
    height: 100%;
}