.product-grid{
    border:1px solid transparent;
    font-family: 'Barlow Condensed', sans-serif;
    padding:10px 10px;
    transition: all 0.5s;
}
tbody, th{
    color:white;
}

.product-grid:hover{ border:1px solid #c1c1c1; }
.product-grid .product-image{
    position: relative;
    overflow: hidden;
}
.product-grid .product-image a.image{ display: block; }
.product-grid .product-image img{
    width: 100%;
    height: auto;
}
.product-grid .add-to-cart{
    border:none;
    color: #fff;
    background: #222;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    padding: 10px 0;
    display: block;
    position: absolute;
    left: 0;
    bottom: -50px;
    right: 0;
    transition: all ease-in-out 0.35s;
}
.product-grid:hover .add-to-cart{ bottom: 0; }
.product-grid .add-to-cart:after{
    content: "\f101";
    color: #fff;
    font-weight: 900;
    display: inline-block;
    opacity: 0;
    transition: all 0.5s;
}
.product-grid .add-to-cart:hover:after{
    padding-left: 10px;
    opacity: 1;
}
.product-grid .product-content{ position: relative; }
.product-grid .product-stock{
    color: #999;
    font-size: 16px;
    font-weight: 600;
    line-height: 35px;
    border-bottom: 1px solid #c1c1c1;
    display: block;
    margin: 0 0 15px;
}
.product-grid .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    position: absolute;
    top: -15px;
    right: 0;
    transition: all ease-in-out 0.35s;
}
.product-grid:hover .icon{
    opacity: 1;
    top: 8px;
}
.product-grid .icon li{ display: inline-block; }
.product-grid .icon li a{
    color: #222;
    font-size: 16px;
    margin: 0 4px;
}
.product-grid .icon li a:hover{ color: var(--main-color); }
.product-grid .title{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 5px;
}
.product-grid .title a{
    color: #222;
    transition: all 0.5s ease-out 0s;
}
.product-grid .title a:hover{ color: var(--main-color); }
.product-grid .category{
    font-size: 18px;
    margin: 0 0 3px;
    display: block;
}
.product-grid .category a{
    color: #222;
    transition: all 0.3s ease 0s;
}
.product-grid .category a:hover{ color: var(--main-color); }
.product-grid .price{
    color: #222;
    font-size: 24px;
    font-weight: 500;
    display: inline-block;
}
.product-grid .rating{
    padding: 0;
    margin: 0;
    list-style: none;
    float: right;
}
.product-grid .rating li{
    color: #FFB14B;
    font-size: 13px;
    display: inline-block;
}
.product-grid .rating li.disable{ color: #c1c1c1; }
@media only screen and (max-width:990px){
    .product-grid{ margin-bottom: 30px; }
}
#tienda img
{
    width: 100%;
    height: 250px;
    object-fit: scale-down;
}
#tienda a{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.6);
}
#carrito img{
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.titulo-banda {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding: 25px;
  
    /* Glow inicial */
    text-shadow: 
      0 0 5px #ff0000,
      0 0 10px #ff0000,
      0 0 20px #ff0000,
      0 0 40px #ff3333,
      0 0 80px #ff6666;
  
    animation: parpadeoNeon 1.5s infinite alternate;
  }
  
  @keyframes parpadeoNeon {
    0% {
      text-shadow: 
        0 0 5px #ff0000,
        0 0 10px #ff0000,
        0 0 20px #ff0000,
        0 0 40px #ff3333,
        0 0 80px #ff6666;
      opacity: 1;
    }
    50% {
      text-shadow: 
        0 0 2px #ff0000,
        0 0 5px #ff0000,
        0 0 10px #ff3333;
      opacity: 0.7;
    }
    100% {
      text-shadow: 
        0 0 0px #000,
        0 0 3px #330000;
      opacity: 0.5;
    }
  }
  