/* Off-Canvas Cart Container & Overlay */
.off-canvas-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.off-canvas-cart-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.off-canvas-cart {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
}

.off-canvas-cart.is-active {
    transform: translateX(0);
}

/* Header */
.off-canvas-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.off-canvas-cart-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.close-cart-drawer {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.close-cart-drawer:hover {
    color: #666;
}

/* Content Area */
.off-canvas-cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

/* Mini Cart List Styles inside Drawer */
.off-canvas-cart .woocommerce-mini-cart {
    margin: 0;
    padding: 0;
    list-style: none;
}

.off-canvas-cart .woocommerce-mini-cart-item {
    display: flex;
    padding: 20px 25px !important;
    border-bottom: 1px solid #f5f5f5;
    position: relative;
    gap: 15px;
    align-items: center;
}

.off-canvas-cart .woocommerce-mini-cart-item img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    background: #f9f9f9;
    margin: 0;
}

.off-canvas-cart .woocommerce-mini-cart-item a:not(.remove) {
    display: flex;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    line-height: 1.4;
    font-size: 14px;
    margin-bottom: 5px;
    align-items: center;
    gap: 10px;
}

.off-canvas-cart .woocommerce-mini-cart-item .quantity {
    display: block;
    font-size: 14px;
    color: #666;
}

.off-canvas-cart .woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #999;
    font-size: 20px;
    line-height: 1;
    text-decoration: none;
}

.off-canvas-cart .woocommerce-mini-cart-item .remove:hover {
    color: #000;

}

/* Footer / Totals */
.off-canvas-cart .woocommerce-mini-cart__total {
    padding: 20px 25px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    background: #fff;
}

.off-canvas-cart .woocommerce-mini-cart__buttons {
    padding: 0 25px 25px 25px;
    margin: 0;
    background: #fff;
}

.off-canvas-cart .button.checkout {
    display: block;
    text-align: center;
    background-color: #000 !important;
    color: #fff !important;
    width: 100%;
    padding: 18px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
}

.off-canvas-cart .button.checkout:hover {
    background-color: #333 !important;
}

/* Empty Message */
.off-canvas-cart .woocommerce-mini-cart__empty-message {
    padding: 40px 25px;
    text-align: center;
    color: #666;
}

/* Responsive constraints */
@media (max-width: 600px) {
    .off-canvas-cart {
        width: 100vw;
    }
}