
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin: 40px 0;
}

.product-card {
  width: 220px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-name {
  font-size: 15px;
  color: #333;
  font-weight: 500;
  margin: 10px 0;
  min-height: 40px;
}

.product-price {
  color: #FFA733;
  font-weight: bold;
  margin-bottom: 10px;
}

.add-to-cart-btn {
  display: inline-block;
  background-color: #FFA733;
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.add-to-cart-btn:hover {
  background-color: #ff8800;
}

@media (max-width: 768px) {
  .product-grid {
    justify-content: center;
  }
}


/* === HOME SLIDER === */
.home-slider {
  max-width: 1200px;
  margin: 0 auto 40px auto;
  border-radius: 12px;
  overflow: hidden;
}

.home-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.barra-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #002f56;
  color: white;
  padding: 20px 10px;
  text-align: left;
  gap: 20px;
}

.info-box {
  flex: 1 1 calc(25% - 20px);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  background-color: #003b6f;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.info-box i {
  font-size: 28px;
  color: #FFA733;
}

.info-box.destacado {
  background-color: #FFA733;
  color: #333;
}

.info-box.destacado i {
  color: white;
}

@media (max-width: 768px) {
  .barra-info {
    flex-direction: column;
    align-items: stretch;
  }
  .info-box {
    flex: 1 1 100%;
  }
}



/* === PROMO BLOQUES (3 columnas con imagen y botón) === */
.promo-section {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.promo-box {
  flex: 1 1 calc(33% - 20px);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  padding: 20px;
  transition: transform 0.2s ease;
}

.promo-box:hover {
  transform: translateY(-5px);
}

.promo-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.promo-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.promo-btn {
  display: inline-block;
  background-color: #FFA733;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.promo-btn:hover {
  background-color: #ff8800;
}

/* === SECCIONES GENERALES === */
.home-section {
  max-width: 1200px;
  margin: 40px auto;
  text-align: center;
}

.home-section img {
  width: 100%;
  border-radius: 12px;
}

.home-promo h2 {
  margin-bottom: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .promo-section {
    flex-direction: column;
    align-items: center;
  }

  .promo-box {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* === MEJORAS BOTONES Y PRODUCTOS DESTACADOS EN HOME === */

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  border: 1px solid #f0f0f0;
}

.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.add-to-cart-btn {
  background-color: #FFA733;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  max-width: 140px;
  margin: 0 auto;
}

.add-to-cart-btn:hover {
  background-color: #ff8800;
  transform: scale(1.05);
}

.product-name {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cms-index-index .column.main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

