.etsy-item {
    transition: .3s;
    margin-bottom: 60px;

    h4 {
        font-size: 20px;
        a {
            transition: .3s;
            color: var(--bs-body-color);
            text-decoration: none;

            &:hover {
                text-decoration: none;
            }
        }
    }

    img {
        display: block;
        width: 100%;
        height: auto;
    }

    .price {
        font-family: "Times New Roman", serif;
        font-size: 1.5rem;
        text-align: right;
    }

    .description {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
        white-space: normal;


    }
}