/**
 * Cart Panel Styles
 * Cart Panel — slide-out cart styles.
 */

:root {
    --nm--page-overlay-background: rgba(51, 51, 51, 0.6);
    --nm--page-overlay-background-50: rgba(51, 51, 51, 0.5);
}

/* Flip helper (used by quantity minus arrow) */
.flip {
    display: inline-block;
    transform: scaleX(-1);
}

/* Page overlay */
.nm-page-overlay {
    visibility: hidden;
    position: fixed;
    top: -1px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    content: " ";
    width: 1px;
    height: 1px;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: var(--nm--page-overlay-background);
}
.nm-page-overlay.show {
    visibility: visible;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.nm-page-overlay.fade-out {
    opacity: 0;
}
.nm-page-overlay.nm-cart-panel-overlay {
    background: var(--nm--page-overlay-background-50);
}
.nm-page-overlay.nm-cart-panel-overlay.nm-loader {
    cursor: default;
}

/* Cart panel holder */
.nm-cart-panel-holder {
    visibility: hidden;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 1px;
    height: 1px;
    z-index: 1020;
    overflow: hidden;
}
.cart-panel-closing .nm-cart-panel-holder,
.cart-panel-open .nm-cart-panel-holder {
    visibility: visible;
    pointer-events: all;
    z-index: 1020;
    width: 100%;
    height: 100%;
}

/* Overlay */
.nm-page-overlay.nm-cart-panel-overlay {
    position: absolute;
}
.cart-panel-closing .nm-page-overlay.nm-cart-panel-overlay,
.cart-panel-open .nm-page-overlay.nm-cart-panel-overlay {
    visibility: visible;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}
.cart-panel-closing .nm-page-overlay.nm-cart-panel-overlay {
    opacity: 0;
}

#nm-cart-panel {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1020;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    width: calc(100% - calc(var(--nm--page-column-spacing, 20px) + 5px));
    max-width: 500px;
    height: 100%;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0);
    -webkit-transition: -webkit-transform 0.25s ease; transition: transform 0.25s ease;
    background: #fff;
}
.touch-orientation-change #nm-cart-panel {
    visibility: hidden;
}
.cart-panel-open #nm-cart-panel {
    -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0);
}

/* Header */
.nm-cart-panel-header {
    position: relative;
    z-index: 106;
    font-size: 16px;
    line-height: 1;
    color: #282828;
    width: 100%;
    padding: 0 37px;
}
.nm-cart-panel-header-inner {
    position: relative;
    height: 79px;
    border-bottom: 1px solid #e3e3e3;
}
.nm-cart-panel-title {
    opacity: 0.5;
}
#nm-cart-panel-close {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #282828;
    padding-top: 32px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}
.nm-cart-panel-close-title {
    margin-left: auto;
}
.nm-cart-panel-close-title i {
    font-size: 20px;
    line-height: 1;
}

/* Container */
#nm-cart-panel .widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Cart list */
.nm-cart-panel-list-wrap {
    flex: 1;
    padding: 18px 37px;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}
#nm-cart-panel .product_list_widget {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 14px 0;
    color: #282828;
    padding: 0;
}
#nm-cart-panel .product_list_widget > li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 14px 0 0;
    border-top: 1px solid #e3e3e3;
}
#nm-cart-panel .product_list_widget > li:first-child {
    padding-top: 0;
    border-top: 0 none;
}
#nm-cart-panel .product_list_widget li a {
    display: block;
    color: #282828;
}
/* Block overlay */
#nm-cart-panel .product_list_widget .blockOverlay {
    height: 100% !important;
    opacity: 1 !important;
    margin: 0 !important;
    background: rgba(255,255,255, 0.82) !important;
}

/* Remove button */
#nm-cart-panel .product_list_widget .remove {
    position: absolute;
    top: 7px;
    right: -1px;
    z-index: 100;
    display: block;
    font-size: 16px;
    line-height: 30px;
    width: 28px;
    height: 28px;
    text-align: right;
    opacity: 0.5;
}
#nm-cart-panel .product_list_widget .woocommerce-mini-cart-item:first-child .remove {
    top: -7px;
}
.no-touch #nm-cart-panel .product_list_widget .remove:hover {
    opacity: 1;
}

