.elementor-368 .elementor-element.elementor-element-f217491{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}.elementor-368 .elementor-element.elementor-element-8a7a61e{--display:flex;--padding-top:50px;--padding-bottom:50px;--padding-left:34px;--padding-right:34px;}.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-368 .elementor-element.elementor-element-4f765cb .elementor-heading-title{font-family:"Roboto", Sans-serif;font-weight:600;}.elementor-widget-loop-grid .elementor-pagination{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-loop-grid .elementor-button{font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );background-color:var( --e-global-color-accent );}.elementor-widget-loop-grid .e-load-more-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-368 .elementor-element.elementor-element-36ebdf2{--grid-columns:4;}.elementor-368 .elementor-element.elementor-element-4cff1d2c{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-368 .elementor-element.elementor-element-36ebdf2{--grid-columns:2;}}@media(min-width:768px){.elementor-368 .elementor-element.elementor-element-8a7a61e{--width:80%;}}@media(max-width:767px){.elementor-368 .elementor-element.elementor-element-8a7a61e{--padding-top:41px;--padding-bottom:40px;--padding-left:0px;--padding-right:0px;}.elementor-368 .elementor-element.elementor-element-4f765cb{text-align:center;}.elementor-368 .elementor-element.elementor-element-4f765cb .elementor-heading-title{font-size:21px;}.elementor-368 .elementor-element.elementor-element-36ebdf2{--grid-columns:1;}}/* Start custom CSS *//* ==========================================================================
   ESTILOS PARA LA TABLA DE LISTA DE DESEOS (YITH WISHLIST)
   ========================================================================== */

/* Contenedor Principal y Fuente */
.page-content, 
.yith-wcwl-form {
    font-family: 'Helvetica', 'Arial', sans-serif;
    color: #333333;
}

/* Título de la Lista de Deseos */
.wishlist-title-container {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.show-title-form {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.yith-wcwl-icon-svg {
    width: 16px;
    height: 16px;
}

/* Estructura General de la Tabla */
table.wishlist_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Encabezados (Thead) */
table.wishlist_table thead {
    background-color: #f9f9f9;
}

table.wishlist_table th {
    padding: 14px 16px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    color: #555555;
    border-bottom: 2px solid #e5e5e5;
    text-align: left;
}

/* Filas y Celdas del Cuerpo (Tbody) */
table.wishlist_table tbody tr {
    transition: background-color 0.2s ease;
}

table.wishlist_table tbody tr:hover {
    background-color: #fcfcfc;
}

table.wishlist_table td {
    padding: 16px;
    border-bottom: 1px solid #eeeeee;
    vertical-align: middle;
    font-size: 15px;
}

/* Eliminar borde de la última fila */
table.wishlist_table tbody tr:last-child td {
    border-bottom: none;
}

/* Miniatura del Producto */
.product-thumbnail img {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    max-width: 80px;
    height: auto;
    display: block;
}

/* Nombre del Producto */
.product-name a {
    color: #111111;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-name a:hover {
    color: #000000;
}

/* Precios */
.product-price .woocommerce-Price-amount {
    font-weight: 700;
    color: #111111;
}

.product-price del .woocommerce-Price-amount {
    color: #aaa;
    font-weight: normal;
    text-decoration: line-through;
    font-size: 13px;
    margin-right: 5px;
}

.product-price ins {
    text-decoration: none;
}

.product-price ins .woocommerce-Price-amount {
    color: #111111;
    text-decoration: underline; /* Mantiene la estética de tu captura */
}

/* Estado de Inventario */
.wishlist-in-stock {
    color: #2e7d32; /* Verde suave de éxito */
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}
.wishlist-in-stock::before {
    content: "•";
    margin-right: 6px;
    font-size: 18px;
}

/* Botón de Añadir al Carrito (Estilo Amarillo de tu web) */
.product-add-to-cart .add_to_cart_button {
    background-color: #ffd700 !important; /* Ajusta este amarillo al de tus carritos */
    color: #111111 !important;
    padding: 10px 20px;
    border-radius: 20px; /* Bordes redondeados modernos */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s ease, transform 0.1s ease;
    border: none;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-add-to-cart .add_to_cart_button:hover {
    background-color: #fccd11 !important;
    transform: translateY(-1px);
}

/* Fecha debajo del botón */
.product-add-to-cart .dateadded {
    display: block;
    font-size: 11px;
    color: #888888;
    margin-bottom: 8px;
}

/* Botón Eliminar (La 'X' y el botón de texto) */
.product-remove a.remove {
    color: #bbb !important;
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.product-remove a.remove:hover {
    background-color: #ffebeb;
    color: #d32f2f !important;
}

/* El segundo botón "Quitar" alternativo (oculto en escritorio si ya está la X, o estilizado simple) */
.product-add-to-cart .remove_from_wishlist.button {
    background: none !important;
    border: none;
    color: #999 !important;
    font-size: 12px;
    text-decoration: underline;
    margin-left: 10px;
    padding: 0;
    box-shadow: none;
    text-transform: none;
}
.product-add-to-cart .remove_from_wishlist.button:hover {
    color: #d32f2f !important;
}

/* ==========================================================================
   OPTIMIZACIÓN RESPONSIVA PARA MÓVILES
   ========================================================================== */
@media screen and (max-width: 768px) {
    table.wishlist_table, 
    table.wishlist_table thead, 
    table.wishlist_table tbody, 
    table.wishlist_table th, 
    table.wishlist_table td, 
    table.wishlist_table tr { 
        display: block; 
    }
    
    table.wishlist_table thead {
        display: none; /* Oculta encabezados en móvil */
    }
    
    table.wishlist_table tr {
        border-bottom: 1px solid #e5e5e5;
        padding: 15px 10px;
        position: relative;
    }
    
    table.wishlist_table td {
        border: none;
        padding: 6px 0 6px 45%;
        position: relative;
        text-align: right;
    }
    
    table.wishlist_table td:before {
        content: attr(data-title);
        position: absolute;
        left: 0;
        width: 40%;
        text-align: left;
        font-weight: 700;
        font-size: 13px;
        color: #666;
    }
    
    /* Excepciones de alineación en móvil */
    table.wishlist_table td.product-remove {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 0;
        width: auto;
    }
    table.wishlist_table td.product-remove:before { content: ""; }

    table.wishlist_table td.product-thumbnail {
        text-align: center;
        padding-left: 0;
    }
    table.wishlist_table td.product-thumbnail:before { content: ""; }
    table.wishlist_table td.product-thumbnail img { margin: 0 auto; }
    
    table.wishlist_table td.product-add-to-cart {
        text-align: center;
        padding-left: 0;
    }
    table.wishlist_table td.product-add-to-cart:before { content: ""; }
}/* End custom CSS */