/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root {
	--catering-primary-color: #860909;
}

.catering-data-loading {
	position: relative;
	min-height: 200px;
}

.catering-data-loading::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: var(--catering-primary-color);
	mask: url("data:image/svg+xml,%3Csvg version='1.1' id='L4' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 100 100' enable-background='new 0 0 0 0' xml:space='preserve'%3E%3Ccircle fill='%23000' stroke='none' cx='6' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.1'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='26' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.2'/%3E%3C/circle%3E%3Ccircle fill='%23000' stroke='none' cx='46' cy='50' r='6'%3E%3Canimate attributeName='opacity' dur='1s' values='0;1;0' repeatCount='indefinite' begin='0.3'/%3E%3C/circle%3E%3C/svg%3E");
	z-index: 9;
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: 100px;
}

.catering-data-loading::after {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0.9;
	background-color: #fff;
	z-index: 7;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	--order-dark-blue-color: #1f5eac;
	--order-dark-blue-color-text: #fff;
	--order-light-blue-color: #94c2dc;
	--order-light-blue-color-text: #1f5eac;
	--order-red-color: #e73326;
	--order-red-color-text: #fff;
	--order-cream-color: #e7d3c0;
	--order-cream-color-text: #1f5eac;
	--body-text-color: #333;
	font-family: "Barlow", sans-serif !important;
	background: #f5f5f5;
	color: var(--body-text-color);
	font-size: 16px;
	overflow-x: unset !important;
}

a {
	text-decoration: none;
	color: inherit;
}

img {
	max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 15px !important;
	color: var(--order-dark-blue-color);
	text-transform: uppercase;
	font-family: "Barlow", sans-serif !important;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 20px;
}

h6 {
	font-size: 18px;
}

::-webkit-input-placeholder {
	color: #333 !important;
}

::-moz-placeholder {
	color: #333 !important;
}

:-ms-input-placeholder {
	color: #333 !important;
}

:-moz-placeholder {
	color: #333 !important;
}

/* HEADER */
.order-wrapper {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 0;
	position: relative;
}

.logo {
	max-width: 205px;
}

.order-nav-dropdown {
	position: absolute;
	right: 0;
	top: 100%;
	z-index: 9;
	background-color: var(--order-dark-blue-color);
	display: none;
}

.order-nav-dropdown ul {
	list-style: none;
	margin: 0;
}

.order-nav-dropdown ul li a {
	color: var(--order-dark-blue-color-text);
	padding: 12px 20px;
	display: block;
	text-transform: uppercase;
	transition: 0.3s;
}

.order-nav-dropdown ul li:hover a,
.order-nav-dropdown ul li.active a {
	background-color: var(--order-light-blue-color);
	color: var(--order-light-blue-color-text);
}

.header-right {
	display: flex;
	gap: 12px;
	align-items: center;
}

.view-cart-btn {
	background: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
	padding: 12px 19px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.view-cart-btn:hover {
	background: var(--order-red-color);
	color: var(--order-red-color-text);
}

.login-btn {
	background: var(--order-red-color);
	color: var(--order-red-color-text);
	padding: 12px 19px;
	border-radius: 4px;
	font-size: 16px;
	line-height: 16px;
	font-weight: 600;
	text-transform: uppercase;
}

.login-btn:hover {
	background: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
}

.burger-menu-btn {
	font-size: 36px;
	color: var(--order-dark-blue-color);
}

.burger-menu-btn:hover {
	color: var(--order-red-color);
}

/* banner */
.banner-sec {
	background: url(../images/banner-bg.jpg) no-repeat bottom center/cover;
	padding: 10px 0;
	color: #fff;
}

.banner-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 40px;
}

.banner-text {
	text-align: center;
}

.banner-text h1 {
	font-size: 60px;
	font-weight: 900;
	line-height: 1.2;
	text-transform: uppercase;
	margin-bottom: 20px;
	color: #fff;
}

.banner-buttons {
	display: flex;
	gap: 14px;
	justify-content: center;
}

.banner-buttons .btn {
	font-size: 20px;
	padding: 15px 20px;
}

.btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: 500;
	font-size: 16px;
	line-height: 16px;
	text-transform: uppercase;
	text-align: center;
	box-shadow: none !important;
	text-shadow: none;
	border: none;
}

.quantity-input {
	margin: 0px 5px !important;
	-moz-appearance: textfield;
	width: 80px;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

.modal-qty {
	padding: 10px !important;
	width: 40px;
}

.customise-quantity-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.customise-quantity-controls .btn {
	padding: 10px !important;
	width: 40px;
}

.btn.primary {
	background: var(--order-red-color);
	color: var(--order-red-color-text);
}

.btn.secondary,
.modal-qty {
	background: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
}

.btn.tertiary {
	background: var(--order-cream-color);
	color: var(--order-cream-color-text);
}

/* SECTION */
section {
	padding: 50px 0;
}

.order-location-nearby h4 {
	text-align: center;
	color: var(--order-dark-blue-color);
}

.order-location-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	margin-left: -10px;
	margin-right: -10px;
}

.order-location-col {
	width: 33.3333%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
}

.order-location-box {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.06);
	border-radius: 15px;
	overflow: hidden;
	height: 100%;
	position: relative;
	padding-bottom: 40px;
}

.order-location-box-heading {
	font-size: 24px;
	line-height: 24px;
	background-color: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
	text-transform: uppercase;
	padding: 15px 15px 15px 52px;
	position: relative;
}

.order-location-box-heading::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background: url('../images/favicon-icon.png') no-repeat center/contain;

}

.order-location-box-content {
	padding: 20px 15px 7px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--body-text-color);
	background-image: url(../images/location-box-graphic.png);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-size: 140px;
}

.order-location-box-content a {
	color: var(--body-text-color);
}

.order-location-box-content-info {
	padding-left: 21px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 24px;
	position: relative;
	display: block;
}

.order-location-box-content-info::before {
	position: absolute;
	content: attr(data-icon);
	font-family: "FontAwesome";
	left: 0;
	top: 0;
	margin-right: 3px;
	font-size: 16px;
	color: var(--order-red-color);
}

.order-location-box-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -0.5px;
	margin-right: -0.5px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
}

.order-location-box-buttons span {
	width: 33.3333%;
	padding-left: 0.5px;
	padding-right: 0.5px;
}

.order-location-box-buttons .btn {
	border-radius: 0;
	font-weight: normal;
	display: block;
}

.order-location-search-bar {
	background-color: var(--order-light-blue-color);
	color: var(--order-light-blue-color-text);
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 25px;
	margin-bottom: 25px;
	border-radius: 5px;
}

.order-location-search-bar h4 {
	margin: 0 0 0 10px !important;
	font-weight: 600;
	color: var(--order-dark-blue-color);

}

.order-location-search-box {
	width: 400px;
	position: relative;
	background-color: #ffffff;
}

.order-location-search-box input[type="text"] {
	display: block;
	width: 100%;
	height: 38px !important;
	background: #fff;
	border: none;
	border-radius: 5px;
	font-size: 16px;
	color: #333;
	padding-left: 40px;
	margin: 0;

}

.order-location-search-box::before {
	position: absolute;
	content: "\f002";
	font-family: "FontAwesome";
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--order-dark-blue-color);
}

.mission-sec {
	background-color: var(--order-light-blue-color);
	color: var(--order-light-blue-color-text);
	text-align: center;
}

.mission-sec h2 {
	color: var(--order-dark-blue-color);
}

.mission-sec p {
	font-size: 18px;
	margin: auto;
	max-width: 820px;
}

.banner-inner-page {
	padding: 60px 0;
	text-align: center;
	position: relative;
	background-image: url('https://dev.puresilvercreative.com/wp-content/uploads/2025/12/inner-banner.jpg');
	background-size: cover;
	background-position: center;
}

.banner-inner-page::before {
	content: "";
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.inner-banner-text {
	position: relative;
}

.inner-banner-text h1 {
	color: var(--order-light-blue-color);
	font-weight: 900;
}

.inner-banner-text p {
	font-size: 24px;
	line-height: 24px;
	color: #fff;
	margin-bottom: 20px;
}

.inner-banner-text a {
	color: #fff;
}

.banner-inner-page.ib-2 {
	padding: 85px 0;
}

.banner-inner-page.ib-2 h1 {
	color: #fff;
	margin: 0 !important;
}

.order-location-menu h2 {
	color: var(--order-dark-blue-color);
	text-align: center;
}

.order-tab-menu {
	text-align: center;
	margin-bottom: 30px;
}

.order-tab-menu ul {
	list-style: none;
	margin: 0;
}

.order-tab-menu ul li {
	display: inline-block;
	margin: 5px 2px;
}

.order-tab-menu ul li a {
	font-size: 16px;
	line-height: 16px;
	text-transform: uppercase;
	background-color: var(--order-light-blue-color);
	color: var(--order-light-blue-color-text);
	padding: 9px 10px;
	border-radius: 5px;
	display: block;
	transition: 0.3s;
}

.order-tab-menu ul li:hover a,
.order-tab-menu ul li.active a {
	background-color: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
}

.order-location-menu-items h3,
.order-location-menu .order-tab-content h3 {
	color: var(--order-dark-blue-color);
	text-align: center;
}

.order-location-menu-list-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.order-location-menu-list-col {
	width: 50%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
}

.order-location-menu-item-box {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.06);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	padding: 10px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.order-location-menu-item-image {
	width: 30%;
}

.order-location-menu-item-info {
	width: 70%;
	padding-left: 15px;
}

.order-location-menu-item-image-inner {
	display: block;
	width: 100%;
	height: 160px;
}

.order-location-menu-item-image-inner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
}