/* Thumbnail */
.nm-cart-panel-item-thumbnail {
    align-self: flex-start;
    width: 60px;
}
.nm-cart-panel-thumbnail-wrap {
    position: relative;
    overflow: hidden;
}
.nm-cart-panel-thumbnail-loader {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--nm--border-radius-image);
    background: rgba(255, 255, 255, 0.82);
}
.loading .nm-cart-panel-thumbnail-loader {
    display: block;
}
#nm-cart-panel .product_list_widget li img {
    position: static;
    width: 100%;
    max-width: 102px;
    height: auto;
    border-radius: min(5px, var(--nm--border-radius-image));
}

/* Details */
.nm-cart-panel-item-details {
    flex: 1;
}
.nm-cart-panel-item-details > *:not(:last-child) {
    margin-bottom: 4px;
}
.nm-cart-panel-product-title {
    font-size: 16px;
    line-height: 22px;
    margin-top: 2px;
    padding-right: 20px;
}
.touch .nm-cart-panel-product-title {
    pointer-events: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}
#nm-cart-panel .nm-cart-panel-quantity-pricing {
    line-height: 22px;
    width: 100%;
    overflow: hidden;
}

/* Variations */
#nm-cart-panel .variation {
    display: inline-block;
    line-height: inherit;
    margin: 0 0 4px;
}
#nm-cart-panel .variation li:last-child {
    padding-bottom: 0;
}

/* Quantity: base styles (needed when shop.css is not loaded) */
#nm-cart-panel .nm-quantity-wrap {
    position: relative;
    width: auto;
    text-align: center;
    border: 0 none;
    overflow: visible;
}
#nm-cart-panel .nm-quantity-wrap.nm-is-readonly {
    display: none;
}
#nm-cart-panel .nm-quantity-wrap label {
    display: none;
}
#nm-cart-panel .nm-quantity-wrap .qty::-webkit-outer-spin-button,
#nm-cart-panel .nm-quantity-wrap .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#nm-cart-panel .nm-quantity-wrap input[type=number] {
    -moz-appearance: textfield;
}

/* Quantity: cart panel layout */
#nm-cart-panel .nm-cart-panel-quantity-pricing > span.quantity,
#nm-cart-panel .product-quantity {
    float: left;
    font-size: 16px;
}
#nm-cart-panel .nm-quantity-wrap .quantity {
    display: inline-block;
    margin-left: 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
}
.cart-panel-qty-throttle .woocommerce-mini-cart-item.loading .quantity {
    pointer-events: none;
    opacity: 0.5;
}
#nm-cart-panel .quantity .nm-qty-minus,
#nm-cart-panel .quantity .nm-qty-plus {
    position: relative;
    display: inline-block;
    font-size: 10px;
    font-weight: normal;
    line-height: 24px;
    width: 24px;
    height: auto;
    text-align: center;
    cursor: pointer;
    vertical-align: top;
    transition: color 0.2s ease;
    -webkit-user-select: none;
    user-select: none;
}
#nm-cart-panel .quantity .nm-qty-minus {
    text-align: left;
}
#nm-cart-panel .quantity .nm-qty-plus {
    text-align: left;
}
#nm-cart-panel .quantity .qty {
    display: inline-block;
    font-size: 16px;
    width: 20px;
    min-height: 24px;
    line-height: inherit;
    height: auto;
    vertical-align: top;
    padding: 0;
    border: 0 none;
    text-align: center;
    background: none;
}

/* Price */
#nm-cart-panel .nm-cart-panel-item-price {
    float: right;
}
#nm-cart-panel .nm-cart-panel-item-price .amount {
    font-size: 16px;
    color: inherit;
    margin-top: 0;
}
#nm-cart-panel .nm-cart-panel-item-price .tax_label {
    display: none;
}

/* Summary */
.nm-cart-panel-summary {
    position: relative;
    z-index: 100;
    color: #282828;
    width: 100%;
    padding: 0 37px 37px;
    box-shadow: 0 0 18px 18px #fff;
}
#nm-cart-panel .total {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    line-height: 1;
    margin: 0;
    padding: 24px 0;
    border-top: 1px solid #e3e3e3;
}
#nm-cart-panel .total strong {
    font-weight: inherit;
}
#nm-cart-panel .buttons {
    margin-bottom: 0;
}
#nm-cart-panel .buttons a:first-child {
    color: inherit;
    opacity: 1;
    border: 1px solid #aaa;
    transition: border .2s ease;
    background: none;
}
.no-touch #nm-cart-panel .buttons a:first-child:hover {
    border-color: #282828;
}
#nm-cart-panel .buttons .button {
    display: inline-block;
    width: 48%;
    padding: 12px;
}
#nm-cart-panel .buttons .button.checkout {
    float: right;
    padding: 13px;
}

