/* WC Cart Menu Item Styles */
.cbc-wc-cart-menu-item {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cbc-wc-cart-menu-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.cart-icon {
    margin-right: 8px;
    display: inline-flex;
    align-items: center;
}

.cart-count {
    background-color: #ff5722;
    color: white;
    font-size: 12px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    padding: 0 6px;
}

.cart-total {
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cbc-wc-cart-menu-item {
        padding: 6px 10px;
    }
}