/* --- HikaShop Mini-Cart Header Fixes --- */

/* Remove default HikaShop margins/padding inside the cart */
.cart-wrapper .hikashop_cart_module {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
}

/* Align the text, price, and icon on a single horizontal line */
.cart-wrapper .hikashop_cart_module .hikashop_cart {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529; /* Dark text to contrast with the light cart-wrapper background */
    text-decoration: none;
}

/* Style the item count as a Bootstrap badge */
.cart-wrapper .hikashop_cart_module .hikashop_cart_item_count {
    background-color: #dc3545; /* Bootstrap Danger Red */
    color: white;
    padding: 2px 8px;
    border-radius: 50rem;
    font-size: 0.8rem;
    margin-right: 5px;
}

/* Hide the "Go to Cart" default text if HikaShop forces it, 
   leaving only the item count and total price */
.cart-wrapper .hikashop_cart_module .hikashop_cart_title {
    display: none;
}