/* Widget contenedor: Debe existir pero no estorbar */
.desktop-cart-widget {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    /* Ancho cero para que no bloquee clics */
    z-index: 10000;
    pointer-events: none;
    /* Deja pasar clics a lo de atrás */
}

/* Panel lateral (Sidebar): Oculto a la derecha por defecto */
.desktop-cart-panel {
    position: fixed;
    top: 0;
    right: -450px;
    /* Escondido fuera de la pantalla */
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    pointer-events: all;
    /* El panel SÍ debe recibir clics */
}

/* Clase activa: Muestra el panel */
.desktop-cart-widget.active .desktop-cart-panel {
    right: 0;
}

/* Overlay oscuro de fondo */
.desktop-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10001;
    pointer-events: all;
    /* El overlay recibe clics para cerrar */
}

.desktop-cart-widget.active .desktop-cart-overlay {
    opacity: 1;
    visibility: visible;
}

/* Header del carrito */
.desktop-cart-header {
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-title-section i {
    font-size: 1.5rem;
}

.cart-title-section h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.desktop-cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-cart-close:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Items y Resumen */
.desktop-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: #f8f9fa;
}

.desktop-cart-summary {
    padding: 1.5rem;
    background: white;
    border-top: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-row.total {
    font-weight: bold;
    font-size: 1.1rem;
    color: #333;
}

/* Botones de acción */
.desktop-cart-actions {
    padding: 1rem;
    background: white;
    border-top: 1px solid #eee;
}

.btn-checkout {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #25D366;
    color: white;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-checkout:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-checkout:hover:not(:disabled) {
    background: #20b85c;
}

/* Estilos item individual */
.desktop-cart-item {
    display: flex;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #667eea;
    font-weight: bold;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.quantity-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove {
    margin-left: auto;
    color: #ff4444;
    border: none;
    background: none;
    cursor: pointer;
}

/* Responsivo */
@media (max-width: 500px) {
    .desktop-cart-panel {
        width: 100%;
        right: -100%;
    }
}




/* ===== RESET Y BASE ===== */

.desktop-cart-widget {

    position: fixed;

    /* 🔥 CORREGIDO: Anclado a top: 0, no a 50% */

    top: 0;

    right: 0;

    /* 🔥 CORREGIDO: Ocupa toda la altura para centrar el botón */

    height: 100vh;

    /* 🔥 CORREGIDO: No interfiere con clics */

    width: 0;

    pointer-events: none;

    z-index: 10000;

}



/* Botón del Carrito */

.desktop-cart-toggle {

    background: linear-gradient(135deg, #667eea, #764ba2);

    border: none;

    border-radius: 12px 0 0 12px;

    padding: 1.5rem 1rem;

    color: white;

    cursor: pointer;

    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.5rem;

    min-height: 120px;

    writing-mode: vertical-lr;

    text-orientation: mixed;



    /* 🔥 CORREGIDO: Posicionado absolutamente dentro del widget */

    position: absolute;

    top: 50%;

    right: 0;
    /* Se pega al borde derecho del widget (que está en right: 0 de la pantalla) */

    transform: translateY(-50%);

    z-index: 10001;
    /* Encima del panel */

    pointer-events: all;
    /* El botón sí debe ser clickeable */

}



.desktop-cart-toggle:hover {

    /* 🔥 CORREGIDO: Se mantiene el transform original */

    transform: translateY(-50%) translateX(-5px);

    box-shadow: -6px 0 25px rgba(102, 126, 234, 0.4);

    padding-right: 1.2rem;

}



/* 🔥 NUEVO: Oculta el botón cuando el carrito está abierto */

.desktop-cart-widget.active .desktop-cart-toggle {

    transform: translateY(-50%) translateX(100%);

    opacity: 0;

    pointer-events: none;

}



.cart-icon-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    writing-mode: horizontal-tb;

}



.desktop-cart-toggle .ti-shopping-cart {

    font-size: 1.8rem;

    margin-bottom: 0.5rem;

}



.desktop-cart-count {

    position: absolute;

    top: -8px;

    right: -8px;

    background: #ff6b6b;

    color: white;

    border-radius: 50%;

    width: 26px;

    height: 26px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.8rem;

    font-weight: 700;

    border: 3px solid white;

}



.cart-total-amount {

    font-weight: 700;

    font-size: 1.1rem;

    writing-mode: horizontal-tb;

    margin-top: 0.5rem;

}



/* Overlay */

.desktop-cart-overlay {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: rgba(0, 0, 0, 0.5);

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 9998;
    /* Detrás del panel */

    pointer-events: all;
    /* El overlay sí debe ser clickeable */

}



.desktop-cart-widget.active .desktop-cart-overlay {

    opacity: 1;

    visibility: visible;

}



/* Panel del Carrito - CORREGIDO: OCUPA TODA LA ALTURA */

.desktop-cart-panel {

    position: fixed;

    top: 0;

    right: -33.333vw;

    width: 33.333vw;

    height: 100vh !important;
    /* 🔥 CORREGIDO: Ocupa toda la altura */

    background: white;

    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);

    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    z-index: 9999;
    /* Detrás del botón, delante del overlay */

    display: flex;

    flex-direction: column;

    pointer-events: all;
    /* El panel debe ser interactivo */

}



.desktop-cart-widget.active .desktop-cart-panel {

    right: 0;

}



/* Header - PEGADO ARRIBA */

.desktop-cart-header {

    padding: 1.5rem 2rem;

    border-bottom: 1px solid #e9ecef;

    background: linear-gradient(135deg, #667eea, #764ba2);

    color: white;

    flex-shrink: 0;

    /* position: sticky; (No es necesario si el panel es 100vh y el scroll está en los items) */

    top: 0;

    z-index: 10;

}



.cart-title-section {

    display: flex;

    align-items: center;

    gap: 1rem;

}



.cart-title-section .ti-shopping-cart {

    font-size: 1.8rem;

}



.cart-title-section h3 {

    margin: 0;

    font-size: 1.3rem;

    font-weight: 600;

}



.cart-items-count {

    font-size: 0.85rem;

    opacity: 0.9;

    margin-top: 0.25rem;

}



.desktop-cart-close {

    position: absolute;

    top: 1.5rem;

    right: 1.5rem;

    background: rgba(255, 255, 255, 0.2);

    border: none;

    border-radius: 8px;

    color: white;

    width: 35px;

    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

}



.desktop-cart-close:hover {

    background: rgba(255, 255, 255, 0.3);

}



/* Items del Carrito - CONTENIDO SCROLLABLE */

.desktop-cart-items {

    flex: 1;
    /* 🔥 CORREGIDO: Ocupa el espacio restante */

    overflow-y: auto;

    padding: 1.5rem;

    background: #f8f9fa;

    min-height: 0;
    /* IMPORTANTE: Permite que flex funcione correctamente */

}



.desktop-cart-item {

    display: flex;

    gap: 1rem;

    padding: 1.25rem;

    border-radius: 12px;

    background: white;

    margin-bottom: 1rem;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

    border: 1px solid #e9ecef;

}



.cart-item-image {

    width: 70px;

    height: 70px;

    border-radius: 8px;

    object-fit: cover;

    flex-shrink: 0;

    border: 2px solid #f1f3f4;

}



.cart-item-details {

    flex: 1;

    min-width: 0;

}



.cart-item-name {

    font-weight: 600;

    color: #2d3748;

    margin-bottom: 0.5rem;

    font-size: 0.95rem;

    line-height: 1.4;

}



.cart-item-price {

    color: #667eea;

    font-weight: 700;

    font-size: 1rem;

    margin-bottom: 0.75rem;

}



.cart-item-controls {

    display: flex;

    align-items: center;

    gap: 0.75rem;

}



.quantity-btn {

    width: 30px;

    height: 30px;

    border: 2px solid #e2e8f0;

    background: white;

    border-radius: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    font-weight: 600;

}



.quantity-btn:hover {

    background: #667eea;

    color: white;

    border-color: #667eea;

}



.cart-item-quantity {

    font-weight: 700;

    min-width: 35px;

    text-align: center;

    font-size: 1rem;

}



.cart-item-remove {

    margin-left: auto;

    color: #a0aec0;

    cursor: pointer;

    transition: all 0.3s ease;

    padding: 0.5rem;

    border-radius: 6px;

    background: #f8f9fa;

}



.cart-item-remove:hover {

    color: #ff6b6b;

    background: rgba(255, 107, 107, 0.1);

}



/* Estado vacío */

.desktop-empty-cart {

    text-align: center;

    padding: 3rem 2rem;

    color: #a0aec0;

}



.desktop-empty-cart .ti-shopping-cart-off {

    font-size: 3rem;

    margin-bottom: 1rem;

    opacity: 0.5;

}



.desktop-empty-cart h4 {

    margin: 0 0 1rem 0;

    color: #4a5568;

    font-size: 1.2rem;

}



.desktop-empty-cart p {

    margin: 0;

    font-size: 0.95rem;

}



/* Resumen, Cupón y Acciones - PEGADOS ABAJO */

.desktop-cart-summary,

.desktop-coupon-section,

.desktop-cart-actions {

    flex-shrink: 0;
    /* No se encogen */

    background: white;

}



.desktop-cart-summary {

    padding: 1.5rem;

    border-top: 2px solid #e9ecef;

}



.summary-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 0.75rem;

    font-size: 0.95rem;

}



.summary-row.total {

    font-weight: 800;

    font-size: 1.2rem;

    color: #2d3748;

}



.summary-divider {

    height: 1px;

    background: #e9ecef;

    margin: 1rem 0;

}



.desktop-coupon-section {

    padding: 1rem 1.5rem;

    border-top: 1px solid #e9ecef;

}



.coupon-input-group {

    display: flex;

    gap: 0.5rem;

}



.coupon-input {

    flex: 1;

    padding: 0.75rem;

    border: 1px solid #e2e8f0;

    border-radius: 6px;

    font-size: 0.9rem;

}



.coupon-apply-btn {

    padding: 0.75rem 1rem;

    background: #667eea;

    color: white;

    border: none;

    border-radius: 6px;

    cursor: pointer;

    font-size: 0.9rem;

    font-weight: 600;

}



.coupon-message {

    font-size: 0.8rem;

    margin-top: 0.5rem;

    min-height: 1rem;

}



.desktop-cart-actions {

    padding: 1.5rem;

    display: flex;

    flex-direction: column;

    gap: 0.75rem;

    border-top: 1px solid #e9ecef;

}



.btn-continue-shopping,

.btn-checkout {

    padding: 1rem;

    border-radius: 8px;

    font-weight: 600;

    font-size: 1rem;

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    cursor: pointer;

}



.btn-continue-shopping {

    border: 2px solid #667eea;

    background: transparent;

    color: #667eea;

}



.btn-continue-shopping:hover {

    background: #667eea;

    color: white;

}



.btn-checkout {

    background: linear-gradient(135deg, #667eea, #764ba2);

    color: white;

    border: none;

}



.btn-checkout:hover:not(:disabled) {

    transform: translateY(-1px);

}



.btn-checkout:disabled {

    background: #a0aec0;

    cursor: not-allowed;

}



/* Scrollbar */

.desktop-cart-items::-webkit-scrollbar {

    width: 6px;

}



.desktop-cart-items::-webkit-scrollbar-track {

    background: #f1f1f1;

}



.desktop-cart-items::-webkit-scrollbar-thumb {

    background: #c1c1c1;

    border-radius: 3px;

}



/* Responsive */

@media (max-width: 1200px) {
    .desktop-cart-panel {
        width: 400px;
        right: -400px;
    }
}

@media (max-width: 768px) {
    .desktop-cart-widget {
        display: block;
    }

    .desktop-cart-panel {
        width: 100% !important;
        right: -100% !important;
        /* oculto */
    }

    .desktop-cart-widget.active .desktop-cart-panel {
        right: 0 !important;
        /* visible */
    }
}



/* ===== NOTIFICACIONES FLOTANTES ===== */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #25D366;
    z-index: 999999;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 300px;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cart-notification.error {
    border-left-color: #ff4444;
}

.notification-content {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-notification.success .notification-content i {
    color: #25D366;
}

.cart-notification.error .notification-content i {
    color: #ff4444;
}

/* NUEVO */

/**
 * ======================================================
 * ESTILOS DEL SISTEMA DE CARRITO - SOFIAPPS
 * ======================================================
 */

/* ===== NOTIFICACIONES ===== */
.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-left: 4px solid #4CAF50;
    z-index: 100000;
    transform: translateX(150%);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 280px;
    max-width: 380px;
}

.cart-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.cart-notification.error {
    border-left-color: #F44336;
}

.notification-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-content i {
    font-size: 24px;
}

.cart-notification.success i {
    color: #4CAF50;
}

.cart-notification.error i {
    color: #F44336;
}

/* ===== PANEL DESKTOP ===== */
.desktop-cart-widget {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 0;
    pointer-events: none;
    z-index: 10000;
}

.desktop-cart-toggle {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 12px 0 0 12px;
    padding: 20px 12px;
    color: white;
    cursor: pointer;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
    z-index: 10001;
    pointer-events: all;
    min-width: 80px;
}

.desktop-cart-toggle:hover {
    transform: translateY(-50%) translateX(-5px);
    box-shadow: -6px 0 25px rgba(102, 126, 234, 0.4);
}

.cart-icon-wrapper {
    position: relative;
    margin-bottom: 8px;
}

.cart-icon-wrapper i {
    font-size: 28px;
}

.desktop-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.cart-total-amount {
    font-weight: 700;
    font-size: 14px;
    writing-mode: horizontal-tb;
}

.desktop-cart-widget.active .desktop-cart-toggle {
    transform: translateY(-50%) translateX(100%);
    opacity: 0;
    pointer-events: none;
}

.desktop-cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10002;
    display: flex;
    flex-direction: column;
    pointer-events: all;
}

@media (min-width: 1200px) {
    .desktop-cart-panel {
        width: 400px;
        right: -400px;
    }
}

.desktop-cart-widget.active .desktop-cart-panel {
    right: 0;
}

.desktop-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 10001;
    pointer-events: all;
}

.desktop-cart-widget.active .desktop-cart-overlay {
    opacity: 1;
    visibility: visible;
}

/* Header del panel */
.desktop-cart-header {
    padding: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-title-section i {
    font-size: 28px;
}

.cart-title-section h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.cart-items-count {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 4px;
}

.desktop-cart-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 8px;
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.desktop-cart-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Items del carrito */
.desktop-cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    background: #f8f9fa;
}

.desktop-cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.desktop-cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

.cart-item-price {
    color: #667eea;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 15px;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: #667eea;
}

.quantity-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.cart-item-quantity {
    font-weight: 700;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    color: #a0aec0;
    background: #f8f9fa;
    border: none;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cart-item-remove:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

/* Resumen */
.desktop-cart-summary {
    padding: 20px;
    border-top: 2px solid #e9ecef;
    background: white;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.summary-row.total {
    font-weight: 800;
    font-size: 18px;
    color: #333;
}

/* Acciones */
.desktop-cart-actions {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    background: white;
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-checkout:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Estado vacío */
.desktop-empty-cart {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
}

.desktop-empty-cart i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.desktop-empty-cart h4 {
    margin: 0 0 10px 0;
    color: #4a5568;
}

/* Scrollbar personalizada */
.desktop-cart-items::-webkit-scrollbar {
    width: 6px;
}

.desktop-cart-items::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.desktop-cart-items::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-cart-panel {
        width: 100%;
        right: -100%;
    }
}