.order-location-menu-item-info h5 {
	color: var(--order-dark-blue-color);
	font-weight: 500;
	margin-bottom: 5px !important;
}

.order-location-menu-item-info p {
	font-size: 14px;
	line-height: 20px;
	color: var(--body-text-color);
	margin-bottom: 10px;
	min-height: 40px;
}

.order-location-menu-item-price {
	font-size: 18px;
	line-height: 18px;
	font-weight: 600;
	color: var(--order-red-color);
	margin-bottom: 15px;
}

.order-location-menu-item-info .btn {
	font-weight: normal;
}

.order-login-page {
	width: 100%;
	height: 100vh;
}

.order-login-page .order-wrapper {
	position: relative;
	height: 100%;
}

.order-login-box {
	max-width: 450px;
	width: 100%;
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.1);
	border-radius: 10px;
	padding: 40px;
	margin: auto;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translate(0, -50%);
	text-align: center;
}

.login-logo {
	max-width: 205px;
	margin: 0 auto 25px;
}

.order-login-box h5 {
	color: var(--order-dark-blue-color);
}

.order-login-box .login-form input[type="tel"],
.order-login-box .login-form input[type="text"] {
	width: 100%;
	height: 50px !important;
	background: #fff;
	border: 1px solid var(--order-dark-blue-color);
	border-radius: 5px;
	font-size: 18px;
	color: #333;
	padding: 0 15px;
	margin-bottom: 15px;
}

.terms-text {
	font-size: 13px;
	line-height: 13px;
	color: var(--body-text-color);
	margin-bottom: 10px;
}

.order-login-box .btn {
	width: 100%;
	padding: 15px;
	box-shadow: none !important;
	box-shadow: none !important;
	text-shadow: none;
	font-weight: 600;
	border: none;
}

.login-back-btn {
	font-size: 18px;
	color: var(--body-text-color);
	margin-bottom: 10px;
}

.otp-sent-num {
	font-size: 14px;
	color: var(--body-text-color);
}

.otp-sent-num a {
	color: var(--order-dark-blue-color);
}

.otp-input-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -7px;
	margin-right: -7px;
}

.otp-field {
	width: 16.66%;
	padding: 0 7px;
}

.order-login-box.otp-box {
	text-align: left;
}

.order-login-box.otp-box h5 {
	margin-bottom: 5px !important;
}

.order-login-box.otp-box .terms-text {
	font-size: 14px;
	line-height: 14px;
	text-align: center;
	margin-bottom: 20px;
}

.order-login-box.otp-box .login-form input[type="text"] {
	border-color: #ddd;
}

.order-breadcrumb {
	text-align: center;
	margin: 30px 0;
}

.order-breadcrumb ul {
	list-style: none;
	margin: 0;
}

.order-breadcrumb ul li {
	display: inline-block;
	color: var(--order-dark-blue-color);
	margin-right: 5px;
}

.order-breadcrumb ul li:last-child {
	margin-right: 0;
}

.order-breadcrumb ul li::after {
	content: "/";
	color: var(--body-text-color);
	margin-left: 5px;
}

.order-breadcrumb ul li:last-child::after {
	display: none;
}

.order-breadcrumb ul li a {
	color: var(--body-text-color);
}

.order-cart-box {
	background-color: #fff;
	padding: 15px 15px 30px;
	border-radius: 15px;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.1);
}

.order-cart-box table {
	font-size: 18px;
}

.order-cart-box table thead tr {
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 400;
	color: var(--order-dark-blue-color);
}

tr th,
tr td {
	border-bottom: 1px solid #ddd;
	padding: 15px 10px;
}

.order-cart-box table tfoot tr:last-child td {
	border-bottom: none;
}

