/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/

/* Jimmy 13022026 00:10 - Header top bar right: improve spacing between user/cart icons */

/* Increase spacing between header icons (default is 5px, too tight) */
#Top_bar .top_bar_right .top-bar-right-icon {
    margin: 0 10px;
}

/* Give the cart icon area more breathing room */
#Top_bar a#header_cart {
    display: flex;
    align-items: center;
    gap: 2px;
}

/* Cart item count badge: slight offset for clarity */
#Top_bar a#header_cart .header-cart-count {
    margin-right: 0;
    right: 4px;
    top: -8px;
    min-width: 18px;
    font-size: 11px;
}

/* Cart total price: add left spacing from count badge */
#Top_bar a#header_cart .header-cart-total {
    margin-left: 2px;
    padding-left: 4px;
    white-space: nowrap;
}

/* Subtle separator between user icon and cart */
#Top_bar .top_bar_right .top-bar-right-icon-cart {
    margin-left: 14px;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile: tighten back up on small screens */
@media only screen and (max-width: 767px) {
    #Top_bar .top_bar_right .top-bar-right-icon {
        margin: 5px 8px;
    }
    #Top_bar .top_bar_right .top-bar-right-icon-cart {
        margin-left: 8px;
        padding-left: 8px;
    }
    #Top_bar a#header_cart .header-cart-total {
        font-size: 14px;
    }
}
