/** Shopify CDN: Minification failed

Line 431:159 Unexpected "\\n"
Line 431:182 Expected ":"
Line 431:205 Expected ":"
Line 431:221 Expected ":"
Line 431:241 Expected ":"
Line 431:262 Expected ":"
Line 431:287 Expected ":"
Line 431:311 Expected ":"
Line 431:339 Expected ":"
Line 431:370 Expected ":"
... and 11 more hidden warnings

**/
#noven-cart-overlay{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(10px);

    opacity:0;
    pointer-events:none;

    transition:.45s;

    z-index:9998;

}

#noven-cart{

    position:fixed;

    top:0;
    right:0;

    width:520px;
    max-width:min(520px,100vw);

    height:100vh;

    background:#0a0a0a;

    border-left:1px solid rgba(255,255,255,.08);

    transform:translateX(100%);

    transition:
        transform .55s cubic-bezier(.22,.61,.36,1);

    z-index:9999;

    display:flex;
    flex-direction:column;

}

#noven-cart.open{

    transform:translateX(0);

}

#noven-cart-overlay.open{

    opacity:1;
    pointer-events:auto;

}

.noven-cart__header{

    padding:42px;

    border-bottom:1px solid rgba(255,255,255,.06);

    display:flex;
    justify-content:space-between;
    align-items:flex-start;

}

#noven-cart-items{

    flex:1;

    overflow:auto;

    padding:36px;

}

.noven-cart__footer{

    padding:36px;

    border-top:1px solid rgba(255,255,255,.06);

}

.drawer-item{

    display:grid;

    grid-template-columns:90px 1fr auto;

    gap:22px;

    padding:28px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    opacity:0;

    transform:translateY(24px);

    animation:drawerFade .55s forwards;

}

.drawer-item__image{

    width:90px;
    height:90px;

    object-fit:cover;

    background:#111;

}

.drawer-item{

    display:grid;
    grid-template-columns:90px 1fr auto;
    gap:24px;

    padding:28px 0;

    border-bottom:1px solid rgba(255,255,255,.08);

    opacity:0;
    transform:translateY(20px);

    animation:drawerFade .55s forwards;

}

.drawer-item__image{

    width:90px;
    height:90px;

    object-fit:cover;
    background:#111;

}

.drawer-item__content{

    display:flex;
    flex-direction:column;

}

.drawer-item__content h3{

    margin:0;

    color:#fff;

    font-size:18px;
    font-weight:500;
    line-height:1.3;

}

.drawer-item__variant{

    margin-top:6px;
    margin-bottom:20px;

    color:rgba(255,255,255,.55);

    font-size:13px;

}

.drawer-item__bottom{

    display:flex;
    align-items:center;
    gap:18px;

    margin-top:auto;

}

.drawer-item__price{

    color:#fff;

    font-size:18px;
    font-weight:500;

    white-space:nowrap;

}

.drawer-qty{

    display:flex;
    align-items:center;
    justify-content:space-between;

    width:108px;
    height:38px;

    border:1px solid rgba(255,255,255,.15);

}

.drawer-qty button{

    width:34px;
    height:100%;

    border:none;
    background:none;

    color:#fff;

    cursor:pointer;

    font-size:18px;

    transition:.25s;

}

.drawer-qty button:hover{

    background:rgba(255,255,255,.08);

}

.drawer-qty span{

    flex:1;

    text-align:center;

    color:#fff;

    font-size:14px;

}

.drawer-remove{

    border:none;
    background:none;

    padding:0;

    color:rgba(255,255,255,.55);

    cursor:pointer;

    font-size:13px;

    transition:.25s;

}

.drawer-remove:hover{

    color:#fff;

}

@keyframes drawerFade{

    to{

        opacity:1;
        transform:none;

    }

}

.noven-cart__title h2{

    margin:0;

    color:#fff;

    font-size:42px;
    font-weight:500;
    line-height:1;

}

#noven-cart-count{

    display:block;

    margin-top:12px;

    color:rgba(255,255,255,.55);

    font-size:14px;

}

#noven-cart-close{

    border:none;
    background:none;

    color:#fff;

    cursor:pointer;

    font-size:28px;

    line-height:1;

}


.noven-cart__subtotal{

    display:flex;
    justify-content:space-between;

    color:#fff;

    font-size:18px;

    margin-bottom:18px;

}

.noven-cart__footer p{

    color:rgba(255,255,255,.55);

    font-size:13px;

    margin-bottom:30px;

}

.noven-cart__checkout{

    display:flex;
    justify-content:center;
    align-items:center;

    height:54px;

    background:#fff;

    color:#000;

    text-decoration:none;

    font-weight:600;

    margin-bottom:14px;

    transition:.3s;

}

.noven-cart__checkout:hover{

    opacity:.9;

}

.noven-cart__continue{

    width:100%;

    border:none;
    background:none;

    color:#fff;

    cursor:pointer;

    font-size:14px;

}

.drawer-item{
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.drawer-item.drawer-loading{

    opacity:.55;
    pointer-events:none;

}

/* NOVEN V10 cart drawer */
.noven-cart__footer.is-empty{display:none;}
.noven-cart-open{overflow:hidden;}
.drawer-item__image{display:block;aspect-ratio:1/1;}
@media (max-width:768px){
  #noven-cart{width:100vw;max-width:100vw;border-left:0;}
  .noven-cart__header{padding:26px 20px;}
  .noven-cart__title h2{font-size:36px;}
  #noven-cart-items{padding:20px;}
  .noven-cart__footer{padding:22px 20px calc(22px + env(safe-area-inset-bottom));}
  .drawer-item{grid-template-columns:76px minmax(0,1fr);gap:16px;padding:20px 0;}
  .drawer-item__image{width:76px;height:76px;grid-row:1 / span 2;}
  .drawer-item__price{grid-column:2;grid-row:1;justify-self:end;font-size:15px;}
  .drawer-item__bottom{grid-column:2;grid-row:2;gap:12px;margin-top:10px;}
  .drawer-qty{width:96px;height:36px;}
}
\n\n/* NOVEN empty-cart behaviour: the drawer remains fully closable even when\n   Shopify returns an empty cart, and the final removal gets a refined exit. */\n#noven-cart-close {\n  position: relative;\n  z-index: 20;\n  min-width: 44px;\n  min-height: 44px;\n  display: inline-flex;\n  align-items: center;\n  justify-content: center;\n  touch-action: manipulation;\n  -webkit-tap-highlight-color: transparent;\n}\n\n#noven-cart.is-empty-closing {\n  transform: translateX(100%);\n}\n\n#noven-cart-overlay.is-empty-closing {\n  opacity: 0;\n  pointer-events: none;\n}\n\n@media (prefers-reduced-motion: reduce) {\n  #noven-cart,\n  #noven-cart-overlay {\n    transition: none !important;\n  }\n}\n