.order-cart-item-details {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.order-cart-item-details h6 {
	text-transform: none;
	margin-bottom: 5px !important;
}

.order-cart-item-details p {
	font-size: 14px;
	line-height: 20px;
	color: var(--body-text-color);
}

.oci-image {
	width: 18%;
	height: 75px;
	border-radius: 15px;
	overflow: hidden;
}

.oci-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.oci-content {
	width: 82%;
	padding-left: 12px;
}

.oci-subtotal {
	font-size: 20px;
	font-weight: 600;
	padding: 15px 0;
	display: block;
}

.oci-tax {
	font-size: 22px;
	font-weight: 600;
	padding: 15px 0;
	display: block;
}

.oci-grand-total {
	font-size: 24px;
	font-weight: 600;
	padding: 15px 0;
	display: block;
}

.order-cart-box input[type="number"] {
	height: 44px;
	border-radius: 5px;
	border: #ddd 1px solid;
	font-size: 18px;
	color: #333;
	padding: 0 8px;
}

.oci-action-btn {
	text-align: right;
	padding: 0 10px;
}

.oci-action-btn .btn,
.payment-option-action .btn {
	padding: 14px 20px;
	margin: 3px;
}

.order-checkout-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.order-checkout-col {
	width: 50%;
	padding: 0 10px;
	margin-bottom: 20px;
}

.order-checkout-box {
	background-color: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.06);
	height: 100%;
}

.order-form {
	margin-bottom: 20px;
}

.o-form-field {
	margin-bottom: 10px;
}

.o-form-field input[type="text"],
.o-form-field input[type="tel"],
.o-form-field input[type="email"],
.o-form-field select {
	display: block;
	width: 100%;
	height: 44px !important;
	background: #fff;
	box-shadow: none;
	border: #ddd 1px solid;
	border-radius: 5px;
	padding: 0 15px;
	font-size: 16px;
	line-height: 16px;
	color: #333;
}

table.order-checkout-total {
	width: 100%;
	border: #ddd 1px solid;
	border-spacing: 0;
}

table.order-checkout-total tbody tr td {
	border: none;
	padding: 10px 15px;
}

table.order-checkout-total tbody tr:nth-child(even) {
	background-color: #f5f5f5;
}

table.order-checkout-total tfoot tr td {
	border-bottom: none;
	border-top: #ddd 1px solid;
	padding: 10px 15px;
	color: var(--order-red-color);
}

.payment-option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
	border-bottom: 1px solid #e0e0e0;
	cursor: pointer;
	font-weight: 600;
}

.payment-option .left {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}

.payment-option .left img {
	width: 22px;
	height: 22px;
	object-fit: contain;
}

.payment-option input {
	width: 18px;
	height: 18px;
	accent-color: #1f5fbf;
}

.payment-option-action {
	text-align: right;
	margin-top: 20px;
}

.order-card-details-box {
	background-color: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.1);
	max-width: 550px;
	margin: 0 auto;
}

.order-select-address {
	border-bottom: var(--order-light-blue-color) 1px solid;
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.order-address {
	display: block;
	background-color: #f5f5f5;
	color: var(--body-text-color);
	padding: 10px 15px;
	margin-bottom: 5px;
	border-radius: 5px;
	transition: 0.3s;
}

.order-address:hover,
.order-address.active {
	background-color: var(--order-light-blue-color);
	color: var(--order-light-blue-color-text);
}

.add-more-address {
	text-align: right;
	margin-top: 10px;
}

.add-more-address a {
	font-size: 14px;
	color: var(--order-dark-blue-color);
}

.order-card-details-box .order-form {
	margin: 0;
}

.order-f-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -5px;
	margin-right: -5px;
}

.order-f-col {
	width: 100%;
	padding: 0 5px;
}

.order-f-col.f-col-2 {
	width: 50%;
}

.f-send-btn {
	margin-top: 15px;
}

.f-send-btn .btn {
	border: none;
	height: 44px !important;
	box-shadow: none;
	cursor: pointer;
}

.order-card-details-box .f-send-btn .btn {
	width: 100%;
}

.past-orders .order-location-menu-item-info h5 {
	margin-bottom: 10px !important;
}

.past-orders .order-location-menu-item-info p {
	min-height: inherit;
}

.past-orders .order-location-menu-item-info p.order-id-date {
	color: #9a9a9a;
}

.order-delivered {
	color: #20bd01;
}

.order-address-row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
}

.order-address-col {
	width: 25%;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 20px;
}

.order-address-box {
	background-color: #fff;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.06);
	border-radius: 10px;
	overflow: hidden;
	height: 100%;
	padding: 20px;
	border: 1px transparent solid;
	transition: 0.3s;
	position: relative;
}

.order-address-box:hover,
.order-address-box.active {
	border-color: var(--order-dark-blue-color);
	overflow: hidden;
}

