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

/* =====================
	 Design system & accessibility improvements
	 (variables, container, skip-link, focus states, fluid type, and mobile nav animation)
	 ===================== */

:root {
	--color-primary: #f59e0b;
	--color-primary-light: #fde68a;
	--color-accent: #dc2626;
	--color-accent-hover: #b91c1c;
	--color-accent-2: #ef4444;
	--text: #0f172a;
	--text-light: #475569;
	--bg: #f8fafc;
	--bg-card: #ffffff;
	--max-width: 1200px;
	--spacing: 24px;
	--radius: 16px;
	--shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
	--shadow-md: 0 8px 16px rgba(15, 23, 42, 0.08);
	--shadow-lg: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 6%;
}

/* Skip link (hidden until focused) */
.skip-link {
	position: absolute;
	left: -999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip-link:focus {
	left: 6%;
	top: 18px;
	width: auto;
	height: auto;
	padding: 10px 12px;
	background: #0f172a;
	color: #fff;
	z-index: 9999;
	border-radius: 6px;
}

/* Logo */
.logo {
	font-weight: 800;
	font-size: 20px;
	color: var(--text);
	line-height: 1;
}

/* Fluid, modern typography for hero */
.hero-text h1 {
	font-size: clamp(34px, 6vw, 60px);
	line-height: 1;
	color: var(--color-accent-2);
}

h2,
h3 {
	font-size: clamp(18px, 2.6vw, 32px);
}

/* Focus-visible friendly outlines */
a:focus,
button:focus {
	outline: none;
	box-shadow: 0 0 0 4px rgba(255, 79, 109, 0.12);
	border-radius: 8px;
}

/* Navbar tweaks */
.navbar {
	padding: 16px 6%;
	background: var(--color-primary);
}

.navbar nav a {
	color: var(--text);
	padding: 8px 10px;
	display: inline-block;
	border-radius: 8px;
	transition: background .18s ease, transform .18s ease;
}

.navbar nav a:hover {
	background: rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.navbar nav a:focus {
	background: rgba(0, 0, 0, 0.08);
}

.menu-toggle {
	background: transparent;
	padding: 8px 10px;
	border-radius: 8px;
}

.menu-toggle[aria-expanded="true"] {
	transform: rotate(90deg);
}

/* Mobile nav: animate using max-height (overrides previous display:none) */
/* Mobile nav: sleek floating dropdown */
@media (max-width:768px) {
	.navbar {
		flex-wrap: wrap;
	}
	.menu-toggle {
		display: block;
		z-index: 1300;
	}
	.navbar nav {
		position: absolute;
		top: 70px;
		right: 6%;
		width: 240px;
		background: rgba(255, 255, 255, 0.95);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border: 1px solid rgba(0,0,0,0.08);
		border-radius: 16px;
		box-shadow: 0 20px 40px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.04);
		display: flex;
		flex-direction: column;
		gap: 4px;
		padding: 16px;
		z-index: 1200;
		
		/* Smooth fade and scale animation */
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px) scale(0.95);
		transform-origin: top right;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.navbar nav.active {
		opacity: 1;
		visibility: visible;
		transform: translateY(0) scale(1);
	}
	.navbar nav a {
		padding: 12px 16px;
		font-size: 16px;
		font-weight: 500;
		border-radius: 10px;
		transition: background 0.2s, color 0.2s;
	}
	.navbar nav a:hover,
	.navbar nav a:focus {
		background: rgba(245, 158, 11, 0.1);
		color: var(--color-accent-2);
		transform: translateX(4px);
	}
}

/* Hero spacing tweaks */
.hero {
	padding-top: 80px;
	padding-bottom: 80px
}

.hero button {
	padding: 16px 28px;
	font-size: 16px;
	border-radius: 999px
}

.site-footer {
	background: #0b1220;
	color: #fff;
	padding: 24px 6%;
	text-align: center;
	font-size: 14px
}


html {
	scroll-behavior: smooth;
}

body {
	background: #f6f6f6;
	font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3 {
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 2px;
}


/* NAVBAR */

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 6%;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}

/* Header layout helpers */
.logo-link {
	display: inline-flex;
	align-items: center;
	margin-left: 0;
	text-decoration: none;
}

.site-logo {
	height: 44px;
	width: auto;
	display: block;
}

.nav-right {
	display: flex;
	align-items: center;
	gap: 16px;
}

.controls {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-right .menu-toggle {
	display: none;
}

.navbar nav a {
	margin: 0 15px;
	text-decoration: none;
	color: var(--text);
	font-weight: 600;
	transition: color 0.3s ease;
}

.navbar nav a:hover {
	color: var(--color-primary);
}



/* HERO */

.hero {
	padding: 140px 10%;
	background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: "";
	position: absolute;
	width: 150%;
	height: 150%;
	top: -25%;
	left: -25%;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
	animation: none;
	z-index: 0;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("https://www.transparenttextures.com/patterns/noise.png");
	opacity: 0.04;
	pointer-events: none;
}

.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.hero-text h1 {
	color: var(--text);
	margin: 10px 0;
}

.hero button {
	padding: 14px 32px;
	background: var(--color-accent);
	border: none;
	color: white;
	font-weight: 600;
	border-radius: 50px;
	letter-spacing: 1px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: all .3s ease;
}

.hero button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.hero-image {
	perspective: 1000px;
}

.hero-image img {
	width: 320px;
	transform: rotate(-6deg);
	filter: drop-shadow(0 30px 25px rgba(0, 0, 0, 0.3));
	transition: transform .5s;
}

.hero-image img:hover {
	transform: rotate(-3deg) scale(1.05);
}

@keyframes spin {
	0% {
		transform: rotate(0deg)
	}

	100% {
		transform: rotate(360deg)
	}
}

/* Animated Shopping Cart Hero */
.animated-cart-container {
	position: relative;
	width: 320px;
	height: 320px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.cart-wrapper {
	position: relative;
	animation: driveCart 3s ease-in-out infinite alternate;
}

.cart-icon {
	stroke: var(--color-accent-2);
	filter: drop-shadow(0 20px 15px rgba(220, 38, 38, 0.3));
	z-index: 2;
	position: relative;
}

.food-item {
	position: absolute;
	font-size: 3rem;
	opacity: 0;
	z-index: 1;
}

.item-1 {
	top: 0px;
	left: 40px;
	animation: dropFood 4s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
	animation-delay: 0.5s;
}

.item-2 {
	top: -10px;
	left: 80px;
	animation: dropFood 4s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
	animation-delay: 1.8s;
}

.item-3 {
	top: -5px;
	left: 120px;
	animation: dropFood 4s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
	animation-delay: 3.1s;
}

.speed-lines {
	position: absolute;
	bottom: 20px;
	left: -80px;
	right: 40px;
	height: 30px;
	z-index: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.speed-lines .line {
	height: 4px;
	background: var(--color-primary);
	border-radius: 999px;
	opacity: 0;
	animation: speedLine 1.5s linear infinite;
}

.speed-lines .l1 { width: 40px; animation-delay: 0s; }
.speed-lines .l2 { width: 70px; animation-delay: 0.3s; margin-left: 20px; }
.speed-lines .l3 { width: 30px; animation-delay: 0.7s; margin-left: 50px; }

@keyframes driveCart {
	0% { transform: translateX(-15px) translateY(5px) rotate(-3deg); }
	50% { transform: translateX(0px) translateY(-5px) rotate(0deg); }
	100% { transform: translateX(15px) translateY(5px) rotate(3deg); }
}

@keyframes dropFood {
	0% { transform: translateY(-80px) scale(0.5) rotate(-20deg); opacity: 0; }
	20% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
	80% { transform: translateY(0) scale(1) rotate(0deg); opacity: 1; }
	100% { transform: translateY(20px) scale(0.5); opacity: 0; }
}

@keyframes speedLine {
	0% { transform: translateX(100px); opacity: 0; }
	50% { opacity: 0.8; }
	100% { transform: translateX(-100px); opacity: 0; }
}



/* FEATURES MARQUEE ANIMATION */

.features-marquee {
	width: 100%;
	overflow: hidden;
	background: #0f172a;
	color: #f8fafc;
	padding: 30px 0;
	position: relative;
	display: flex;
}

.marquee-content {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	animation: scrollLeft 24s linear infinite;
}

.marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Poppins', sans-serif;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.marquee-item i {
	font-style: normal;
	font-size: 20px;
}

.marquee-dot {
	margin: 0 60px;
	color: var(--color-primary);
	font-size: 20px;
}

@keyframes scrollLeft {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}



/* CHEF */

.chef {
	padding: 80px 10%;
	background: #1f4c4a;
	color: white;
	text-align: center;
}

.food-grid {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.food-card {
	padding: 0;
	border-radius: 16px;
	position: relative;
	text-align: left;
	color: var(--text);
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: all 0.3s ease;
}

.food-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-color: rgba(0, 0, 0, 0.12);
}

.food-card img {
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	border-radius: 0;
	object-fit: cover;
	display: block;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.food-card:hover img {
	transform: scale(1.05);
}

.food-card>p {
	padding: 20px 20px 4px 20px;
	margin: 0;
	font-weight: 600;
	font-size: 18px;
	font-family: 'Poppins', sans-serif;
	z-index: 1;
	color: #0f172a;
	line-height: 1.3;
}

.food-card>.price {
	padding: 0 20px 20px 20px;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 18px;
	z-index: 1;
}

.food-card>.card-actions {
	margin: auto 20px 20px 20px;
	display: flex;
	gap: 8px;
	z-index: 1;
}

.food-card .card-actions button {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 15px;
	padding: 10px 0;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	flex: 1;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.food-card .add-to-cart {
	background: #f1f5f9;
	color: #0f172a;
}

.food-card .add-to-cart:hover {
	background: #e2e8f0;
	transform: translateY(-2px);
}

.food-card .buy-now {
	background: #0f172a;
	color: #fff;
}

.food-card .buy-now:hover {
	background: var(--color-primary);
	color: #0f172a;
	transform: translateY(-2px);
	box-shadow: 0 8px 16px rgba(245, 158, 11, 0.25);
}

.food-card .add-to-cart:active,
.food-card .buy-now:active {
	transform: translateY(0);
}

/* Toast */
.toast {
	position: fixed;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
	background: rgba(2, 6, 23, 0.95);
	color: #fff;
	padding: 12px 16px;
	border-radius: 10px;
	display: flex;
	gap: 12px;
	align-items: center;
	box-shadow: 0 10px 30px rgba(2, 6, 23, 0.3);
	z-index: 4000;
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease, transform .18s ease
}

.toast.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0)
}

.toast .toast-action {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	padding: 6px 10px;
	border-radius: 8px;
	cursor: pointer
}


/* Responsive grid adjustments */

/* Adjust grid numbers for general grid */
@media (max-width:1100px) {
	.food-grid {
		grid-template-columns: repeat(3, 1fr)
	}

	/* Limit to 4 items on home grid (hide from 5th onward) */
	.home-food-grid .food-card:nth-child(n+5) {
		display: none !important;
	}
}

@media (max-width:768px) {
	.food-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	/* Allow up to 4 items on home grid (hide from 5th onward) */
	.home-food-grid .food-card:nth-child(n+5) {
		display: none !important;
	}
}

@media (max-width:480px) {
	.food-grid {
		grid-template-columns: 1fr
	}
}

/* =====================
   Responsive card tweaks (improve mobile appearance and maintain aspect ratio)
   ===================== */

.food-card {
	/* ensure cards take available space in grid cells */
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}

.food-card img {
	/* prefer intrinsic sizing with a stable aspect ratio instead of a fixed px height */
	height: auto;
	aspect-ratio: 4 / 3;
	width: 100%;
	border-radius: 0;
	object-fit: cover;
}

.food-card>p {
	font-size: 18px;
}

.food-card>.price {
	font-size: 16px;
}

@media (max-width:768px) {
	.food-card {
		padding: 0;
		border-radius: 12px;
	}
	.food-card>p { font-size: 16px; padding: 16px 16px 4px 16px; }
	.food-card>.price { font-size: 15px; padding: 0 16px 16px 16px; }
	.food-card>.card-actions { margin: auto 16px 16px 16px; gap: 6px; }
	.food-card .card-actions button { padding: 10px 0; border-radius: 8px; font-size: 14px; }
	.food-grid { gap: 16px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:480px) {
	.food-grid { grid-template-columns: 1fr; gap: 14px; }
	.food-card img { max-height: 220px; }
	.hero { padding: 60px 6%; }
}

/* Make combo-grid follow the same responsive breakpoints as food-grid */
@media (max-width:1100px) {
	.combo-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width:768px) {
	.combo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width:480px) {
	.combo-grid {
		grid-template-columns: 1fr;
	}
}

.food-card::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.1;
	background-image: url("https://www.transparenttextures.com/patterns/arabesque.png");
}



/* COLORS */

/* BACKGROUND TINTS FOR CARDS */
.red {
	background: linear-gradient(180deg, rgba(228, 87, 46, 0.05), var(--bg-card));
}

.orange {
	background: linear-gradient(180deg, rgba(245, 158, 11, 0.05), var(--bg-card));
}

.yellow {
	background: linear-gradient(180deg, rgba(251, 191, 36, 0.05), var(--bg-card));
}

.brown {
	background: linear-gradient(180deg, rgba(161, 98, 7, 0.05), var(--bg-card));
}

.purple {
	background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), var(--bg-card));
}

.blue {
	background: linear-gradient(180deg, rgba(14, 165, 233, 0.05), var(--bg-card));
}

.green {
	background: linear-gradient(180deg, rgba(34, 197, 94, 0.05), var(--bg-card));
}

.dark {
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.05), var(--bg-card));
}



