.elementor-2194 .elementor-element.elementor-element-1f96779c{--display:flex;--min-height:300px;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:stretch;--gap:10px 10px;--row-gap:10px;--column-gap:10px;--padding-top:5%;--padding-bottom:5%;--padding-left:8%;--padding-right:8%;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-2194 .elementor-element.elementor-element-5ebd26ee{text-align:center;}.elementor-2194 .elementor-element.elementor-element-5ebd26ee .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:65px;font-weight:600;text-transform:none;font-style:normal;text-decoration:none;line-height:1.2em;letter-spacing:0px;word-spacing:0em;color:#1C244B;}.elementor-2194 .elementor-element.elementor-element-7826a38d{text-align:center;}.elementor-2194 .elementor-element.elementor-element-7826a38d .elementor-heading-title{font-family:"Poppins", Sans-serif;font-size:16px;font-weight:300;text-transform:none;font-style:normal;text-decoration:none;line-height:1.5em;letter-spacing:0px;word-spacing:0em;color:#324A6D;}.elementor-2194 .elementor-element.elementor-element-18de837{--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-2194 .elementor-element.elementor-element-87041a9{width:100%;max-width:100%;}.elementor-2194 .elementor-element.elementor-element-87041a9.elementor-element{--align-self:stretch;}@media(max-width:1024px){.elementor-2194 .elementor-element.elementor-element-1f96779c{--padding-top:10%;--padding-bottom:10%;--padding-left:5%;--padding-right:5%;}.elementor-2194 .elementor-element.elementor-element-5ebd26ee .elementor-heading-title{font-size:45px;}.elementor-2194 .elementor-element.elementor-element-7826a38d .elementor-heading-title{font-size:14px;}}@media(min-width:768px){.elementor-2194 .elementor-element.elementor-element-1f96779c{--content-width:1650px;}}@media(max-width:767px){.elementor-2194 .elementor-element.elementor-element-1f96779c{--min-height:0px;--padding-top:15%;--padding-bottom:15%;--padding-left:5%;--padding-right:5%;}.elementor-2194 .elementor-element.elementor-element-5ebd26ee .elementor-heading-title{font-size:28px;line-height:1.1em;}}/* Start custom CSS for shortcode, class: .elementor-element-87041a9 *//* ==========================================================
   🎨 TOKENS DE ESTILO
   ========================================================== */
:root {
  --gap: 22px;
  --card-w: 260px;
  --radius-xl: 18px;
  --radius-md: 12px;
  --bg-card: rgba(255,255,255,.95);
  --bd-card: rgba(0,0,0,.06);
  --txt-dark: #111827;
  --txt-gray: #374151;
  --brand-1: #1E3A8A;
  --brand-2: #414CEC;
  --accent: #b7791f;
  --shadow-sm: 0 6px 22px rgba(0,0,0,.10);
  --shadow-lg: 0 18px 48px rgba(30,58,138,.25);
}

/* ==========================================================
   🧩 CONTENEDOR DEL CARRUSEL
   ========================================================== */
.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.woocommerce ul.products {
  display: flex !important;
  gap: var(--gap);
  padding: 20px 60px;
  margin: 0;
  list-style: none;
  overflow-x: auto !important;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-wrap: nowrap !important;
}

.woocommerce ul.products::-webkit-scrollbar {
  display: none;
}

/* ==========================================================
   🏷️ TARJETA DE PRODUCTO
   ========================================================== */
.woocommerce ul.products li.product {
  flex: 0 0 var(--card-w);
  background: var(--bg-card);
  border: 1px solid var(--bd-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  overflow: hidden;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  min-height: 440px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(65,76,236,.25);
}

/* ==========================================================
   🖼️ IMAGEN
   ========================================================== */
.woocommerce ul.products li.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform .3s ease;
  margin-bottom: 12px;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.04);
}

/* ==========================================================
   📝 TÍTULO Y PRECIO
   ========================================================== */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0 0 10px 0;
  color: var(--txt-dark);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.4;
  text-align: center;
  max-height: 5.6em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.woocommerce ul.products li.product .price {
  margin: 0 0 12px 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
}

/* ==========================================================
   🧠 DESCRIPCIÓN CORTA
   ========================================================== */
.woocommerce ul.products li.product .woocommerce-product-details__short-description {
  font-size: 0.95rem;
  color: var(--txt-gray);
  line-height: 1.5;
  margin: 0 0 12px 0;
  text-align: center;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================
   🔘 BOTONES DE PRODUCTO
   ========================================================== */
.buttons-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: auto;
}
.woocommerce ul.products li.product .button {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff !important;
  font-weight: 600;
  font-size: .9rem;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.woocommerce ul.products li.product .button:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 26px rgba(65,76,236,.35);
  background: linear-gradient(135deg, #0A0F4A, var(--brand-2));
}

/* ==========================================================
   ⬅️➡️ BOTONES DE NAVEGACIÓN DEL CARRUSEL
   ========================================================== */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  opacity: 0.9;
}

.carousel-arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background: linear-gradient(135deg, #0A0F4A, var(--brand-2));
  box-shadow: 0 10px 26px rgba(65,76,236,.4);
  opacity: 1;
}

.carousel-arrow.left {
  left: 15px;
}

.carousel-arrow.right {
  right: 15px;
}

.carousel-arrow::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 22px;
  line-height: 1;
  display: block;
}

.carousel-arrow.left::before {
  content: "\f104"; /* Flecha izquierda */
}

.carousel-arrow.right::before {
  content: "\f105"; /* Flecha derecha */
}

/* ==========================================================
   💫 EFECTOS EXTRA (opcional)
   ========================================================== */
.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
  box-shadow: 0 5px 10px rgba(0,0,0,.25);
}

/* ==========================================================
   📱 RESPONSIVO
   ========================================================== */
@media (max-width: 900px) {
  :root { --card-w: 220px; }
  .woocommerce ul.products li.product img { height: 170px; }
  .woocommerce ul.products li.product { min-height: 410px; }
}

@media (max-width: 640px) {
  :root { --card-w: 200px; }
  .woocommerce ul.products { gap: 14px; padding: 16px 8px; }
  .woocommerce ul.products li.product img { height: 150px; }
  .woocommerce ul.products li.product { min-height: 380px; padding: 14px; }
  .carousel-arrow { display: none; } /* Oculta flechas en móvil */
}/* End custom CSS */