.order-address-box.active:after {
	content: "Default";
	font-size: 12px;
	line-height: 12px;
	color: #fff;
	background-color: var(--order-dark-blue-color);
	padding: 3px 7px;
	width: 100px;
	text-align: center;
	position: absolute;
	top: 11px;
	right: -32px;
	transform: rotate(45deg);

}

.order-address-heading {
	font-size: 16px;
	margin-bottom: 15px !important;
	padding-left: 34px;
	position: relative;
}

.order-address-heading::before {
	content: "\f015";
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translate(0, -50%);
	font-size: 14px;
	text-align: center;
	color: var(--order-dark-blue-color);
	border: var(--order-dark-blue-color) 1px solid;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	line-height: 24px;
}

.order-address-box p {
	font-size: 14px;
	margin-bottom: 10px;
	color: var(--body-text-color);
	position: relative;
	z-index: 1;
}

.order-address-box p:last-child {
	margin-bottom: 0;
}

.order-account-s-box {
	background-color: #fff;
	padding: 25px;
	border-radius: 15px;
	box-shadow: 0px 0px 20px 0px rgba(2, 29, 53, 0.1);
	max-width: 700px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.order-account-s-box-left {
	width: 30%;
	padding: 15px;
	text-align: center;
}

.order-account-s-box-right {
	width: 70%;
	padding: 15px;
}

.o-account-user-img {
	margin-bottom: 15px;
}

.o-account-user-img img {
	border-radius: 50%;
}

.order-account-s-box-right .f-send-btn {
	text-align: right;
}


/* FOOTER */
footer {
	background: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
	padding: 40px 0;
	text-align: center;
}

.footer-logo {
	max-width: 225px;
	margin: 0 auto 20px;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu ul li {
	display: inline-block;
	border-right: #fff 1px solid;
	margin-right: 10px;
	margin-bottom: 13px;
	padding-right: 13px;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 18px;
}

.footer-menu ul li:last-child {
	border-right: none;
	margin-right: 0;
	padding-right: 0;
}

.footer-menu ul li a {
	color: #fff;
}

footer .copyright {
	margin-top: 10px;
}


/* Overlay */
.order-cart-sidebar {
	display: none;
}

.order-cart-sidebar .sidebar-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99;
}

/* Sidebar */
.order-cart-sidebar .cart-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 360px;
	height: 100vh;
	background: #fff;
	z-index: 100;
	display: flex;
	flex-direction: column;
}

/* Header */
.order-cart-sidebar .cart-header {
	background: var(--order-dark-blue-color);
	color: #fff;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
}

.order-cart-sidebar .cart-header h5 {
	color: var(--order-dark-blue-color-text);
	margin: 0 !important;
}

.order-cart-sidebar .close-btn {
	background: #e53935;
	border: none;
	color: #fff;
	font-size: 18px;
	width: 48px;
	height: 100%;
	cursor: pointer;
	position: absolute;
	left: -48px;
}

/* Count */
.order-cart-sidebar .cart-count {
	padding: 14px 16px;
	border-bottom: 1px solid #ddd;
	font-weight: 600;
	color: #1f5fbf;
}

/* Item */
.order-cart-sidebar .cart-items {
	max-height: 100%;
	overflow-y: auto;
}

.order-cart-sidebar .cart-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-bottom: 1px solid #eee;
}

.order-cart-sidebar .cart-item img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 4px;
}

.order-cart-sidebar .item-info {
	flex: 1;
}

.order-cart-sidebar .item-info h4 {
	font-size: 14px;
	margin: 0 !important;
}

.order-cart-sidebar .item-info p {
	color: var(--order-red-color);
	margin: 4px 0;
}

.order-cart-sidebar .item-info input {
	width: 50px;
	height: 25px !important;
	padding: 4px;
}

.order-cart-sidebar .delete {
	background: none;
	border: none;
	color: #e53935;
	font-size: 18px;
	cursor: pointer;
}

/* Total */
.order-cart-sidebar .cart-total {
	display: flex;
	justify-content: space-between;
	padding: 16px;
	font-size: 20px;
}

.order-cart-sidebar .cart-total strong {
	color: var(--order-red-color);
}

/* Buttons */
.order-cart-sidebar .cart-actions {
	padding: 16px;
	display: flex;
	gap: 10px;
}

.order-cart-sidebar .cart-actions button {
	flex: 1;
	padding: 12px;
	border: none;
	font-size: 16px;
	cursor: pointer;
	border-radius: 4px;
	font-family: "Barlow", sans-serif !important;
}

