.wco-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 9998;
}

.wco-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: 0.3s;
    padding: 20px;
    overflow-y: auto;
}

.wco-drawer.open {
    right: 0;
}

.wco-overlay.open {
    opacity: 1;
    visibility: visible;
}

.wco-close {
    font-size: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

.wco-open-cart {
    cursor: pointer;
}

.wco-cart-wrapper {
    position: relative;
    display: inline-block;
}

.wco-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}