
/* ========================================
   ORABELLAS WISHLIST - ESTILOS COMPLETOS
   ======================================== */

/* ========================================
   CONTENEDOR PRINCIPAL
   ======================================== */
.ast-container {
    display: flex;
    max-width: 100% !important;
    padding: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .main-wishlist {
        width: 100%;

        .entry-header {
            padding: 25px 100px;
            background: var(--orabellas-bg);
            border-radius: 0px 0px var(--orabellas-radius-lg) var(--orabellas-radius-lg);
            box-shadow: 5px 5px 10px 0px rgba(174, 174, 192, 0.2);

            h1 { 
                font-size: 30px;
                font-weight: 600;
                color: var(--orabellas-text);
                margin: 0px;
            }
        }

        .entry-content {
            form {
                .yith-wcwl-form {
                    padding: 0 100px;
                    margin: 20px auto;

                    /* ========================================
                       GRID DE PRODUCTOS - 2 COLUMNAS
                       ======================================== */
                    .products-list-wishlist {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 15px;
                        padding: 0;
                    }

                    /* ========================================
                       PRODUCT CARDS (heredado de .product-card en cart.css)
                       ======================================== */
                    .product-card.wishlist-card {
                        max-width: 100%;
                        width: 100%;
                        box-sizing: border-box;
                    }

                    /* ========================================
                       SEGUIR COMPRANDO
                       ======================================== */
                    .continue-shopping-wrapper {
                        margin-top: 20px;
                        padding-top: 15px; 
                    }

                    .continue-shopping-btn {
                        color: var(--orabellas-text-secondary);
                        text-decoration: none;
                        font-size: 14px;
                        font-weight: 500;
                        transition: color 0.3s;
                    }

                    .continue-shopping-btn:hover {
                        color: var(--orabellas-primary);
                    }

                    /* ========================================
                       ESTADO VACÍO
                       ======================================== */
                    .wishlist-grid-container {
                        display: flex;
                        flex-direction: row;
                        align-items: center;
                        justify-content: center;
                        gap: 20px;
                        min-height: 60vh;

                        .wishlist-empty-message, .wishlist-empty-message-2 {
                            display: flex;
                            height: fit-content;
                            width: fit-content;
                            padding: 20px;
                            border: 1px solid var(--orabellas-white);
                            background: var(--orabellas-bg);
                            flex-direction: column;
                            align-items: center;
                            justify-content: center;
                            border-radius: var(--orabellas-radius-lg);
                            box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(174, 174, 192, 0.2) !important;
                        }
                        
                        .wishlist-empty-message p {
                            font-size: 16px;
                            font-weight: 700;
                            line-height: 25px;
                            color: var(--orabellas-text);
                        }
                        
                        .wishlist-empty-message-2 {

                            h2 {
                                font-size: 50px;
                                font-weight: 400;
                                text-transform: uppercase;
                                line-height: 60px;
                                color: var(--orabellas-primary);
                                margin: 0px;
                            }

                            p, ul {
                                margin: 0px;
                                font-size: 14px;
                                font-weight: 400;
                                line-height: 20px;
                                color: var(--orabellas-text-muted);
                                padding: 0px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.wishlist-title  {
    display: none;
} 

.icon-heart {
    background-image: url(../iconos/Heart\ Angle.svg);
    display: flex;
    width: 100px;
    height: 100px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .entry-header {
        padding: 20px !important; 
    }
    .ast-container .main-wishlist .entry-content form .yith-wcwl-form {
        padding: 0 20px;
    }
    .wishlist-grid-container {
        padding: 20px; 
    }
}

@media (max-width: 768px) {
    .ast-container .main-wishlist .entry-content form .yith-wcwl-form .products-list-wishlist {
        grid-template-columns: 1fr;
    }
    .wishlist-grid-container { 
        flex-direction: column !important;
    }
    .wishlist-empty-message-2 h2 { 
        font-size: 40px; 
    }
    .product-card {
        max-width: 100%;
    }
}
