/*
Theme Name: Sellsmart Child
Template:   sellsmart
Theme URI: https://1.envato.market/sellsmart-wp
Description: Sellsmart Child Theme
Author: Awaiken Themes
Author URI: https://awaikenthemes.com/
Version: 1.0.0
Text Domain: sellsmart-child
*/
/* Navbar brand logo */
.navbar-brand {
    width: 100px;
    height: 51px;
    overflow: hidden;
}
/* Header Icons */
.header-icons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
}

.cart-icon, .account-icon, .logout-icon {
    font-size: 22px;
    color: var(--e-global-color-text);
    position: relative;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.cart-icon:hover, .account-icon:hover, .logout-icon:hover {
    color: var(--e-global-color-accent); /* gold accent */
    transform: scale(1.1);
}

/* Cart badge only when >0 */
.cart-count {
    position: absolute;
    top: -6px;
    right: -14px;
    background: var(--e-global-color-primary); /* dark green */
    color: var(--e-global-color-white);
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    min-width: 18px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.main-menu {
  justify-content: center;
}



