*, *::before, *::after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
	line-height: 1.5;
}

:root {
	--color-primary-text: #FFFFFF;
	--color-secondary-text: #B5B5B5;
	--color-accent: #D4AF37;
	--color-background-light: #273135;
	--color-background-dark: #E0E0E0;
}

body {
	font-family: "Inter", sans-serif;
	background-color: var(--color-background-light);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0.5rem;
	overflow: hidden;
}

@media ( min-width : 640px) {
	body {
		padding-left: 0.2rem;
		padding-right: 0.2rem;
	}
}

@media ( min-width : 1024px) {
	body {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

header {
	width: 100%;
	justify-content: center;
	margin-bottom: 0.2rem;
	display: grid;
	align-items: center;
	border-bottom: 1px solid var(--color-secondary-text);
	padding-bottom: 0.2rem;
}

header img {
	max-width: 6rem;
	height: auto;
	border-radius: 9999px;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	margin: 0 auto;
}

.menu_label {
	color: var(--color-secondary-text);
	font-weight: 600;
	font-size: 0.5rem;
	font-family: Soin Sans Neue;
	margin: 0 auto;
	margin-top: 0.2rem;
	text-align: center;
}

.menu_label_menu{
	color: var(--color-primary-text);
	font-weight: 600;
	font-size: 3rem;
	font-family: Script MT Bold;
	text-align: center;
}

@media ( min-width : 768px) {
	header img {
		max-width: 7rem;
	}
}

@media ( min-width : 1024px) {
	header img {
		max-width: 9rem;
	}
}

main {
	flex-grow: 1; 
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 56rem;
	align-items: self-start;
}

section {
	width: 100%;
	padding: 0.5rem;
	/* border-radius: 0.75rem; */
	/* box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); */
	/* border: 1px solid var(--color-background-dark); */
}

.menu-item-card {
  background-color: #2c3034;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px;
  width: 100%;
  max-width: 600px;
  height: 90px;
  border-radius: 4px;
  box-sizing: border-box;
  cursor: pointer;
}

.item-image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-right: 20px;
}

.item-image-ar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  margin-left: 20px;
}

.item-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-grow: 1;
}

.item-text-ar {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  flex-grow: 1;
  text-align: right;
}

.arrow-image {
  width: 30px;
  height: auto;
  margin-left: auto;
  margin-right: 10px;
}

@media ( min-width : 640px) {
	section {
		padding: 1px;
	}
}

h1 {
	font-size: 1.875rem;
	line-height: 2.25rem;
	font-weight: 800;
	text-align: center;
	margin-bottom: 2rem;
	color: var(--color-primary-text);
}

@media ( min-width : 640px) {
	h1 {
		font-size: 2.25rem;
		line-height: 2.5rem;
	}
}

.categories-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.category-link-text {
	color: var(--color-primary-text);
	transition: color 0.2s ease-in-out;
	font-size: 1.25rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.5rem 0;
	display: inline-block;
	margin-bottom: 1rem;
}

.categories-container .category-link-text:last-child {
	margin-bottom: 0;
}

.category-link-text:hover {
	color: var(--color-accent);
	text-decoration: underline;
}

footer {
	width: 100%;
	text-align: center;
	margin-top: 3rem;
	color: #6B7280;
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.language-toggle {
	width: 2rem;
	position: fixed;
	top: 0.5rem;
	cursor: pointer;
	z-index: 1000;
}

.language-toggle:hover {
	transform: translateY(-2px);
}

.taxsection {
	position: fixed;
	top: 2.5rem;
	color: var(--color-primary-text);
	font-weight: 600;
	font-size: 0.5rem;
	font-family: Script MT Bold;
	z-index: 1000;
	transform: rotate(-90deg);
}

.cart {
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--color-secondary-text);
	border-radius: 9999px;
	padding: 0.5rem;
	position: fixed;
	left: 0.3rem;
	bottom: 0.2rem;
	display: none;
}

.cart:hover {
	background-color: var(--color-secondary-text);
	transform: translateY(-2px);
}

.cart img {
	width: -webkit-fill-available;
}

.cart label {
	text-align: center;
	color: var(--color-primary-text);
	font-size: 1rem;
	position: fixed;
	left: 0.2rem;
	bottom: 1.5rem;
}