.header {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 16px;
}

.container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.desktop-space {
    display: none;
}
.desktop-banners {
    display: none;
}
.header-navigation {
    display: none;
}

.hamburger-menu {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.hamburger-menu-icon {
	width: 24px;
	height: 24px;
	color: #ab8848;
}

.header-logo-container {
	display: block;
	max-width: 150px;
	width: 100%;
}

.header-logo {
	max-width: 100%;
	height: auto;
}


.dropdown-menu {
    display: none;
	box-sizing: border-box;
	position: absolute;
    z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.dropdown-menu.active {
    display: flex;
}

.dropdown-menu-container {
	box-sizing: border-box;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 20px 16px;
}

.dropdown-nav {
	box-sizing: border-box;
	width: 100%;
	padding: 0 16px 16px 16px;
	display: flex;
	flex-direction: column;
    border-bottom: 1px solid #ab8848;
}

.dropdown-nav-link {
	width: 100%;
	text-decoration: none;
	color: #8b827e;
	font-size: 18px;
	padding: 4px 0;
    letter-spacing: 0.9px;
    opacity: 0.75;
    line-height: 24px;
	border-bottom: 1px solid #e5e7eb;
	font-family: Montserrat, sans-serif;
	font-weight: 500;
}

.dropdown-banners {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 4px;
}

.dropdown-banner-patek {
    width: 120px;
    height: 70px;
}

.dropdown-banner-rolex {
    width:150px;
    height:70px;
    border:0;
    margin:0;
    padding:0;
    overflow:hidden;
    z-index:0;
    position:relative;
    scroll:none;
}

/* Desktop / tablet larger than 1024px */
@media (min-width: 1025px) {
	.header {
		padding-top: 32px;
		padding-bottom: 32px;
	}

	.header-logo-container {
        max-width: unset;
		width: calc(100% / 12 * 4);
        display: flex;
        justify-content: center;
	}

    .header-logo {
        margin-right: 22px; 
        width: 200px;
    }

    .container {
        justify-content: center;
        align-items: stretch;
    }
    .desktop-space {
        display: block;
        width: calc(100% / 12 * 4);
    }
    .desktop-banners {
        width: calc(100% / 12 * 4);
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 32px;
        flex: 1;
    }
    .header-navigation {
        display: flex;
        justify-content: center;
        width: 100%;
        border-bottom: 1px solid #ab8848;
    }
    .header-navigation-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        padding: 24px 16px 8px 16px;
        width: 100%;
        max-width: 1280px;
    }
    .header-nav-link {
        text-decoration: none;
        color: #8b827e;
        font-size: 18px;
        padding: 4px 0;
        font-family: Montserrat, sans-serif;
        font-weight: 500;
        opacity: 0.75;
        letter-spacing: 0.9px;
    }
    .hamburger-menu {
        display: none;
    }
}