.qb-cart-container {
    position: relative;
    display: inline-block;
}

.qb-cart-contents {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    position: relative;
}

.qb-cart-contents .qb-cart-count {
    background: #ff5a5f;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    padding: 3px 6px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.qb-cart-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.qb-cart-dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    border-width: 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent #ddd;
}

.qb-cart-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.qb-cart-item {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.qb-cart-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.qb-product-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.qb-product-price {
    font-size: 12px;
    color: #666;
}

.qb-cart-total {
    font-weight: bold;
    margin-top: 15px;
}

.qb-cart-buttons {
    margin-top: 10px;
    text-align: right;
}

.qb-cart-buttons .button {
    background-color: #0073aa;
    color: #fff;
    padding: 5px 10px;
    text-decoration: none;
    margin-left: 5px;
}

.qb-cart-buttons .button:hover {
    background-color: #005177;
}