.elementor-213 .elementor-element.elementor-element-6cfe2b2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-213 .elementor-element.elementor-element-3d342c0{--display:flex;}@media(min-width:768px){.elementor-213 .elementor-element.elementor-element-3d342c0{--content-width:1400px;}}/* Start custom CSS for html, class: .elementor-element-f60cb34 *//* === CONTENEDOR DE PRODUCTOS === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 10px auto;
  padding: 0 20px;
}

/* === TARJETA DE PRODUCTO === */
.product-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* === IMAGEN DEL PRODUCTO === */
.product-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* === INFORMACIÓN DEL PRODUCTO === */
.product-info {
  padding: 20px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  min-height: 45px; /* altura uniforme entre tarjetas */
}

/* === PRECIO === */
.product-pricing {
  margin-bottom: 15px;
}

.old-price {
  color: #999;
  /*text-decoration: line-through; tachar precio*/
  margin-right: 8px;
}

.new-price {
  color: #e53935;
  font-weight: 700;
}

/* === BOTÓN COTIZAR === */
.btn-quote {
  display: inline-block;
  background-color: #f1c232;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 30px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-quote:hover {
  background-color: #e3b64b;
  color: #111;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .product-card img {
    height: 220px;
  }
  .product-title {
    font-size: 1rem;
  }
  .product-desc {
    font-size: 0.85rem;
  }
}/* End custom CSS */