.elementor-816 .elementor-element.elementor-element-6af9e89a{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );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 );}:root{--page-title-display:none;}@media(max-width:767px){.elementor-816 .elementor-element.elementor-element-6af9e89a{--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-816 .elementor-element.elementor-element-6809c666{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}}/* Start custom CSS for text-editor, class: .elementor-element-6809c666 */@media (max-width: 768px) {
    .wishlist_table.mobile {
    list-style: none;
    margin-left: 0;
    padding: 10px !important;
}

ul.wishlist_table.mobile li {
        display: block !important;
        background-color: #fff; /* Fondo blanco */
        
        /* LA CLAVE DE LA SEPARACIÓN: */
        margin-bottom: 25px !important; /* Espacio entre productos */
        margin-top: 0 !important;
        
        /* Estilo de Tarjeta */
        padding: 20px !important;
        border: 1px solid #e1e1e1; /* Borde suave */
        border-radius: 15px; /* Bordes redondeados */
        box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra para dar relieve */
        list-style: none !important;
    }

    /* 2. FORZAR IMAGEN ARRIBA Y TEXTO ABAJO */
    ul.wishlist_table.mobile .item-wrapper {
        display: flex !important;
        flex-direction: column !important; /* Columna vertical */
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }

    /* 3. IMAGEN CENTRADA */
    ul.wishlist_table.mobile .product-thumbnail {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    ul.wishlist_table.mobile .product-thumbnail img {
        margin: 0 auto !important;
        max-width: 200px !important; /* Tamaño controlado */
        height: auto !important;
        border-radius: 8px;
    }

    /* 4. DETALLES CENTRADOS */
    ul.wishlist_table.mobile .item-details {
        text-align: center !important;
        width: 100% !important;
    }

    /* Título */
    ul.wishlist_table.mobile .product-name h3 {
        margin-top: 0;
        font-size: 18px;
        font-weight: 700;
    }

    /* Precio Dorado */
    ul.wishlist_table.mobile .amount {
        color: #E09E4D !important;
        font-size: 20px !important;
        font-weight: bold !important;
        display: block;
        margin-bottom: 10px;
    }


    /* 1. EL CONTENEDOR PRINCIPAL (.item-wrapper) */
    ul.wishlist_table.mobile .item-wrapper {
        display: flex !important;
        flex-direction: column !important; /* ESTO ES LA CLAVE: Columna vertical */
        align-items: center !important; /* Centrar todo horizontalmente */
        justify-content: center !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 2. LA IMAGEN (Arriba) */
    ul.wishlist_table.mobile .product-thumbnail {
        width: 100% !important;
        text-align: center !important;
        margin-bottom: 15px !important; /* Espacio para separar del título */
        display: block !important;
    }

    /* Ajuste para que la imagen no sea gigante */
    ul.wishlist_table.mobile .product-thumbnail img {
        margin: 0 auto !important;
        display: block !important;
        max-width: 180px !important; /* Tamaño controlado */
        height: auto !important;
    }

    /* 3. LOS DETALLES (Abajo) */
    ul.wishlist_table.mobile .item-details {
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important; /* También en columna por si acaso */
        align-items: center !important;
    }

    /* Limpieza de etiquetas BR molestas que vi en tu código */
    ul.wishlist_table.mobile br {
        display: none !important;
    }
    
    /* Asegurar que la tabla interna de precios se centre */
    ul.wishlist_table.mobile .item-details-table {
        margin: 10px auto !important;
        width: auto !important;
    }
}

.wishlist_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Encabezado */
.wishlist_table thead {
  background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
}

.wishlist_table thead th {
  padding: 18px 16px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #E09E4D;
  text-align: left;
  border: none;
}

/* Filas del cuerpo */
.wishlist_table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.wishlist_table tbody tr:hover {
  background-color: #fff8f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 158, 77, 0.15);
}

/* Celdas */
.wishlist_table td {
  padding: 20px 16px;
  vertical-align: middle;
  border: none;
}

.wishlist_table td p {
  margin: 0;
  line-height: 1.6;
}

/* Tablas internas label/value */
.wishlist_table td table {
  width: 100%;
  border-collapse: collapse;
}

.wishlist_table td table tr {
  display: table-row;
  border: none;
  background: none;
}

.wishlist_table td table tr:hover {
  background: none;
  transform: none;
  box-shadow: none;
}

.wishlist_table td.label {
  display: table-cell;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px 4px 0;
  width: 120px;
  vertical-align: top;
}

.wishlist_table td.value {
  display: table-cell;
  font-size: 14px;
  color: #1C1C1C;
  font-weight: 500;
  padding: 4px 0;
  vertical-align: top;
}

/* Miniatura del producto */
.product-thumbnail img {
  border-radius: 8px;
  transition: transform 0.3s ease;
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: 2px solid #f0f0f0;
}

.product-thumbnail a:hover img {
  transform: scale(1.05);
  border-color: #E09E4D;
}

/* Nombre del producto */
.product-name a {
  color: #1C1C1C;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
  text-transform: capitalize;
}

.product-name a:hover {
  color: #E09E4D;
}

/* Ocultar botón de vista rápida */
.yith-wcqv-button {
  display: none !important;
}

/* Precio */
.product-price {
  font-size: 18px;
  font-weight: 700;
  color: #E09E4D;
}

/* Estado del stock */
.wishlist-in-stock {
  display: inline-block;
  padding: 6px 12px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Fecha añadida */
.dateadded {
  display: block;
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
}

/* Botón añadir al carrito */
.add_to_cart_button {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #E09E4D 0%, #d88d3a 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(224, 158, 77, 0.3);
}

.add_to_cart_button:hover {
  background: linear-gradient(135deg, #d88d3a 0%, #E09E4D 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(224, 158, 77, 0.4);
}

/* Botón eliminar */
.remove_from_wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #fff5f0;
  color: #1C1C1C;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  transition: all 0.3s ease;
  margin: 0 auto;
}

.remove_from_wishlist:hover {
  background: #1C1C1C;
  color: #E09E4D;
  transform: rotate(90deg);
}

.wishlist-title-container {
  margin-bottom: 30px;
  padding: 24px;
  background: linear-gradient(135deg, #1C1C1C 0%, #2a2a2a 100%);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(28, 28, 28, 0.15);
}

.wishlist-title-with-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Título h2 */
.wishlist-title h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #E09E4D;
  letter-spacing: -0.5px;
}

/* Párrafo contenedor del botón */
.wishlist-title p {
  margin: 0;
}

/* Botón editar título */
.show-title-form {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(224, 158, 77, 0.1);
  border: 1px solid #E09E4D;
  border-radius: 8px;
  color: #E09E4D;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.show-title-form:hover {
  background: #E09E4D;
  color: #1C1C1C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 158, 77, 0.3);
}

/* Ocultar breaks dentro del botón */
.show-title-form br {
  display: none;
}

/* Iconos SVG */
.yith-wcwl-icon-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.show-title-form:hover .yith-wcwl-icon-svg {
  transform: rotate(-10deg);
}

/* Formulario oculto de edición */
.hidden-title-form {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(224, 158, 77, 0.2);
}

.hidden-title-form.show {
  display: flex;
}

/* Input de edición */
.hidden-title-form input[type="text"] {
  flex: 1;
  padding: 12px 16px;
  background: #fff;
  border: 2px solid #E09E4D;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #1C1C1C;
  outline: none;
  transition: all 0.3s ease;
}

.hidden-title-form input[type="text"]:focus {
  border-color: #d88d3a;
  box-shadow: 0 0 0 4px rgba(224, 158, 77, 0.1);
}

/* Botones de edición */
.edit-title-buttons {
  display: flex;
  gap: 8px;
}

.hide-title-form,
.save-title-form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Botón cancelar (X) */
.hide-title-form {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hide-title-form:hover {
  background: #fff;
  color: #1C1C1C;
  transform: rotate(90deg);
}

/* Botón guardar (Check) */
.save-title-form {
  background: #E09E4D;
  border: 1px solid #E09E4D;
  color: #1C1C1C;
}

.save-title-form:hover {
  background: #d88d3a;
  border-color: #d88d3a;
  transform: scale(1.1);
}

.edit-title-buttons .yith-wcwl-icon-svg {
  width: 20px;
  height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .wishlist-title-container {
    padding: 20px 16px;
  }

  .wishlist-title-with-form {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .wishlist-title h2 {
    font-size: 22px;
  }

  .show-title-form {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
  }

  .hidden-title-form {
    flex-wrap: wrap;
  }

  .hidden-title-form input[type="text"] {
    width: 100%;
  }

  .edit-title-buttons {
    width: 100%;
    justify-content: flex-end;
  }
}

/* Animación suave al mostrar/ocultar */
.hidden-title-form {
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botón editar título */
.show-title-form {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(224, 158, 77, 0.1);
  border: 1px solid #E09E4D;
  border-radius: 8px;
  color: #E09E4D !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  visibility: visible !important;
}

.show-title-form:hover {
  background: #E09E4D;
  color: #1C1C1C !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224, 158, 77, 0.3);
}

/* Ocultar breaks dentro del botón */
.show-title-form br {
  display: none !important;
}

/* Icono SVG dentro del botón */
.show-title-form .yith-wcwl-icon-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.show-title-form:hover .yith-wcwl-icon-svg {
  transform: rotate(-10deg);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .show-title-form {
    width: 100%;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
  }
}

/* Ocultar elementos duplicados y malformados de WhatsApp */
.share-button .whatsapp p,
.share-button p {
  display: none !important;
}

.share-button rect {
  display: none !important;
}

/* Asegurar que solo se muestre un botón por red social */
.share-button a + p {
  display: none !important;
}

.share-button a + p a {
  display: none !important;
}

/* Limpiar breaks innecesarios dentro de los enlaces */
.share-button a br {
  display: none;
}

/* Contenedor de compartir */
.yith-wcwl-share {
  margin-top: 30px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Título de compartir */
.yith-wcwl-share-title {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Lista de botones */
.yith-wcwl-share ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.yith-wcwl-share ul li {
  margin: 0;
  padding: 0;
}

/* Botones de compartir - solo el primer enlace */
.share-button > a:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.share-button > a:first-of-type::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.share-button > a:first-of-type:hover::before {
  opacity: 1;
}

.share-button > a:first-of-type:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Iconos SVG */
.share-button .yith-wcwl-icon-svg {
  width: 20px;
  height: 20px;
  position: relative;
  z-index: 1;
}

/* Facebook */
.share-button .facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
  color: #fff;
}

.share-button .facebook:hover {
  background: linear-gradient(135deg, #0c63d4 0%, #1877f2 100%);
}

/* Twitter (X) */
.share-button .twitter {
  background: linear-gradient(135deg, #000000 0%, #1C1C1C 100%);
  color: #fff;
}

.share-button .twitter:hover {
  background: linear-gradient(135deg, #1C1C1C 0%, #000000 100%);
}

/* Pinterest */
.share-button .pinterest {
  background: linear-gradient(135deg, #e60023 0%, #c50020 100%);
  color: #fff;
}

.share-button .pinterest:hover {
  background: linear-gradient(135deg, #c50020 0%, #e60023 100%);
}

/* Email */
.share-button .email {
  background: linear-gradient(135deg, #E09E4D 0%, #d88d3a 100%);
  color: #fff;
}

.share-button .email:hover {
  background: linear-gradient(135deg, #d88d3a 0%, #E09E4D 100%);
}

/* WhatsApp */
.share-button .whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
  color: #fff;
}

.share-button .whatsapp:hover {
  background: linear-gradient(135deg, #1ebe57 0%, #25d366 100%);
}

/* Tooltips al hover */
.share-button > a:first-of-type::after {
  content: attr(title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: #1C1C1C;
  color: #E09E4D;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.share-button > a:first-of-type:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .yith-wcwl-share {
    padding: 20px;
  }

  .yith-wcwl-share-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .yith-wcwl-share ul {
    justify-content: center;
  }

  .share-button > a:first-of-type {
    width: 44px;
    height: 44px;
  }

  .share-button .yith-wcwl-icon-svg {
    width: 18px;
    height: 18px;
  }

  /* Ocultar tooltips en móvil */
  .share-button > a:first-of-type::after {
    display: none;
  }
}

/* Animación de entrada */
.share-button {
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.share-button:nth-child(1) { animation-delay: 0.1s; }
.share-button:nth-child(2) { animation-delay: 0.2s; }
.share-button:nth-child(3) { animation-delay: 0.3s; }
.share-button:nth-child(4) { animation-delay: 0.4s; }
.share-button:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */