/* ============================= */
/* ROOT HEADER (SEMANTIC)        */
/* ============================= */
.dr1007header {
	position: sticky;
	top: 0;
	z-index: 1000;
	font-family: 'Noto Sans Telugu', sans-serif;
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	background: rgba(255, 248, 240, 0.85);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ============================= */
/* HEADER BAR (GRADIENT)         */
/* ============================= */
.dr1007header .header-bar {
	background: linear-gradient(135deg, #ff6f00, #f57c00, #ef6c00);
	padding: 14px 22px;
	color: #fff;
}

/* ============================= */
/* HEADER CONTENT LAYOUT         */
/* ============================= */
.dr1007header .header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

/* ============================= */
/* LEFT : LOGO + BRAND           */
/* ============================= */
.dr1007header .header-left {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* LOGO */
.dr1007header .logo {
	width: 54px;
	height: 54px;
	object-fit: contain;
	border-radius: 50%;
	background: linear-gradient(145deg, #fff, #ffe0b2);
	padding: 6px;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25), inset 0 0 0 1px
		rgba(255, 255, 255, 0.4);
}

/* BRAND NAME */
.dr1007header .brand-name {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
	color: #fffde7;
	letter-spacing: 0.4px;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.dr1007header .brand-name small {
	display: block;
	font-size: 13px;
	font-weight: 500;
	opacity: 0.9;
}

/* ============================= */
/* RIGHT : CART + MENU           */
/* ============================= */
.dr1007header .header-right {
	display: flex;
	align-items: center;
	gap: 14px;
}

/* CART ICON */
.dr1007header .dr1007ecomfloatingcart {
	position: relative;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	padding: 8px 10px;
	border-radius: 14px;
	cursor: pointer;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dr1007header .dr1007ecomfloatingcart:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.dr1007header .cart-icon {
	font-size: 20px;
}

/* CART BADGE */
.dr1007header .dr1007ecomfloatingcartbadge {
	position: absolute;
	top: -6px;
	right: -6px;
	background: linear-gradient(135deg, #ff1744, #ff5252);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* ============================= */
/* MENU TOGGLE                  */
/* ============================= */
.dr1007header .menu-toggle {
	display: none;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	font-size: 24px;
	color: #fff;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 12px;
	transition: background 0.25s ease;
}

.dr1007header .menu-toggle:hover {
	background: rgba(255, 255, 255, 0.3);
}

/* ============================= */
/* NAVIGATION MENU               */
/* ============================= */
.dr1007header .nav-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
	background: linear-gradient(135deg, #fff3e0, #ffe0b2);
	padding: 10px 14px;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
}

.dr1007header .nav-menu a {
	color: #4e342e;
	padding: 10px 18px;
	text-decoration: none;
	font-weight: 600;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.6);
	transition: all 0.3s ease;
}

.dr1007header .nav-menu a:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* MOBILE VIEW                   */
/* ============================= */
@media ( max-width : 768px) {
	.dr1007header .menu-toggle {
		display: block;
	}
	.dr1007header .brand-name {
		font-size: 17px;
	}
	.dr1007header .logo {
		width: 46px;
		height: 46px;
	}
	.dr1007header .nav-menu {
		display: none;
		flex-direction: column;
		width: 100%;
		border-radius: 0;
	}
	.dr1007header .nav-menu.show {
		display: flex;
	}
	.dr1007header .nav-menu a {
		text-align: center;
		border-radius: 0;
		padding: 14px;
		border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	}
}