/* Empty cart */
#nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .total,
#nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .buttons {
    display: none;
}
#nm-cart-panel .buttons.nm-cart-empty-button {
    display: none;
}
.no-touch #nm-cart-panel .buttons.nm-cart-empty-button {
    padding-bottom: 9px;
}
#nm-cart-panel .nm-cart-panel-empty + .nm-cart-panel-summary .buttons.nm-cart-empty-button {
    display: block;
}
#nm-cart-panel .buttons.nm-cart-empty-button .button {
    display: block;
    width: 100%;
}

#nm-cart-panel .product_list_widget .empty {
    display: none;
    font-size: 16px;
    min-height: none;
    margin-bottom: 0;
    padding: 5vh 0;
    text-align: center;
}
#nm-cart-panel .nm-cart-panel-empty .product_list_widget .empty {
    display: block;
    border-top-color: transparent;
}
#nm-cart-panel .product_list_widget .empty i {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    line-height: 1;
    width: 56px;
    height: 56px;
    margin: 0 auto 21px;
    padding: 10px;
    text-align: center;
    background: #eee;
    border-radius: 50px;
    opacity: 0.5;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    transition-delay: 0.25s;
}
.cart-panel-open #nm-cart-panel .product_list_widget .empty i {
    opacity: 1;
    transform: translateY(0);
}

/* Loader */
#nm-cart-panel-loader {
    visibility: hidden;
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: 105;
    width: 1px;
    height: 1px;
    opacity: 1;
    background: #fff;
}
#nm-cart-panel.loading #nm-cart-panel-loader {
    visibility: visible;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 79px;
    padding-left: 37px;
}
#nm-cart-panel-loader .nm-loader {
    display: block;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    margin-top: 21px;
    padding-left: 24px;
}
#nm-cart-panel-loader .nm-loader:after {
    top: 4px;
    right: auto;
    left: 0;
    margin: 0;
}

/* Preloading placeholders */
#nm-cart-panel {
    --nm--cart-panel-preloader-color: #eee;
    --nm--cart-panel-preloader-gradient: linear-gradient(90deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 70%);
}
#nm-cart-panel:not(.loading) .nm-cart-panel-empty .product_list_widget .nm-cart-panel-item-placeholder,
#nm-cart-panel .product_list_widget .nm-cart-panel-item-placeholder:not(:first-child) {
    display: none;
}

/* Responsive */
@media all and (max-width: 2100px) {
    #nm-cart-panel {
        max-width: 410px;
    }
    #nm-cart-panel .buttons .button {
        display: block;
        width: 100%;
    }
    #nm-cart-panel .buttons .button.checkout {
        float: none;
        margin-top: 12px;
        padding: 14px;
    }
}
@media all and (max-width: 991px) {
    .nm-cart-panel-header-inner {
        height: 70px;
    }
    #nm-cart-panel-close {
        padding-top: 28px;
    }
    #nm-cart-panel.loading #nm-cart-panel-loader {
        padding-top: 70px;
    }
}
@media all and (max-width: 550px) {
    #nm-cart-panel {
        max-width: min(340px, 90%);
    }
    .nm-cart-panel-header {
        padding-right: 21px;
        padding-left: 21px;
    }
    .nm-cart-panel-title {
        display: inline-block;
    }
    #nm-cart-panel.loading #nm-cart-panel-loader {
        padding-left: 21px;
    }
    .nm-cart-panel-list-wrap {
        padding-right: 21px;
        padding-left: 21px;
    }
    #nm-cart-panel .product_list_widget > li {
        gap: 15px;
    }
    .nm-cart-panel-summary {
        padding-right: 21px;
        padding-left: 21px;
        padding-bottom: 21px;
    }
}
@media all and (max-width: 385px) {
    .loading .nm-cart-panel-thumbnail-loader {
        display: none;
    }
    #nm-cart-panel .nm-quantity-wrap label.nm-qty-label-abbrev {
        display: none;
    }
    #nm-cart-panel .nm-quantity-wrap .quantity {
        margin-left: -14px;
    }
}

/* Body scroll lock when cart panel open */
body.cart-panel-open {
    overflow: hidden;
}
