
.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  .product:hover {
    -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px var(--terciary);
    box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px var(--terciary);
  }
  
  .product .product-img {
    position: relative;
  }
  
  .product .product-img>img {
    width: 100%;
    height: 150px;
    object-fit: fill;
  }
  
  .product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  
  .product .product-img .product-label>span {
    border: 2px solid;
    padding: 2px 10px;
    font-size: 12px;
  }
  
  .product .product-img .product-label>span.sale {
    background-color: #FFF;
    border-color: var(--terciary);
    color: var(--terciary);
  }
  
  .product .product-img .product-label>span.new {
    background-color: var(--terciary);
    border-color: var(--terciary);
    color: #FFF;
  }
  
  .product .product-body {
    position: relative;
    padding: 15px;
    background-color: #000;
    text-align: center;
    z-index: 20;
  }
  
  .product .product-body .product-category {
    text-transform: uppercase;
    font-size: 12px;
    color: #8D99AE;
  }
  
  .product .product-body .product-name {
    text-transform: uppercase;
    font-size: 14px;
  }
  
  .product .product-body .product-name>a {
    font-weight: 700;
    color: var(--contrast-color)!important;
  }
  
  .product .product-body .product-name>a:hover, .product .product-body .product-name>a:focus {
    color: var(--terciary);
  }
  
  .product .product-body .product-price {
    color: var(--terciary);
    font-size: 18px;
  }
  
  .product .product-body .product-price .product-old-price {
    font-size: 70%;
    font-weight: 400;
    color: #8D99AE;
  }
  
  .product .product-body .product-rating {
    position: relative;
    margin: 15px 0px 10px;
    height: 20px;
  }
  
  .product .product-body .product-rating>i {
    position: relative;
    width: 14px;
    margin-right: -4px;
    background: #FFF;
    color: #E4E7ED;
    z-index: 10;
  }
  
  .product .product-body .product-rating>i.fa-star {
    color: var(--terciary);
  }
  
  .product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
  }
  
  .product .product-body .product-btns>button,.product .product-body .product-btns>a {
    display: inline-block;
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    color: var(--contrast-color);
  }
  
  .product .product-body .product-btns>button:hover,  .product .product-body .product-btns>a:hover {
    background-color: #E4E7ED;
    color: var(--terciary);
    border-radius: 50%;
  }
    .product .product-body .product-btns>a:hover,  .product .product-body .product-btns>a:hover {
    background-color: #E4E7ED;
    color: var(--terciary);
    border-radius: 50%;
  }
  .product .product-body .product-btns>button .tooltipp,  .product .product-body .product-btns>a .tooltipp {
    position: absolute;
    bottom: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
    width: 150px;
    padding: 10px;
    font-size: 12px;
    line-height: 10px;
    background: var(--principal);
    color: #FFF;
    text-transform: uppercase;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  .product .product-body .product-btns>button:hover .tooltipp,.product .product-body .product-btns>a:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
  }
  .product .product-body .product-btns>a:hover .tooltipp,.product .product-body .product-btns>a:hover .tooltipp {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(-50%, -5px);
    -ms-transform: translate(-50%, -5px);
    transform: translate(-50%, -5px);
  }
  
  .product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: var(--heading-color);
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
  }
  
  .product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
  }
  
  .product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    display: flex;
    justify-content: center;
    height: 40px;
    padding: 0 30px;
    background-color: var(--terciary);
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
  }
  
  .product .add-to-cart .add-to-cart-btn>i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: var(--terciary);
    opacity: 0;
    visibility: hidden;
  }
  
  .product .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: var(--terciary);
    border-color: var(--terciary);
    padding: 0px 30px 0px 50px;
  }
  
  .product .add-to-cart .add-to-cart-btn:hover>i {
    opacity: 1;
    visibility: visible;
  }
  .container-news{
    padding: 0px 70px;
    margin: 25px 0px;
  }
  .gap-custom-10{
    gap: 25px;
}

.col-sm-10-container-news{
    width:calc(100% - 300px);
    min-height: 200px;
 
}
.col-sm-2-container-news{
    width:299px;
    min-height: 200px;
    border: 1px solid #d3d3d3;
    padding: 10px 10px;
    height: fit-content;
}
.img-container-gallery{
    width: auto;
}
.img-container-gallery{
    margin-top:10px;
}
.btn-custom {
    color: var(--contrast-color);
    background: var(--terciary);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
  }
  .btn-custom:hover {
    background: color-mix(in srgb, var(--terciary), transparent 20%);
  }
@media(max-width:950px){
    .col-sm-10-container-news{
        width:100%;
       
     
    }
    .col-sm-2-container-news{
        width:100%;
    }
}