/* ================================================
   Pure Cart — Modern Minimalist Sidebar
   ================================================ */

/* === BASE / CONTAINER === */
.xoo-wsc-container,
.xoo-wsc-slider {
    position: fixed;
    background-color: #ffffff;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    width: 90%;
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        right 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
        left 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.08);
}

.xoo-wsc-modal * {
    box-sizing: border-box;
}

/* Overlay */
.xoo-wsc-cart-active .xoo-wsc-opac {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 999998;
    opacity: 1;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    transition: opacity 0.3s ease;
}

/* Body */
.xoo-wsc-body {
    flex-grow: 1;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4d4d4 transparent;
}

.xoo-wsc-body::-webkit-scrollbar {
    width: 5px;
}

.xoo-wsc-body::-webkit-scrollbar-track {
    background: transparent;
}

.xoo-wsc-body::-webkit-scrollbar-thumb {
    background-color: #d4d4d4;
    border-radius: 10px;
}

body.xoo-wsc-cart-active {
    overflow: hidden !important;
}


/* === LOADER === */
.xoo-wsc-loading .xoo-wsc-loader {
    display: flex;
    align-items: center;
    justify-content: center;
}

span.xoo-wsc-loader {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.55;
    background-color: #f8f8f8;
    z-index: 10;
    transition: opacity 0.2s ease;
}

span.xoo-wsc-loader::after {
    content: '';
    width: 28px;
    height: 28px;
    border: 2.5px solid #e0e0e0;
    border-top-color: #333;
    border-radius: 50%;
    animation: xoo-wsc-spin 0.7s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -14px;
    margin-left: -14px;
}

@keyframes xoo-wsc-spin {
    to {
        transform: rotate(360deg);
    }
}


/* === FLOATING BASKET ICON === */
.xoo-wsc-basket {
    padding: 14px;
    margin: 10px;
    z-index: 9999999;
    cursor: pointer;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
}

.xoo-wsc-basket.xoo-wsc-basket-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.xoo-wsc-basket:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
}

.xoo-wsc-basket:active {
    transform: scale(0.95);
}

.xoo-wsc-items-count {
    border-radius: 50%;
    position: absolute;
    font-size: 11px;
    font-weight: 600;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    overflow: hidden;
    letter-spacing: -0.3px;
}

.xoo-wsc-bki {
    position: relative;
    top: 1px;
    line-height: 1;
}


/* Fly-to-cart animation */
.xoo-wsc-fly-animating {
    opacity: 1;
    position: absolute !important;
    height: 150px;
    width: 150px;
    z-index: 100;
    border-radius: 12px;
    overflow: hidden;
}