.order-cart-sidebar .checkout {
	background: var(--order-red-color);
	color: var(--order-red-color-text);
}

.order-cart-sidebar .view-cart {
	background: var(--order-dark-blue-color);
	color: var(--order-dark-blue-color-text);
}

@media only screen and (max-width:979px) {
	.banner-text h1 {
		font-size: 48px;
	}

	.banner-buttons .btn {
		font-size: 16px;
		padding: 10px 20px;
	}

	.order-location-box {
		padding-bottom: 72px;
	}

	.order-location-box-buttons span {
		width: 50%;
	}

	.order-location-box-buttons span:last-child {
		width: 100%;
	}

	.oci-image {
		width: 30%;
	}

	.oci-content {
		width: 70%;
	}

	.order-address-col {
		width: 50%;
	}
}

@media only screen and (max-width:767px) {
	.order-location-col {
		width: 50%;
	}

	.order-location-menu-list-col {
		width: 100%;
	}
}

@media only screen and (max-width:640px) {
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 30px;
	}

	h3 {
		font-size: 24px;
	}

	h4 {
		font-size: 20px;
	}

	h5 {
		font-size: 18px;
	}

	h6 {
		font-size: 17px;
	}

	.banner-sec {
		padding: 40px 0;
	}

	.banner-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.order-location-search-bar {
		display: block;
		text-align: center;
	}

	.order-location-search-box {
		width: 100%;
		margin-top: 10px;
	}

	.order-cart-box table thead {
		display: none;
	}

	.order-cart-box table tbody tr {
		display: block;
		border-bottom: #ddd 1px solid;
		width: 100%;
	}

	.order-cart-box table tr td {
		display: block;
		border: none;
		padding: 10px;
		text-align: center !important;
		width: 100% !important;
	}

	.order-cart-box table tr td:first-child {
		text-align: left !important;
	}

	.oci-action-btn {
		text-align: center;
	}

	.banner-inner-page.ib-2 {
		padding: 50px 0;
	}

	.order-checkout-col {
		width: 100%;
	}
}

@media only screen and (max-width:575px) {
	.header-inner {
		display: block;
	}

	.logo {
		margin: 0 auto 15px;
	}

	.header-right {
		justify-content: center;
	}

	.order-location-col {
		width: 100%;
	}

	.order-f-col.f-col-2 {
		width: 100%;
	}
}

@media only screen and (max-width:480px) {
	.order-cart-sidebar .cart-sidebar {
		width: 100%;
	}

	.order-cart-sidebar .close-btn {
		left: auto;
		right: 0;
	}

	.order-location-menu-item-image {
		width: 100%;
	}

	.order-location-menu-item-image-inner {
		height: 200px;
	}

	.order-location-menu-item-info {
		width: 100%;
		padding: 15px;
	}

	.order-address-col {
		width: 100%;
	}

	.order-account-s-box-left,
	.order-account-s-box-right {
		width: 100%;
	}

	.o-account-user-img {
		max-width: 150px;
		margin: 0 auto 15px;
	}

	.order-account-s-box-right .f-send-btn {
		text-align: center;
	}
}

/* Customise Modal Lightbox */
.customise-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.75);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	overflow-y: auto;
	animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.customise-modal {
	background: #fff;
	border-radius: 8px;
	max-width: 600px;
	width: 100%;
	max-height: 90vh;
	display: flex;
	flex-direction: column;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
	animation: slideUp 0.3s ease;
	position: relative;
}

