* {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}

body {
	font-family: "Plus Jakarta Sans", serif;
	background: var(--color-dark);
	font-size: 1.6rem;
}

/* Root */
:root {
	--primary-color: #FB8F2C;
	--color-white: #FFFFFF;
	--color-dark: #111114;
}

/* Common */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

a {
	text-decoration: none;
}

.container {
	max-width: 1170px;
	width: calc(100% - 48px);
	margin-right: auto;
	margin-left: auto;
}

.btn {
	display: inline-block;
	min-width: 107px;
	border-radius: 4px;
	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.87;
	text-align: center;
	color: var(--color-white);
	padding: 13px 25px;
}

/* Header */
.header--container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
	padding-bottom: 30px;
}

.nav--ul {
	display: flex;
	align-items: center;
}

.header--logo {
	display: flex;
	align-items: center;
	gap: 4px;
}

.logo--title {
	font-family: Plus Jakarta Sans;
	font-weight: 400;
	font-size: 1.8rem;
	color: var(--color-white);
}

.nav--link {
	color: var(--color-white);
	padding: 4px;
	margin-right: 30px;
	font-family: Plus Jakarta Sans;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1.67;
	transition: 0.25s;
}

.nav--link:hover {
	text-shadow: 2px 1px 1px var(--primary-color);
	text-decoration: underline;
}

.btn--search {
	margin-right: 30px;
	padding: 18px 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--primary-color);
}

.btn--signup {
	background: var(--primary-color);
	transition: 0.25s;
}

.btn--search:hover {
	opacity: 0.7;
	cursor: pointer;
}

.actions--img {
	height: 20px;
}

.actions {
	display: flex;
	align-items: center;

}

.header__search {
	position: relative;
}

.search--container {
	position: absolute;
	top: 35px;
	right: -90px;
	width: 300px;
	height: 70px;
	z-index: 2;
	transform: translateX(35%);
	transition: all 0.3s;
	background: var(--color-white);
	border-radius: 5px;
}

/* Cart-block */
.cart-dark-container {
	border: 1px solid var(--color-white);
	padding: 20px 24px;
	border-radius: 8px;
	margin: 40px auto;
	color: var(--color-white);
	font-family: 'Plus Jakarta Sans', sans-serif;
	box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.cart-dark-table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: transparent;
}

.cart-dark-table th,
.cart-dark-table td {
	padding: 18px 16px;
	text-align: left;
}

.cart-dark-table th {
	background: #232326;
	color: var(--color-white);
	font-size: 1.6rem;
	font-weight: 600;
	border-bottom: 2px solid var(--color-white);
}

.cart-dark-table tr {
	border-top: 1px solid var(--primary-color);

}

.cart-dark-table td {
	vertical-align: middle;
	font-size: 1.4rem;
}

.cart-dark-food {
	display: flex;
	align-items: center;
	gap: 18px;
}

.cart-dark-food img {
	width: 90px;
	height: 90px;
	object-fit: cover;
	border-radius: 8px;
	border: 2px solid #232326;
	background: #232326;
}

.cart-dark-remove {
	background: none;
	border: none;
	color: var(--color-white);
	font-size: 1.2rem;
	cursor: pointer;
	transition: 0.2s;
}

.cart-dark-remove:hover {
	transform: scale(1.2);
}

.cart-dark-qty {
	display: flex;
	align-items: center;
	border: 1px solid #444;
	border-radius: 2px;
	overflow: hidden;
	background: #232326;
	width: 110px;
}

.cart-dark-qty button {
	background: none;
	border: none;
	color: var(--color-white);
	width: 36px;
	height: 40px;
	font-size: 1.2rem;
	cursor: pointer;
	transition: background 0.2s;
}

.cart-dark-qty button:hover {
	background: #333;
}

.cart-dark-qty input {
	width: 40px;
	height: 40px;
	background: transparent;
	border: none;
	color: var(--color-white);
	text-align: center;
	font-size: 1rem;
	outline: none;
}

.totalproduct--title {
	font-family: Plus Jakarta Sans;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.67;
	color: var(--color-white);
	text-align: center;
	margin-bottom: 20px;
}

.totalproduct--main {
	border: 1px solid var(--color-white);
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
}

.totalproduct--main-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: Plus Jakarta Sans;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.67;
	color: var(--color-white);
	margin-bottom: 20px;
}

.totalproduct--actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.btn--shopping {
	min-width: 230px;
	background: var(--primary-color);
	border: none;
	border-radius: 15px;
	cursor: pointer;
}

.btn--chonban {
	min-width: 107px;
	background: var(--primary-color);
	border: none;
	border-radius: 15px;
	cursor: pointer;
}

.btn--shopping:hover,
.btn--chonban:hover {
	opacity: 0.8;
}

/* Mobile & tablet */
.overload {
	position: fixed;
	inset: 0;
	background: rgba(255, 255, 255, 0.3);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s ease-in-out;
	z-index: 999;
}

.menu-draw {
	position: fixed;
	inset: 0 40% 0 0;
	background: #FFFFFF;
	transform: translateX(-100%);
	transition: 0.3s ease-in-out;
	z-index: 9999;
}

.btn--cardShopping {
	inset: 0 0 0 70%;
	position: fixed;
	background: #FFFFFF;
	transition: 0.3s ease-in-out;
	z-index: 6;

}

.action-nav:checked~.overload {
	opacity: 1;
	visibility: visible;
}

.action-nav:checked~.menu-draw {
	transform: translateX(0);
}

.container-tab {
	padding: 5px;
	cursor: pointer;
}

/* Hero */
.hero--container {
	padding-top: 40px;
}

/* Slider Styles */
.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--color-white);
}

.slider {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.25s ease-in-out;
}

.slide--banner-1 {
	width: 100%;
	height: 250px;
}

.slide {
	width: 25%;
	height: 1000px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.25s ease;
}

.dot.active {
	background-color: var(--color-white);
}

.hero--bottom {
	position: relative;
	padding-top: 110px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.hero--bottom-img {
	width: 100%;
	display: block;
}

.hero--list {
	position: static;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 80px;
	width: 100%;
	margin-top: -95px;
	z-index: 2;
}


.card-text h3 {
	font-family: Libre Bodoni;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.34;
	color: var(--color-white);

}

.card-text p {
	font-size: 1.2rem;
	color: #c2bfbf;
	margin-top: 5px;
	text-align: center;
}

/* Out Menu */
.outMenu--container {
	margin-top: 200px;
	margin-bottom: 100px;
}

.outMenu--top_title {
	position: relative;
	font-family: Libre Bodoni;
	font-weight: 500;
	font-size: 4.4rem;
	line-height: 1.25;
	text-align: center;
	color: var(--color-white);

}

.outMenu--top_title::after {
	position: absolute;
	bottom: -10px;
	left: 40%;
	content: "";
	display: inline-block;
	height: 2px;
	width: 50%;
	background: var(--primary-color);
	border-radius: 10px;
	transform: translateX(-30%);
}

.outMenu--item {
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgb(255, 255, 255);
	overflow: hidden;
	transition: transform 0.3s ease;
	cursor: pointer;
}

.outMenu--item:hover {
	transform: translateY(-10px);
}

.outMenu--list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	row-gap: 20px;
	column-gap: 20px;
	padding-bottom: 50px;
}

.food-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.food-card__content {
	padding: 20px;
	text-align: center;
}

.food-card__title {
	font-family: Libre Bodoni;
	min-height: 82px;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.34;
	color: var(--color-dark);
}

.food-card__price {
	font-weight: 500;
	font-size: 2rem;
	color: #d32f2f;
	margin: 10px 0;
}

.food-card__order-btn {
	background-color: red;
	width: 100%;
	color: white;
	font-size: 1.2rem;
	padding: 10px 20px;
	cursor: pointer;
	border: none;
	border-radius: 20px;
	transition: background-color 0.3s ease;
}

.food-card__order-btn:hover {
	background-color: #aa3e3e;
}

.outMenu--actions {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 40px;
}

.btn--outMenu {
	display: flex;
	align-items: center;
	gap: 5px;
	background: var(--primary-color);
	padding: 10px 100px;
	border-radius: 30px;
	font-size: 2rem;
	transition: 0.25s ease-in-out;
}

.img--outMenu-action {
	transform: rotate(180deg);
	transition: 0.25s ease-in-out;
}

.btn--outMenu:hover .img--outMenu-action {
	transform: translateX(10px);
}

.order-modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(134, 134, 134, 0.5);
	z-index: 1001;
}

.order-modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
	z-index: 1002;
	max-width: 540px;
	width: 95vw;
	padding: 0 0 24px 0;
	animation: fadeIn .2s;
}

.order-modal__img-wrap {
	width: 100%;
	height: 220px;
	overflow: hidden;
	border-radius: 12px 12px 0 0;
	background: #f7f7f7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-modal__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.order-modal__close {
	position: absolute;
	top: 12px;
	right: 18px;
	width: 40px;
	height: 40px;
	font-size: 2.8rem;
	color: var(--color-dark);
	cursor: pointer;
	z-index: 2;
	border-radius: 30px;
	transition: 0.2s;
}

.order-modal__close:hover {
	transform: rotate(360deg);
}

.order-modal__content {
	width: 100%;
	padding: 18px 24px 0 24px;
	box-sizing: border-box;
}

.order-modal__info {
	margin-bottom: 12px;
}

.order-modal__title {
	font-family: Plus Jakarta Sans;
	font-weight: 600;
	font-size: 2.4rem;
	line-height: 1.67;
	color: var(--color-dark);
}

.order-modal__price {
	font-size: 2rem;
	color: #d32f2f;
	font-weight: 600;
	margin-bottom: 6px;
	margin-top: 6px;
}

.order-modal__desc {
	font-family: Plus Jakarta Sans;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 1.67;
	color: var(--color-dark);
	margin-top: 20px;
	margin-bottom: 10px;
	min-height: 108px;
}

.order-modal__qty-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
}

.order-modal__qty {
	display: flex;
	align-items: center;
	gap: 8px;
}

.order-modal__qty-btn {
	width: 32px;
	height: 32px;
	border: 1px solid #ccc;
	background: #f7f7f7;
	border-radius: 50%;
	font-size: 1.5rem;
	color: #333;
	cursor: pointer;
	transition: background 0.2s;
}

.order-modal__qty-btn:hover {
	background: #eee;
}

#orderModalQty {
	width: 40px;
	text-align: center;
	font-size: 1.4rem;
	border-radius: 5px;
	padding: 4px 0;
	border: 1px solid var(--color-dark);
}

.order-modal__note-row {
	margin-bottom: 14px;
}

.order-modal__note-row label {
	font-size: 1.2rem;
	color: #666;
	margin-bottom: 4px;
	display: block;
}

#orderModalNote {
	color: var(--color-dark);
	width: 100%;
	min-height: 65px;
	border: 1px solid var(--color-dark);
	border-radius: 6px;
	padding: 8px;
	font-size: 1.6rem;
	font-family: Plus Jakarta Sans;
	margin-top: 10px;
	background: none;
	resize: none;
}

#orderModalTotal {
	font-size: 2rem;
	color: #d32f2f;
	font-weight: 600;
	margin-bottom: 6px;
	margin-top: 6px;
}

.order-modal__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 18px;
	gap: 12px;
}

.order-quantity {
	font-size: 1.8rem;
	color: var(--color-dark);
	font-weight: 500;
}

.order-modal__total {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.8rem;
	color: var(--color-dark);
	font-weight: 500;
}

.order-modal__order-btn {
	background: #d32f2f;
	color: var(--color-white);
	border: none;
	border-radius: 24px;
	padding: 12px 32px;
	font-size: 1.5rem;
	font-weight: 600;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: background 0.2s;
}

.order-modal__order-btn:hover {
	background: #b71c1c;
}

.container--chitet {
	opacity: 0;
	visibility: hidden;
	transition: 0.5s ease-in-out;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

/* Subride */
.subride--container {
	padding-bottom: 50px;
}

.newsletter-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	color: white;
	padding: 20px;
	border-radius: 8px;
	gap: 210px;
	margin-top: -30px;
}

.newsletter-title {
	color: var(--color-white);
	font-size: 3.6rem;
	font-weight: bold;
	margin-bottom: 10px;
}

.newsletter-description {
	font-size: 1.4rem;
	margin-bottom: 20px;
	color: var(--color-white);

}

.subride--info {
	top: 45%;
}

.newsletter-form {
	display: flex;
	align-items: center;
	justify-content: center;
}

.newsletter-input {
	padding: 10px;
	font-size: 1.2rem;
	width: 300px;
	border: 1px solid #ddd;
	border-radius: 4px;
	margin-right: 10px;
	color: var(--color-white);
	background: var(--color-dark);
}

.newsletter-btn {
	background-color: transparent;
	border: 2px solid white;
	color: white;
	padding: 12px;
	font-size: 18px;
	cursor: pointer;
	border-radius: 4px;
	transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
	background-color: white;
	color: black;
}

/* Sơ dồ nhà hàng */
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}

.modal-content {
	background: #fff;
	margin: 10% auto;
	padding: 20px;
	border-radius: 8px;
	width: 80%;
	height: auto;
}

.tableModal--title {
	font-family: Plus Jakarta Sans;
	font-weight: 500;
	font-size: 2rem;
}

.close {
	float: right;
	font-size: 28px;
	cursor: pointer;
}

.table-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}

.table {
	padding: 35px 10px;
	border-radius: 8px;
	text-align: center;
	cursor: pointer;
	border: 2px solid #ccc;
	font-weight: bold;
	font-family: Plus Jakarta Sans;
	font-size: 1.4rem;
}

.nameTable {
	margin-bottom: 5px;
}

.table.available {
	background: #eaffea;
	border-color: #4caf50;
}

.table.occupied {
	background: #ffeaea;
	border-color: #f44336;
}

.table.reserved {
	background: #fffbe6;
	border-color: #ff9800;
}

.tableModal-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
}

.modal--close-chonban {
	position: relative;
	top: 0;
	right: 0;
}

/* QR bàn */
.qr-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* Chi tiet don hang */
.order-detail-section {
	display: none;
	margin: 40px auto;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 2px 16px #0001;
	padding: 32px;
	font-family: Plus Jakarta Sans;
}

.order-detail-section h2 {
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 12px;
}

.order-detail-section .order-status {
	margin-bottom: 20px;
	font-size: 1.6rem;
}

.order-detail-section .order-status span {
	color: #27ae60;
	font-weight: 500;
}

.order-detail-flex {
	display: flex;
	gap: 32px;
	flex-wrap: wrap;
}

.order-detail-table-wrap {
	flex: 2;
	min-width: 320px;
}

.order-detail-table {
	width: 100%;
	border-collapse: collapse;
	background: #fafbfc;
	border-radius: 8px;
	overflow: hidden;
}

.order-detail-table thead {
	background: #f3f3f3;
}

.order-detail-table th,
.order-detail-table td {
	padding: 10px 8px;
	text-align: left;
	font-size: 1.4rem;
}

.order-detail-table th {
	font-size: 1.8rem;
	font-weight: 600;
}

.order-detail-table tbody tr:nth-child(even) {
	background: #f7f7f7;
}

.order-detail-summary {
	flex: 1;
	min-width: 260px;
	background: #f8f8f8;
	border-radius: 12px;
	padding: 24px 20px;
	margin-top: 0;
}

.order-detail-summary__top {
	font-size: 2rem;
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
}

.order-detail-summary .order-total,
.order-detail-summary .order-promo,
.order-detail-summary .order-method {
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1.67;
	margin-bottom: 20px;
}

.order-detail-summary .order-total span {
	font-weight: 800;
}

.order-detail-summary input[type="text"] {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ddd;
	margin-bottom: 20px;
	background: #f3f3f3;
	border: 1.5px solid var(--primary-color);
	outline: none;
	transition: 0.25s;
}

.order-detail-summary .order-final {
	color: #e67e22;
	font-weight: 600;
	font-size: 1.4rem;
	line-height: 1.67;
	margin-bottom: 20px;
}


.order-detail-summary select {
	width: 100%;
	padding: 10px;
	border-radius: 6px;
	border: 1px solid #ddd;
	cursor: pointer;
}

.order-detail--actions {
	margin-top: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.btn-submit_order {
	background: var(--primary-color);
	border: none;
	cursor: pointer;
}

.btn-submit_order:hover {
	opacity: 0.8;
}

/* Phân trang */
.list--action_page {
	display: flex;
	align-items: center;
	gap: 15px;
}

.action_page--item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-white);
	border-radius: 4px;
	color: var(--color-white);
	font-size: 1.6rem;
}

.action_page--item:hover {
	background: var(--primary-color);
	cursor: pointer;
	border: 1px solid var(--primary-color);
}

.action_page--item.active {
	background: var(--primary-color);
	border: 1px solid var(--primary-color);
}

/* Người dùng */
.container--info {
	position: relative;
	display: inline-block;
	cursor: pointer;
}

.account-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
	min-width: 220px;
	z-index: 100;
	padding: 8px 0;
	font-size: 1.5rem;
}

.account-dropdown__item {
	padding: 12px 24px;
	color: #a11b1b;
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
	transition: background 0.2s;
}

.nav--info {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-dark);
}

.account-dropdown__item:hover {
	background: #f5f5f5;
}

.container--info:hover .account-dropdown,
.container--info:focus-within .account-dropdown {
	display: block;
}

/* info */
.info--title {
	color: var(--color-white);
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 20px;
}

.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 20px;
}

.form-group {
	flex: 1;
	display: flex;
	flex-direction: column;
}

label {
	color: var(--color-white);
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="text"],
input[type="tel"] {
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.save-btn {
	margin-top: 20px;
	padding: 12px 20px;
	background-color: var(--primary-color);
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-weight: 600;
}

.save-btn:hover {
	background-color: #c9302c;
}

/* Footer */
.footer-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 40px;
	row-gap: 30px;
	padding: 40px 0 0 0;
}

.footer-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 220px;
	margin-bottom: 30px;
}

.footer-col h3 {
	font-size: 1.35rem;
	font-weight: bold;
	margin-bottom: 8px;
	letter-spacing: 1px;
	color: var(--color-white);
}

.footer-underline {
	width: 50px;
	height: 4px;
	background: var(--primary-color);
	border-radius: 2px;
	margin-bottom: 18px;
}

.footer-col p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 18px;
	color: var(--color-white);
}

.footer-socials {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	row-gap: 20px;
	column-gap: 50px;
	margin-top: 10px;
}

.footer-social {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	border-radius: 50%;
	color: var(--primary-color);
	font-size: 1.5rem;
	background: #18181a;
	transition: all 0.3s cubic-bezier(.4, 2, .6, 1);
}

.footer-social:hover {
	border-color: var(--primary-color);
	color: var(--color-white);
	background: var(--primary-color);
	transform: translateY(-4px) scale(1.08);
	box-shadow: 0 4px 16px rgba(251, 143, 44, 0.12);
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 18px;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	gap: 16px;
	color: var(--color-white);
}

.footer-col ul li a {
	color: var(--color-white);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-col ul li a:hover {
	color: var(--primary-color);
	text-decoration: underline;
}

.footer-col ul li span {
	color: var(--primary-color);
	font-size: 1.3em;
	margin-right: 0;
}

.footer-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #18181a;
	color: var(--primary-color);
	font-size: 2rem;
	margin-right: 0;
	flex-shrink: 0;
	transition: background 0.2s, color 0.2s, border 0.2s;
}

.footer-col ul li:hover .footer-icon {
	background: var(--primary-color);
	color: var(--color-white);
	border: 2px solid var(--primary-color);
}

.footer--bottom_banQuyen {
	text-align: center;
	font-family: Plus Jakarta Sans;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.67;
	color: var(--color-white);
	padding-bottom: 20px;
}

.animate__rotate__infinite {
	animation: pendulumInfinite 2s cubic-bezier(.68, -0.55, .27, 1.55) infinite;
	transform-origin: 50% 0%;
}

@keyframes pendulumInfinite {
	0% {
		transform: rotate(-7deg);
	}

	50% {
		transform: rotate(7deg);
	}

	100% {
		transform: rotate(-7deg);
	}
}

