html {
	scroll-behavior: smooth;
	/* scroll-padding-top: 150px;  */
}

header {
	background-color: #f5f5f5;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
	position: sticky;
	top: 0;
	z-index: 999999;
}

header img.logo {
	width: 100%;
	height: auto;
	max-width: 120px;
	max-height: 100px;
	caret-color: transparent;
}

.menu-toggle-btn {
	cursor: pointer;
	user-select: none;
	caret-color: transparent;
}

.menu-toggle-btn i {
	font-size: 22px;
	color: #111;
}

.fs-menu {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .7);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: 0.35s ease;
}

.fs-menu.active {
	opacity: 1;
	visibility: visible;
}

.fs-menu-inner {
	height: 90%;
	display: flex;
	flex-wrap: wrap;
	max-width: 96vw;
	margin: 0 auto;
	padding: 3rem;
	gap: 1rem;
	background-color: white;
	border-radius: 10px;
	overflow: auto;
}

/* COLUMNS */
.fs-menu-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.fs-menu-col li {
	margin: 14px 0;
}

.fs-menu-col a {
	text-decoration: none;
	font-size: 18px;
	color: #111;
	transition: 0.2s ease;
}

.fs-menu-col a:hover {
	opacity: 0.5;
}

/* CLOSE BUTTON */
.fs-menu-close {
	position: relative;
	border: 0;
	background: none;
	font-size: 40px;
	cursor: pointer;
	margin-left: auto;
	color: white;
	display: block;
	margin-right: 20px;
}

.menu-toggle-btn:hover span:nth-child(2) {
	opacity: 0.6;
}

.flex-container {
	column-gap: 2rem;
}

.est-categories {
	height: fit-content;
	position: sticky;
	top: 30px;
	height: fit-content;
	position: sticky;
	top: 30px;
	max-height: 80vh;
	overflow-y: auto;
}

.nav-link.active {
	font-weight: bold;
	color: #000;
}

.prod-image img {
	width: 100%;
	height: fit-content;
	max-width: 50px;
	min-width: 50px;
	object-fit: contain;
	aspect-ratio: 1/1;
	border-radius: 10px;
	border: 1px solid #f0f0f0;
}

.est-product-item {
	width: calc(50% - 1rem);
}



.prod-title {
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.prod-ingredients,
.prod-description {
	color: #ababab;
	font-size: 12px;
}

.prod-price {
	font-size: 16px;
	font-weight: 600;
	color: #0f172a;
	background: #f1f3f5;
	padding: 6px 12px;
	border-radius: 20px;
	min-width: 70px;
	text-align: center;
}

.est-product-item.unavailable {
	opacity: 0.5;
	text-decoration: line-through;
}

.product-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	border: 1px solid #eee;
	border-radius: 12px;
	background: #fff;
	margin-bottom: 10px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-content:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.est-category-item .nav-link {
	display: block;
	padding: 8px 12px;
	border-radius: 8px;
	color: #444;
	transition: 0.2s;
}

.est-category-item .nav-link:hover {
	background: #f5f5f5;
}

.est-category-item .nav-link.active {
	background: #000;
	color: #fff;
	font-weight: 400;
}

footer {
	border-top: 1px solid rgb(190, 190, 190);
	color: #444444;
	font-size: 14px;
}

footer a {
	color: #444444;
	text-decoration: none;
}

footer .footer-logo img {
	width: 100%;
	height: auto;
	max-width: 120px;
	caret-color: transparent;
}

#back_to_top {
	position: fixed;
	bottom: 25px;
	right: 25px;
	width: 55px;
	height: 55px;
	border: none;
	border-radius: 50%;
	background: #000;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	z-index: 9999;
	transition: all 0.3s ease;
}

#back_to_top.show {
	opacity: 1;
	visibility: visible;
}

#back_to_top:hover {
	background: #333;
	transform: translateY(-3px);
}

.social-icon,
.social-icon-svg {
	width: 32px;
	height: 32px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #111;
	color: #fff;
	font-size: 18px;
}

.social-icon:hover,
.social-icon-svg:hover {
	opacity: 0.8;
}

.social-icon-svg {
	width: 18px;
	height: 18px;
}

.social-icon-svg .st0 {
	fill: #fff;
}


.not-found-page {
	min-height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: Arial, sans-serif;
	color: #333;
	padding: 20px;
}

.not-found-page h1 {
	font-size: 120px;
	margin: 0;
	color: #ef2235;
	line-height: 1;
	letter-spacing: 2px;
	text-shadow: 0 6px 20px rgba(239, 34, 53, 0.15);
}

.not-found-page p {
	font-size: 20px;
	margin-top: 10px;
	color: #555;
	max-width: 400px;
}

/* μικρό “μοντέρνο touch” */
.not-found-page::before {
	content: "";
	width: 120px;
	height: 4px;
	background: #ef2235;
	margin-bottom: 20px;
	border-radius: 10px;
	opacity: 0.8;
}

.lang-select {
	padding: 8px 30px 8px 12px;
	/* περισσότερο δεξιά padding */
	border: 1px solid #ddd;
	border-radius: 6px;
	background: #fff;
	font-size: 14px;
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 8px center;
	background-size: 20px;
}

.lang-select:focus-visible {
	outline: none;
	box-shadow: none;
}

/* Responsive rules */

@media (min-width: 992px) {
	.est-category-item {
		width: calc(33.333% - 1rem);
	}
}

@media (max-width: 991px) {

	.est-categories {
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 10;
		padding: 10px 0;
		border-bottom: 1px solid #eee;
	}

	.categories-wrapper {
		display: flex;
		overflow-x: auto;
		gap: 8px;
		padding-bottom: 5px;
		margin: 0 10px;
	}

	.est-category-item {
		flex: 0 0 auto;
	}

	.est-category-item .nav-link {
		background: #f5f5f5;
		padding: 6px 12px;
		border-radius: 20px;
		white-space: nowrap;
		font-size: 14px;
	}

	.est-category-item .nav-link.active {
		background: #000;
		color: #fff;
	}

	.est-product-item {
		width: 100%;
	}

	.not-found-page h1 {
		font-size: 80px;
	}

	.not-found-page p {
		font-size: 16px;
	}
}

/* WORKHOURS PAGE */

.workhours {
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
}

.est-workhours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 0;
	border-bottom: 1px dashed #e5e5e5;
}

.est-workhours-item:last-child {
	border-bottom: none;
}

.work-day {
	width: 120px;
	/* σταθερό width για alignment */
	font-weight: 600;
	color: #333;
}

.work-time {
	flex: 1;
	text-align: right;
	color: #666;
}

/* loader */
#page-loader {
	position: fixed;
	inset: 0;
	background: #ffffff;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hide {
	opacity: 0;
	visibility: hidden;
}

.loader-spinner {
	width: 60px;
	height: 60px;
	border: 5px solid #e5e5e5;
	border-top-color: #000;
	border-radius: 50%;
	animation: spin 0.8s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}