@keyframes slideUp {
	from {
		transform: translateY(50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.customise-modal-header {
	padding: 20px 25px;
	border-bottom: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-shrink: 0;
}

.customise-modal-header h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #333;
}

.customise-modal-header .close-btn {
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	padding: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	transition: all 0.2s ease;
}

.customise-modal-header .close-btn:hover {
	background-color: #f5f5f5;
	color: #333;
}

.customise-modal-body {
	padding: 25px;
	overflow-y: auto;
	flex: 1;
}

.customise-modal-body .product-info {
	text-align: center;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e5e5e5;
}

.customise-modal-body .product-info img {
	max-width: 200px;
	max-height: 200px;
	object-fit: cover;
	border-radius: 8px;
	margin-bottom: 15px;
}

.customise-modal-body .product-info h4 {
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #333;
}

.customise-modal-body .product-info p {
	color: #666;
	margin-bottom: 10px;
	font-size: 14px;
}

.customise-modal-body .product-info .product-price {
	font-size: 24px;
	font-weight: 700;
	color: var(--catering-primary-color, #860909);
	margin-top: 10px;
}

.customise-modal-body .product-info .product-price .original-price {
	font-size: 18px;
	color: #999;
	text-decoration: line-through;
	margin-right: 10px;
	font-weight: 400;
}

.customise-modal-body .product-info .product-price .final-price {
	font-size: 24px;
	font-weight: 700;
}

.customise-options {
	margin-top: 20px;
}

.modifier-group {
	margin-bottom: 30px;
}

.modifier-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
}

.modifier-header h5 {
	font-size: 18px;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.modifier-requirement {
	font-size: 12px;
	color: #666;
	font-weight: 400;
}

.modifier-error {
	color: #d32f2f;
	font-size: 13px;
	margin-bottom: 10px;
	padding: 8px 12px;
	background-color: #ffebee;
	border-radius: 4px;
}

.sub-modifiers {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sub-modifier-option {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border: 2px solid #e5e5e5;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	background: #fff;
}

.sub-modifier-option:hover {
	border-color: var(--catering-primary-color, #860909);
	background-color: #fff5f5;
}

.sub-modifier-option.selected {
	border-color: var(--catering-primary-color, #860909);
	background-color: #fff5f5;
}

.sub-modifier-option input[type="checkbox"] {
	margin-right: 12px;
	width: 18px;
	height: 18px;
	cursor: pointer;
	accent-color: var(--catering-primary-color, #860909);
}

.sub-modifier-option:has(input:disabled) {
	opacity: 0.5;
	cursor: not-allowed;
}

.sub-modifier-name {
	flex: 1;
	font-size: 15px;
	color: #333;
	font-weight: 500;
}

.sub-modifier-price {
	font-size: 15px;
	color: var(--catering-primary-color, #860909);
	font-weight: 600;
	margin-left: 10px;
}

.sub-modifier-item-wrapper {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modifier-quantity-controls {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: 30px;
	margin-top: 5px;
}

.modifier-quantity-controls .quantity-btn {
	padding: 4px 12px;
	font-size: 14px;
	min-width: 32px;
	height: 32px;
}

.modifier-quantity-controls .quantity-btn.small {
	padding: 4px 10px;
	font-size: 14px;
	min-width: 28px;
	height: 28px;
}

.modifier-quantity-value {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	min-width: 24px;
	text-align: center;
}

.nutritional-info {
	margin-top: 8px;
	margin-left: 30px;
	font-size: 13px;
	color: #666;
}

.nutritional-info .calories {
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 4px;
}

.nutrition-details {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 4px;
}

.nutrition-details span {
	display: inline-block;
	padding: 2px 6px;
	background-color: #f5f5f5;
	border-radius: 3px;
}

.customise-modal-body .product-info .nutritional-info {
	margin-left: 0;
	margin-top: 10px;
}

.no-sub-modifiers {
	padding: 15px;
	text-align: center;
	color: #999;
	font-size: 14px;
	background-color: #f9f9f9;
	border-radius: 6px;
}

.customise-note {
	text-align: center;
	color: #999;
	font-size: 14px;
	padding: 20px;
	background-color: #f9f9f9;
	border-radius: 6px;
}

.customise-modal-footer {
	padding: 20px 25px;
	border-top: 1px solid #e5e5e5;
	display: flex;
	justify-content: space-between;
	gap: 15px;
	flex-shrink: 0;
}

.customise-modal-footer .btn {
	padding: 12px 30px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.2s ease;
	border: none;
}

.customise-modal-footer .btn.secondary {
	background-color: #f5f5f5;
	color: #333;
}

.customise-modal-footer .btn.secondary:hover {
	background-color: #e5e5e5;
}

.customise-modal-footer .btn.primary {
	background-color: var(--catering-primary-color, #860909);
	color: #fff;
}

.customise-modal-footer .btn.primary:hover {
	background-color: #6d0707;
}

.customise-modal-footer .btn.primary:disabled {
	background-color: #ccc;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Cart Badge */
.view-cart-btn {
	position: relative;
}

.cart-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--catering-primary-color, #860909);
	color: #fff;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}

/* Option Ingredients */
.option-ingredients {
	margin-top: 15px;
	margin-left: 20px;
	padding: 15px;
	background-color: #f9f9f9;
	border-radius: 6px;
	border-left: 3px solid var(--catering-primary-color, #860909);
}

.ingredients-header {
	margin-bottom: 12px;
}

.ingredients-header h6 {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin: 0 0 10px 0;
}

.ingredients-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ingredient-option {
	margin-left: 0;
	padding: 10px 12px;
	background-color: #fff;
	border: 1px solid #e5e5e5;
}

.ingredient-option:hover {
	border-color: var(--catering-primary-color, #860909);
}

.ingredient-option.selected {
	border-color: var(--catering-primary-color, #860909);
	background-color: #fff5f5;
}

/* Nested Modifiers */
.nested-modifiers {
	margin-top: 15px;
	margin-left: 20px;
	padding-left: 20px;
	border-left: 2px solid #e5e5e5;
}

.modifier-group.nested {
	margin-top: 20px;
}

.modifier-group.nested .modifier-header h5 {
	font-size: 16px;
	font-weight: 500;
}

.modifier-group.nested-2 {
	margin-left: 10px;
}

.modifier-group.nested-2 .modifier-header h5 {
	font-size: 15px;
}

.modal-cancel-btn {
	display: none;
}

/* Responsive */
@media (max-width: 768px) {
	.modal-cancel-btn {
		display: block;
		margin-bottom: 10px;
	}

	.customise-modal {
		max-width: 95%;
		margin: 10px;
	}

	.customise-modal-body {
		padding: 20px;
	}

	.customise-modal-header {
		padding: 15px 20px;
	}

	.customise-modal-footer {
		padding: 15px 20px;
		flex-direction: column;
	}

	.customise-modal-footer .btn {
		width: 100%;
	}

	.nested-modifiers {
		margin-left: 10px;
		padding-left: 15px;
	}
}

/* Ingredient Modifier Groups (nested within ingredients) */
.ingredient-modifier-group {
	margin-top: 15px;
	margin-bottom: 15px;
	padding: 12px;
	background-color: #f5f5f5;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
}

.ingredient-modifier-group.nested {
	margin-left: 20px;
	background-color: #f0f0f0;
	border-left: 3px solid var(--catering-primary-color, #007bff);
}

.ingredient-group-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.ingredient-group-header h6 {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.ingredient-group-header .modifier-requirement {
	font-size: 12px;
	color: #666;
	font-weight: normal;
}

.ingredient-modifier-group .ingredients-list {
	margin-top: 10px;
	padding-left: 0;
}

.ingredient-modifier-group .ingredient-option {
	margin-bottom: 8px;
}

.option-subproducts {
	margin-left: 30px;
}

.cart-item-customisations {
	font-size: 0.7em;
	color: var(--body-text-color);
	font-weight: 500;
}

.customisation-price {
	margin-left: 5px;
	font-weight: bold;
}

.customisation-quantity {
	font-size: 0.9em;
	color: #666;
	margin-left: 4px;
	font-weight: normal;
}

.customisation-children {
	margin-left: 15px;
	margin-top: 4px;
}

.customisation-child {
	font-size: 0.95em;
	opacity: 0.9;
}

.menu-item-nutrition {
	margin-top: 8px;
	margin-bottom: 8px;
	margin-left: 0px;
}

.menu-item-nutrition .calories {
	font-weight: 600;
	color: #333;
	display: block;
	margin-bottom: 4px;
	font-size: 0.85em;
}

.menu-item-nutrition .nutrition-details {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}

.menu-item-nutrition .nutrition-details span {
	display: inline-block;
	padding: 2px 6px;
	background-color: #f5f5f5;
	border-radius: 3px;
	font-size: 0.75em;
	color: #666;
}

.oci-content p {
	margin-bottom: 0px;
}

.cart-empty {
	text-align: center;
}

/* Error Message */
.error-message {
	color: red;
	margin: 10px 0;
}

/* Resend OTP Link */
.resend-otp-link {
	cursor: pointer;
}

/* Address Management Styles */
.address-loading,
.address-empty {
	text-align: center;
	padding: 20px;
}

.address-default-indicator {
	margin-top: 10px;
	color: green;
}

.address-actions {
	margin-top: 10px;
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.address-action-btn {
	font-size: 12px;
	padding: 5px 10px;
}

.address-action-btn.delete {
	background: #dc3545;
}

.address-add-container {
	text-align: center;
	margin-top: 15px;
}

/* Address Form Modal */
.address-form-modal {
	max-width: 600px;
}

.address-form-body {
	padding: 20px;
}

.address-form-field {
	margin-bottom: 15px;
}

.address-form-label {
	display: block;
	margin-bottom: 5px;
}

.address-form-input {
	width: 100%;
	padding: 8px;
}

.address-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 15px;
}

.address-form-actions {
	display: flex;
	gap: 10px;
	justify-content: flex-end;
}

/* Account Settings Full Width */
.order-account-s-box-full {
	width: 100%;
}

.add-edit-address-link {
	font-size: 14px;
	vertical-align: middle;
	text-transform: capitalize;
	color: var(--order-red-color);
}