.products-grid {
    margin-top: 10px;
}

.products-grid.grid-net {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    width: 100%;
    overflow: hidden;
    flex-wrap: wrap;
}

.products-grid.grid-net .col {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
}


.products-grid.grid-shelves {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.products-grid.grid-shelves .col {
    width: 94%;
}

.products-grid.grid-shelves .product-card {
    display: flex;
    flex-direction: row;
}

.products-grid.grid-shelves .product-card .product-image {
    display: flex;
    padding: 2px;
    margin: 2px 0;
}

.products-card-shelves-grid {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-card-shelves-grid .product-title {
    font-size: 20px;
}

.products-grid.grid-shelves .product-footer {
    margin-left: auto;
}

.products-grid.grid-shelves .product-price-wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.products-grid.grid-shelves {
    display: flex;
}

.products-grid.grid-net .product-basket-price-wrapper {
    display: flex;
    flex-direction: row;
}


.products-card-shelves-grid .product-reviews {
    margin-bottom: 0;
}

.products-grid.grid-shelves > .col:first-child .product-card {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.products-grid.grid-shelves > .col:last-child .product-card {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}


.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
    background: white;
    border: 1px solid #ddd;
}


.product-image {
    margin: 10px 0 0 0;
}

.product-image img {
    max-height: 160px;
    width: auto;
    max-width: 100%;
    margin: auto;
    border-radius: 8px;
    object-fit: contain;
}

.product-reviews {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 24px;
    margin-top: auto;
}

.star-rating {
    display: flex;
    padding: 0;
    margin: 5px !important;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}

.star-rating i {
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
}

.reviews-count {
    display: flex;

    font-size: 14px;
    color: #555;
}


.product-title {
    font-size: 12px;
    font-weight: bold;
    margin: 4px 8px;
    text-align: left;

}

.product-title a {
    text-decoration: none;
    color: black;
}


.product-footer {
    padding: 5px 10px;
    margin: left;
}

.product-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.product-cart-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.product-cart-button svg {
    width: 27px;
    height: 27px;
    stroke: var(--color-primary-seconday);
}

.product-unavailable {
    color: red;
    font-size: 14px;
}

.strikethrough-img {
    opacity: 0.3;
    filter: grayscale(100%);
    width: 27px;
    height: 27px;
    stroke: var(--color-primary-seconday);
}


#add_to_wishlist_form {
    margin-left: auto;

}

#add_to_wishlist_form svg {
    width: 27px;
    height: 27px;
    margin-right: 7px;
    transition: transform 0.3s ease
}

#add_to_wishlist_form svg:active {
    transform: scale(0.9);
}

#add_to_wishlist_form button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}



.product-in-stock{
    display: flex;
    flex-direction: row;
}
.product-in-stock p{
    margin: 0 0 0 7px;
}





