.header {
    margin: 0 auto;
}

.header__navbar {
	max-width: 1440px;
	margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    height: 80px;
    border-bottom: 1px solid #E9EAEB;
}

.header__navbar-center {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px;
    font-weight: 500;
}

.header__dropdown {
	position: relative;
}

.header__dropdown-toggle {
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	font-weight: 500;
	font-size: 16px;
	line-height: 24px;
}

.header__chevron {
	width: 16px;
	height: 16px;
	transition: transform 0.2s ease;
}

/*
.header__dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	border: 1px solid #E9EAEB;
	border-radius: 6px;
	list-style: none;
	padding: 8px 0;
	margin: 4px 0 0;
	min-width: 180px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	z-index: 100;
	text-align: center;

	opacity: 0;
	transform: translateY(-6px);
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .18s ease,
		transform .18s ease,
		visibility 0s linear .18s; 
}

.header__dropdown-menu li a {
	display: block;
	padding: 8px 16px;
	font-size: 15px;
	font-weight: 500;
	color: #181D27;
	text-decoration: none;
}

.header__dropdown-menu li a:hover {
	background: #FAFAFA;
	color: #669F2A;
}

.header__dropdown.open .header__dropdown-menu {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
	transition:
		opacity .18s ease,
		transform .18s ease,
		visibility 0s;
}

.header__dropdown.open .header__chevron {
	transform: rotate(180deg);
}
*/

/* menu (hidden by default) */



.header__navbar-link-item {
    margin: 0px 15px;
}

.header__navbar-link-item:hover {
    color: #669F2A;
}

.shipping-banner {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 12px 60px;
    height: 42px;
    background: #F5F5F5;
}

.shipping-banner-text {
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    text-align: center;
    text-transform: uppercase;
    color: #181D27;
}