
   .description{
   line-height: 37px;
   text-align: justify;
   }
   #link{
   font-size: 20px;
   margin-top: 30px;
   }

ul.list-categoris {
    padding: 0;
    margin: 0;
    list-style: none;
    max-height: 400px; 
    overflow-y: auto;
}


.category-item {
    margin: 15px 0;
    padding: 0 15px; 
    display: flex;
    align-items: center;
}


.category-container {
    display: flex;
    align-items: center;
    gap: 10px; 
}

.cls_chkbox {
    display: none;
}


.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #888;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    background-color: #fff;
}


.cls_chkbox:checked + .category-label .checkbox-custom {
    background-color:rgb(255, 0, 51); 
    border-color:rgb(232, 16, 84);
}


.cls_chkbox:checked + .category-label .checkbox-custom::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 4px 4px 0;
    transform: rotate(45deg);
}


.category-label {
    cursor: pointer;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}


.category-label:hover {
    color:rgb(232, 17, 35);
}


.cls_chkbox:active + .category-label .checkbox-custom {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


.cls_chkbox:focus + .category-label .checkbox-custom {
    outline: 3px solid #007BFF;
}

.category-name {
    margin-left: 8px;
}
@media (min-width: 768px) {
    .category-name {
        font-size: 18px;
    }
}
@media only screen and (max-width: 719px) {
    #mobile {
        display: block;
    }
    #lap {
        display: none;
    }
}

@media only screen and (min-width: 720px) {
    #mobile {
        display: none;
    }
    #lap {
        display: block;
    }
}

    .card-product-wrapper:hover .img-product,
    .card-product-wrapper:hover .img-hover {
        transform: scale(1.05);
    }
    .blink {
        animation: blink 1s infinite;
    }

    @keyframes blink {
        50% {
            opacity: 0;
        }
    }
