
/**
 * MELOOPETS - CART EMPTY STYLES
 *
 * RESPONSABILIDAD:
 * - Estilos exclusivos para el estado de carrito vacío.
 * - Diseño motivador, limpio y centrado en la acción.
 * - Adaptado a la línea visual Meloopets (colores, botones, tipografía).
 *
 * NAMESPACE: .meloopets-cart-empty
 *
 * @version 1.0.0
 */

.meloopets-cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 32px 16px;
    margin: 32px auto;
    max-width: 1700px;
}

.meloopets-cart-empty .cart-empty-message {
    text-align: center;
    margin-bottom: 32px;
}
.meloopets-cart-empty .cart-empty-message h2 {
    color: var(--meloopets-card-orange, #f26722);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.meloopets-cart-empty .cart-empty-message p {
    color: var(--meloopets-cart-text, #6c757d);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.meloopets-cart-empty .cart-empty-cta-group {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}
.meloopets-cart-empty .meloopets-btn {
    display: inline-block;
    padding: 0.85em 2.2em;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1em;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px 0 rgba(242, 103, 34, 0.08);
    margin: 0 8px 8px 0;
    cursor: pointer;
}
.meloopets-cart-empty .meloopets-btn-primary {
    background: var(--meloopets-card-orange, #f26722);
    color: #fff;
    border: none;
}
.meloopets-cart-empty .meloopets-btn-primary:hover {
    background: #e55a1f;
    color: #fff;
}
.meloopets-cart-empty .meloopets-btn-outline {
    background: transparent;
    color: var(--meloopets-card-orange, #f26722);
    border: 2px solid var(--meloopets-card-orange, #f26722);
}
.meloopets-cart-empty .meloopets-btn-outline:hover {
    background: rgba(242, 103, 34, 0.08);
    color: #e55a1f;
    border-color: #e55a1f;
}

.meloopets-cart-empty .cart-empty-categories {
    margin-bottom: 36px;
    text-align: center;
}
.meloopets-cart-empty .cart-empty-categories h3 {
    color: var(--meloopets-card-orange, #f26722);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 18px 0 10px 0;
}
.meloopets-cart-empty .category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.meloopets-cart-empty .cart-empty-recommended {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.meloopets-cart-empty .cart-empty-recommended h3 {
    color: var(--meloopets-card-orange, #f26722);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}
.meloopets-cart-empty .products {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.meloopets-cart-empty .products .product {
    flex: 1 1 180px;
    max-width: 210px;
    min-width: 160px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 6px 0 rgba(242, 103, 34, 0.06);
    padding: 16px 10px 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.meloopets-cart-empty .products .product:hover {
    box-shadow: 0 4px 18px 0 rgba(242, 103, 34, 0.13);
}
