﻿*{
  margin: 0;
  padding:0;
  box-sizing: border-box;
}
body {
    visibility: visible !important;
    overflow: auto !important;
}
    /*Slider-product*/
.new-products {
  text-align: center;
  padding: 60px 20px 30px;
  position: relative;
}

.new-products__title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  animation: fade-in-up 1s ease forwards;
}

/* Línea decorativa */
.new-products__line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #c00000, #bd2727);
  border-radius: 2px;
  margin: 0 auto;
  animation: expand-line 1s ease forwards;
}

/* Animaciones suaves */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expand-line {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .new-products__title {
    font-size: 1.5rem;
  }
  .new-products {
    padding: 40px 10px 20px;
  }
}


.main-categoria {
  color: black;
  position: relative;
  padding: 10px;
  font-size: 5px;
  background: transparent;
  display: inline-block;
}
.main-categoria h2 {
  font-size: 26px;
}
.main-categoria h2 u {
  text-decoration-color: #c00000;
}
.p-slider {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0px auto;
  width: 95%;
}
.product-slider-heading{
  font-size: 28px;
  text-transform: uppercase;
  color: #313131;
  text-align: center;
  margin: 0px;
}
.product-box{
  display: flex;
  flex-direction: column;
  width: 300px;
  padding: 15px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  margin: 0px 20px;
  position: relative;
}
.p-img-container{
  width: 100%;
  height: 100%;
  display: flex;
  overflow:hidden;
}
.p-img a,
.p-img{
  width:100%;
  height:300px;
  display: flex;
}
.p-img a img{
  width:100%;
  height:100%;
  object-position: center;
  object-fit: contain;
  animation: fade 0.6s;
}
.p-img-back{
  display:none;
}
.p-img-container:hover .p-img-back{
  display: block;
}
.p-img-container:hover .p-img-front{
  display: none;
}
@keyframes fade{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.p-box-text{
  width: 100%;
}
.price-eye a i {
  color: rgb(2, 23, 43);
  cursor:pointer;
}
.price-eye a i:hover{
  color:#c00000;
}
.price-eye{
  margin:10px 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.product-category span{
  color: #acacac;
  font-size: 1.3em;
  margin: 5px 0px;
}
.product-price{
  color: #c00000;
  font-size:1.3em;
  font-weight: 600;
  text-decoration: none;
  transition: all ease 0.3s;
}
.product-price:hover{
  opacity: 0.7;
  transition: all ease 0.3s;
  color:#c00000;
}
.price-eye a{
  text-decoration:none;

}
.p-buuy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.p-buuy{
  font-size: 1.3em;
  color: #333333;
  font-weight: 700;
}
.p-buuy .p-buy-btn {
  text-align:center;
  margin: 0px 5px;
  font-weight: 600;
  width: 100%;
  padding: 8px 0;
  color: #fff;
  border: 0;
  font-size: 15px;
  cursor: pointer;
  border-radius: 5px;
  background-image: linear-gradient(to left, #00003d, #000, #00003d, #000);
}
.p-buuy .p-buy-btn {
  text-decoration:none;
}
.p-buuy .p-buy-btn:hover {
  background-image: linear-gradient(135deg, #ae3434, #c00000, #ae3434, #c00000);
}
.p-discount{
  position:absolute;
  left: 20px;
  top: 20px;
  width: 65px;
  height: 24px;
  color: #ffffff;
  background-color: #e63b3b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.7em;
  letter-spacing: 1px;
  z-index: 100;
  border-radius: 3px;
}
.slider-btns,
.slider-btns2,
.slider-btns3,
.slider-btns4,
.slider-btns5{
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin: 30px auto 10px auto;
  padding: 0px 10px;
}
.slider-btns button,
.slider-btns2 button,
.slider-btns3 button,
.slider-btns4 button,
.slider-btns5 button {
  position: static !important;
  transform: translate(0,0);
  background-color: transparent;
  width: 30px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  border: 1px solid #c00000;
}
.slider-btns button span{
  padding: 10px 15px 10px 10px;
  position: relative;
  text-decoration: none;
}
.slider-btns button span i::before,
.slider-btns button span i::after{
  position: absolute;
  height: 25px;
  width: 30px;
  color: #000;
  font-size: 16px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  left: auto;
  top: 23px;
}
.slider-btns .glider-next span i{
  margin-right: 25px;
}
.slider-btns .glider-prev span i{
  margin-right: 25px;
}
/*/*Responsive*/
@media(max-width:500px){
.product-box{
  margin: 0px 10px;
}
.p-slider{
  width: 100%;
}
.product-slider-heading{
  text-align: center;
  font-size: 1.3em;
  display: flex;
}
.p-img a,
.p-img{
  height: 200px;
}
.p-buy .p-price{
  font-size: 1.1em;
}
.p-img-container:hover .p-img-back{
  display:none;
}
.p-img-container:hover .p-img-front{
  display:block;
 }
}
@media(max-width:320px){
.p-img a,
.p.img{
  height:190px;
}
.slider-btns{
  padding:0px;
 }
}
.main-main-button .main-main-cart, .main-buy {
  width: 145px;
  background: #27af5d;
  padding: 8px 0px;
  color: #fff;
  border: 0;
  font-size: 17px;
  cursor: pointer;
  border-radius: 5px;
}
 .main-main-button .main-main-cart {
  background-image: linear-gradient(#c00000, #b23c27);
}
 .main-main-button .main-main-cart:hover {
  box-shadow: 0 0 5px #f73c22, 0 0 300px #c24f23, 0 0 40px #ff7b48;
}
 .main-main-button .main-buy {
  background-image: linear-gradient(#349748,#195f14);
}
 .main-main-button .main-buy:hover {
  box-shadow: 0 0 5px #349748, 0 0 300px #195f14, 0 0 40px #349748;
}
/*Modal Carrito*/
.main-toast {
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification_box {
    background-color: #fff;
    width: 450px;
    height: 125px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #c00000;
    top: 80px;
    right: -100%;
    transition: all .5s;
    position: fixed;
    z-index: 5;
}
.notification_box.active {
    right: 30px;
}
.bx-x {
    position: absolute;
    font-size: 20px;
    right: 15px;
    cursor: pointer;
    top: 10px;
}
.bx-x:hover {
    color: #c00000;
}
.box_text h3 {
    text-align: center;
}
/*Botones Modal*/
.button_modal_buy {
    display: flex;
    gap: 15px;
}
.button_modal_buy > a {
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
}
.button_modal_buy > .modal-see-cart {
    color: #fff;
    background-image: linear-gradient(rgb(2, 23, 43),#000);
}
.button_modal_buy > .modal-see-cart:hover {
    box-shadow: 0 0 5px rgb(2, 23, 43), 0 0 300px #000, 0 0 40px rgb(2, 23, 43);
}
.button_modal_buy > .modal-pay {
    color: #fff;
    background-image: linear-gradient(#349748,#195f14);
}
.button_modal_buy > .modal-pay:hover {
    box-shadow: 0 0 5px #349748, 0 0 300px #195f14, 0 0 40px #349748;
}
/*Responsive modal*/
@media screen and (max-width: 470px) {
    .notification_box {
        width: 350px;
        height: 130px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 360px) {
    .notification_box {
        width: 300px;
        height: 120px;
        top: 80px;
        right: -100%;
    }
}
/*Filtros*/
.price-filter {
    width: 100%;
    display: flex;
    padding: 15px;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
}
.all-category{
    margin-top: 2.9% !important;
    margin-right: 10px;
}
.filters-price {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.price-filter input {
    width: 100%;
    height: 45px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0 15px;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.price-filter input:hover {
    border-color: #adb5bd;
}
.price-filter input:focus {
    outline: none;
    border-color: #c00000;
    box-shadow: 0 0 0 3px rgba(192, 0, 0, 0.2);
}
.filter-description {
    flex: 1;
    width: 30%;
    margin-left: 5px;
}
.filter-min {
    width: 30%;
}
.filter-max {
    width: 30%;
}
.price-filter input:focus{
    outline: solid 2px #c00000;
    border: none;
}
.filter-max input{
    margin-left: 15px;
}
/*Responsive filtros de busqueda*/
@media(max-width: 1024px) {
    .all-category {
        margin-top: 4.5% !important;
        margin-right: 10px;
    }
    .filters-price {
        width: 70%;
        display: flex;
        justify-content: center;
    }
    .slider {
        height: 334px !important;
    }
}
@media(max-width: 912px) {
    .price-filter {
        width: 100%;
        height: 200px;
        display: block;
        justify-content: center;
        margin-bottom: 10px;
    }
    .filters-price{
        display: flex;
        width: 100%;
    }
    .price-filter  input {
        width: 90%;
        height: 40px;
        border: solid 1px #6b6161;
        border-radius: 5px;
     }
    .filter-min,
    .filter-description,
    .filter-max {
        width: 33%;
        margin: auto;
    }
}
@media(max-width: 600px) {
    .price-filter {
        width: 100%;
        height: 300px;
        display: block;
        justify-content: center;
        margin-bottom: 20px;
    }
    .filters-price{
        display: block;
        width: 100%;
    }
    .price-filter  input {
        width: 100%;
        height: 40px;
        border: solid 1px #6b6161;
        border-radius: 5px;
     }
    .filter-min,
    .filter-description,
    .filter-max {
        width: 82%;
        margin: auto;
    }
    .filter-min {
        margin-left: 8%;
    }
    .filter-max {
        margin-left: 5%;
    }
    .filter-description {
        margin-left: 8.5%;
    }
}
@media(max-width: 415px) {
    .price-filter {
        width: 100%;
        height: 300px;
        display: block;
        justify-content: center;
        margin-bottom: 20px;
    }
    .filters-price{
        display: block;
        width: 100%;
    }
    .price-filter  input {
        width: 100%;
        height: 40px;
        border: solid 1px #6b6161;
        border-radius: 5px;
     }
    .filter-min,
    .filter-description,
    .filter-max {
        width: 82%;
        margin: auto;
    }
    .filter-min {
        margin-left: 8%;
    }
    .filter-max {
        margin-left: 4%;
    }
    .filter-description {
        margin-left: 8%;
    }
}
/*Slider prueba*/
:root {
    --primary: #18253c;
    --secondary: #c00000;
    --bg: #0e1523;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.item-sm {
    padding: 4.5rem;
    display: flex;
    margin: 7rem auto;
}

.card-sm {
    background-color: orange;
    position: relative;
    left: 0;
    overflow: hidden;
    min-width: 20rem;
    height: 30rem;
    background-color: #fff;
    color: #fff;
    border-radius: 1rem;
    border: .1rem solid transparent;
    transition: .5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.card-sm:not(:first-child) {
    margin-left: 2rem;
}
.card-sm:first-child {
    margin-left: .4rem;
}
.card-sm:hover {
    border: .1rem solid var(--secondary);
    transform: scale(1.05);
}
.card-sm::before, .card-sm::after {
    position: absolute;
    content: "";
    background-color: #00a8e8;
/*    background-image: url(../sliderbeirute/fondo_nave.png);
*/    /*background-color: var(--secondary);*/
    border-radius: 50%;
    transition: .5s ease-in-out;
    z-index: 100;
}
.card-sm::before {
    top: -6%;
    right: -6%;
    width: 9rem;
    height: 9rem;
}
.card-sm::after {
    bottom: -6%;
    left: -6%;
    width: 5rem;
    height: 5rem;
}
.card-sm:hover::before {
    transform: scale(1.8);
}
.card-sm:hover::after {
    transform: scale(0);
}
.content-sm {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
    width: 100%;
    height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}
.card-sm-wrapper {
    width: 100%;
    height: 0;
    padding-top: 85.25%; /* Proporción de aspecto 16:9 (9 / 16 * 100%) */
    position: relative;
}
.img-sm {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.title-sm {
    font-size: 1.2rem;
    color: #000;
    font-weight: 600;
    transition-delay: .2s;
    margin-top: 20px;
    text-transform: uppercase;
}
.footer-sm {
   /* transform: translateY(8rem);*/
    transition: .5s ease-in-out;
}
.body-sm {
    height: 100%;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition-delay: .1s;
}
.card-sm:hover .img-sm,
.card-sm:hover .title-sm,
.card-sm:hover .body-sm,
.card-sm:hover .footer-sm {
    transform: translateY(0);
}
.footer-sm {
    transition-delay: .3s;
    margin-bottom: 10px;
    margin-top: 10px;
}
/*Lista de deseos*/
.whish-sm {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50px;
}
.whish-sm:hover {
    transition: .5s ease-in-out;
    transform: scale(1.08);
}
.heart-sm {
    font-size: 1.4rem;
    color: red;
}
/*Precio*/
.price-sm {
    color: rgba(109, 118, 125, 1);
    font: bolder 1.5rem sans-serif;
    font-size: 2rem;
    font-weight: 300;
    transition: .5s ease-in-out;
}
.card-sm:hover .price-sm {
    font-size: 1.5rem;
    transition: .5s ease-in-out;
}
/*Botones*/
.btn-sm {
    padding: 1rem 2rem;
    background-color: unset;
    border: none;
    outline: none;
    border-radius: 2rem;
    color: #000;
    cursor: pointer;
}
.buy-sm {
    color: #fff;
    background-color: var(--secondary);
    transition: .5s ease-in-out;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.buy-sm:hover {
   box-shadow: #C00000 0px 20px 30px -10px;
   transition: .5s ease-in-out;
   transform: scale(1.08);
}
.cart-sm {
    border: .1rem solid var(--secondary);
    transition: .5s ease-in-out;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
.cart-sm:hover {
    box-shadow: #C00000 0px 20px 30px -10px;
    transition: .5s ease-in-out;
    transform: scale(1.08);
}
.view-sm {
    color: #000;
    margin-right: 80%;
    cursor: pointer;
    position: absolute;
/*    display: none;
*/    transition: .5s ease-in-out;
}
.card-sm:hover .view-sm {
    display: block;
    transition: .5s ease-in-out;
}
/*Flechas*/
.arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font: 800 1.5rem sans-serif;
    text-align: center;
    line-height: 3rem;
    user-select: none;
    cursor: pointer;
    z-index: 300;
}
.arrow:active {
    background-color: #ddd;
}
.left {
    left: 1rem;
}
.right {
    right: 1rem;
}
/*Responsive*/
@media(max-width:1600px) {
    .owl-dot {
        display: none; /*Elimina botón que hace que se devuelva el slider al inicio*/
    }
}
@media(max-width:1024px) {
    .item-sm {
        padding: 6.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:912px) {
    .item-sm {
        padding: 4.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:900px) {
    .item-sm {
        padding: 10.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:800px) {
    .item-sm {
        padding: 9.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:720px) {
    .item-sm {
        padding: 7.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:600px) {
    .item-sm {
        padding: 4.5rem;
        display: flex;
        margin: 2rem auto;
    }
}
@media(max-width:540px) {
    .item-sm {
        padding: 17.5rem;
        display: flex;
        margin: -4rem auto;
    }
}
@media(max-width:480px) {
    .item-sm {
        padding: 13.5rem;
        display: flex;
        margin: -4rem auto;
    }
}
@media(max-width:430px) {
    .item-sm {
        padding: 11.5rem;
        display: flex;
        margin: -4rem auto;
    }
}
@media(max-width:414px) {
    .item-sm {
        padding: 10.5rem;
        display: flex;
        margin: -4rem auto;
    }
}
@media(max-width:412px) {
    .item-sm {
        padding: 10.5rem;
        display: flex;
        margin: -4rem auto;
    }
}
@media(max-width:400px) {
    .item-sm {
        padding: 8.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:355px) {
    .item-sm {
        padding: 7.5rem;
        display: flex;
        margin: 0rem auto;
    }
}
@media(max-width:320px) {
    .item-sm {
        padding: 5.5rem;
        display: flex;
        margin: 0rem auto;
    }
} 
/*Banner*/
.banner-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-container .banner{
/*    background: linear-gradient(-55deg, #ff7675 29%, #d63031 29.1%, #d63031 68%, #ff7675 68.1%);*/
    background: linear-gradient(-55deg, #EC6C23 29%, #DD5203 29.1%, #DD5203 68%, #EC6C23 68.1%);
    border-radius: 5px;
    margin: 10px; 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    box-shadow: 0 5px 10px #0005;
    overflow: hidden;
}
.banner-container .banner .banner-imgfirst{
    flex: 1 1 250px;
    padding: 15px;
    text-align: center;
}
.banner-container .banner .banner-imgfirst img{
    width: 80%;
}
.banner-container .banner .banner-content{
    flex: 1 1 250px;
    text-align: center;
    padding: 10px;
    text-transform: uppercase;
}
.banner-container .banner .banner-content span{
    color: #eee;
    font-size: 25px;
}
.banner-container .banner .banner-content h3{
    color: #ffff;
    font-size: 40px;
}
.banner-container .banner .banner-content p{
    color: #eee;
    font-size: 20px;
    padding: 10px 0;
}
.banner-container .banner .banner-content .banner-btn{
   display: block;
   height: 40px;
   width: 150px;
   text-align: center;
   line-height: 40px;
   background: #fff;
   color: #DD5203;
   margin: 5px auto;
   text-decoration: none;
   transition: .5s ease-in-out;
   font-weight: 600;
}
.banner-container .banner .banner-content .banner-btn:hover{
    transition: .5s ease-in-out;
    transform: scale(1.08);
}
.banner-container .banner .banner-imgsecond{
    position: relative;
    bottom: -33px;
    padding: 10px;
    flex: 1 1 250px;
}
.banner-container .banner .banner-imgsecond img{
    width: 100%;
}
/*Responsive*/
@media (max-width: 768px){
    .banner-container .banner .banner-imgsecond img{
        display: none;
    }
}
/*/// Estos son los de label notificacion de añadir carrito symbol lista datalist Deseos
*//*Model ListaDeseos*/
.main-toast {
    display: flex;
    justify-content: center;
    align-items: center;
}
.notification_box {
    background-color: #fff;
    width: 450px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #c00000;
    top: 80px;
    right: -100%;
    transition: all .5s;
    position: fixed;
    z-index: 5;
}
.notification_box.active {
    right: 30px;
}
.bx-x {
    position: absolute;
    font-size: 20px;
    right: 15px;
    cursor: pointer;
    top: 10px;
}
.bx-x:hover {
    color: #c00000;
}
.box_text p {
    color: gray;
}
.box_text p a {
    text-decoration: none;
}
.box_text p a:hover {
    color: #c00000;
}
/*Desde aquí modifique la vista previa*/
/*Responsive modal ListaDeseos*/
@media screen and (max-width: 470px) {
    .notification_box {
        width: 350px;
        height: 100px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 370px) {
    .notification_box {
        width: 300px;
        height: 100px;
        top: 80px;
        right: -100%;
    }
}
/*Modal AñadirCarrito*/
.toast_content_add_buy {
    display: flex;
    justify-content: center;
    align-items: center;
}
.toast {
    background-color: #fff;
    width: 450px;
    height: 145px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #c00000;
    top: 80px;
    right: -100%;
    transition: all .5s;
    position: fixed;
    z-index: 5;
    padding: 15px;
}
.toast.active {
    right: 10px; /*Aquí se controla la posición del modal de agregar carrito*/
}
.toast .toast-content {
    display: block;
    align-items: center;
}
.toast .close {
    position: absolute;
    font-size: 20px;
    right: 15px;
    cursor: pointer;
    top: 10px;
}
.toast .close:hover {
    color: #c00000;
}
.toast h3 {
   text-align: center;
}
/*Responsive model*/
@media screen and (max-width: 500px) {
    .toast {
        width: 300px;
        height: 125px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 470px) {
    .toast {
        width: 350px;
        height: 180px !important;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 351px) {
    .toast {
        width: 275px;
        height: 100px;
        top: 80px;
        right: -100%;
    }
}
/*Botones Model*/
.button_modal_buy {
    display: flex;
    gap: 15px;
}
.button_modal_buy > a {
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
}
.button_modal_buy > .modal-see-cart {
    color: #fff;
    background-image: linear-gradient(rgb(2, 23, 43),#000);
}
.button_modal_buy > .modal-see-cart:hover {
    box-shadow: 0 0 5px rgb(2, 23, 43), 0 0 300px #000, 0 0 40px rgb(2, 23, 43);
}
.button_modal_buy > .modal-pay {
    color: #fff;
    background-image: linear-gradient(#349748,#195f14);
}
.button_modal_buy > .modal-pay:hover {
    box-shadow: 0 0 5px #349748, 0 0 300px #195f14, 0 0 40px #349748;
}
/*Model Comprar-Pagar*/
.buy_model_toast {
    display: flex;
    justify-content: center;
    align-items: center;
}
.buy_model {
    background-color: #fff;
    width: 450px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #c00000;
    top: 80px;
    right: -100%;
    transition: all .5s;
    position: fixed;
    z-index: 5;
}
.buy_model.active {
    right: 30px;
}
.buy_model .toast-content {
    display: block;
    align-items: center;
}
.buy_model .close_pay {
    position: absolute;
    font-size: 20px;
    right: 15px;
    cursor: pointer;
    top: 10px;
}
.buy_model .close_pay:hover {
     color: #c00000;
}
.buy_model-content h3 {
    text-align: center;
}
/*Botones Model*/
.button_modal_buy {
    display: flex;
    gap: 15px;
}
.button_modal_buy > a {
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
}
.button_modal_buy > .modal-see-cart {
    color: #fff;
    background-image: linear-gradient(rgb(2, 23, 43),#000);
}
.button_modal_buy > .modal-see-cart:hover {
    box-shadow: 0 0 5px rgb(2, 23, 43), 0 0 300px #000, 0 0 40px rgb(2, 23, 43);
}
.button_modal_buy > .modal-pay {
    color: #fff;
    background-image: linear-gradient(#349748,#195f14);
}
.button_modal_buy > .modal-pay:hover {
    box-shadow: 0 0 5px #349748, 0 0 300px #195f14, 0 0 40px #349748;
}
/*Responsive model ComprarPagar*/
@media screen and (max-width: 500px) {
    .buy_model {
        width: 300px;
        height: 125px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 470px) {
    .buy_model {
        width: 350px;
        height: 125px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 351px) {
    .buy_model {
        width: 275px;
        height: 100px;
        top: 80px;
        right: -100%;
    }
}
/*Modal Comprar-Pagar/ ProductosRelacionados*/
.pay_modal_toast {
    display: flex;
    justify-content: center;
    align-items: center;
}
.pay_modal_container {
    background-color: #fff;
    width: 450px;
    height: 130px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-left: 4px solid #c00000;
    top: 80px;
    right: -100%;
    transition: all .5s;
    position: fixed;
    z-index: 5;
}
.pay_modal_container.active {
    right: 30px;
}
.pay_model_container .pay-content_toast {
    display: block;
    align-items: center;
}
.pay_modal_container .close_buy {
    position: absolute;
    font-size: 20px;
    right: 15px;
    cursor: pointer;
    top: 10px;
}
.pay_modal_container .close_buy:hover {
    color: #c00000;
}
.pay_modal_container-content h3 {
    text-align: center;
}
/*Botones Model*/
.button_modal_buy {
    display: flex;
    gap: 15px;
}
.button_modal_buy > a {
    text-decoration: none;
    padding: 1rem;
    border-radius: 5px;
    color: #fff;
    font-weight: 400;
}
.button_modal_buy > .modal-see-cart {
    color: #fff;
    background: #00c4d6;
}
.button_modal_buy > .modal-see-cart:hover {
    box-shadow: 0 0 5px rgb(2, 23, 43), 0 0 300px #000, 0 0 40px rgb(2, 23, 43);
}
.button_modal_buy > .modal-pay {
   color: #fff;
   background-image: linear-gradient(#349748,#195f14);
}
.button_modal_buy > .modal-pay:hover {
   box-shadow: 0 0 5px #349748, 0 0 300px #195f14, 0 0 40px #349748;
}
/*Responsive model ComprarPagarPRelacionados*/
@media screen and (max-width: 500px) {
    .pay_modal_container {
        width: 300px;
        height: 125px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 470px) {
    .pay_modal_container {
        width: 350px;
        height: 125px;
        top: 80px;
        right: -100%;
    }
}
@media screen and (max-width: 351px) {
    .pay_modal_container {
        width: 275px;
        height: 100px;
        top: 80px;
        right: -100%;
    }
}
/*Hasta aquiiiii*/
/*Responsive button compra-añadir-deseos-cantidad*/
@media screen and (max-width: 1095px) {
    .grup-button {
        display: inline-block;
    }
    .btn-buy-cart {
        width: 60%;
    }
    .btn-add-to-cart {
        width: 60%;
    }
    .input-quantity {
        width: 60px;
        height: 100%;
    }
}
@media screen and (max-width: 353px) {
    .input-quantity {
        width: 60px;
        height: 50%;
    }
}