.product_image {
    width: 100%;
    height: 29vw;
    border-radius: 8px;
    border: 1px solid var(--1px-Stroke, #242C35);
    background: url(_path-to-image.html>) lightgray 50% / cover no-repeat;
    box-shadow: 1px 1px 0px 0px #242C35;
}

.product_tag {
    color: #00659E;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'salt' on, 'liga' off;
    font-family: "Garton Pro";
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 90%;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    margin-top: 20px;
    bottom: 20px;
    width: 100%;
}

.products_grid {
/*     display: grid; */
    width: 100%;
/*     grid-template-columns: calc(25vw - 29px) calc(25vw - 29px) calc(25vw - 29px) calc(25vw - 29px); */
    gap: 154px 16px;
    box-sizing: border-box;
}

.product {
    flex-direction: column;
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
  	width: calc(25vw - 38px)!important;
    opacity: 1;
    transform: translateY(0px);
}

.product_title {
    overflow: hidden;
    color: #242C35;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-family: "Grenette Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    letter-spacing: -0.48px;
    width: 80%;
    text-align: left;
    margin-top: 15px;
}

.product_bottom {
    display: flex;
    flex-wrap: wrap;
}

.product_price {
    overflow: hidden;
    color: #242C35;
    text-align: right;
    leading-trim: both;
    text-edge: cap;
    font-feature-settings: 'liga' off;
    text-overflow: ellipsis;
    font-family: "Grenette Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: 130%;
    letter-spacing: -0.48px;
    margin-top: 15px;
    width: 20%;
    text-align: right;
}




@media all and (max-width: 1000px) {
  .product {
    flex-direction: column;
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
  	width: calc(33.333vw - 52px)!important;
    opacity: 1;
    transform: translateY(0px);
}
}


@media all and (max-width: 1000px) {
  .product {
    flex-direction: column;
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
  	width: calc(50vw - 72px)!important;
    opacity: 1;
    transform: translateY(0px);
}
}

@media all and (max-width: 1000px) {
  .product {
    flex-direction: column;
    display: flex;
    gap: 10px;
    margin-bottom: 50px;
  	width: calc(100% - 0px)!important;
    opacity: 1;
    transform: translateY(0px);
}
}
  
  
  
  
  
  
  