/* Contenedor principal */
.mmc-custom-cart-wrapper {
    position: relative;
    display: inline-block;
}

/* Icono y Contador */
.mmc-cart-trigger {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    position: relative;
}

.mmc-cart-count {
    background-color: #0B2572; /* Tu color azul */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -5px;
    right: -10px;
}

/* Panel Lateral (Oculto por defecto) */
.mmc-cart-side-panel {
    position: fixed;
    top: 0;
    right: -400px; /* Escondido fuera de la pantalla */
    width: 350px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999999;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Panel Abierto */
.mmc-cart-side-panel.open {
    right: 0;
}

/* Cabecera del panel */
.mmc-cart-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.mmc-cart-panel-header h3 {
    margin: 0;
    font-size: 18px;
    color: #0B2572;
}

.mmc-cart-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

/* Contenido del Carrito (Nativo de Woo) */
.mmc-cart-panel-content {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Fondo oscuro (Overlay) */
.mmc-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    display: none; /* Oculto por defecto */
}