/* --- KHUNG GIỎ HÀNG (SIDE-CART) --- */
.dut-modern-cart-dropdown {
    position: fixed !important;
    top: 0 !important;
    width: 380px !important;
    height: 100vh !important;
    background: #fff !important;
    z-index: 9999999 !important;
    transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1) !important;
    display: flex !important;
    flex-direction: column !important;
}

.dut-modern-cart-dropdown.dut-from-right {
    right: -450px !important;
    left: auto !important;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.08) !important;
}

.dut-modern-cart-dropdown.dut-from-left {
    left: -450px !important;
    right: auto !important;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.08) !important;
}

.dut-modern-cart-dropdown.dut-active.dut-from-right {
    right: 0 !important;
}

.dut-modern-cart-dropdown.dut-active.dut-from-left {
    left: 0 !important;
}

.dut-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999998 !important;
    display: none;
    backdrop-filter: blur(3px);
}

/* Header */
.dut-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #f2f2f2;
}

.dut-cart-header h3 {
    font-size: 21px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    margin: 0 !important;
    letter-spacing: 0.5px;
}

.dut-close-modern-cart {
    font-size: 32px;
    cursor: pointer;
    color: #999;
    line-height: 1;
}

/* DANH SÁCH & SCROLLBAR MÀU #839D03 */
.dut-modern-cart-dropdown .cart_list {
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 25px !important;
    max-height: calc(85vh - 250px) !important;
}

.dut-modern-cart-dropdown .cart_list::-webkit-scrollbar {
    width: 5px;
}

.dut-modern-cart-dropdown .cart_list::-webkit-scrollbar-thumb {
    background: #839d03;
    border-radius: 10px;
}

/* ITEM Bố cục */
.dut-modern-cart-dropdown .cart_list li {
    padding: 15px 35px 15px 75px !important;
    position: relative !important;
    border-bottom: 1px solid #f7f7f7 !important;
    min-height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Nút xóa sản phẩm */
.dut-modern-cart-dropdown .cart_list li .remove {
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 20px !important;
    color: #e6070d !important;
    width: 25px;
    text-align: center;
    line-height: 1 !important;
}

/* Ảnh sản phẩm */
.dut-modern-cart-dropdown .cart_list li img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px !important;
    height: 60px !important;
    object-fit: cover;
    border-radius: 8px;
}

/* Tên sản phẩm */
.dut-modern-cart-dropdown .cart_list li a:not(.remove) {
    display: block !important;
    width: 100% !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 0 5px 0 !important;
}

/* NÚT BẤM VÀ TỔNG TIỀN */
.dut-modern-cart-dropdown .total {
    padding: 20px 25px !important;
    border-top: 1px solid #f2f2f2;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.dut-modern-cart-dropdown .buttons {
    padding: 0 25px 30px 25px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dut-modern-cart-dropdown .buttons a {
    margin: 0 !important;
    padding: 12px 5px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700 !important;
    border: none !important;
}

.dut-modern-cart-dropdown .buttons a.view-cart {
    background: #839d03 !important;
    color: #fff !important;
}

.dut-modern-cart-dropdown .buttons a.checkout {
    background: #000 !important;
    color: #fff !important;
}

/* Cart Empty Message */
.dut-modern-cart-dropdown .woocommerce-mini-cart__empty-message {
    text-align: center !important;
    padding: 60px 20px !important;
    font-size: 16px !important;
    color: #999 !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dut-modern-cart-dropdown .woocommerce-mini-cart__empty-message:before {
    content: "\e015";
    font-family: 'ETmodules' !important;
    font-size: 50px !important;
    color: #eee !important;
    margin-bottom: 15px !important;
}

/* Shortcode Icon */
.dut-cart-icon-wrapper {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.dut-cart-icon:before {
    content: "\e015";
    font-family: 'ETmodules' !important;
    font-size: 24px;
    color: #333;
}

.dut-cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #839d03;
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
}

@media (max-width: 980px) {
    .dut-modern-cart-dropdown {
        width: 320px;
    }
}