/*==============================================================================
  CHECKOUT HEADER STYLES
  Shared header navigation styles for basket and payment pages
==============================================================================*/

/*Header*/
.main-header {
	border-top: 0px solid #f5f5f5;
}

.main-header a {
	color: #000;
}

.header-top .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px;
}

/* Store-specific styling: Premium Plates (store ID 19) */
.store-premiumplates .header-top {
	background-color: black;
}

.store-premiumplates .header-top a,
.store-premiumplates .header-top p {
	color: white;
}

.header-bottom {
	border-top: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
}

.main-menu {
	display: flex;
	justify-content: center;
	padding: 15px 0;
	gap: 30px;
}

.header-free {
	background-color: #efefef;
	border: none;
	text-align: center;
	padding: 10px 0;
}

/* Hamburger Menu Icon */
.hamburger-icon {
	display: inline-block;
	cursor: pointer;
}

.bar1, .bar2, .bar3 {
	width: 35px;
	height: 5px;
	background-color: #464646;
	margin: 6px 0;
	transition: 0.4s;
}

.change .bar1 {
	transform: translate(0, 11px) rotate(-45deg);
}

.change .bar2 {
	opacity: 0;
}

.change .bar3 {
	transform: translate(0, -11px) rotate(45deg);
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
	.main-header {
		border: none;
	}

	.main-menu {
		display: none;
		padding: 0;
	}

	.main-menu.active {
		padding: 15px 0;
		display: flex;
		flex-direction: column;
	}

	.header-bottom p {
		display: block;
	}

	/* Hide "ORDER MORE PLATES" link on mobile */
	#order-more-mobile {
		display: none !important;
	}
}
