.elementor-8 .elementor-element.elementor-element-27eeff7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-62c5e969 *//**************************************************
  1. CONTENEDOR GENERAL DE LA WISHLIST
**************************************************/
.woocommerce .yith-wcwl-form {
  max-width: 960px;
  margin: 32px auto 80px auto;
  box-shadow: 0 6px 32px 0 #11182718;
  border-radius: 16px;
  background: #ffffff;
  padding: 0;
  border: none;
  overflow: hidden; /* redondear bien todo */
}

/**************************************************
  2. CABECERA: TÍTULO “Mi lista de deseos…”
**************************************************/
.woocommerce .wishlist-title-container {
  padding: 20px 24px;
  background: #F9FAFB;
  border-bottom: 1px solid #E5E7EB;
}

.woocommerce .wishlist-title-container .wishlist-title {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

/**************************************************
  3. TABLA DE PRODUCTOS
**************************************************/
.woocommerce .wishlist_table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

/* Encabezados */
.woocommerce .wishlist_table thead th {
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #6B7280;
  padding: 14px 24px;
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
}

/* Filas */
.woocommerce .wishlist_table tbody tr {
  border-bottom: 1px solid #F3F4F6;
}

.woocommerce .wishlist_table tbody td {
  padding: 16px 24px;
  vertical-align: middle;
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #111827;
}

/* Columna nombre producto más ancha */
.woocommerce .wishlist_table td.product-name {
  font-weight: 600;
}

/**************************************************
  4. MENSAJE CUANDO NO HAY PRODUCTOS
**************************************************/
.woocommerce .wishlist_table tbody td[colspan] {
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
  color: #6B7280;
}

/**************************************************
  5. BOTONES (añadir al carrito / quitar)
**************************************************/
.woocommerce .wishlist_table .add_to_cart.button,
.woocommerce .wishlist_table .product-remove a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #E1007A;
  background: #E1007A;
  color: #ffffff !important;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  box-shadow: 0 8px 20px rgba(225, 0, 122, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.woocommerce .wishlist_table .add_to_cart.button:hover,
.woocommerce .wishlist_table .product-remove a:hover {
  background: #c00068;
  border-color: #c00068;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(225, 0, 122, 0.25);
}

/**************************************************
  6. RESPONSIVE
**************************************************/
@media (max-width: 768px) {
  .woocommerce .yith-wcwl-form {
    margin: 24px 16px 60px 16px;
  }

  .woocommerce .wishlist-title-container {
    padding: 16px 16px;
  }

  .woocommerce .wishlist_table thead {
    display: none; /* tabla más simple en móvil */
  }

  .woocommerce .wishlist_table tbody tr {
    display: block;
    padding: 16px;
  }

  .woocommerce .wishlist_table tbody td {
    display: block;
    padding: 4px 0;
  }

  .woocommerce .wishlist_table td.product-name {
    margin-bottom: 8px;
  }
}/* End custom CSS */