
/* =========================================
   PRIMARY COLOR
========================================= */
:root{
    --primary-color:#ee0000;
}


/* =========================================
   BOTTOM BAR
========================================= */
#ucBar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:rgba(20,20,20,.95);
    backdrop-filter:blur(14px);
    box-shadow:0 -6px 30px rgba(0,0,0,.4);
    z-index:9998;
    font-family:Inter,Arial,sans-serif;
}

.uc-wrap{
    max-width:1300px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    gap:20px;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
}

.uc-text h3{
    color:#fff;
    margin:0 0 4px;
    font-size:16px;
}

.uc-text p{
    color:#bbb;
    font-size:13px;
    max-width:620px;
}


/* =========================================
   BUTTONS
========================================= */
.uc-actions{
    display:flex;
    gap:10px;
}

.uc-btn{
    padding:8px 14px;
    font-size:12px;
    border-radius:10px;
    border:none;
    cursor:pointer;
    font-weight:600;
    transition:.25s;
}

.uc-btn.primary{
    background:var(--primary-color) !important;
    color:#fff;
}

.uc-btn.primary:hover{
    box-shadow:0 4px 18px rgba(238,0,0,.45);
    transform:translateY(-1px);
}

.uc-btn.ghost{
    background:transparent;
    border:1px solid #555;
    color:#ddd;
}

.uc-btn.dark{
    background:#2a2a2a;
    color:#fff;
}


/* =========================================
   OVERLAY
========================================= */
#ucOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.65);
    backdrop-filter:blur(6px);
    display:none;
    align-items:flex-end;
    z-index:9911199;
}

.uc-panel{
    width:100%;
    background:#111;
    padding:26px;
    border-radius:18px 18px 0 0;
    animation:ucSlide .45s ease;
}

@keyframes ucSlide{
    from{
        transform:translateY(100%);
    }
    to{
        transform:translateY(0);
    }
}

.uc-panel-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
}

.uc-panel-head h3{
    color:#fff;
    margin:0;
}

.uc-panel-head button{
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}


/* =========================================
   CATEGORY
========================================= */
.uc-cat{
    padding:14px 0;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.uc-row{
    display:flex;
    gap:12px;
    align-items:center;
}

.uc-cat strong{
    color:#fff;
}
.uc-cat small{
    color:#888;
    font-size:12px;
}

.uc-cat p{
    color:#aaa;
    font-size:13px;
    margin:8px 0 0 52px;
}


/* =========================================
   SWITCH
========================================= */
.uc-switch{
    position:relative;
    width:46px;
    height:24px;
}

.uc-switch input{
    opacity:0;
    width:0;
    height:0;
}

.uc-switch span{
    position:absolute;
    inset:0;
    background:#444;
    border-radius:50px;
}

.uc-switch span:before{
    content:"";
    position:absolute;
    width:18px;
    height:18px;
    left:3px;
    bottom:3px;
    background:#fff;
    border-radius:50%;
    transition:.3s;
}

.uc-switch input:checked + span{
    background:var(--primary-color) !important;
}

#js-searchproduct-item{
    z-index:999999999999999999999999;
}

.uc-switch input:checked + span:before{
    transform:translateX(22px);
}

.uc-panel-actions{
    margin-top:20px;
}
