﻿
#miniCartSidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #fff;
    box-shadow: -3px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

#miniCartSidebar.open {
    right: 0;
}

.mini-cart-header {
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

    .mini-cart-header h5 {
        font-weight: bold;
        font-size: 18px;
        margin: 0;
    }

.mini-cart-items-wrapper {
    flex: 1 1 auto;
    overflow-y: auto;
    margin-bottom: 15px;
    padding-right: 5px;
}



.mini-cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .mini-cart-info .title {
        font-size: 15px;
        font-weight: 600;
        color: #333;
        margin-bottom: 4px;
    }

    .mini-cart-info .price {
        font-size: 14px;
        color: #666;
    }

.mini-cart-footer {
    flex-shrink: 0;
    background-color: #fff;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    padding-bottom: 20px;
}

    .mini-cart-footer strong {
        font-size: 16px;
    }

    .mini-cart-footer .btn {
        width: 100%;
        margin-top: 10px;
    }

#cartOverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
}

    #cartOverlay.show {
        display: block;
    }

.cart-icon-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: #dc3545;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}
.mini-cart-item {
    align-items: flex-start;
}

.mini-cart-item img {
    border-radius: 8px;
    border: 1px solid #eee;
    object-fit: cover;
    min-height: 80px; /* hoặc lớn hơn */
}

.qty-btn {
    width: 24px;
    height: 24px;
    font-size: 18px;
    line-height: 1;
    padding: 0;
}

.qty-input {
    max-width: 40px;
    font-size: 14px;
    height: 24px;
    padding: 0 4px;
}

.input-group-sm .form-control,
.input-group-sm .btn {
    height: 32px;
    font-size: 14px;
    padding: 4px 6px;
    box-shadow: none;
}

.qty-btn:hover {
    background-color: #e0e0e0; /* xám nhạt */
    color: #000; /* màu chữ nếu cần */
}

.btn-outline-secondary:hover {
    background-color: #e0e0e0 !important; /* màu xám nhạt */
    border-color: #ccc !important;
    color: #000 !important;
}

.checkout-custom-btn {
    background-color: #875753;
    color: #fff;
    border: none;
}

    .checkout-custom-btn:hover {
        background-color: #875753;
        color: #fff;
    }