/* COMPLIMENT */

.compliment {
	padding: 80px;
	text-align: center;
	background: #e5e5e5;
}







/* QUOTE */

.quote {
	/* Use local banner image for the quote/banner section */
	background-image: url("assets/banner.jpg");
	background-size: cover;
	background-position: center;
	padding: 100px 6%;
	display: flex;
	justify-content: center;
}

.quote-box {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 50px;
	border-radius: 12px;
	color: white;
}



/* COMBOS */

.combos {
	padding: 80px 10%;
	text-align: center;
}

.combo-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}

.combo-card {
	padding: 30px;
	color: white;
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	min-height: 280px;
	background-size: cover;
	background-position: center;
	transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow .4s ease;
	text-align: left;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.combo-card .combo-content h3 {
	font-size: 28px;
	margin-bottom: 8px;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.combo-card .combo-content p {
	font-size: 16px;
	margin-bottom: 20px;
	opacity: 0.9;
	font-weight: 400;
}

.combo-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}



/* RESPONSIVE */

@media(max-width:900px) {

	.hero-content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}
}

/* =====================
	 Mobile-first Improvements
	 Appended: multi-breakpoint responsive rules, mobile menu, and floating animation
	 ===================== */

/* Improve images and containers */
img {
	max-width: 100%;
	height: auto;
	display: block;
}

section {
	padding: 70px 6%;
}

/* Tablet Breakpoint (≤1024px) */
@media (max-width:1024px) {

	.hero-content {
		gap: 40px;
	}

	.hero-text h1 {
		font-size: 48px;
	}

	.combo-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

/* Mobile Breakpoint (≤768px) */
@media (max-width:768px) {

	/* NAVBAR: keep logo left, controls on right (menu + cart) */

	.navbar {
		flex-direction: row;
		align-items: center;
		padding: 12px 6%;
	}

	/* right side wrapper for nav + controls */
	.nav-right {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-left: auto;
	}

	/* hide full nav on mobile removed. handled natively by new CSS dropdown */

	.nav-right nav a {
		margin: 0;
	}

	/* ensure the menu-toggle in the right controls is visible on small screens */
	.nav-right .menu-toggle {
		display: block;
	}


	/* HERO */

	.hero {
		padding: 80px 6%;
	}

	.hero-content {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}

	.hero-text p {
		font-size: 15px;
	}

	.hero-image img {
		width: 240px;
	}


	/* FEATURES */

	.features {
		flex-direction: column;
		gap: 20px;
		text-align: center;
		padding: 40px 20px;
	}


	/* Removed rogue food-card img fixed dimensions */





	/* COMBO CARDS */

	.combo-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}

	.combo-card {
		padding: 30px;
		font-size: 15px;
	}


	/* QUOTE */

	.quote {
		padding: 80px 20px;
	}

	.quote-box {
		padding: 35px;
		font-size: 14px;
	}

}

/* Small Phones (≤480px) */
@media (max-width:480px) {

	.hero-text h1 {
		font-size: 34px;
	}

	.hero button {
		width: 100%;
		padding: 16px;
		font-size: 16px;
	}

	.hero-image img {
		width: 200px;
	}

	/* Removed rogue food-card padding */

	/* Removed features mobile text size */

	.combo-card {
		font-size: 14px;
	}

}

/* Mobile Menu Toggle */
.menu-toggle {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}

@media (max-width:768px) {

	.menu-toggle {
		display: block;
	}
}

/* Floating hero image animation */
@keyframes float {
	0% {
		transform: translateY(0)
	}

	50% {
		transform: translateY(-12px)
	}

	100% {
		transform: translateY(0)
	}
}

.hero-image img {
	animation: float 4s ease-in-out infinite;
}

/* Final small touch: increase touch targets */
.navbar nav a,
.hero button,
.combo-card,
.food-card {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
}

/* Section entrance animation (fade/slide) */
.fade-in {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .7s cubic-bezier(.2, .9, .2, 1), transform .7s cubic-bezier(.2, .9, .2, 1);
}

.in-view {
	opacity: 1;
	transform: none;
}

/* Modal styles */
.modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
	opacity: 0;
	transition: opacity .22s ease;
	z-index: 2000;
}

