:root{--cart-drawer-width: 420px;--cart-drawer-bg: #ffffff;--cart-drawer-text: #333333;--cart-drawer-border: #e5e5e5;--cart-drawer-primary: #000000;--cart-drawer-success: #4CAF50;--cart-drawer-radius: 4px}.cart-drawer{position:fixed;top:0;right:0;bottom:0;left:0;z-index:9999;pointer-events:none;display:flex;justify-content:flex-end}.cart-drawer__overlay{position:absolute;top:0;right:0;bottom:0;left:0;background:#00000080;opacity:0;transition:opacity .3s cubic-bezier(.25,.46,.45,.94)}.cart-drawer__container{position:relative;width:100%;max-width:var(--cart-drawer-width);height:100%;background:var(--cart-drawer-bg);transform:translate(100%);transition:transform .3s cubic-bezier(.25,.46,.45,.94);display:flex;flex-direction:column;box-shadow:-10px 0 40px #00000026}.cart-drawer--active{pointer-events:auto}.cart-drawer--active .cart-drawer__overlay{opacity:1}.cart-drawer--active .cart-drawer__container{transform:translate(0)}.cart-drawer__header{display:flex;align-items:center;justify-content:space-between;padding:20px 25px;border-bottom:1px solid var(--cart-drawer-border);background:var(--cart-drawer-bg);position:sticky;top:0;z-index:10}.cart-drawer__title{font-size:18px;font-weight:600;margin:0;letter-spacing:.5px;text-transform:uppercase;color:var(--cart-drawer-text)}.cart-drawer__close{background:none;border:none;cursor:pointer;padding:10px;margin:-10px -10px -10px 0;display:flex;align-items:center;justify-content:center;color:#666;transition:color .2s}.cart-drawer__close:hover{color:#000}.cart-drawer__items{flex:1;overflow-y:auto;overflow-x:hidden;position:relative;-webkit-overflow-scrolling:touch}.cart-drawer__content{padding-bottom:20px}.cart-item{display:flex;padding:20px 25px;gap:15px;border-bottom:1px solid #f0f0f0;position:relative}.cart-item:last-child{border-bottom:none}.cart-item__image{width:90px;height:90px;object-fit:cover;border-radius:var(--cart-drawer-radius);flex-shrink:0}.cart-item__details{flex:1;display:flex;flex-direction:column;min-width:0}.cart-item__title{font-size:15px;font-weight:500;margin:0 0 6px;color:var(--cart-drawer-text);text-decoration:none;line-height:1.3;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.cart-item__title:hover{text-decoration:underline}.cart-item__variants{font-size:13px;color:#666;margin:0 0 10px;line-height:1.4}.cart-item__bottom{display:flex;justify-content:space-between;align-items:center;margin-top:auto}.cart-item__quantity{display:flex;align-items:center;border:1px solid var(--cart-drawer-border);border-radius:var(--cart-drawer-radius);overflow:hidden}.cart-item__quantity-btn{width:34px;height:34px;border:none;background:transparent;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background-color .2s;font-size:18px;color:#666}.cart-item__quantity-btn:hover{background-color:#f5f5f5}.cart-item__quantity-btn:disabled{opacity:.3;cursor:not-allowed}.cart-item__quantity-value{font-size:14px;font-weight:500;min-width:40px;text-align:center;border-left:1px solid var(--cart-drawer-border);border-right:1px solid var(--cart-drawer-border);padding:0 5px;line-height:34px}.cart-item__price{font-size:15px;font-weight:600;color:var(--cart-drawer-text)}.cart-item__remove{position:absolute;top:15px;right:25px;font-size:11px;color:#999;background:none;border:none;cursor:pointer;padding:5px;text-transform:uppercase;letter-spacing:.5px;transition:color .2s}.cart-item__remove:hover{color:#f44}.cart-drawer__upsell{padding:20px 25px;background:#f9f9f9;border-top:1px solid var(--cart-drawer-border)}.cart-drawer__upsell-title{font-size:14px;font-weight:600;margin:0 0 15px;text-transform:uppercase;letter-spacing:.5px}.cart-drawer__upsell-products{display:flex;gap:15px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:5px}.upsell-product{flex-shrink:0;width:120px;text-align:center;cursor:pointer}.upsell-product__image{width:100%;height:120px;object-fit:cover;border-radius:var(--cart-drawer-radius);margin-bottom:8px}.upsell-product__title{font-size:12px;line-height:1.3;margin-bottom:5px;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical}.upsell-product__price{font-size:14px;font-weight:600}.upsell-product__add{width:100%;padding:8px;margin-top:8px;background:var(--cart-drawer-primary);color:#fff;border:none;border-radius:var(--cart-drawer-radius);font-size:12px;cursor:pointer;transition:opacity .2s}.upsell-product__add:hover{opacity:.8}.cart-drawer__shipping-info{display:flex;align-items:center;gap:10px;padding:15px 25px;background:#f0fdf4;color:var(--cart-drawer-success);font-size:14px;font-weight:500}.shipping-icon{flex-shrink:0}.cart-drawer__footer{padding:20px 25px 25px;border-top:2px solid var(--cart-drawer-border);background:var(--cart-drawer-bg)}.cart-drawer__summary{margin-bottom:20px}.cart-drawer__summary-row{display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;font-size:15px}.cart-drawer__summary-row:first-child{font-weight:600;font-size:16px}.cart-drawer__shipping{font-size:13px;color:#666}.cart-drawer__shipping-price{font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:#999}.cart-drawer__checkout{width:100%;padding:18px;background:var(--cart-drawer-primary);color:#fff;border:none;border-radius:var(--cart-drawer-radius);font-size:16px;font-weight:600;cursor:pointer;transition:all .2s;text-transform:uppercase;letter-spacing:1px}.cart-drawer__checkout:hover:not(:disabled){background:#333;transform:translateY(-1px);box-shadow:0 5px 15px #0003}.cart-drawer__checkout:disabled{opacity:.5;cursor:not-allowed}.cart-drawer__empty{padding:80px 40px;text-align:center}.cart-drawer__empty-icon{width:80px;height:80px;margin:0 auto 20px;opacity:.2}.cart-drawer__empty-text{font-size:16px;color:#666;margin-bottom:24px}.cart-drawer__empty .btn{padding:12px 32px;background:var(--cart-drawer-primary);color:#fff;text-decoration:none;border-radius:var(--cart-drawer-radius);display:inline-block;font-weight:500;transition:all .2s}.cart-drawer__empty .btn:hover{background:#333;transform:translateY(-1px)}.cart-drawer__loading{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:none}.cart-drawer--loading .cart-drawer__content{opacity:.3}.cart-drawer--loading .cart-drawer__loading{display:block}.spinner{width:40px;height:40px;border:3px solid #f3f3f3;border-top:3px solid var(--cart-drawer-primary);border-radius:50%;animation:spin .8s linear infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@media (max-width: 480px){.cart-drawer__container{max-width:100%}.cart-drawer__header{padding:18px 20px}.cart-item{padding:16px 20px}.cart-item__image{width:70px;height:70px}.cart-item__title{font-size:14px}.cart-drawer__footer{padding:18px 20px}}@keyframes slideIn{0%{opacity:0;transform:translate(20px)}to{opacity:1;transform:translate(0)}}.cart-item{animation:slideIn .3s ease-out}.cart-drawer__free-shipping{padding:16px 25px;background:#f8f8f8;transition:background-color .3s;border-bottom:1px solid #e5e5e5}.free-shipping-bar{width:100%;height:6px;background:#e0e0e0;border-radius:3px;overflow:hidden;margin-bottom:10px}.free-shipping-bar__progress{height:100%;background:#333;width:0%;transition:width .3s ease,background-color .3s ease;border-radius:3px}.free-shipping-bar__text{font-size:13px;text-align:center;margin:0}.free-shipping-bar__message{font-weight:500;transition:color .3s}@media (max-width: 480px){.cart-drawer__container{max-width:100%;width:100vw}.cart-drawer__header{padding:16px 20px;position:sticky;top:0;background:#fff;z-index:100;box-shadow:0 2px 4px #0000001a}.cart-drawer__title{font-size:16px;font-weight:600}.cart-drawer__items{max-height:calc(100vh - 380px);overflow-y:auto;-webkit-overflow-scrolling:touch}.cart-item{padding:16px;gap:12px}.cart-item__image{width:65px;height:65px}.cart-item__title{font-size:14px;-webkit-line-clamp:2}.cart-item__remove{font-size:11px;top:10px;right:16px}.cart-drawer__upsell{padding:16px;background:#fafafa}.cart-drawer__upsell-title{font-size:12px;margin-bottom:12px;text-align:center;text-transform:uppercase;letter-spacing:.5px}.cart-drawer__upsell-products{display:flex;gap:10px;overflow-x:auto;-webkit-overflow-scrolling:touch;padding-bottom:5px;scrollbar-width:none;-ms-overflow-style:none}.cart-drawer__upsell-products::-webkit-scrollbar{display:none}.cart-drawer__upsell{position:relative}.cart-drawer__upsell:after{content:"";position:absolute;right:16px;top:40px;bottom:16px;width:20px;background:linear-gradient(to right,transparent,#fafafa);pointer-events:none;z-index:10}.upsell-product{flex:0 0 90px;width:90px}.upsell-product__image{width:90px;height:90px;border-radius:8px;margin-bottom:6px}.upsell-product__title{font-size:11px;line-height:1.3;margin-bottom:4px;height:28px}.upsell-product__price{font-size:13px;font-weight:600}.upsell-product__add{padding:6px 10px;font-size:11px;margin-top:6px}.cart-drawer__footer{position:sticky;bottom:0;padding:16px;background:#fff;box-shadow:0 -4px 12px #00000014;z-index:100}.cart-drawer__free-shipping{padding:12px 16px;position:sticky;top:60px;z-index:99;background:#fff}.free-shipping-bar{height:5px}.free-shipping-bar__text{font-size:12px}.cart-drawer__checkout{padding:16px;font-size:14px;font-weight:600}}@supports (padding-top: env(safe-area-inset-top)){.cart-drawer__header{padding-top:max(16px,env(safe-area-inset-top))}.cart-drawer__footer{padding-bottom:max(16px,env(safe-area-inset-bottom))}}@media (max-width: 480px){.cart-item__quantity-btn,.upsell-product__add,.cart-drawer__close{-webkit-tap-highlight-color:transparent;touch-action:manipulation;min-height:44px;min-width:44px}}.cart-drawer__promo-info{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 0;font-size:13px;color:#666;border-top:1px solid #f0f0f0;margin:12px 0}.cart-drawer__promo-info svg{width:16px;height:16px;opacity:.7}.cart-drawer__summary{margin-bottom:0}.cart-drawer__summary-row{font-size:16px;font-weight:600;margin-bottom:0}@media (max-width: 480px){.cart-drawer__promo-info{font-size:12px;padding:10px 0;margin:10px 0}.cart-drawer__promo-info svg{width:14px;height:14px}}.cart-drawer__upsell{padding:12px 16px;background:#fafafa;border-top:1px solid #e5e5e5}.cart-drawer__upsell-title{font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:#666;margin-bottom:8px}.upsell-product{width:70px}.upsell-product__image{width:70px;height:70px;margin-bottom:4px}.upsell-product__title{display:none}.upsell-product__price{font-size:12px;font-weight:600;margin-bottom:4px}.upsell-product__add{padding:4px 8px;font-size:10px}
/*# sourceMappingURL=/cdn/shop/t/5/assets/cart-drawer.css.map */
