:root {
    --sweet-primary-color: #004c03;
    --sweet-secondary-color: #008a05;
    --sweet-font-family: Inter, sans-serif;
}

body {
    font-family: var(--sweet-font-family);
}

a,
.theme-color,
.color-primary {
    color: var(--sweet-primary-color);
}

.btn-primary,
.search-btn,
.theme-bg,
.bg-primary {
    background-color: var(--sweet-primary-color);
    border-color: var(--sweet-primary-color);
}

.btn-secondary,
.theme-bg-secondary,
.bg-secondary {
    background-color: var(--sweet-secondary-color);
    border-color: var(--sweet-secondary-color);
}
/* Redesigned header account dropdown */
.header-account-dropdown {
    position: relative;
}

.header-account-dropdown .account-dropdown-menu {
    min-width: 170px;
    padding: 8px 0;
    border: 0;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.header-account-dropdown .account-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #1b1b1b;
    font-size: 15px;
    line-height: 1;
}

.header-account-dropdown .account-dropdown-menu .dropdown-item:hover {
    background: #f6f6f6;
    color: var(--base, #004c03);
}

.header-account-dropdown .account-dropdown-menu .dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 16px;
}

.header-icons .header-icon-box {
    text-align: center;
}

.header-icons .header-cart-box,
.header-icons a[href="/shop-cart"].header-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 94px;
}

.header-icons .cart-summary,
.header-icons a[href="/shop-cart"].header-icon-box > div {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: 0 !important;
    min-width: 54px;
    line-height: 1.15;
    white-space: nowrap;
}

.header-icons .cart-summary span:first-child,
.header-icons a[href="/shop-cart"].header-icon-box > div span:first-child {
    font-size: 10px !important;
    color: #8a8a8a !important;
    line-height: 1 !important;
    margin-bottom: 4px;
}

.header-icons .cart-amount,
.header-icons .cart-total-nav {
    display: block;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}