.modal[aria-hidden="false"],
.modal.open {
	pointer-events: auto;
	opacity: 1;
}

.modal-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(2, 6, 23, 0.6);
}

.modal-inner {
	position: relative;
	background: var(--bg-card);
	border-radius: min(24px, 6vw);
	padding: clamp(24px, 5vw, 40px);
	max-width: 640px;
	width: calc(100% - 32px);
	box-shadow: var(--shadow-xl);
	z-index: 2;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-close {
	position: absolute;
	right: 16px;
	top: 16px;
	background: rgba(15, 23, 42, 0.05);
	color: var(--text-light);
	border: none;
	font-size: 16px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.modal-close:hover {
	background: rgba(15, 23, 42, 0.1);
	color: var(--text);
	transform: rotate(90deg);
}

.modal-actions {
	display: flex;
	gap: 12px;
	margin-top: 24px
}

.btn {
	background: var(--color-primary);
	color: #000;
	border: none;
	padding: 12px 24px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(245, 158, 11, 0.2);
}

.btn:hover {
	background: #fde68a;
	transform: translateY(-2px);
	box-shadow: 0 10px 15px -3px rgba(245, 158, 11, 0.3);
}

.btn:active {
	transform: translateY(1px);
}

.btn-ghost {
	background: transparent;
	border: 2px solid rgba(15, 23, 42, 0.1);
	color: var(--text);
	box-shadow: none;
}

.btn-ghost:hover {
	background: rgba(15, 23, 42, 0.05);
	box-shadow: none;
}

/* Cart toggle and cart modal specifics */
.cart-toggle {
	background: var(--color-primary);
	color: #fff;
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.cart-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 14px rgba(245, 158, 11, 0.4);
}

.cart-badge {
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	font-size: 14px;
	min-width: 24px;
	text-align: center;
}

#cart-modal {
	align-items: flex-end; /* Override center align for drawer */
}

#cart-modal .modal-inner {
	position: absolute;
	right: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	max-width: 480px;
	padding: 32px 32px 0 32px;
	border-radius: 24px 0 0 24px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	transform: translateX(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	margin: 0;
}

#cart-modal.open .modal-inner {
	transform: translateX(0);
}

#cart-modal h2 {
	font-size: 28px;
	color: var(--text);
	border-bottom: 2px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 16px;
	margin-bottom: 16px;
}

.cart-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-height: 45vh;
	overflow-y: auto;
	padding-right: 8px;
}

/* Custom scrollbar for cart */
.cart-list::-webkit-scrollbar {
	width: 6px;
}

.cart-list::-webkit-scrollbar-track {
	background: transparent;
}

.cart-list::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.cart-item {
	display: grid;
	grid-template-columns: 80px 1fr;
	gap: 16px;
	align-items: center;
	padding: 16px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
}

