/* Desktop Layout - Push Menu Effect */

/* Hide floating button on desktop (panel is always open) */
#mcf-floating-button {
    display: none !important;
}

/* Body adjustment when cart is open */
body.mcf-cart-open {
    margin-right: var(--mcf-width);
    transition: margin-right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#mcf-side-panel {
    right: 0;
    /* Always visible on desktop */
    width: var(--mcf-width);
}

/* No overlay on desktop */
#mcf-overlay {
    display: none !important;
}