.elementor-242 .elementor-element.elementor-element-c088c76{--display:flex;--min-height:150px;--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;--justify-content:flex-end;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-widget-heading .elementor-heading-title{color:var( --e-global-color-primary );}.elementor-242 .elementor-element.elementor-element-28df143 .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), sans-serif;font-size:var( --e-global-typography-primary-font-size );font-weight:var( --e-global-typography-primary-font-weight );line-height:var( --e-global-typography-primary-line-height );color:var( --e-global-color-text );}.elementor-242 .elementor-element.elementor-element-3299497e{--display:flex;--padding-top:20px;--padding-bottom:20px;--padding-left:20px;--padding-right:20px;}.elementor-widget-text-editor{color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-242 .elementor-element.elementor-element-2e874c7e{font-family:"Satoshi", sans-serif;font-size:20px;text-transform:uppercase;}body.elementor-page-242:not(.elementor-motion-effects-element-type-background), body.elementor-page-242 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://alfaro.lauracalzadosytejidos.es/wp-content/uploads/2025/06/FONDO_PATRONES-WEB-1-scaled.png");}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-242 .elementor-element.elementor-element-28df143 .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}@media(max-width:767px){.elementor-242 .elementor-element.elementor-element-28df143 .elementor-heading-title{font-size:var( --e-global-typography-primary-font-size );line-height:var( --e-global-typography-primary-line-height );}}/* Start custom CSS for text-editor, class: .elementor-element-2e874c7e *//* Oculta el título de la lista */
.wishlist-title-container {
  display: none !important;
}

/* Oculta la cabecera de la tabla */
table.wishlist_table thead {
  display: none;
}

/* Estilo tipo tarjeta para cada fila del wishlist */
table.wishlist_table tbody tr {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 0px;
  margin-bottom: 0px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.0s ease;
}

table.wishlist_table tbody tr:hover {
  transform: translateY(0px);
}

/* Imagen del producto */
table.wishlist_table .product-thumbnail img {
  width: 300%;
  max-width: 200px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
  margin-left: -60px
}

/* Nombre del producto */
table.wishlist_table .product-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 8px;
}

/* Precio */
table.wishlist_table .product-price {
  font-size: 15px;
  color: #2B2627;
  margin-bottom: 8px;
}

/* Estado de inventario */
table.wishlist_table .product-stock-status {
  font-size: 14px;
  color: #8c8c8c;
  margin-bottom: 12px;
}

/* Botón Añadir al carrito */
table.wishlist_table .product-add-to-cart a {
  display: inline-block;
  background-color: #FF5C8E;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

table.wishlist_table .product-add-to-cart a:hover {
  background-color: #e04c7c;
}

/* Botón eliminar (x) */
table.wishlist_table .product-remove a {
  align-self: flex-end;
  font-size: 19px;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 12px;
}

table.wishlist_table .product-remove a:hover {
  color: #FF5C8E;
}

/* Responsivo: adaptar tarjetas al ancho */
@media (min-width: 600px) {
  table.wishlist_table tbody {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
  }

  table.wishlist_table tbody tr {
    width: 100%;
  }
}

/* Eliminar bordes de las celdas y filas */
table.wishlist_table,
table.wishlist_table th,
table.wishlist_table td {
    border: none !important;
    box-shadow: none !important;
}

/* Hacer las imágenes más grandes */
table.wishlist_table .product-thumbnail img {
    width: 300px !important;
    height: auto !important;
    border-radius: 5px;
    padding: none;
}

/* Reubicar el icono de eliminar en la esquina superior derecha de la celda de la imagen */
table.wishlist_table .product-remove {
    position: relative;
    width: 0;
}
table.wishlist_table .product-remove a.remove {
    position: absolute;
    top: 0;
    right: -10px;
    font-size: 20px;
    color: #FF5C8E;
    text-decoration: none;
    padding: 4px;
}

/* Alinear nombre y precio a la izquierda */
table.wishlist_table .product-name,
table.wishlist_table .product-price {
    text-align: left !important;
}

/* Estilo del botón "Añadir al carrito" */
table.wishlist_table .product-add-to-cart a.button,
table.wishlist_table .product-add-to-cart a.add_to_cart_button {
    font-size: 14px !important;
    font-weight: 500;
    text-transform: none;
    border-radius: 5px;
    background-color: #FF5C8E;
    color: #fff !important;
    padding: 8px 12px;
    display: inline-block;
    border: none;
    transition: background 0.3s ease;
}
table.wishlist_table .product-add-to-cart a.button:hover,
table.wishlist_table .product-add-to-cart a.add_to_cart_button:hover {
    background-color: #e14a76;
}

/* Ajustes móviles opcionales */
@media (max-width: 768px) {
    table.wishlist_table .product-thumbnail img {
        width: 100px !important;
    }
}


/* Asegura disposición vertical en móvil */
@media (max-width: 768px) {
  table.wishlist_table tbody {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  table.wishlist_table tbody tr {
    width: 100% !important;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  /* Imagen más grande y centrada */
  table.wishlist_table .product-thumbnail img {
    width: 150px !important;
    margin: 0 auto 12px auto !important;
    display: block;
  }

  /* Botón eliminar arriba a la derecha de la card */
  table.wishlist_table .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
  }

  table.wishlist_table tbody tr {
    position: relative;
    padding-top: 30px;
  }
}



@media (max-width: 768px) {
  table.wishlist_table .product-thumbnail {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  table.wishlist_table .product-thumbnail img {
    display: block !important;
    width: 150px !important;
    height: auto !important;
    margin: 0 auto 12px auto !important;
    margin-left: -60px
    !important;
  }
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Satoshi';
	font-display: auto;
	src: url('https://alfaro.lauracalzadosytejidos.es/wp-content/uploads/2025/05/Satoshi-Variable-1.ttf') format('truetype');
}
/* End Custom Fonts CSS */