.cart-item img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cart-item .meta {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.cart-item .meta h4 {
	margin: 0;
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	color: #0f172a;
}

.cart-item .meta p {
	margin: 0;
	font-weight: 700;
	color: var(--color-primary);
	font-size: 15px;
}

.quantity-controls {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f1f5f9;
	border-radius: 999px;
	padding: 4px 8px;
	width: fit-content;
	margin-top: 6px;
}

.quantity-controls button {
	background: none;
	border: none;
	font-size: 16px;
	color: #0f172a;
	cursor: pointer;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.quantity-controls button:hover {
	background: #e2e8f0;
}

.remove-btn {
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 0;
	font-size: 13px;
	font-weight: 500;
	text-align: left;
	margin-top: 8px;
	transition: color 0.2s;
}

.remove-btn:hover {
	color: #ef4444;
	text-decoration: underline;
}

.cart-footer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 2px solid rgba(0, 0, 0, 0.05);
}

.cart-summary {
	font-size: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	font-weight: 600;
}

.cart-summary .cart-total {
	font-size: 24px;
	color: var(--color-accent);
}

.cart-actions {
	display: flex;
	gap: 12px;
	width: 100%;
}

.cart-actions .btn {
	flex: 1;
	text-align: center;
}

/* Admin login floating link */
.admin-login-link {
	position: fixed;
	right: 18px;
	bottom: 18px;
	background: var(--color-accent);
	color: #fff;
	padding: 10px 12px;
	border-radius: 10px;
	z-index: 9999;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.admin-login-link:hover { background: var(--color-accent-hover); color: #fff; }

@media(max-width:480px){ .admin-login-link { right: 12px; bottom: 12px; padding: 8px 10px; } }

/* small improvements for accessibility */
.modal-inner h2 {
	margin: 0 0 8px 0
}

/* Cart Modal Responsiveness */
@media (max-width: 480px) {
	#cart-modal .modal-inner {
		padding: 20px;
		width: calc(100% - 24px);
		max-height: 90vh;
		display: flex;
		flex-direction: column;
	}

	.cart-list {
		max-height: 50vh;
	}

	.cart-item {
		padding: 10px;
		gap: 10px;
		flex-direction: column;
		align-items: flex-start;
		position: relative;
	}

	.cart-item img {
		width: 60px;
		height: 60px;
		position: absolute;
		top: 10px;
		left: 10px;
	}

	.cart-item .meta {
		padding-left: 72px;
		width: 100%;
		min-height: 60px;
	}

	.cart-item .controls {
		width: 100%;
		justify-content: space-between;
		margin-top: 8px;
		padding-top: 8px;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}

	.cart-actions {
		flex-direction: column;
	}

	.cart-actions .btn {
		width: 100%;
	}
}

/* =====================
   SHOP PAGE HEADER & FILTERS
   ===================== */
.shop-header {
	background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(228, 87, 46, 0.05) 100%);
	padding: 100px 6% 60px 6%;
	text-align: center;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	margin-bottom: 20px;
}

.shop-header h1 {
	font-size: clamp(36px, 6vw, 64px);
	color: #0f172a;
	margin-bottom: 16px;
	line-height: 1.1;
}

.shop-header p {
	font-size: 18px;
	color: #475569;
	max-width: 600px;
	margin: 0 auto;
}

.shop-controls {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.search-container {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
	z-index: 10;
}

.search-container input {
	width: 100%;
	padding: 14px 20px 14px 48px;
	border-radius: 30px;
	border: 1px solid #e2e8f0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	background: #fff;
	color: #0f172a;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
	outline: none;
}

.search-container input:focus {
	border-color: #f59e0b;
	box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.search-container svg {
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
	color: #94a3b8;
	pointer-events: none;
	transition: color 0.3s ease;
}

.search-container input:focus + svg {
	color: #f59e0b;
}

.category-filters {
	display: flex;
	gap: 12px;
	overflow-x: auto;
	padding-bottom: 16px;
	margin-bottom: 24px;
	scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
	display: none;
}

.filter-btn {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	color: #475569;
	padding: 10px 20px;
	border-radius: 999px;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.2s ease;
}

.filter-btn:hover {
	border-color: #cbd5e1;
	background: #f8fafc;
	color: #0f172a;
}

.filter-btn.active {
	background: #0f172a;
	color: white;
	border-color: #0f172a;
}

/* =====================
   SKELETON LOADERS
   ===================== */
@keyframes shimmer {
	0% {
		background-position: -200% 0;
	}
	100% {
		background-position: 200% 0;
	}
}

.skeleton {
	animation: shimmer 1.5s infinite linear;
	background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
	background-size: 200% 100%;
	border-radius: 8px;
	pointer-events: none;
}

.skeleton-card {
	display: flex;
	flex-direction: column;
	background: var(--bg-card);
	border-radius: 16px;
	padding: 16px;
	gap: 12px;
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.skeleton-img {
	width: 100%;
	height: 180px;
	border-radius: 12px;
	margin-bottom: 8px;
}

.skeleton-title {
	height: 20px;
	width: 80%;
	border-radius: 4px;
}

.skeleton-price {
	height: 24px;
	width: 40%;
	border-radius: 4px;
}

.skeleton-btn {
	height: 48px;
	width: 100%;
	border-radius: 12px;
	margin-top: auto;
}