/* CART SIDEBAR */
.cart-sidebar {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    z-index: 99999 !important;
    pointer-events: none;
    visibility: hidden;
}

.cart-sidebar.active {
    pointer-events: all;
    visibility: visible;
}

.cart-sidebar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.cart-sidebar.active .cart-sidebar-overlay {
    opacity: 1;
}

.cart-sidebar-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: #000000;
    border-left: 1px solid #FFFFFF;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.cart-sidebar.active .cart-sidebar-content {
    transform: translateX(0);
}

.cart-sidebar-header {
    padding: 2rem;
    border-bottom: 1px solid #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000000;
}

.cart-sidebar-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #FFFFFF;
}

.cart-close {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.2s;
    font-family: 'Courier New', Courier, monospace;
}

.cart-close:hover {
    background: #FFFFFF;
    color: #000000;
}

.cart-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* Mini Cart Styling */
.woocommerce-mini-cart {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 2rem 0 !important;
}

.woocommerce-mini-cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #333333;
    position: relative;
    align-items: center;
}

.woocommerce-mini-cart-item>a:not(.remove) {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #FFFFFF;
    line-height: 1.3;
    text-decoration: none;
    flex: 1;
}

.woocommerce-mini-cart-item>a:not(.remove) img {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    object-fit: cover;
    border: 1px solid #333333;
    filter: grayscale(100%);
    margin: 0 !important;
}

.woocommerce-mini-cart-item .quantity {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.3rem;
    display: block;
    line-height: 1.3;
}

.woocommerce-mini-cart-item .remove {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    line-height: 1;
    opacity: 0.7;
    transition: all 0.2s;
    width: 28px;
    height: 28px;
    border: 1px solid #FFFFFF;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: transparent;
    font-family: 'Courier New', Courier, monospace;
    flex-shrink: 0;
    order: 3;
}

.woocommerce-mini-cart-item .remove:hover {
    opacity: 1;
    background: #FFFFFF;
    color: #000000 !important;
}

.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.woocommerce-mini-cart__buttons a {
    width: 100%;
    text-align: center;
    display: block;
    padding: 1rem;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-decoration: none;
    text-transform: uppercase;
    background: transparent;
    transition: all 0.2s;
}

.woocommerce-mini-cart__buttons a:hover {
    background: #FFFFFF;
    color: #000000;
}

/* Hide the default "View Cart" button if we want only Checkout */
/* .woocommerce-mini-cart__buttons .wc-forward:not(.checkout) { display: none; } */

.woocommerce-mini-cart__empty-message {
    text-align: center;
    padding: 2rem 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cart-sidebar-content {
        max-width: 100%;
        border-left: 0;
    }

    .cart-sidebar-header {
        padding: 1.5rem;
    }

    .cart-sidebar-body {
        padding: 1.5rem;
    }

    .woocommerce-mini-cart-item {
        gap: 0.75rem;
    }

    .woocommerce-mini-cart-item>a:not(.remove) {
        font-size: 0.8rem;
    }

    .woocommerce-mini-cart-item>a:not(.remove) img {
        width: 60px;
        height: 60px;
    }

    .woocommerce-mini-cart-item .quantity {
        font-size: 0.7rem;
    }

    .woocommerce-mini-cart-item .remove {
        width: 26px;
        height: 26px;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .cart-sidebar-header h3 {
        font-size: 1rem;
    }

    .woocommerce-mini-cart-item {
        gap: 0.5rem;
    }

    .woocommerce-mini-cart-item>a:not(.remove) {
        font-size: 0.75rem;
    }

    .woocommerce-mini-cart-item>a:not(.remove) img {
        width: 50px;
        height: 50px;
    }

    .woocommerce-mini-cart-item .remove {
        width: 24px;
        height: 24px;
        font-size: 0.9rem !important;
    }
}
