.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #D1D5DB;
    border-radius: 4px;
    flex-shrink: 0;
    background: #fff;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    top: 50%;
    left: 50%;
    opacity: 0;
}

input:checked+.custom-checkbox {
    background-color: oklch(37.3% 0.034 259.733);
    border-color: oklch(37.3% 0.034 259.733);
}

input:checked+.custom-checkbox::after {
    opacity: 1;
}

.filter-section.collapsed {
    max-height: 60px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dropdown:hover .dropdown-menu {
    display: block;
}