@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
body {
    background: #f9f9f9;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    box-sizing: border-box;
}
.product {
    position: relative;
    min-height: 370px;
    border: 1px solid #d1d1d1;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.product .product-overlay {
    position: absolute;
    height: auto;
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.product:hover .product-overlay {
    opacity: 1;
}
.product_image {
    width: 100%;
    height: 200px;
}
.product_name-box a, .product_name-box a:link, .product_name-box a:visited, .product_name-box a:hover {
    font-size: 0.45em;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}
.content {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 91%;
    left: 100%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.product:hover .content {
    top: 91%;
    left: 50%;
    opacity: 1;
}
.product_name {
    color: rgb(19, 19, 19);
    margin-bottom: 0.5em;
    font-size: 0.8em;
    font-weight: 700;
}
.product_name:hover {
    text-decoration: underline;
}
.fadeIn-bottom {
    top: 91%;
}
a {
    text-decoration: none;
}
.price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.product_price {
    color: rgb(212, 0, 0);
    font-weight: 500;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 30px;
    font-weight: bold;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}
.product_old_price {
    color: #838383;
    text-decoration: line-through;
    height: 15px;
    text-align: center;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}
.buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.button_buy {
    line-height: 1.5;
    border-radius: 0.2rem;
    background-color: #dc3545;
    border-color: #dc3545;
    transition: all linear 0.3s;
}
.button_buy:hover {
    background-color: #a1101f;
    transition: all linear 0.3s;
}
.button_buy a {
    color: #fff;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
}
.button_details {
    line-height: 1.5;



    margin-right: unset;
}

.button_details:hover a {

    transition: all linear 0.1s;
  color: var(--product-box-details-btn-color-hover) !important;
  background-color: var(--product-box-details-btn-bg-hover) !important;
  border-color: var(--product-box-details-btn-border-hover) !important;
}
.button_details a {
   color: var(--product-box-details-btn-color) !important;
  background-color: var(--product-box-details-btn-bg) !important;
  border-color: var(--product-box-details-btn-border) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 39px;
    font-family: 'Outfit', sans-serif;
	    transition: all linear 0.1s;
}

.flex-container {
    display: flex;
    flex-direction: row;
    width: 1200px;
    margin: auto;
}
.titluri {
    margin-top: 20px;
    margin-bottom: 50px;
    margin-left: 20px;
}
.top-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    background-color: #fff;
    justify-content: center;
    align-items: flex-start;
    transition: all linear 0.3s;
	
}
.product:hover .top-container {
    display: none;
    transition: all linear 0.3s;
}
.product:hover .product_image {
    opacity: 0.6;
    transition: all linear 0.3s;
}
.product_image {
    transition: all linear 0.3s;
	margin-bottom: 40px;
}
.product_name-box {
    height: 40px;
    padding-left: 1em;
    padding-right: 1em;
	position:relative;

}
.product_name-box::after {background: #F1F1F1;
  width: 200px;
  height: 1px;
  display: block;
  content: "";
bottom: 0; position:absolute;}