.site-main ul.products li.product{
     width: 300px!important;
    float: left;
    margin-right: 0px!important;
}

ul.products {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  background: #fff;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

.product-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  border-radius: 8px;
}

.product-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.product-price {
  font-size: 1.1rem;
  color: #0073aa;
}

.descripcion-corta {
  font-size: 0.95rem;
  color: #444;
  text-align: center;
}

.descripcion-corta ul {
  margin-left: 0px;
  padding-left: 0px;
  list-style: disc;
}

.descripcion-corta li {
  margin-bottom: 0.5rem;
  list-style-type: none;
}

.product-button .button {
  background: #0073aa;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}

.col-full{
    width: 100%!important;
}

.woocommerce-products-header{
    display: none!important;
}

@media (max-width: 1000px) {
    
    ul.products {
      flex-wrap: wrap;  
    }
    
    .products li:nth-child(3){
        margin-left: 50px!important;
    }
    
    .col-full{
      width: 95%!important;
    }

     
}

@media (max-width: 768px) {
     
    .products li:nth-child(3){
        margin-left: 0px!important;
    }
    
    .col-full{
    width: 89%!important;
}

}

@media (min-width: 768px) {
       
    .col-full{
      max-width: 92%!important;
    }
}






