.elementor-102 .elementor-element.elementor-element-340a9e7{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-c757e71 *//* =====================================================
   CENTRAIRES SHOP
   CATÁLOGO DE PRODUCTOS
===================================================== */

#centraires-shop {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}


/* =====================================================
   TOPBAR
===================================================== */

.cs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 35px;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}


/* =====================================================
   FILTROS
===================================================== */

.cs-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}


.cs-filters button,
.cs-sort button {
  border: 0;
  background: #f1f5f9;
  color: #334155;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}


.cs-filters button:hover,
.cs-sort button:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}


/* BOTÓN ACTIVO */

.cs-filters button.active {
  background: #157eb1;
  color: #ffffff;
}


/* =====================================================
   ORDEN
===================================================== */

.cs-sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}


/* =====================================================
   GRID
===================================================== */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}


/* =====================================================
   CARD
===================================================== */

.cs-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}


.cs-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 126, 177, 0.25);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}


/* =====================================================
   LINK DE LA CARD
===================================================== */

.cs-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}


/* =====================================================
   IMAGEN
===================================================== */

.cs-img {
  position: relative;
  background: #f8fafc;
  padding: 25px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}


.cs-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}


.cs-card:hover .cs-img img {
  transform: scale(1.06);
}


/* =====================================================
   INFORMACIÓN
===================================================== */

.cs-info {
  padding: 20px;
}


/* =====================================================
   TÍTULO
===================================================== */

.cs-info h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}


/* =====================================================
   PRECIO
===================================================== */

.cs-info .price {
  display: block;
  color: #157eb1;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}


.cs-info .price del {
  color: #94a3b8;
  font-size: 14px;
  margin-right: 5px;
}


.cs-info .price ins {
  text-decoration: none;
}


/* =====================================================
   DESCRIPCIÓN CORTA
===================================================== */

.cs-short-description {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  margin: 10px 0 16px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* =====================================================
   BOTÓN VER EQUIPO
===================================================== */

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;

  padding: 12px 18px;

  background: #157eb1;
  color: #ffffff;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 700;

  transition: all 0.25s ease;
}


.cs-card:hover .cs-btn {
  background: #125f86;
}


/* =====================================================
   PAGINACIÓN
===================================================== */

.cs-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 45px;
}


.cs-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 40px;
  height: 40px;

  padding: 0 10px;

  border-radius: 10px;

  background: #f1f5f9;
  color: #334155;

  text-decoration: none;

  font-size: 14px;
  font-weight: 600;

  transition: all 0.25s ease;
}


.cs-pagination .page-numbers:hover {
  background: #e2e8f0;
}


.cs-pagination .page-numbers.current {
  background: #157eb1;
  color: #ffffff;
}


/* =====================================================
   ESTADO SIN PRODUCTOS
===================================================== */

.cs-no-products {
  grid-column: 1 / -1;

  padding: 70px 20px;

  text-align: center;

  color: #64748b;
  font-size: 16px;
}


/* =====================================================
   LOADING AJAX
===================================================== */

#centraires-shop {
  transition: opacity 0.25s ease;
}


#centraires-shop.loading {
  opacity: 0.45;
  pointer-events: none;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1100px) {

  .cs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

}


/* =====================================================
   TABLET PEQUEÑA
===================================================== */

@media (max-width: 850px) {

  .cs-topbar {
    flex-direction: column;
    align-items: stretch;
  }


  .cs-filters {
    justify-content: center;
  }


  .cs-sort {
    justify-content: center;
  }


  .cs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =====================================================
   MÓVIL
===================================================== */

@media (max-width: 600px) {

  #centraires-shop {
    padding: 12px;
  }


  .cs-topbar {
    padding: 14px;
    border-radius: 14px;
    margin-bottom: 25px;
  }


  .cs-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;

    padding-bottom: 4px;

    scrollbar-width: none;
  }


  .cs-filters::-webkit-scrollbar {
    display: none;
  }


  .cs-filters button {
    flex-shrink: 0;
  }


  .cs-sort {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }


  .cs-sort button {
    padding: 9px 8px;
    font-size: 11px;
  }


  .cs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }


  .cs-img {
    height: 170px;
    padding: 15px;
  }


  .cs-info {
    padding: 14px;
  }


  .cs-info h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }


  .cs-info .price {
    font-size: 17px;
  }


  .cs-short-description {
    font-size: 12px;
    line-height: 1.45;
    margin: 8px 0 12px;
  }


  .cs-btn {
    padding: 10px 12px;
    font-size: 12px;
  }


  .cs-pagination {
    margin-top: 30px;
  }


  .cs-pagination .page-numbers {
    min-width: 35px;
    height: 35px;
    font-size: 13px;
  }

}


/* =====================================================
   MÓVIL MUY PEQUEÑO
===================================================== */

@media (max-width: 380px) {

  .cs-grid {
    gap: 10px;
  }


  .cs-img {
    height: 145px;
    padding: 10px;
  }


  .cs-info {
    padding: 12px;
  }


  .cs-info h3 {
    font-size: 14px;
  }


  .cs-info .price {
    font-size: 16px;
  }


  .cs-short-description {
    font-size: 11px;
  }


  .cs-btn {
    font-size: 11px;
    padding: 9px;
  }

}/* End custom CSS */