 /* Detail Page */
.detail-page {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #8eceed;
	z-index: 1000;
	overflow-y: auto;
	transform: translateX(-100%);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.detail-page.active {
	display: block;
	transform: translateX(0);
}
/* Food Type Icons */
.food-type-selector {
	display: flex;
	gap: 15px;
	margin-bottom: 20px;
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
}
.food-type-option {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 8px 12px;
	border-radius: 6px;
	transition: background-color 0.3s ease;
}
.food-type-option:hover {
	background-color: #e0e0e0;
}
.food-type-option.active {
	background-color: #d4edda;
}
.food-icon {
	width: 18px;
	height: 18px;
	border: 2px solid;
	border-radius: 3px;
	position: relative;
	flex-shrink: 0;
}
.food-icon.veg {
	border-color: #0f8a3e;
}
.food-icon.non-veg {
	border-color: #e74c3c;
}
.food-icon.egg {
	border-color: #f39c12;
}
.food-icon::after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.food-icon.veg::after {
	background-color: #0f8a3e;
}
.food-icon.non-veg::after {
	background-color: #e74c3c;
}
.food-icon.egg::after {
	background-color: #f39c12;
}
.food-type-label {
	font-size: 14px;
	font-weight: 500;
	color: #333;
}
/* Item Details Section */
.item-details {
	margin-bottom: 25px;
}
.detail-header-new {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}
.detail-left-new {
	display: flex;
	align-items: center;
	gap: 12px;
}
.detail-item-name {
	font-size: 24px;
	font-weight: 700;
	color: #333;
	margin: 0;
	letter-spacing: 1px;
}
.detail-item-price {
	font-size: 20px;
	font-weight: 600;
	color: #e74c3c;
	letter-spacing: 1px;
}
.detail-divider {
	height: 2px;
	background-color: #474747;
	margin-bottom: 20px;
}
/* Description Section */
.description-section {
	margin-bottom: 25px;
}
.description-title {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin-bottom: 8px;
}
.description-text {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	padding: 12px;
	background: #f9f9f9;
	border-radius: 6px;
	border-left: 3px solid #e74c3c;
	letter-spacing: 1px;
}
.detail-container {
	max-width: 420px;
	margin: 0 auto;
	padding: 0;
}
.back-button {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 0;
	padding-top: 20px;
	margin-bottom: 20px;
	color: #333;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: color 0.3s ease;
}
.back-button:hover {
	color: #e74c3c;
}
.customization-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.customization-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px;
	letter-spacing: 1px;
	background: #f9f9f9;
	border-radius: 8px;
	margin-bottom: 12px;
	transition: background-color 0.3s ease;
}
.customization-item:hover {
	background-color: #f0f0f0;
}
.customization-label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.customization-checkbox {
	width: 18px;
	height: 18px;
	cursor: pointer;
}
.customization-name {
	font-size: 16px;
	color: #333;
	font-weight: 500;
}
.customization-price {
	font-size: 16px;
	color: #666;
	font-weight: 600;
}
.detail-title {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin-bottom: 15px;
	letter-spacing: 1px;
}
.detail-title span{
	color: red;
    font-size: 25px;;
}