/* Slider Styles */
.slider-container {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slider {
	display: flex;
	width: 400%;
	height: 100%;
	transition: transform 0.5s ease-in-out;
}

.slide {
	width: 25%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dot.active {
	background-color: var(--color-white);
}

/* Menu  */
.menu-filter {
	display: none;
	background: var(--color-dark);
	padding: 40px 0 20px 0;
}

.menu-filter__categories {
	display: flex;
	align-items: center;
	gap: 32px;
	justify-content: space-between;
	overflow-x: auto;
	padding-bottom: 16px;
	border-bottom: 3px solid #e0e0e0;
	margin-bottom: 32px;
}

.menu-filter__category {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	width: 80px;
	min-width: 80px;
	height: 80px;
	border-radius: 50%;
	background: #181818;
	border: 3px solid transparent;
	transition: border 0.2s, box-shadow 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	padding: 6px;
}

.menu-filter__category--active,
.menu-filter__category:hover {
	border: 3px solid var(--primary-color);
	background: #222;
}

.menu-filter__category img {
	width: 50px;
	height: 45px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 6px;
	border: 2px solid #fff;
	background: #fff;
}

.menu-filter__category span {
	color: #fff;
	font-size: 1.3rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
	text-align: center;
	font-weight: 500;
}

.menu-filter__search-row {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 24px;
	flex-wrap: wrap;
}

.menu-filter__search {
	flex: 1 1 300px;
	min-width: 220px;
	padding: 12px 18px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	font-size: 1.5rem;
	outline: none;
}

.menu-filter__sort-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.menu-filter__sort {
	padding: 10px 18px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	font-size: 1.5rem;
	outline: none;
}

.menu-filter__sort-wrap label {
	color: #fff;
	font-size: 1.4rem;
	font-family: 'Plus Jakarta Sans', sans-serif;
}

.order-list-wrapper {
	background: #fff !important;
	border-radius: 16px;
	box-shadow: 0 2px 16px #0002;
	padding: 32px 24px 24px 24px;
}

.order-card {
	border: 1px solid #eee;
	padding: 18px 14px 10px 14px;
	margin: 24px 0;
	border-radius: 12px;
	background: #fff;
	color: #222;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.order-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.order-card__status {
	background: #ff9800;
	color: #fff;
	padding: 4px 14px;
	border-radius: 8px;
	font-size: 1.4rem;
	font-weight: 600;
	display: inline-block;
	margin-right: 8px;
	border: none;
}

.order-card__table {
	font-size: 1.6rem;
	color: #444;
	font-weight: 500;
	margin-left: 8px;
}

.order-card__item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	border-bottom: 1px solid #f5f5f5;
	padding-bottom: 8px;
}

.order-card__item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.order-card__image {
	width: 60px;
	height: 60px;
	border-radius: 8px;
	object-fit: cover;
	margin-right: 12px;
	background: #f5f5f5;
	border: 1px solid #eee;
	flex-shrink: 0;
}

.order-card__info {
	flex: 1;
	min-width: 0;
}

.order-card__info b {
	font-size: 1.4rem;
	display: block;
	margin-bottom: 2px;
	color: #222;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.order-card__note {
	font-size: 1.1rem;
	color: #888;
	margin-bottom: 2px;
}

.order-card__qty {
	font-size: 1.1rem;
	color: #888;
	margin-left: 0;
}

.order-card__price {
	min-width: 90px;
	text-align: right;
	font-weight: bold;
	color: #d32f2f;
	margin-left: 8px;
	white-space: nowrap;
}

.order-card__footer {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	border-top: 1px solid #f0f0f0;
	padding-top: 10px;
	margin-top: 8px;
	gap: 12px;
}

.order-card__footer .order-card__status {
	margin-right: 8px;
	background: #ff9800;
	color: #fff;
	padding: 4px 14px;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 600;
}

.order-card__footer .order-card__table {
	margin-left: 0;
	color: #444;
	font-size: 1.1rem;
}

.order-card__footer .order-card__total {
	color: #d32f2f;
	font-weight: bold;
	font-size: 1.4rem;
	margin-left: 16px;
}
.order-summary-title{
	margin-bottom: 15px;
}
.container--contact{
	display: flex;
	align-items: center;
	justify-content: space-between;
}