/* similar items */

.image-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    max-width: 100%;
    width: 100vw;
    font-family: "Poppins", sans-serif;
}


.cardhn {
    border: 1px solid rgba(0, 0, 0, 0);
    border-radius: 20px;
    padding: 10px;
    transform: 1s;
    transition: 0.1s;
    cursor: pointer;


    background: rgba(255, 255, 255, 0.27);


}

.cardhn:hover {
    border: 1px solid rgba(73, 73, 73, 0.192);
    scale: 1.02;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cardhn img {
    width: 210px;
    border-radius: 15px;
}

@media (max-width: 767px) {
    .cardhn img {
        width: 45vw;
        border-radius: 15px;
    }

    .cardhn {
        border: 1px solid rgba(0, 0, 0, 0);
        border-radius: 20px;
        padding: 5px;
        transform: 1s;
        transition: 0.1s;
        cursor: pointer;
    }
}

.titlehn {
    font-size: 14px;
    font-weight: 500;
    width: 210px;
    letter-spacing: -0.5px;
}

.titlehnf {
    font-size: 16px;
    font-weight: 500;
    width: 210px;
    overflow: hidden;
    height: 20px;
}

@media (max-width: 767px) {
    .titlehn {
        font-size: 14px;
        font-weight: 500;
        width: 45vw;
        letter-spacing: -0.5px;
    }

    .titlehnf {
        font-size: 14px;
        font-weight: 500;
        width: 45vw;

    }
}

.image-grid .fa-star,
.image-grid .fa-star-half-alt {
    font-size: 12px;
    margin: 0;
    letter-spacing: -3px;
    padding: 0;
}

.sold {
    margin-left: 5px;
    font-size: 12px;
    font-weight: 200;
    color: #000000c1;
}

del {
    font-size: 14px;
    color: #00000079;
    font-weight: 100;
}

.titlehn .large {
    letter-spacing: -1px;
    font-size: 23px;
    font-weight: 600;
}

.choice {
    background-color: rgba(239, 207, 0, 0.792);
    padding: 3px 5px;
    border-radius: 8px;
    font-weight: 600;

    font-size: 12px;
}

.sale {
    background-color: rgba(255, 0, 0, 0.792);
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    color: white;

    font-size: 12px;

}

.red {
    color: red;
}