/* === SHORTCODE CART === */
.xoo-wsc-sc-cont .xoo-wsc-cart-trigger {
    display: flex;
    position: relative;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.xoo-wsc-sc-bki {
    font-size: 28px;
}

span.xoo-wsc-sc-count {
    border-radius: 50%;
    height: 18px;
    line-height: 18px;
    width: 18px;
    display: inline-block;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}

.xoo-wsc-sc-cont .xoo-wsc-cart-trigger>* {
    margin-right: 3px;
}


/* === NOTICES === */
.xoo-wsc-notice-container {
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: none;
}

ul.xoo-wsc-notices {
    margin: 0;
    list-style-type: none;
    padding: 0;
}

.xoo-wsc-notice-success {
    background-color: #ecfdf5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
}

.xoo-wsc-notice-error {
    color: #991b1b;
    background-color: #fef2f2;
    border-bottom: 1px solid #fecaca;
}

ul.xoo-wsc-notices li {
    padding: 10px 16px;
    list-style-type: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

ul.xoo-wsc-notices li span {
    margin-right: 4px;
}

span.xoo-wsc-undo-item {
    float: right;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

span.xoo-wsc-undo-item:hover {
    opacity: 1;
}

.xoo-wsc-notices a.button.wc-forward {
    display: none;
}


/* === HEADER === */
.xoo-wsc-header {
    padding: 18px 20px;
    color: #111;
    position: relative;
    border-bottom: 1px solid #f0f0f0;
    flex-shrink: 0;
}

span.xoo-wsch-close {
    position: absolute;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease, transform 0.2s ease;
    top: 50%;
    margin-top: -16px;
}

span.xoo-wsch-close:hover {
    background-color: #f5f5f5;
    transform: rotate(90deg);
}

.xoo-wsc-cart-close {
    cursor: pointer;
}

span.xoo-wsch-text {
    margin-left: 8px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.xoo-wsch-top {
    align-items: center;
    display: flex;
    margin: 0 auto;
}

.xoo-wsch-top .xoo-wsch-basket {
    display: table;
    position: relative;
}


/* Basket icon inside header */
.xoo-wscb-icon {
    font-size: 30px;
    opacity: 0.85;
}

.xoo-wscb-count {
    position: absolute;
    z-index: 1;
    background-color: transparent;
    font-size: 13px;
    font-weight: 700;
    height: 38px;
    line-height: 38px;
    text-align: center;
    left: 0;
    right: 0;
}


/* === SHIPPING BAR === */
.xoo-wsc-ship-bar-cont {
    width: 100%;
    text-align: center;
    padding: 10px 20px 0;
}

.xoo-wsc-sb-txt {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 6px;
    line-height: 1.4;
}

.xoo-wsc-sb-bar {
    height: 5px;
    width: 100%;
    background-color: #f0f0f0;
    border-radius: 10px;
    display: block;
    overflow: hidden;
}

.xoo-wsc-sb-bar>span {
    display: block;
    z-index: 1;
    height: inherit;
    border-radius: inherit;
    transition: width 0.5s ease;
}


/* ================================================
   BODY — PRODUCT ITEMS
   ================================================ */

.xoo-wsc-products {
    padding: 0;
}

.xoo-wsc-product {
    display: flex;
    padding: 14px 20px;
    position: relative;
    transition: background-color 0.25s ease;
    align-items: flex-start;
}

.xoo-wsc-product:last-child {
    border-bottom: none;
}

.xoo-wsc-product:hover {
    background-color: rgba(0, 0, 0, 0.015);
}


/* Image column */
.xoo-wsc-img-col {
    flex-shrink: 0;
    align-self: flex-start;
    overflow: hidden;
    border-radius: 12px;
}

.xoo-wsc-img-col img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.xoo-wsc-product:hover .xoo-wsc-img-col img {
    transform: scale(1.05);
}


/* Summary column */
.xoo-wsc-sum-col {
    flex-grow: 1;
    padding-left: 14px;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}


/* Info row (legacy, kept for compat) */
.xoo-wsc-sm-info {
    display: flex;
    min-width: 0;
    flex-grow: 1;
}

.xoo-wsc-sm-left {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 4px;
}

.xoo-wsc-sm-right {
    display: none;
}


/* Product name */
span.xoo-wsc-pname,
span.xoo-wsc-pname a {
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.4;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.15px;
    padding-right: 22px;
}

span.xoo-wsc-pname a:hover {
    color: #555;
}


/* Delete icon — top-right, appears on hover */
span.xoo-wsc-smr-del {
    position: absolute;
    top: 12px;
    right: 16px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease, background-color 0.2s ease;
    font-size: 13px;
    color: #999;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 2;
}


span.xoo-wsc-smr-del:hover {
    opacity: 1 !important;
    transform: scale(1.15);
    color: #ef4444;
    background-color: rgba(239, 68, 68, 0.08);
}


/* Product total price */
.xoo-wsc-smr-ptotal {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a1a;
    white-space: nowrap;
}


/* Sales badge */
.xoo-wsc-sm-sales {
    text-transform: uppercase;
    padding: 2px 8px;
    display: inline-block;
    margin-bottom: 2px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
}


/* Product price */
.xoo-wsc-pprice {
    font-size: 12px;
    color: #777;
}

/* Qty-Price one-liner */
.xoo-wsc-qty-price {
    font-size: 12px;
    color: #888;
}

/* === Unified Price Stack === */
.xoo-wsc-price-stack {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 4px;
    gap: 4px;
    margin-bottom: 10px;
}

.xoo-wsc-price-row {
    display: flex;
    align-items: baseline;
    width: 100%;
}

.xoo-wsc-price-label {
    font-size: 11px;
    color: #999;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.xoo-wsc-price-dots {
    flex-grow: 1;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.12);
    margin: 0 6px;
    position: relative;
}

.xoo-wsc-price-unit {
    font-size: 13px;
    font-weight: 500;
    color: #444;
}

.xoo-wsc-price-total {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}

/* When unit price has a sale (del + ins), tighten it */
.xoo-wsc-price-row del {
    opacity: 0.4;
    font-size: 11px;
    margin-right: 4px;
}

.xoo-wsc-price-row ins {
    text-decoration: none;
    font-weight: 700;
}


/* === QUANTITY BOX === */
.xoo-wsc-qty-box {
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: row;
    border-radius: 6px;
    overflow: hidden;
    padding: 0;
    transition: all 0.2s ease;
}

.xoo-wsc-qty-box:hover {
    border-color: #dcdcdc;
    background-color: #f7f7f7;
}

input[type="number"].xoo-wsc-qty {
    font-weight: 600;
    width: 100%;
    flex-grow: 1;
    padding: 2px;
    text-align: center;
    border: none;
    border-width: 0;
    outline: none !important;
    box-shadow: none !important;
    min-width: 25px;
    appearance: textfield;
    -moz-appearance: textfield;
}

input[type="number"].xoo-wsc-qty:focus,
input[type="number"].xoo-wsc-qty:active {
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

input[type="number"].xoo-wsc-qty::-webkit-outer-spin-button,
input[type="number"].xoo-wsc-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


span.xoo-wsc-chng {
    min-width: 26px;
    align-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: all 0.2s ease;
}

span.xoo-wsc-chng:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

span.xoo-wsc-chng:active {
    background-color: rgba(0, 0, 0, 0.08);
    transform: scale(0.96);
}

.xoo-wsc-qtb-circle .xoo-wsc-chng {
    border-radius: 50%;
    height: 80%;
    align-self: center;
}

.xoo-wsc-qtb-circle input[type="number"].xoo-wsc-qty {
    margin: 0 4px;
}

input.xoo-wsc-qty::-webkit-outer-spin-button,
input.xoo-wsc-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input.xoo-wsc-qty[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}


/* Variation meta */
.xoo-wsc-pmeta-container {
    margin-top: 2px;
    line-height: 1.4;
}

.xoo-wsc-product dl.variation {
    margin: 0;
    font-size: 11px;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.xoo-wsc-product dl.variation dd,
.xoo-wsc-product dl.variation dt {
    margin: 0 3px 0 0;
    display: inline;
    float: none;
    font-style: normal;
    font-size: 11px;
    color: #999;
}

.xoo-wsc-product dl.variation dt {
    clear: left;
}

.xoo-wsc-product dl.variation p {
    margin: 0;
    font-size: 11px;
    display: inline;
}


/* ================================================
   SLIDER (Coupon / Shipping)
   ================================================ */
.xoo-wsc-sl-content {
    display: none;
    overflow: auto;
    flex-direction: column;
}

.xoo-wsc-sl-content[style*='block'] {
    display: flex !important;
}

.xoo-wsc-sl-heading {
    display: flex;
    font-size: 17px;
    font-weight: 700;
    padding: 18px 20px;
    align-items: center;
    letter-spacing: -0.2px;
    border-bottom: 1px solid #f0f0f0;
}

.xoo-wsc-slc-active.xoo-wsc-sl-content {
    display: block;
}

.xoo-wsc-sl-body {
    padding: 16px 20px;
    flex-grow: 1;
    overflow: auto;
}

span.xoo-wsc-slider-close {
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

span.xoo-wsc-slider-close:hover {
    opacity: 1;
}


/* Slider Shipping */
ul.xoo-wsc-shipping-methods {
    list-style-type: none;
    margin: 0 auto 20px;
    padding: 0;
    display: table;
}

input.xoo-wsc-shipping-method {
    margin-right: 6px;
}

ul.xoo-wsc-shipping-methods li {
    list-style-type: none;
    margin: 0 0 8px 0;
    padding: 0;
}

ul.xoo-wsc-shipping-methods li label {
    cursor: pointer;
}

.xoo-wsc-shipping-destination span:nth-child(1) {
    color: #777;
    font-weight: 600;
    margin-right: 8px;
    font-size: 14px;
}

.xoo-wsc-shipping-destination {
    display: table;
    margin: 0 auto;
    margin-bottom: 20px;
    font-size: 14px;
}

.select2-dropdown {
    z-index: 999999;
}

.xoo-wsc-slider section.shipping-calculator-form {
    display: block !important;
    margin: 0;
    padding: 0;
}

.xoo-wsc-slider a.shipping-calculator-button {
    display: none;
}

.woocommerce-checkout .xoo-wsc-sl-content.xoo-wsc-sl-shipping,
.woocommerce-checkout .xoo-wsc-ft-amt-label .xoo-wsc-toggle-slider span {
    display: none !important;
}

.woocommerce-checkout .xoo-wsc-ft-amt {
    pointer-events: none;
}

.xoo-wsc-slider button[name="calc_shipping"] {
    display: table;
    margin: 0 auto;
}

.xoo-wsc-slider section.shipping-calculator-form>p {
    margin: 0 0 20px 0;
    padding: 0;
}

.xoo-wsc-slider section.shipping-calculator-form input,
.xoo-wsc-slider section.shipping-calculator-form select {
    width: 100%;
}

.xoo-wsc-slider .woocommerce-shipping-calculator {
    padding: 0;
    margin: 0;
}


/* Slider Coupon */
.xoo-wsc-coupon-row>span {
    display: block;
    margin-bottom: 8px;
}

span.xoo-wsc-cr-code {
    display: inline-block;
    text-transform: uppercase;
    border: 1px dashed #ccc;
    padding: 4px 16px;
    font-family: monospace;
    font-weight: 600;
    font-size: 13px;
    background: #fafafa;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.xoo-wsc-coupon-row {
    padding: 0 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

span.xoo-wsc-cr-off {
    color: #059669;
    font-weight: 600;
    margin-bottom: 0;
}

form.xoo-wsc-sl-apply-coupon {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    margin: 16px 0;
    gap: 10px;
}

form.xoo-wsc-sl-apply-coupon input {
    border-radius: 12px !important;
    border: 1.5px solid #e0e0e0 !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
    background-color: #fafafa !important;
    color: #333 !important;
}

form.xoo-wsc-sl-apply-coupon input:focus {
    border-color: #111 !important;
    background-color: #fff !important;
}

form.xoo-wsc-sl-apply-coupon button,
form.xoo-wsc-sl-apply-coupon input[type="submit"] {
    border-radius: 20px !important;
    padding: 12px 24px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    background-color: #111 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    width: 100% !important;
    transition: background-color 0.2s ease, transform 0.15s ease !important;
}

form.xoo-wsc-sl-apply-coupon button:hover,
form.xoo-wsc-sl-apply-coupon input[type="submit"]:hover {
    background-color: #333 !important;
    transform: scale(1.02) !important;
}

form.xoo-wsc-sl-apply-coupon button:active,
form.xoo-wsc-sl-apply-coupon input[type="submit"]:active {
    transform: scale(0.98) !important;
}

.xoo-wsc-sl-applied>div {
    display: flex;
    text-transform: uppercase;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

span.xoo-wsc-remove-coupon {
    text-transform: uppercase;
    cursor: pointer;
    font-size: 10px;
    margin-left: 2px;
}

.xoo-wsc-sl-applied {
    padding: 0 10px;
    font-size: 13px;
    margin-bottom: 16px;
}

.xoo-wsc-sl-applied>div .xoo-wsc-slc-saved {
    color: #059669;
    font-weight: 600;
}

span.xoo-wsc-slc-remove {
    font-weight: 600;
}

span.xoo-wsc-clist-label {
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    text-align: center;
    font-size: 10px;
    padding: 0 16px;
    display: inline-block;
    margin: 16px 0;
    letter-spacing: 1px;
}

.xoo-wsc-clist-section {
    border: 1px solid #f0f0f0;
    margin-bottom: 24px;
    font-size: 13px;
    padding: 0 20px;
    border-radius: 10px;
}

.xoo-wsc-coupon-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
}

.xoo-wsc-coupon-row>span:last-child {
    margin-bottom: 0;
}

span.xoo-wsc-slc-remove .xoo-wsc-remove-coupon {
    display: block;
    text-align: right;
}


/* ================================================
   FOOTER
   ================================================ */
.xoo-wsc-footer {
    flex-shrink: 0;
    border-top: 1px solid #f0f0f0;
}

/* Extras row */
.xoo-wsc-ft-extras {
    border-bottom: 1px solid #f5f5f5;
}

.xoo-wsc-ftx-row {
    padding: 10px 0;
    font-size: 13px;
    display: flex;
    align-items: center;
}

span.xoo-wsc-ftx-icon {
    margin-right: 6px;
    font-size: 15px;
    opacity: 0.6;
}

.xoo-wsc-ftx-coups>div {
    flex-grow: 1;
}

.xoo-wsc-ftx-coups {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
    margin-left: 6px;
}

.xoo-wsc-remove-coupon {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    cursor: pointer;
    margin-right: 3px;
    font-size: 12px;
}

.xoo-wsc-remove-coupon span {
    color: #ef4444;
    margin-left: 3px;
    font-size: 10px;
}


/* Footer Buttons */
.xoo-wsc-ft-buttons-cont {
    display: grid;
    text-align: center;
    grid-column-gap: 8px;
    grid-row-gap: 8px;
}

a.xoo-wsc-ft-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
    text-decoration: none;
    padding: 10px 16px;
}

a.xoo-wsc-ft-btn:hover {
    transform: scale(1.02);
}

a.xoo-wsc-ft-btn:active {
    transform: scale(0.98);
}

.xoo-wsc-ft-buttons-cont a.xoo-wsc-ft-btn:only-child {
    grid-column: 1/-1;
}

/* Modern button design (opt-in via admin) */
a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-modern {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 20px;
    border: none;
    box-shadow: none;
    background-color: #f1f1f1;
    color: #333;
}

a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-modern:hover {
    background-color: #e5e5e5;
    color: #000;
    box-shadow: none;
    border: none;
}

a.xoo-wsc-ft-btn.xoo-wsc-ft-btn-modern:active {
    box-shadow: none;
}

a.xoo-wsc-ft-btn-modern.xoo-wsc-ft-btn-checkout {
    background-color: #111;
    color: #fff;
}

a.xoo-wsc-ft-btn-modern.xoo-wsc-ft-btn-checkout:hover {
    background-color: #333;
    color: #fff;
}


/* Footer Totals */
.xoo-wsc-ft-totals {
    width: 100%;
    padding: 12px 0 8px;
}

.xoo-wsc-ft-amt {
    padding: 4px 0;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.xoo-wsc-ft-amt-value .xoo-wsc-toggle-slider {
    cursor: pointer;
    margin-left: 4px;
}

span.xoo-wsc-ft-amt-label {
    font-weight: 500;
    color: #666;
}

.xoo-wsc-toggle-slider {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.xoo-wsc-toggle-slider:hover {
    opacity: 0.7;
}

.xoo-wsc-ft-amt-shipping .xoo-wsc-toggle-slider span {
    margin-left: 4px;
}

.xoo-wsc-ft-amt-label {
    flex-grow: 1;
    padding-right: 10px;
}

.xoo-wsc-ft-amt-value {
    text-align: right;
    font-weight: 500;
}

.xoo-wsc-ft-amt.less {
    color: #059669;
}

.xoo-wsc-ft-amt-total {
    border-top: 1px solid #eaeaea;
    margin-top: 10px;
    padding-top: 12px;
}

.xoo-wsc-ft-amt-total span.xoo-wsc-ft-amt-label {
    font-family: 'Montserrat', 'Jost', 'Helvetica Neue', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    color: #111 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.xoo-wsc-ft-amt-total .xoo-wsc-ft-amt-value,
.xoo-wsc-ft-amt-total .woocommerce-Price-amount {
    font-family: 'Montserrat', 'Jost', 'Helvetica Neue', sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    color: #111 !important;
    letter-spacing: 0.5px;
}

.xoo-wsc-smr-ptotal,
.xoo-wsc-pprice,
.xoo-wsc-qty-price,
.xoo-wsc-price-unit,
.xoo-wsc-price-total,
.xoo-wsc-ft-amt-value {
    font-family: 'Montserrat', 'Jost', 'Helvetica Neue', sans-serif !important;
    letter-spacing: 0.3px;
}

.xoo-wsc-smr-ptotal .woocommerce-Price-amount,
.xoo-wsc-pprice .woocommerce-Price-amount,
.xoo-wsc-qty-price .woocommerce-Price-amount,
.xoo-wsc-ft-amt-value .woocommerce-Price-amount {
    font-family: inherit !important;
}


/* ================================================
   SUGGESTED PRODUCTS
   ================================================ */
.xoo-wsc-sp-product {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    align-self: stretch;
}

.xoo-wsc-sp-container {
    margin: 8px 0;
}

.xoo-wsc-sp-left-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.xoo-wsc-sp-right-col {
    padding-left: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    gap: 4px;
}

.xoo-wsc-sp-right-col>span {
    display: block;
}

span.xoo-wsc-sp-atc a.button {
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    padding: 6px 12px;
}

span.xoo-wsc-sp-atc a.button span {
    margin-right: 4px;
}

.xoo-wsc-sp-wide .xoo-wsc-sp-rc-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.xoo-wsc-sp-container .lSAction>.lSPrev {
    background-image: url(../images/arrow-left.png);
    background-position: center center;
    left: 0;
}

.xoo-wsc-sp-container .lSAction>.lSNext {
    background-image: url(../images/arrow-right.png);
    background-position: center center;
    right: 0;
}

.xoo-wsc-sp-container .lSAction>a {
    background-size: 50%;
    background-repeat: no-repeat;
    max-width: 22px;
}

.xoo-wsc-sp-narrow .xoo-wsc-sp-rc-bottom {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    flex-grow: 1;
}

.xoo-wsc-sp-container ul.lSPager.lSpg {
    display: none;
}

.xoo-wsc-sp-rc-top {
    padding-bottom: 4px;
}


/* Payment Buttons */
.xoo-wsc-payment-btns {
    display: flex;
    align-items: center;
    justify-content: center;
}

.xoo-wsc-payment-btns p {
    padding: 0 !important;
    margin: 0 !important;
    display: block;
}

.xoo-wsc-payment-btns>* {
    flex-grow: 1;
    margin-top: 8px !important;
}

.xoo-wsc-payment-btns .widget_shopping_cart {
    margin: 0;
    padding: 0;
}


/* Bundled products */
.xoo-wsc-product.xoo-wsc-is-parent {
    border-bottom: 0;
    padding-bottom: 0;
}

.xoo-wsc-product.xoo-wsc-is-child img {
    max-width: 50px;
    margin-left: auto;
    float: right;
    border-radius: 6px;
}

.xoo-wsc-product.xoo-wsc-is-child {
    padding-top: 5px;
}


/* === EMPTY CART === */
.xoo-wsc-empty-cart {
    padding: 48px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.xoo-wsc-empty-cart>* {
    margin-bottom: 16px;
}

.xoo-wsc-empty-cart img.xoo-wsc-emp-img {
    max-width: 120px;
    opacity: 0.5;
}

.xoo-wsc-empty-cart span {
    font-size: 15px;
    color: #999;
    font-weight: 500;
}

.xoo-wsc-container .xoo-wsc-empty-cart a.button,
.xoo-wsc-container .xoo-wsc-empty-cart a.btn,
.xoo-wsc-empty-cart a.button,
.xoo-wsc-empty-cart a.btn {
    border-radius: 20px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background-color: #111 !important;
    color: #fff !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.2s ease, transform 0.15s ease !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
}

.xoo-wsc-container .xoo-wsc-empty-cart a.button:hover,
.xoo-wsc-container .xoo-wsc-empty-cart a.btn:hover,
.xoo-wsc-empty-cart a.button:hover,
.xoo-wsc-empty-cart a.btn:hover {
    background-color: #333 !important;
    color: #fff !important;
    transform: scale(1.02) !important;
    box-shadow: none !important;
    border: none !important;
}

.xoo-wsc-container .xoo-wsc-empty-cart a.button:active,
.xoo-wsc-container .xoo-wsc-empty-cart a.btn:active,
.xoo-wsc-empty-cart a.button:active,
.xoo-wsc-empty-cart a.btn:active {
    transform: scale(0.98) !important;
}


/* Empty cart link */
span.xoo-wsc-ecl {
    font-size: 12px;
    cursor: pointer;
    display: table;
    padding: 8px;
    margin-left: auto;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

span.xoo-wsc-ecl:hover {
    color: #ef4444;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 480px) {

    .xoo-wsc-container,
    .xoo-wsc-slider {
        width: 100%;
    }

    .xoo-wsc-product {
        padding: 12px 14px;
    }

    .xoo-wsc-header {
        padding: 14px 16px;
    }
}