/* CS2 Frontend Styles */
#cs2-minicart-root {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    z-index: 999999;
    transition: right 0.3s ease;
}
#cs2-minicart-root.open { right: 0; }

#cs2-minicart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
#cs2-minicart-overlay.open { opacity: 1; visibility: visible; }

body.cs2-minicart-open { overflow: hidden; }
