/**
 * Smoky Chix - Components Design System
 */

/* 1. Ultra-Premium Buttons & Interactive Micro-Interactions */
.smoky-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 26px;
	border-radius: var(--smoky-radius-full);
	font-weight: 800;
	font-size: 14.5px;
	letter-spacing: -0.01em;
	cursor: pointer;
	border: none;
	position: relative;
	overflow: hidden;
	transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.smoky-btn:active {
	transform: scale(0.96) !important;
}

.smoky-btn i {
	font-size: 1.15em;
	transition: transform 0.25s ease;
}

.smoky-btn:hover i {
	transform: translateX(3px) scale(1.1);
}

.smoky-btn-lg {
	padding: 15px 32px;
	font-size: 16px;
	border-radius: var(--smoky-radius-full);
}

.smoky-btn-block {
	width: 100%;
}

.smoky-btn-flame {
	background: linear-gradient(135deg, var(--smoky-flame, #FF5400) 0%, rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.85) 100%);
	color: var(--smoky-flame-text, #FFFFFF) !important;
	box-shadow: 0 6px 20px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.35);
}

.smoky-btn-flame:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.52), inset 0 1px 1px rgba(255, 255, 255, 0.45);
	color: var(--smoky-flame-text, #FFFFFF) !important;
}

.smoky-btn-neon {
	background: linear-gradient(135deg, var(--smoky-neon, #00F59B) 0%, rgba(var(--smoky-neon-rgb, 0, 245, 155), 0.85) 100%);
	color: var(--smoky-neon-text, #121316) !important;
	box-shadow: 0 6px 20px rgba(var(--smoky-neon-rgb, 0, 245, 155), 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.smoky-btn-neon:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 12px 28px rgba(var(--smoky-neon-rgb, 0, 245, 155), 0.5);
	color: var(--smoky-neon-text, #121316) !important;
}

.smoky-btn-outline {
	background: rgba(255, 255, 255, 0.06);
	color: var(--smoky-text-white, #FFFFFF);
	border: 1.5px solid var(--smoky-card-border, #2B2E38);
	backdrop-filter: blur(8px);
}

.smoky-btn-outline:hover {
	background: var(--smoky-surface);
	border-color: var(--smoky-flame);
	color: var(--smoky-flame);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* 2. Section Headers */
.smoky-section-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 45px;
}

.smoky-badge-sub {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 1px;
	color: var(--smoky-neon);
	margin-bottom: 10px;
	text-transform: uppercase;
}

.smoky-section-header h2 {
	font-size: 32px;
	margin-bottom: 12px;
}

@media (min-width: 768px) {
	.smoky-section-header h2 {
		font-size: 40px;
	}
}

.smoky-section-header p {
	color: var(--smoky-text-muted);
	font-size: 15.5px;
}

/* 3. Stories / Reels Bar */
.smoky-stories-section {
	padding: 20px 0;
	border-bottom: 1px solid var(--smoky-card-border);
}

.smoky-section-header-compact {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
}

.smoky-section-header-compact h3 {
	font-size: 16px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.smoky-stories-hint {
	font-size: 12px;
	color: var(--smoky-text-dim);
}

.smoky-stories-track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 8px;
	scrollbar-width: none;
}

.smoky-stories-track::-webkit-scrollbar {
	display: none;
}

.smoky-story-circle {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	cursor: pointer;
	flex-shrink: 0;
	width: 76px;
	max-width: 76px;
}

.circle-ring {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	padding: 3px;
	background: linear-gradient(45deg, #FF5400, #FFB703, #00F59B);
	transition: transform 0.25s ease;
}

.circle-ring:hover {
	transform: scale(1.08);
}

.circle-inner {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--smoky-bg-dark);
}

.story-emoji {
	font-size: 26px;
}

.story-label {
	font-size: 11.5px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	width: 100%;
	max-width: 76px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	line-height: 1.25;
}

/* 4. Flash Sale Section */
.smoky-flash-sale-section {
	padding: 40px 0;
}

.smoky-flash-card-banner {
	background: linear-gradient(135deg, #2A1208 0%, #1A1C23 60%, #15161C 100%);
	border: 2px solid var(--smoky-flame);
	border-radius: var(--smoky-radius-lg);
	padding: 30px;
	position: relative;
	box-shadow: 0 15px 40px rgba(255, 84, 0, 0.15);
}

.smoky-flash-header-row {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-bottom: 30px;
}

@media (min-width: 768px) {
	.smoky-flash-header-row {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.smoky-flash-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--smoky-flame);
	color: #fff;
	font-weight: 900;
	font-size: 12px;
	padding: 4px 12px;
	border-radius: var(--smoky-radius-full);
	margin-bottom: 8px;
}

.smoky-flash-title-col h2 {
	font-size: 26px;
	color: #fff;
	margin-bottom: 6px;
}

.smoky-flash-title-col p {
	color: var(--smoky-text-muted);
	font-size: 14px;
}

/* Countdown Digits */
.smoky-countdown-box {
	background: rgba(18, 19, 24, 0.8);
	border: 1.5px solid var(--smoky-card-border);
	padding: 12px 20px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.countdown-label {
	font-size: 11px;
	font-weight: 900;
	color: var(--smoky-yellow);
	letter-spacing: 1px;
}

.countdown-digits {
	display: flex;
	align-items: center;
	gap: 6px;
}

.time-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #14151B;
	border: 1px solid var(--smoky-card-border);
	padding: 4px 10px;
	border-radius: 8px;
	min-width: 44px;
}

.time-block .digit {
	font-size: 20px;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}

.time-block small {
	font-size: 9px;
	color: var(--smoky-text-muted);
	font-weight: 700;
}

.colon {
	font-size: 20px;
	font-weight: 900;
	color: var(--smoky-flame);
}

/* Flash Card Item in Slider */
.smoky-flash-item-card {
	background: var(--smoky-card-bg);
	border: 1.5px solid var(--smoky-card-border);
	border-radius: var(--smoky-radius-md);
	overflow: hidden;
	padding: 16px;
	position: relative;
	transition: all 0.3s ease;
}

.smoky-flash-item-card:hover {
	border-color: var(--smoky-flame);
	transform: translateY(-4px);
}

.flash-card-badge-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.disc-pill {
	background: var(--smoky-red);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
	padding: 3px 8px;
	border-radius: 6px;
}

.flash-card-img-wrap {
	height: 160px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.flash-card-img-wrap img {
	max-height: 100%;
	object-fit: contain;
}

.flash-card-info h4 {
	font-size: 16px;
	margin-bottom: 8px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 12px;
}

.promo-price {
	font-size: 18px;
	font-weight: 900;
	color: var(--smoky-flame);
}

.normal-price {
	font-size: 13px;
	color: var(--smoky-text-dim);
	text-decoration: line-through;
}

.stock-progress-wrap {
	margin-bottom: 14px;
}

.progress-bar-bg {
	height: 8px;
	background: #242731;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 4px;
}

.progress-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #FFB703, #FF5400);
	border-radius: 4px;
}

.stock-progress-wrap small {
	font-size: 11px;
	color: var(--smoky-text-muted);
}

/* 5. Food Menu Explorer & Filters */
.smoky-menu-section {
	padding: 40px 0 60px;
}

@media (max-width: 768px) {
	.smoky-menu-section {
		padding: 20px 0 35px;
	}
	.smoky-section-header {
		margin-bottom: 14px;
	}
	.smoky-section-header h2 {
		font-size: 21px;
		margin-bottom: 4px;
	}
	.smoky-section-header p {
		font-size: 12.5px;
		line-height: 1.35;
		opacity: 0.85;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
}

.smoky-filter-control-panel {
	margin-bottom: 28px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* Search & Sort Top Row */
.smoky-filter-top-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 720px;
	margin: 0 auto 4px auto;
}

.smoky-filter-top-row .smoky-search-box,
.smoky-search-box {
	position: relative;
	flex: 1;
	min-width: 0;
	margin: 0;
	display: flex;
	align-items: center;
}

.smoky-search-box input {
	width: 100%;
	background: var(--smoky-surface);
	border: 1.5px solid var(--smoky-card-border);
	padding: 0 34px 0 38px;
	border-radius: var(--smoky-radius-full);
	color: #fff;
	outline: none;
	font-size: 13px;
	transition: all 0.25s ease;
	height: 42px;
	box-sizing: border-box;
	line-height: 40px;
}

.smoky-search-box .search-icon {
	position: absolute;
	left: 13px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	color: var(--smoky-text-muted);
	pointer-events: none;
	display: flex;
	align-items: center;
}

.smoky-search-box .clear-search-btn {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--smoky-text-muted);
	font-size: 18px;
	cursor: pointer;
	display: none;
	padding: 0;
	line-height: 1;
}

.smoky-search-box .clear-search-btn:hover {
	color: var(--smoky-flame);
}

.smoky-sort-box {
	display: inline-flex;
	align-items: center;
	background: var(--smoky-surface);
	border: 1.5px solid var(--smoky-card-border);
	border-radius: var(--smoky-radius-full);
	padding: 0 10px 0 10px;
	height: 42px;
	box-sizing: border-box;
	gap: 6px;
	transition: all 0.25s ease;
	flex-shrink: 0;
}

.smoky-sort-box:focus-within {
	border-color: var(--smoky-flame);
	box-shadow: 0 0 12px rgba(255, 84, 0, 0.25);
}

.smoky-sort-box .sort-icon {
	color: var(--smoky-flame);
	font-size: 16px;
	display: flex;
	align-items: center;
}

.smoky-sort-select {
	background: transparent;
	border: none;
	color: #FFFFFF;
	font-size: 12.5px;
	font-weight: 700;
	outline: none;
	cursor: pointer;
	max-width: 135px;
	height: 100%;
}

.smoky-sort-select option {
	background: #14161F;
	color: #FFFFFF;
	font-size: 12.5px;
	padding: 6px;
}

/* Category Tabs */
.smoky-category-tabs-track {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 2px 0;
	justify-content: flex-start;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
}

@media (min-width: 992px) {
	.smoky-category-tabs-track {
		justify-content: center;
	}
}

.smoky-category-tabs-track::-webkit-scrollbar {
	display: none;
}

.smoky-cat-tab {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--smoky-surface);
	border: 1.5px solid var(--smoky-card-border);
	padding: 7px 14px;
	border-radius: var(--smoky-radius-full);
	color: var(--smoky-text-muted);
	font-weight: 700;
	font-size: 12.5px;
	white-space: nowrap;
	flex-shrink: 0;
	cursor: pointer;
	transition: all 0.2s ease;
}

.smoky-cat-tab:hover {
	border-color: var(--smoky-flame);
	color: #fff;
}

.smoky-cat-tab.active {
	background: var(--smoky-flame);
	border-color: var(--smoky-flame);
	color: #fff;
	box-shadow: 0 3px 12px rgba(255, 84, 0, 0.35);
}

.cat-count {
	font-size: 11px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: var(--smoky-radius-full);
	min-width: 16px;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.1;
	background: rgba(255, 255, 255, 0.15);
	color: #FFFFFF;
	transition: all 0.2s ease;
}

.smoky-cat-tab.active .cat-count {
	background: rgba(0, 0, 0, 0.28);
	color: var(--smoky-flame-text, #FFFFFF) !important;
	border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Filter Sub Row: Badges & Spicy */
.smoky-filter-sub-row {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 6px;
	width: 100%;
}

@media (min-width: 992px) {
	.smoky-filter-sub-row {
		flex-direction: row;
		justify-content: center;
		gap: 20px;
	}
}

/* Badge / Collection Filter Pills */
.smoky-badge-filter-pills {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	padding: 2px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	justify-content: flex-start;
}

.smoky-badge-filter-pills::-webkit-scrollbar,
.smoky-spicy-filter-pills::-webkit-scrollbar {
	display: none;
}

@media (min-width: 992px) {
	.smoky-badge-filter-pills {
		justify-content: center;
		width: auto;
	}
}

.smoky-badge-filter-pills .filter-label,
.smoky-spicy-filter-pills .filter-label {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--smoky-text-muted);
	flex-shrink: 0;
	margin-right: 2px;
}

.smoky-badge-pill {
	background: #191B22;
	border: 1px solid var(--smoky-card-border);
	padding: 4px 10px;
	border-radius: var(--smoky-radius-full);
	font-size: 11.5px;
	font-weight: 700;
	color: #D1D5DB;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.smoky-badge-pill:hover {
	border-color: #38BDF8;
	color: #FFFFFF;
}

.smoky-badge-pill.active {
	background: #FFB703;
	border-color: #FFB703;
	color: #000000;
	font-weight: 800;
	box-shadow: 0 2px 8px rgba(255, 183, 3, 0.35);
}

/* Spicy Level Pills */
.smoky-spicy-filter-pills {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	padding: 2px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	justify-content: flex-start;
}

@media (min-width: 992px) {
	.smoky-spicy-filter-pills {
		justify-content: center;
		width: auto;
	}
}

.smoky-spice-pill {
	background: #191B22;
	border: 1px solid var(--smoky-card-border);
	padding: 4px 10px;
	border-radius: var(--smoky-radius-full);
	font-size: 11.5px;
	font-weight: 700;
	color: #D1D5DB;
	cursor: pointer;
	transition: all 0.2s ease;
	white-space: nowrap;
	flex-shrink: 0;
}

.smoky-spice-pill.active {
	background: var(--smoky-red);
	border-color: var(--smoky-red);
	color: #fff;
	box-shadow: 0 2px 8px rgba(239, 68, 68, 0.35);
}

/* Filter Empty State Alert */
.smoky-filter-empty-alert {
	grid-column: 1 / -1;
	text-align: center;
	padding: 48px 20px;
	background: rgba(18, 20, 28, 0.6);
	border: 1.5px dashed var(--smoky-card-border);
	border-radius: var(--smoky-radius-lg);
	color: #FFFFFF;
	margin: 20px 0;
	animation: fadeIn 0.3s ease;
}

/* Food Grid & Card */
.smoky-food-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.smoky-food-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.smoky-food-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.smoky-food-card {
	background: var(--smoky-card-bg);
	border: 1.5px solid var(--smoky-card-border);
	border-radius: var(--smoky-radius-lg);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}

.smoky-food-card:hover {
	border-color: var(--smoky-flame);
	transform: translateY(-5px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.smoky-card-media {
	position: relative;
	height: 220px;
	background: #15161B;
	overflow: hidden;
}

.smoky-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.smoky-food-card:hover .smoky-card-media img {
	transform: scale(1.06);
}

.smoky-card-badge-chip {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--smoky-yellow);
	color: #121316;
	font-weight: 900;
	font-size: 11.5px;
	padding: 4px 10px;
	border-radius: var(--smoky-radius-sm);
	z-index: 2;
}

.smoky-card-badge-chip.best-seller { background: var(--smoky-yellow); }
.smoky-card-badge-chip.chef-pick { background: var(--smoky-neon); }
.smoky-card-badge-chip.pedas-nampol { background: var(--smoky-red); color: #fff; }

.smoky-discount-tag {
	position: absolute;
	top: 14px;
	right: 14px;
	background: var(--smoky-red);
	color: #fff;
	font-weight: 900;
	font-size: 12px;
	padding: 4px 8px;
	border-radius: var(--smoky-radius-sm);
	z-index: 2;
}

.smoky-quick-peek-btn {
	position: absolute;
	bottom: 12px;
	right: 12px;
	background: rgba(18, 19, 24, 0.85);
	backdrop-filter: blur(8px);
	border: 1px solid var(--smoky-card-border);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: var(--smoky-radius-full);
	cursor: pointer;
	opacity: 0;
	transform: translateY(8px);
	transition: all 0.25s ease;
	z-index: 2;
}

.smoky-food-card:hover .smoky-quick-peek-btn {
	opacity: 1;
	transform: translateY(0);
}

/* Card Content Area */
.smoky-card-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.smoky-card-meta-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	font-size: 12px;
}

.smoky-spice-tag {
	font-weight: 800;
	font-size: 12px;
}

.smoky-spice-tag.level-0 { color: var(--smoky-neon); }
.smoky-spice-tag.level-1 { color: var(--smoky-yellow); }
.smoky-spice-tag.level-2 { color: var(--smoky-flame); }
.smoky-spice-tag.level-3 { color: var(--smoky-red); font-weight: 900; }

.cook-time {
	color: var(--smoky-text-muted);
}

.smoky-card-title {
	font-size: 18px;
	margin-bottom: 8px;
	color: #fff;
	line-height: 1.3;
}

.smoky-card-excerpt {
	font-size: 13.5px;
	color: var(--smoky-text-muted);
	margin-bottom: 18px;
	line-height: 1.5;
	flex-grow: 1;
}

.smoky-card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--smoky-card-border);
	padding-top: 15px;
}

.smoky-price-stack {
	display: flex;
	flex-direction: column;
}

.smoky-current-price {
	font-size: 19px;
	font-weight: 900;
	color: #fff;
}

.smoky-current-price.promo {
	color: var(--smoky-flame);
}

.smoky-original-price {
	font-size: 12.5px;
	color: var(--smoky-text-dim);
	text-decoration: line-through;
}

.smoky-btn-add-tray {
	width: 44px;
	height: 44px;
	border-radius: 14px;
	background: linear-gradient(135deg, var(--smoky-flame, #FF5400) 0%, rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.85) 100%);
	border: none;
	color: #fff;
	font-size: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
	box-shadow: 0 4px 16px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.38), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.smoky-btn-add-tray:hover {
	transform: scale(1.12) rotate(90deg);
	box-shadow: 0 8px 24px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.5);
}

.smoky-btn-add-tray:active {
	transform: scale(0.92) rotate(90deg);
}

/* New Ultra-Sleek Pill Action Button on Food Cards */
.smoky-btn-order-action {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	background: linear-gradient(135deg, var(--smoky-flame, #FF5400) 0%, rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.88) 100%);
	color: var(--smoky-flame-text, #FFFFFF) !important;
	font-size: 12.5px;
	font-weight: 800;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.4);
	transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
	white-space: nowrap;
}

.smoky-btn-order-action i {
	font-size: 15px;
	transition: transform 0.2s ease;
}

.smoky-btn-order-action:hover {
	transform: translateY(-2px) scale(1.04);
	box-shadow: 0 7px 20px rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.55), inset 0 1px 1px rgba(255, 255, 255, 0.6);
	background: linear-gradient(135deg, #FF6A1A 0%, var(--smoky-flame, #FF5400) 100%);
}

.smoky-btn-order-action:hover i {
	transform: scale(1.15);
}

.smoky-btn-order-action:active {
	transform: translateY(0) scale(0.96);
}

/* Clickable Food Card Whole-Block Hover */
.smoky-card-clickable {
	cursor: pointer;
	transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.smoky-card-clickable:hover {
	transform: translateY(-6px);
	border-color: var(--smoky-flame) !important;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25) !important;
}

.smoky-card-clickable:hover .smoky-card-media img {
	transform: scale(1.06);
}

/* 6. Process Section */
.smoky-process-section {
	padding: 60px 0;
	background: #16171E;
}

.smoky-process-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

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

@media (min-width: 1024px) {
	.smoky-process-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.smoky-process-card {
	background: var(--smoky-card-bg);
	border: 1px solid var(--smoky-card-border);
	padding: 26px 20px;
	border-radius: var(--smoky-radius-md);
	position: relative;
}

.smoky-process-card .step-num {
	position: absolute;
	top: 15px;
	right: 15px;
	font-size: 24px;
	font-weight: 900;
	color: rgba(255, 255, 255, 0.08);
}

.smoky-process-card .step-icon {
	font-size: 32px;
	margin-bottom: 14px;
}

.smoky-process-card h3 {
	font-size: 17px;
	margin-bottom: 8px;
}

.smoky-process-card p {
	font-size: 13.5px;
	color: var(--smoky-text-muted);
}

/* 7. Reviews Section */
.smoky-reviews-section {
	padding: 60px 0;
}

.smoky-review-card {
	background: var(--smoky-card-bg);
	border: 1px solid var(--smoky-card-border);
	padding: 24px;
	border-radius: var(--smoky-radius-lg);
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-height: 200px;
}

.review-card-stars {
	font-size: 16px;
}

.review-card-text {
	font-size: 14px;
	color: #D1D5DB;
	font-style: italic;
	flex-grow: 1;
}

.review-card-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.author-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #242731;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.author-info strong {
	font-size: 14px;
	color: #fff;
	display: block;
}

.author-info small {
	font-size: 12px;
	color: var(--smoky-text-muted);
}

.platform-tag {
	color: var(--smoky-neon);
	font-weight: 700;
}

/* 8. Outlets Section */
.smoky-outlets-section {
	padding: 60px 0;
	background: #16171E;
}

/* 8. Outlet Locations Grid & Responsive Multi-Row Adaptation */
.smoky-outlets-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 22px;
	width: 100%;
}

/* Mobile (< 768px): 1 Col on normal phones (< 576px), Max 2 Cols on phablets (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
	.smoky-outlets-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
	.smoky-outlets-grid.outlets-count-1 {
		grid-template-columns: 1fr;
		max-width: 500px;
		margin: 0 auto;
	}
}

/* Tablet (768px - 1024px): Max 3 Columns per row */
@media (min-width: 768px) and (max-width: 1024px) {
	.smoky-outlets-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 18px;
	}
	.smoky-outlets-grid.outlets-count-1 {
		grid-template-columns: 1fr;
		max-width: 580px;
		margin: 0 auto;
	}
	.smoky-outlets-grid.outlets-count-2 {
		grid-template-columns: repeat(2, 1fr);
		max-width: 800px;
		margin: 0 auto;
	}
}

/* Desktop (> 1024px): Max 4 Columns per row (wraps to Row 2, 3... if > 4) */
@media (min-width: 1025px) {
	.smoky-outlets-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 22px;
	}
	.smoky-outlets-grid.outlets-count-1 {
		grid-template-columns: 1fr;
		max-width: 680px;
		margin: 0 auto;
	}
	.smoky-outlets-grid.outlets-count-2 {
		grid-template-columns: repeat(2, 1fr);
		max-width: 1020px;
		margin: 0 auto;
	}
	.smoky-outlets-grid.outlets-count-3 {
		grid-template-columns: repeat(3, 1fr);
		max-width: 1180px;
		margin: 0 auto;
	}
}

/* 1-Click GPS Outlet Locator Bar */
.smoky-outlet-locator-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.btn-locate-nearest {
	background: #FF5400;
	color: #FFFFFF;
	border: none;
	border-radius: var(--smoky-radius-full, 99px);
	padding: 10px 22px;
	font-size: 13.5px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 15px rgba(255, 84, 0, 0.35);
}

.btn-locate-nearest:hover {
	background: #FF2A00;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 84, 0, 0.45);
}

.btn-reset-locator {
	background: #252836;
	color: #E2E8F0;
	border: 1.5px solid #3B425A;
	border-radius: var(--smoky-radius-full, 99px);
	padding: 10px 20px;
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: all 0.2s ease;
}

.btn-reset-locator:hover {
	background: #323749;
	border-color: #00F59B;
	color: #00F59B;
	transform: translateY(-2px);
}

.locator-status-note {
	font-size: 12.5px;
	color: #94A3B8;
	width: 100%;
	text-align: center;
	margin-top: 4px;
}

.outlet-distance-badge {
	background: rgba(0, 245, 155, 0.12);
	color: #00F59B;
	border: 1px solid rgba(0, 245, 155, 0.35);
	border-radius: 8px;
	padding: 4px 10px;
	font-size: 11.5px;
	font-weight: 800;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
	align-self: flex-start;
}

.outlet-distance-badge.nearest-highlight {
	background: rgba(0, 245, 155, 0.22);
	border-color: #00F59B;
	box-shadow: 0 0 12px rgba(0, 245, 155, 0.35);
}

/* Outlet Card Styling */
.smoky-outlet-card {
	background: var(--smoky-card-bg);
	border: 1.5px solid var(--smoky-card-border);
	padding: 20px;
	border-radius: var(--smoky-radius-lg);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
	min-width: 0; /* Prevents grid blowout */
}

.smoky-outlet-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 84, 0, 0.4);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.outlet-card-header {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
}

.store-icon {
	font-size: 28px;
	color: var(--smoky-flame);
	line-height: 1;
	flex-shrink: 0;
}

.outlet-card-header h3 {
	font-size: 16.5px;
	color: #fff;
	margin: 0 0 4px 0;
	line-height: 1.3;
	font-weight: 800;
}

.hours-badge {
	font-size: 11.5px;
	color: var(--smoky-neon);
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.outlet-card-address {
	font-size: 13px;
	color: var(--smoky-text-muted);
	line-height: 1.5;
	margin-bottom: 16px;
}

.outlet-card-actions {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.smoky-btn-maps, .smoky-btn-wa-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	padding: 7px 12px;
	border-radius: var(--smoky-radius-full);
	font-size: 12px;
	font-weight: 800;
	flex: 1 1 auto;
	min-width: 100px;
	text-decoration: none !important;
	transition: all 0.2s ease;
}

.smoky-btn-maps {
	background: #252833;
	color: #fff;
	border: 1px solid var(--smoky-card-border);
}

.smoky-btn-maps:hover {
	background: #333847;
	color: #fff;
}

.smoky-btn-wa-sm {
	background: rgba(0, 245, 155, 0.15);
	color: var(--smoky-neon);
	border: 1px solid rgba(0, 245, 155, 0.3);
}

.smoky-btn-wa-sm:hover {
	background: var(--smoky-neon);
	color: #0E0F12;
}

.outlet-delivery-pills {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	border-top: 1px dashed rgba(255, 255, 255, 0.12);
	padding-top: 12px;
	margin-top: auto;
}

.pill-label {
	font-size: 11px;
	color: #94A3B8;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	width: 100%;
	margin-bottom: 2px;
}

.deliv-pill {
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 6px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s ease;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.deliv-pill:hover {
	transform: translateY(-2px);
	filter: brightness(1.15);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.deliv-pill.gofood { background: #E8252C; color: #FFFFFF; }
.deliv-pill.grab { background: #00B14F; color: #FFFFFF; }
.deliv-pill.shopee { background: #EE4D2D; color: #FFFFFF; }

/* ==========================================================================
   5B. PROMO COUPON & 1-CLICK COPIER SECTION
   ========================================================================== */
.smoky-promo-coupon-section {
	padding: 20px 0 50px 0;
}

.smoky-coupon-card {
	background: linear-gradient(135deg, #1C1E26 0%, #161820 100%);
	border: 2px dashed rgba(255, 183, 3, 0.45);
	border-radius: 20px;
	padding: 24px 28px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 24px;
	align-items: center;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 183, 3, 0.08);
	position: relative;
	overflow: hidden;
}

.smoky-coupon-card::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 250px;
	height: 250px;
	background: radial-gradient(circle, rgba(255, 183, 3, 0.12) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.coupon-left-badge {
	text-align: center;
	background: linear-gradient(135deg, #FF5400 0%, #FFB703 100%);
	padding: 16px 20px;
	border-radius: 14px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 140px;
	box-shadow: 0 6px 16px rgba(255, 84, 0, 0.35);
}

.coupon-discount-highlight {
	font-size: 24px;
	font-weight: 900;
	letter-spacing: -0.5px;
	line-height: 1.1;
}

.coupon-validity-tag {
	font-size: 11px;
	font-weight: 700;
	opacity: 0.9;
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 4px;
}

.coupon-sub-badge {
	font-size: 11.5px;
	font-weight: 800;
	color: #FFB703;
	letter-spacing: 0.5px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 4px;
}

.coupon-center-info h3 {
	font-size: 20px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.coupon-center-info p {
	font-size: 13.5px;
	color: #94A3B8;
	margin: 0;
	line-height: 1.5;
}

.coupon-right-action {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 220px;
}

.coupon-code-box {
	background: #0E0F12;
	border: 1.5px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 8px 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.coupon-code-label {
	font-size: 9.5px;
	font-weight: 800;
	color: #64748B;
	letter-spacing: 0.5px;
}

.coupon-code-text {
	font-size: 15px;
	font-weight: 900;
	color: #FF5400;
	letter-spacing: 1px;
	font-family: monospace;
}

.btn-copy-coupon {
	background: rgba(255, 84, 0, 0.2);
	color: #FF5400;
	border: 1px solid rgba(255, 84, 0, 0.4);
	padding: 6px 12px;
	border-radius: 8px;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s ease;
}

.btn-copy-coupon:hover {
	background: #FF5400;
	color: #FFFFFF;
}

.btn-use-coupon {
	background: #00F59B;
	color: #0E0F12;
	font-size: 13px;
	font-weight: 800;
	padding: 10px 16px;
	border-radius: 10px;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(0, 245, 155, 0.25);
}

.btn-use-coupon:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

.btn-use-coupon.grabfood { background: #00B14F; color: #FFFFFF; }
.btn-use-coupon.gofood { background: #E8252C; color: #FFFFFF; }
.btn-use-coupon.shopeefood { background: #EE4D2D; color: #FFFFFF; }
.btn-use-coupon.wa { background: #25D366; color: #FFFFFF; }

@media (max-width: 900px) {
	.smoky-coupon-card {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 20px;
		gap: 16px;
	}
	.coupon-left-badge {
		max-width: 220px;
		margin: 0 auto;
	}
	.coupon-right-action {
		width: 100%;
	}
}

/* ==========================================================================
   8B. BIG ORDER & CATERING NASI KOTAK SECTION
   ========================================================================== */
.smoky-catering-section {
	padding: 70px 0;
	background: #12131A;
	border-top: 1px solid var(--smoky-card-border);
}

.smoky-catering-layout {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 30px;
	align-items: start;
	margin-top: 30px;
}

.smoky-catering-packages {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.catering-pkg-card {
	background: #181A24;
	border: 1.5px solid var(--smoky-card-border);
	border-radius: 16px;
	padding: 18px 20px;
	cursor: pointer;
	transition: all 0.25s ease;
	position: relative;
}

.catering-pkg-card:hover {
	border-color: rgba(255, 84, 0, 0.4);
	transform: translateY(-2px);
}

.catering-pkg-card.active {
	border-color: #FF5400;
	background: #1F212E;
	box-shadow: 0 8px 25px rgba(255, 84, 0, 0.15);
}

.pkg-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.pkg-badge {
	font-size: 11px;
	font-weight: 800;
	background: rgba(0, 245, 155, 0.15);
	color: #00F59B;
	border: 1px solid rgba(0, 245, 155, 0.3);
	padding: 3px 10px;
	border-radius: 20px;
}

.pkg-badge.flame {
	background: rgba(255, 84, 0, 0.15);
	color: #FF5400;
	border-color: rgba(255, 84, 0, 0.3);
}

.pkg-badge.gold {
	background: rgba(255, 183, 3, 0.15);
	color: #FFB703;
	border-color: rgba(255, 183, 3, 0.3);
}

.pkg-header h4 {
	font-size: 16px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0;
	width: 100%;
}

.pkg-price {
	font-size: 18px;
	font-weight: 900;
	color: #00F59B;
}

.pkg-price span {
	font-size: 12px;
	font-weight: 600;
	color: #94A3B8;
}

.pkg-desc {
	font-size: 12.5px;
	color: #94A3B8;
	line-height: 1.5;
	margin: 0 0 12px 0;
}

.btn-select-pkg {
	background: #252834;
	color: #FFFFFF;
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 6px 14px;
	border-radius: 8px;
	font-size: 11.5px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.2s ease;
}

.catering-pkg-card.active .btn-select-pkg {
	background: #FF5400;
	border-color: #FF5400;
}

/* Catering Calculator Card */
.smoky-catering-calculator-card {
	background: #181A24;
	border: 1.5px solid var(--smoky-card-border);
	border-radius: 20px;
	padding: 26px;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.calc-header {
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 14px;
}

.calc-header h3 {
	font-size: 20px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 4px 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.calc-header p {
	font-size: 13px;
	color: #94A3B8;
	margin: 0;
}

.calc-form-group {
	margin-bottom: 14px;
}

.calc-form-group label {
	font-size: 12px;
	font-weight: 700;
	color: #CBD5E1;
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 5px;
}

.calc-input {
	width: 100%;
	background: #0E1017;
	border: 1.5px solid #282C3C;
	border-radius: 10px;
	padding: 10px 14px;
	color: #FFFFFF;
	font-size: 13.5px;
	box-sizing: border-box;
	transition: border-color 0.2s ease;
}

.calc-input:focus {
	border-color: #FF5400;
	outline: none;
}

.calc-form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}

.calc-subtotal-box {
	background: #0E1017;
	border: 1.5px dashed rgba(0, 245, 155, 0.35);
	border-radius: 12px;
	padding: 14px 18px;
	margin: 18px 0;
}

.subtotal-info {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}

.subtotal-info span {
	font-size: 12px;
	color: #94A3B8;
	font-weight: 600;
}

.subtotal-info strong {
	font-size: 22px;
	font-weight: 900;
	color: #00F59B;
}

.calc-features-list {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	font-size: 11.5px;
	color: #CBD5E1;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 8px;
}

.calc-features-list span i {
	color: #00F59B;
}

.btn-catering-submit {
	width: 100%;
	background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
	color: #FFFFFF;
	border: none;
	padding: 14px 20px;
	border-radius: 12px;
	font-size: 14.5px;
	font-weight: 800;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.2s ease;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-catering-submit:hover {
	filter: brightness(1.1);
	transform: translateY(-2px);
}

@media (max-width: 900px) {
	.smoky-catering-layout {
		grid-template-columns: 1fr;
	}
	.calc-form-row-2 {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   8C. OUTLET GPS LOCATOR & DISTANCE BADGE
   ========================================================================== */
.smoky-outlet-locator-bar {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

.btn-locate-nearest {
	background: #252834;
	color: #00F59B;
	border: 1.5px solid rgba(0, 245, 155, 0.35);
	padding: 10px 22px;
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.25s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.btn-locate-nearest:hover {
	background: #00F59B;
	color: #0E0F12;
	box-shadow: 0 6px 20px rgba(0, 245, 155, 0.35);
	transform: translateY(-2px);
}

.locator-status-note {
	font-size: 11.5px;
	color: #94A3B8;
}

.outlet-distance-badge {
	background: rgba(0, 245, 155, 0.15);
	color: #00F59B;
	border: 1px solid rgba(0, 245, 155, 0.35);
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 11.5px;
	font-weight: 800;
	margin-bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	align-self: flex-start;
}

.outlet-distance-badge.nearest-highlight {
	background: rgba(255, 84, 0, 0.2);
	color: #FF5400;
	border-color: rgba(255, 84, 0, 0.5);
	animation: pulseNearest 2s infinite ease-in-out;
}

@keyframes pulseNearest {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 84, 0, 0.4); }
	50% { box-shadow: 0 0 0 8px rgba(255, 84, 0, 0); }
}

.author-avatar-img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	border: 1.5px solid #FF5400;
}

/* 9. Footer Styling */
.smoky-site-footer {
	background: #0E0F12;
	border-top: 1px solid var(--smoky-card-border);
	padding: 60px 0 0;
	color: var(--smoky-text-muted);
}

.smoky-footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-bottom: 50px;
}

@media (min-width: 768px) {
	.smoky-footer-grid {
		grid-template-columns: 1.5fr 1fr 1fr;
	}
}

.smoky-footer-logo {
	height: 46px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	margin-bottom: 16px;
	display: block;
}

.smoky-footer-bio {
	font-size: 13.5px;
	line-height: 1.6;
	margin-bottom: 16px;
	max-width: 380px;
}

/* Captain Smoky Mascot Badge in Footer */
.smoky-footer-mascot-chip {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 84, 0, 0.08);
	border: 1.5px solid rgba(255, 84, 0, 0.25);
	padding: 10px 16px;
	border-radius: 14px;
	margin-bottom: 22px; /* Generous space before social icons below */
	max-width: fit-content;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
	transition: all 0.25s ease;
}

.smoky-footer-mascot-chip:hover {
	border-color: rgba(255, 84, 0, 0.45);
	background: rgba(255, 84, 0, 0.12);
	transform: translateY(-2px);
}

.footer-mascot-img {
	width: 38px;
	height: 38px;
	object-fit: contain;
	border-radius: 50%;
	background: rgba(255, 84, 0, 0.15);
	padding: 4px;
	border: 1px solid rgba(255, 84, 0, 0.3);
	flex-shrink: 0;
}

.footer-mascot-text {
	display: flex;
	flex-direction: column;
	text-align: left;
	line-height: 1.3;
}

.footer-mascot-text strong {
	font-size: 13.5px;
	font-weight: 800;
	color: #FF5400;
	letter-spacing: -0.2px;
	display: block;
}

.footer-mascot-text small {
	font-size: 11.5px;
	color: #94A3B8;
	margin-top: 2px;
	display: block;
}

.smoky-footer-socials {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.smoky-footer-socials a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #1C1E26;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 18px;
	border: 1px solid var(--smoky-card-border);
}

.smoky-footer-socials a:hover {
	background: var(--smoky-flame);
	border-color: var(--smoky-flame);
}

.footer-heading {
	font-size: 16px;
	color: #fff;
	margin-bottom: 18px;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links a {
	font-size: 13.5px;
	color: var(--smoky-text-muted);
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.footer-links a:hover {
	color: var(--smoky-flame);
	padding-left: 4px;
}

.footer-hours-card {
	background: #17181F;
	border: 1px solid var(--smoky-card-border);
	padding: 16px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 13px;
}

.footer-hours-card strong {
	color: #fff;
}

.halal-footer-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--smoky-neon);
	font-weight: 800;
	font-size: 12px;
	margin-top: 6px;
}

.smoky-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 20px 0;
	text-align: center;
	font-size: 13px;
}

/* User Portal Nav Button */
.smoky-user-portal-btn {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	height: 36px !important;
	padding: 0 14px !important;
	border-radius: var(--smoky-radius-full, 9999px) !important;
	background: #FF5400 !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	color: #FFFFFF !important;
	font-size: 12.5px !important;
	font-weight: 800 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	line-height: 1 !important;
	flex-shrink: 0 !important;
	box-shadow: 0 2px 10px rgba(255, 84, 0, 0.35) !important;
	transition: all 0.2s ease !important;
}

.smoky-user-portal-btn i {
	font-size: 15px !important;
	color: #FFFFFF !important;
	line-height: 1 !important;
	display: inline-block !important;
	vertical-align: middle !important;
}

.smoky-user-portal-btn:hover {
	background: #FF6A1A !important;
	color: #FFFFFF !important;
	transform: translateY(-1px);
}

.smoky-header-avatar {
	width: 24px !important;
	height: 24px !important;
	min-width: 24px !important;
	min-height: 24px !important;
	max-width: 24px !important;
	max-height: 24px !important;
	border-radius: 50% !important;
	object-fit: cover !important;
	border: 1.5px solid #FFFFFF !important;
	display: inline-block !important;
	margin: 0 !important;
	padding: 0 !important;
	flex-shrink: 0 !important;
}

.smoky-header-username {
	display: inline-block !important;
	max-width: 85px !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	color: #FFFFFF !important;
	line-height: 1 !important;
}

.smoky-header-login-text {
	display: inline-block !important;
	font-size: 12px !important;
	font-weight: 800 !important;
	color: #FFFFFF !important;
	line-height: 1 !important;
}

@media (max-width: 768px) {
	.smoky-user-portal-btn {
		height: 32px !important;
		padding: 0 11px !important;
		gap: 5px !important;
	}
	.smoky-user-portal-btn i {
		font-size: 13.5px !important;
	}
	.smoky-header-username {
		max-width: 70px !important;
		font-size: 11px !important;
	}
	.smoky-header-login-text {
		font-size: 11.5px !important;
	}
}

/* ==========================================================================
   MOBILE & TABLET COMPACT FOOD MENU LIST VIEW (GrabFood / GoFood Style)
   ========================================================================== */
@media (max-width: 991px) {
	/* 1. Filter Control Panel Optimization */
	.smoky-filter-control-panel {
		gap: 12px !important;
		margin-bottom: 22px !important;
	}

	.smoky-search-box {
		max-width: 100% !important;
		width: 100% !important;
	}

	.smoky-search-box input {
		padding: 10px 36px 10px 42px !important;
		font-size: 13.5px !important;
		height: 44px !important;
		border-radius: 12px !important;
	}

	.smoky-category-tabs-track {
		display: flex !important;
		overflow-x: auto !important;
		flex-wrap: nowrap !important;
		justify-content: flex-start !important;
		gap: 8px !important;
		padding: 4px 2px !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
	}

	.smoky-category-tabs-track::-webkit-scrollbar {
		display: none !important;
	}

	.smoky-cat-tab {
		padding: 8px 14px !important;
		font-size: 12.5px !important;
		flex-shrink: 0 !important;
	}

	.smoky-spicy-filter-pills {
		display: flex !important;
		align-items: center !important;
		gap: 6px !important;
		justify-content: flex-start !important;
		overflow-x: auto !important;
		flex-wrap: nowrap !important;
		padding: 4px 2px !important;
		-webkit-overflow-scrolling: touch !important;
		scrollbar-width: none !important;
	}

	.smoky-spicy-filter-pills::-webkit-scrollbar {
		display: none !important;
	}

	.smoky-spicy-filter-pills .filter-label {
		font-size: 11.5px !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
		color: #94A3B8 !important;
	}

	.smoky-spice-pill {
		padding: 5px 12px !important;
		font-size: 11.5px !important;
		white-space: nowrap !important;
		flex-shrink: 0 !important;
	}

	/* 2. Compact Horizontal Food List Card */
	.smoky-food-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
	}

	.smoky-food-card {
		display: flex !important;
		flex-direction: row !important;
		align-items: stretch !important;
		padding: 12px !important;
		border-radius: 16px !important;
		background: #181A22 !important;
		border: 1.5px solid #282B36 !important;
		gap: 12px !important;
		min-height: 122px !important;
		box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
		transform: none !important;
	}

	.smoky-card-media {
		width: 105px !important;
		min-width: 105px !important;
		max-width: 105px !important;
		height: auto !important;
		min-height: 105px !important;
		border-radius: 12px !important;
		overflow: hidden !important;
		flex-shrink: 0 !important;
		position: relative !important;
		background: #121316 !important;
	}

	.smoky-card-media img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		transform: none !important;
	}

	.smoky-card-badge-chip {
		top: 5px !important;
		left: 5px !important;
		font-size: 8.5px !important;
		font-weight: 800 !important;
		padding: 2px 5px !important;
		border-radius: 4px !important;
		line-height: 1.2 !important;
	}

	.smoky-discount-tag {
		top: 5px !important;
		right: 5px !important;
		font-size: 9px !important;
		font-weight: 800 !important;
		padding: 2px 5px !important;
		border-radius: 4px !important;
	}

	.smoky-quick-peek-btn {
		display: none !important;
	}

	.smoky-card-content {
		padding: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: space-between !important;
		flex-grow: 1 !important;
		min-width: 0 !important;
	}

	.smoky-card-meta-top {
		margin-bottom: 2px !important;
		font-size: 11px !important;
	}

	.smoky-spice-tag {
		font-size: 11px !important;
	}

	.cook-time {
		font-size: 10.5px !important;
	}

	.smoky-card-title {
		font-size: 14.5px !important;
		font-weight: 800 !important;
		color: #FFFFFF !important;
		margin: 0 0 3px 0 !important;
		line-height: 1.3 !important;
		white-space: normal !important;
	}

	.smoky-card-excerpt {
		font-size: 11.5px !important;
		color: #94A3B8 !important;
		margin: 0 0 8px 0 !important;
		line-height: 1.4 !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
		overflow: hidden !important;
	}

	.smoky-card-footer {
		border-top: none !important;
		padding-top: 0 !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		margin-top: auto !important;
	}

	.smoky-price-stack {
		display: flex !important;
		flex-direction: row !important;
		align-items: baseline !important;
		gap: 6px !important;
	}

	.smoky-current-price {
		font-size: 15.5px !important;
		font-weight: 900 !important;
		color: var(--smoky-flame, #FF5400) !important;
	}

	.smoky-original-price {
		font-size: 11px !important;
	}

	.smoky-btn-order-action {
		background: #FF5400 !important;
		color: #FFFFFF !important;
		border: none !important;
		padding: 6px 14px !important;
		border-radius: 8px !important;
		font-size: 12px !important;
		font-weight: 800 !important;
		cursor: pointer !important;
		display: inline-flex !important;
		align-items: center !important;
		gap: 4px !important;
		box-shadow: 0 3px 10px rgba(255, 84, 0, 0.35) !important;
	}
}

@media (max-width: 480px) {
	.smoky-food-card {
		padding: 10px !important;
		gap: 10px !important;
	}
	.smoky-card-media {
		width: 92px !important;
		min-width: 92px !important;
		max-width: 92px !important;
		min-height: 92px !important;
	}
	.smoky-card-title {
		font-size: 13.5px !important;
	}
	.smoky-current-price {
		font-size: 14.5px !important;
	}
	.smoky-btn-order-action {
		padding: 5px 10px !important;
		font-size: 11.5px !important;
	}
}

/* ==========================================================================
   ONLINE DELIVERY APPS PICKER MODAL (GoFood, GrabFood, ShopeeFood)
   ========================================================================== */
.smoky-delivery-picker-card {
	max-width: 440px !important;
	background: #12141C !important;
	border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
	border-radius: 24px !important;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 84, 0, 0.15) !important;
	overflow: hidden;
}

.smoky-delivery-picker-inner {
	padding: 32px 24px 24px;
	text-align: center;
}

.delivery-picker-icon-wrap {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(0, 245, 155, 0.12);
	border: 2px solid #00F59B;
	color: #00F59B;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	margin-bottom: 16px;
	box-shadow: 0 0 25px rgba(0, 245, 155, 0.25);
}

.delivery-picker-title {
	font-size: 20px;
	font-weight: 900;
	color: #FFFFFF;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.delivery-picker-desc {
	font-size: 13.5px;
	color: #94A3B8;
	margin: 0 0 22px 0;
	line-height: 1.5;
}

.delivery-channel-btns {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.smoky-delivery-app-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 18px;
	border-radius: 14px;
	background: #1A1D27;
	border: 1.5px solid rgba(255, 255, 255, 0.08);
	text-decoration: none !important;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
}

.smoky-delivery-app-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.smoky-delivery-app-btn.gofood-btn:hover {
	border-color: #E8252C;
	background: #221517;
	box-shadow: 0 8px 25px rgba(232, 37, 44, 0.25);
}

.smoky-delivery-app-btn.grabfood-btn:hover {
	border-color: #00B14F;
	background: #112217;
	box-shadow: 0 8px 25px rgba(0, 177, 79, 0.25);
}

.smoky-delivery-app-btn.shopeefood-btn:hover {
	border-color: #EE4D2D;
	background: #231612;
	box-shadow: 0 8px 25px rgba(238, 77, 45, 0.25);
}

.deliv-btn-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	text-align: left;
}

.deliv-badge-logo {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	font-weight: 900;
	font-size: 15px;
	letter-spacing: -0.5px;
	flex-shrink: 0;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.deliv-btn-info strong {
	display: block;
	font-size: 15px;
	font-weight: 800;
	color: #FFFFFF;
	line-height: 1.2;
}

.deliv-btn-info small {
	display: block;
	font-size: 11.5px;
	color: #94A3B8;
	margin-top: 2px;
}

.deliv-btn-arrow {
	color: #64748B;
	font-size: 20px;
	transition: transform 0.2s ease, color 0.2s ease;
}

.smoky-delivery-app-btn:hover .deliv-btn-arrow {
	transform: translateX(3px);
	color: #FFFFFF;
}

.delivery-picker-footer-note {
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	color: #64748B;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}

/* ==========================================================================
   AMBIENT 3D FLOATING GLOWING BUBBLES & ORBS BACKGROUND (v3.33.0)
   ========================================================================== */
.smoky-ambient-particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	pointer-events: none !important;
	z-index: 2;
	overflow: hidden;
	contain: strict;
}

/* Device Display Toggles */
@media (max-width: 767px) {
	.smoky-ambient-particles.hide-mobile-particles {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.smoky-ambient-particles.hide-tablet-particles {
		display: none !important;
	}
}

@media (min-width: 1025px) {
	.smoky-ambient-particles.hide-desktop-particles {
		display: none !important;
	}
}

/* Intensity Variables (Clearly Distinguished) */
.smoky-ambient-particles.intensity-subtle {
	--bubble-opacity: 0.28;
	--orb-opacity: 0.12;
}

.smoky-ambient-particles.intensity-medium {
	--bubble-opacity: 0.60;
	--orb-opacity: 0.26;
}

.smoky-ambient-particles.intensity-vibrant {
	--bubble-opacity: 0.92;
	--orb-opacity: 0.46;
}

/* Base 3D Glass Bubble Properties */
.smoky-bubble {
	position: absolute;
	border-radius: 50%;
	pointer-events: none !important;
	will-change: transform;
	opacity: var(--bubble-opacity, 0.28);
	transition: opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

/* ==========================================================================
   PARTICLE STYLES (White Glass, Color Orbs, Embers, Ambient Glow)
   ========================================================================== */

/* Style 1: Minimalist White Glass Rings (Calm, Luxury & Non-Fatiguing - Default) */
.smoky-ambient-particles.style-white_glass .smoky-bubble {
	background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 65%, transparent 100%) !important;
	border: 1px solid rgba(255, 255, 255, 0.45) !important;
	box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.22), 0 0 16px rgba(255, 255, 255, 0.14) !important;
	backdrop-filter: blur(1.5px);
	-webkit-backdrop-filter: blur(1.5px);
}

.smoky-ambient-particles.style-white_glass .ambient-orb {
	opacity: calc(var(--orb-opacity, 0.12) * 0.7);
}

/* Style 2: 3D Colorful Fusion Orbs (Flame & Mint) */
.smoky-ambient-particles.style-color_orbs .smoky-bubble.flame-bubble {
	background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 120, 40, 0.5) 35%, rgba(255, 84, 0, 0.12) 75%, transparent 100%);
	border: 1.5px solid rgba(255, 120, 40, 0.4);
	box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.45), 0 0 24px rgba(255, 84, 0, 0.32);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.smoky-ambient-particles.style-color_orbs .smoky-bubble.mint-bubble {
	background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.88) 0%, rgba(0, 245, 155, 0.5) 35%, rgba(0, 245, 155, 0.12) 75%, transparent 100%);
	border: 1.5px solid rgba(0, 245, 155, 0.4);
	box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.45), 0 0 24px rgba(0, 245, 155, 0.32);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

.smoky-ambient-particles.style-color_orbs .smoky-bubble.gold-bubble {
	background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.88) 0%, rgba(255, 183, 3, 0.5) 35%, rgba(255, 183, 3, 0.12) 75%, transparent 100%);
	border: 1.5px solid rgba(255, 183, 3, 0.4);
	box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.45), 0 0 24px rgba(255, 183, 3, 0.32);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
}

/* Style 3: Smokehouse Golden Embers & Sparks */
.smoky-ambient-particles.style-embers .smoky-bubble {
	background: radial-gradient(circle, #FFFFFF 0%, #FFB703 45%, #FF5400 80%, transparent 100%) !important;
	border: none !important;
	box-shadow: 0 0 8px #FF5400, 0 0 18px #FFB703, 0 0 28px rgba(255, 84, 0, 0.4) !important;
}

.smoky-ambient-particles.style-embers .smoky-bubble.bubble-1 { width: 14px !important; height: 14px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-3 { width: 10px !important; height: 10px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-5 { width: 16px !important; height: 16px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-7 { width: 12px !important; height: 12px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-9 { width: 15px !important; height: 15px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-11 { width: 11px !important; height: 11px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-13 { width: 18px !important; height: 18px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-15 { width: 10px !important; height: 10px !important; }
.smoky-ambient-particles.style-embers .smoky-bubble.bubble-17 { width: 14px !important; height: 14px !important; }

/* Style 4: Soft Deep Ambient Glow (Pure Aura, No Circles) */
.smoky-ambient-particles.style-ambient_glow .smoky-bubble {
	display: none !important;
}

.smoky-ambient-particles.style-ambient_glow .ambient-orb {
	opacity: var(--orb-opacity, 0.28);
	filter: blur(100px);
}

/* Individual Bubbles (Coordinates, Dimensions & Unique Continuous 3D Orbits) */
.smoky-bubble.bubble-1 {
	width: 110px;
	height: 110px;
	top: 8%;
	left: 5%;
	animation: float3DOrbitA 14s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-2 {
	width: 24px;
	height: 24px;
	top: 15%;
	left: 18%;
	animation: float3DOrbitB 10s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-3 {
	width: 65px;
	height: 65px;
	top: 6%;
	left: 36%;
	animation: float3DOrbitC 16s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-4 {
	width: 18px;
	height: 18px;
	top: 18%;
	left: 48%;
	animation: float3DOrbitA 8s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-5 {
	width: 145px;
	height: 145px;
	top: 9%;
	left: 76%;
	animation: float3DOrbitB 20s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-6 {
	width: 32px;
	height: 32px;
	top: 22%;
	left: 90%;
	animation: float3DOrbitC 11s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-7 {
	width: 75px;
	height: 75px;
	top: 38%;
	left: 4%;
	animation: float3DOrbitC 15s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-8 {
	width: 22px;
	height: 22px;
	top: 46%;
	left: 17%;
	animation: float3DOrbitA 9s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-9 {
	width: 130px;
	height: 130px;
	top: 40%;
	left: 35%;
	animation: float3DOrbitB 18s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-10 {
	width: 20px;
	height: 20px;
	top: 54%;
	left: 51%;
	animation: float3DOrbitC 10s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-11 {
	width: 85px;
	height: 85px;
	top: 44%;
	left: 73%;
	animation: float3DOrbitA 16s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-12 {
	width: 38px;
	height: 38px;
	top: 35%;
	left: 88%;
	animation: float3DOrbitB 12s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-13 {
	width: 155px;
	height: 155px;
	top: 72%;
	left: 7%;
	animation: float3DOrbitB 22s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-14 {
	width: 26px;
	height: 26px;
	top: 80%;
	left: 21%;
	animation: float3DOrbitC 11s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-15 {
	width: 60px;
	height: 60px;
	top: 75%;
	left: 41%;
	animation: float3DOrbitA 13s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-16 {
	width: 16px;
	height: 16px;
	top: 85%;
	left: 55%;
	animation: float3DOrbitB 8s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-17 {
	width: 135px;
	height: 135px;
	top: 73%;
	left: 75%;
	animation: float3DOrbitC 19s infinite alternate ease-in-out;
}

.smoky-bubble.bubble-18 {
	width: 34px;
	height: 34px;
	top: 83%;
	left: 91%;
	animation: float3DOrbitA 12s infinite alternate ease-in-out;
}

/* Ambient Backlight Depth Orbs */
.ambient-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	will-change: transform, opacity;
	filter: blur(85px);
	opacity: var(--orb-opacity, 0.20);
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.ambient-orb.orb-1 {
	width: 480px;
	height: 480px;
	top: -60px;
	left: -80px;
	background: radial-gradient(circle, #FF5400 0%, #FF7A00 50%, transparent 75%);
	animation: float3DOrbitA 28s infinite alternate ease-in-out;
}

.ambient-orb.orb-2 {
	width: 420px;
	height: 420px;
	top: 30%;
	right: -80px;
	background: radial-gradient(circle, #00F59B 0%, #00B36E 50%, transparent 75%);
	animation: float3DOrbitB 32s infinite alternate ease-in-out;
}

.ambient-orb.orb-3 {
	width: 460px;
	height: 460px;
	bottom: -80px;
	left: 12%;
	background: radial-gradient(circle, #FFB703 0%, #FB8500 50%, transparent 75%);
	animation: float3DOrbitC 30s infinite alternate ease-in-out;
}

.ambient-orb.orb-4 {
	width: 380px;
	height: 380px;
	bottom: 5%;
	right: 15%;
	background: radial-gradient(circle, #FF3366 0%, #E8252C 50%, transparent 75%);
	animation: float3DOrbitA 26s infinite alternate ease-in-out;
}

/* Smooth 3D Floating Orbit Keyframes (Hardware Accelerated GPU) */
@keyframes float3DOrbitA {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	33% {
		transform: translate3d(35px, -45px, 0) scale(1.14);
	}
	66% {
		transform: translate3d(-25px, -20px, 0) scale(0.92);
	}
	100% {
		transform: translate3d(20px, 35px, 0) scale(1.06);
	}
}

@keyframes float3DOrbitB {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	33% {
		transform: translate3d(-40px, 30px, 0) scale(1.18);
	}
	66% {
		transform: translate3d(30px, -35px, 0) scale(0.88);
	}
	100% {
		transform: translate3d(-20px, -50px, 0) scale(1.08);
	}
}

@keyframes float3DOrbitC {
	0% {
		transform: translate3d(0, 0, 0) scale(0.95);
	}
	33% {
		transform: translate3d(45px, 35px, 0) scale(1.12);
	}
	66% {
		transform: translate3d(-35px, 45px, 0) scale(1.05);
	}
	100% {
		transform: translate3d(15px, -40px, 0) scale(0.9);
	}
}

/* Tablet Responsive Optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
	/* Hide redundant bubbles so only 10 spaced bubbles appear */
	.smoky-bubble.bubble-2,
	.smoky-bubble.bubble-4,
	.smoky-bubble.bubble-6,
	.smoky-bubble.bubble-8,
	.smoky-bubble.bubble-10,
	.smoky-bubble.bubble-12,
	.smoky-bubble.bubble-14,
	.smoky-bubble.bubble-16 {
		display: none !important;
	}

	/* Scale down bubbles on Tablet */
	.smoky-bubble.bubble-1 { width: 80px; height: 80px; }
	.smoky-bubble.bubble-3 { width: 50px; height: 50px; }
	.smoky-bubble.bubble-5 { width: 95px; height: 95px; }
	.smoky-bubble.bubble-7 { width: 60px; height: 60px; }
	.smoky-bubble.bubble-9 { width: 85px; height: 85px; }
	.smoky-bubble.bubble-11 { width: 65px; height: 65px; }
	.smoky-bubble.bubble-13 { width: 100px; height: 100px; }
	.smoky-bubble.bubble-15 { width: 50px; height: 50px; }
	.smoky-bubble.bubble-17 { width: 90px; height: 90px; }
	.smoky-bubble.bubble-18 { width: 28px; height: 28px; }

	.ambient-orb.orb-1 { width: 340px; height: 340px; }
	.ambient-orb.orb-2 { width: 300px; height: 300px; }
	.ambient-orb.orb-3 { display: none !important; }
	.ambient-orb.orb-4 { display: none !important; }
}

/* Mobile Responsive Optimizations (< 768px) */
@media (max-width: 767px) {
	/* Hide dense bubbles so only 6 clean, well-spaced bubbles appear */
	.smoky-bubble.bubble-2,
	.smoky-bubble.bubble-3,
	.smoky-bubble.bubble-5,
	.smoky-bubble.bubble-6,
	.smoky-bubble.bubble-8,
	.smoky-bubble.bubble-9,
	.smoky-bubble.bubble-10,
	.smoky-bubble.bubble-12,
	.smoky-bubble.bubble-13,
	.smoky-bubble.bubble-15,
	.smoky-bubble.bubble-16,
	.smoky-bubble.bubble-18 {
		display: none !important;
	}

	/* Scale and position the 6 remaining bubbles gracefully on small screens */
	.smoky-bubble.bubble-1 {
		width: 48px;
		height: 48px;
		top: 6%;
		left: 4%;
	}
	.smoky-bubble.bubble-4 {
		width: 18px;
		height: 18px;
		top: 12%;
		left: 84%;
	}
	.smoky-bubble.bubble-7 {
		width: 42px;
		height: 42px;
		top: 40%;
		left: 3%;
	}
	.smoky-bubble.bubble-11 {
		width: 44px;
		height: 44px;
		top: 48%;
		left: 80%;
	}
	.smoky-bubble.bubble-14 {
		width: 20px;
		height: 20px;
		top: 78%;
		left: 10%;
	}
	.smoky-bubble.bubble-17 {
		width: 52px;
		height: 52px;
		top: 82%;
		left: 76%;
	}

	/* Single subtle backlight on Mobile */
	.ambient-orb.orb-1 { width: 220px; height: 220px; filter: blur(55px); opacity: 0.12; }
	.ambient-orb.orb-2 { display: none !important; }
	.ambient-orb.orb-3 { display: none !important; }
	.ambient-orb.orb-4 { display: none !important; }
}

/* ==========================================================================
   1. OJOL PROMO BANNER (From Breeze Panel - Sleek Horizontal Single Row)
   ========================================================================== */
.smoky-ojol-promo-section {
	padding: 18px 0 22px 0;
	position: relative;
	z-index: 10;
}

.smoky-ojol-coupon-banner {
	background: linear-gradient(135deg, #1C1E28 0%, #111218 100%);
	border: 1.5px dashed rgba(255, 183, 3, 0.5);
	border-radius: 18px;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 183, 3, 0.08);
	transition: all 0.25s ease;
}

.smoky-ojol-coupon-banner:hover {
	border-color: #FFB703;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 183, 3, 0.15);
}

.ojol-coupon-left {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(255, 183, 3, 0.1);
	border: 1px solid rgba(255, 183, 3, 0.3);
	border-radius: 12px;
	padding: 8px 16px;
	min-width: 120px;
	flex-shrink: 0;
	text-align: center;
}

.ojol-discount-badge {
	font-size: 15px;
	font-weight: 900;
	color: #FFB703;
	letter-spacing: 0.5px;
	line-height: 1.2;
}

.ojol-validity-text {
	font-size: 10px;
	color: #94A3B8;
	margin-top: 2px;
}

.ojol-coupon-center {
	flex-grow: 1;
	min-width: 0;
}

.ojol-coupon-pill {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 10.5px;
	font-weight: 800;
	color: #FF5400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.ojol-coupon-title {
	font-size: 15px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 2px 0;
	line-height: 1.3;
}

.ojol-coupon-desc {
	font-size: 12px;
	color: #94A3B8;
	margin: 0;
	line-height: 1.4;
}

.ojol-coupon-right {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.coupon-code-box {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #0E1017;
	border: 1.5px solid #2F3445;
	border-radius: 10px;
	padding: 6px 12px;
}

.coupon-code-label {
	font-size: 9.5px;
	color: #64748B;
	font-weight: 800;
	letter-spacing: 0.5px;
}

.coupon-code-text {
	font-size: 13.5px;
	font-weight: 900;
	color: #00F59B;
	letter-spacing: 1px;
	font-family: monospace;
}

.btn-copy-coupon {
	background: #FF5400;
	color: #FFFFFF;
	border: none;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: background 0.2s ease, transform 0.15s ease;
}

.btn-copy-coupon:hover {
	background: #FF2A00;
	transform: scale(1.04);
}

.btn-use-coupon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 10px;
	font-size: 12px;
	font-weight: 800;
	text-decoration: none !important;
	transition: all 0.2s ease;
	cursor: pointer;
	border: none;
	background: rgba(255, 255, 255, 0.08);
	color: #FFFFFF;
	white-space: nowrap;
}

.btn-use-coupon.wa {
	background: linear-gradient(135deg, #00F59B, #00B36E);
	color: #0E1017;
}

.btn-use-coupon.grabfood { background: #00B14F; color: #fff; }
.btn-use-coupon.gofood { background: #E8252C; color: #fff; }
.btn-use-coupon.shopeefood { background: #EE4D2D; color: #fff; }

.btn-use-coupon:hover {
	transform: translateY(-2px);
	filter: brightness(1.1);
}

@media (max-width: 991px) {
	.smoky-ojol-coupon-banner {
		flex-direction: column;
		padding: 16px;
		gap: 12px;
		text-align: center;
	}
	.ojol-coupon-left {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}
	.ojol-coupon-right {
		width: 100%;
		flex-direction: column;
		gap: 10px;
	}
	.ojol-coupon-right .coupon-code-box,
	.ojol-coupon-right .btn-use-coupon {
		width: 100%;
		justify-content: center;
	}
}

/* ==========================================================================
   2. WEB ORDER VOUCHERS SECTION (From WP Admin - 2 Per Row Horizontal Tickets)
   ========================================================================== */
.smoky-web-vouchers-section {
	padding: 32px 0 20px 0;
	position: relative;
	width: 100%;
	box-sizing: border-box;
}

.smoky-web-vouchers-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
	width: 100%;
	box-sizing: border-box;
}

.web-voucher-ticket {
	background: #141724;
	border: 1.5px dashed rgba(0, 245, 155, 0.45);
	border-radius: 14px;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	transition: all 0.2s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	width: 100%;
	box-sizing: border-box;
}

.web-voucher-ticket:hover {
	border-color: #00F59B;
	background: #181D2D;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 245, 155, 0.15);
}

.web-voucher-main {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
	min-width: 0;
}

.web-voucher-badge {
	background: rgba(0, 245, 155, 0.12);
	border: 1px solid rgba(0, 245, 155, 0.35);
	border-radius: 10px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 900;
	color: #00F59B;
	white-space: nowrap;
	flex-shrink: 0;
	text-align: center;
}

.web-voucher-body {
	flex: 1;
	min-width: 0;
}

.web-voucher-body h4 {
	font-size: 14px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 0 0 2px 0;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.web-voucher-body .web-voucher-meta {
	font-size: 11.5px;
	color: #94A3B8;
	margin: 0;
	line-height: 1.3;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.web-voucher-action {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-shrink: 0;
}

.web-voucher-code {
	background: #0E1017;
	border: 1px solid #2F3445;
	border-radius: 8px;
	padding: 4px 9px;
	font-size: 12px;
	font-weight: 800;
	color: #FFB703;
	font-family: monospace;
	letter-spacing: 0.5px;
}

.btn-copy-web-voucher {
	background: #FF5400;
	color: #FFFFFF;
	border: none;
	border-radius: 8px;
	padding: 6px 12px;
	font-size: 11.5px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s ease;
	white-space: nowrap;
}

.btn-copy-web-voucher:hover {
	background: #00F59B;
	color: #0E1017;
}

/* Tablet Responsive */
@media (max-width: 991px) and (min-width: 769px) {
	.web-voucher-ticket {
		padding: 10px 14px;
		gap: 8px;
	}
	.web-voucher-main {
		gap: 8px;
	}
	.web-voucher-badge {
		font-size: 11.5px;
		padding: 5px 8px;
	}
	.web-voucher-body h4 {
		font-size: 13px;
	}
	.web-voucher-code {
		font-size: 11px;
		padding: 3px 6px;
	}
	.btn-copy-web-voucher {
		font-size: 11px;
		padding: 5px 9px;
	}
}

/* Mobile Responsive - Safe 2-Row Stack Inside Card (No Overflow Guarantee) */
@media (max-width: 768px) {
	.smoky-web-vouchers-grid {
		grid-template-columns: 1fr !important;
		gap: 12px;
	}

	.web-voucher-ticket {
		flex-direction: column;
		align-items: stretch;
		padding: 12px 14px;
		gap: 10px;
	}

	.web-voucher-main {
		display: flex;
		align-items: center;
		gap: 10px;
		width: 100%;
	}

	.web-voucher-badge {
		font-size: 12px;
		padding: 5px 9px;
	}

	.web-voucher-body h4 {
		font-size: 13.5px;
		white-space: normal;
	}

	.web-voucher-body .web-voucher-meta {
		font-size: 11px;
		white-space: normal;
	}

	.web-voucher-action {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		gap: 10px;
		border-top: 1px dashed rgba(255, 255, 255, 0.09);
		padding-top: 9px;
	}

	.web-voucher-code {
		flex: 1;
		text-align: center;
		padding: 6px 10px;
		font-size: 12.5px;
	}

	.btn-copy-web-voucher {
		flex: 1;
		justify-content: center;
		padding: 7px 12px;
		font-size: 12px;
	}
}

/* ==========================================================================
   CATERING & NASI KOTAK SECTION STYLES (Balanced Spacing & Clean Layout)
   ========================================================================== */
.smoky-catering-section {
	padding: 55px 0 50px 0;
	position: relative;
}

.smoky-catering-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	margin-top: 32px;
}

@media (min-width: 992px) {
	.smoky-catering-layout {
		grid-template-columns: 1.15fr 0.85fr;
		gap: 32px;
		align-items: flex-start;
	}
}

.smoky-catering-packages {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.catering-pkg-card {
	background: #181B26;
	border: 1.5px solid #2F3445;
	border-radius: 18px;
	padding: 20px;
	transition: all 0.25s ease;
	cursor: pointer;
}

.catering-pkg-card:hover,
.catering-pkg-card.active {
	border-color: #FF5400;
	background: #1C1F2D;
	box-shadow: 0 10px 30px rgba(255, 84, 0, 0.2);
}

.catering-pkg-card .pkg-badge {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 800;
	padding: 3px 8px;
	border-radius: 6px;
	background: rgba(255, 183, 3, 0.15);
	color: #FFB703;
	margin-bottom: 4px;
}

.catering-pkg-card .pkg-badge.flame {
	background: rgba(255, 84, 0, 0.15);
	color: #FF5400;
}

.catering-pkg-card .pkg-badge.gold {
	background: rgba(0, 245, 155, 0.15);
	color: #00F59B;
}

.catering-pkg-card .pkg-header h4 {
	font-size: 16px;
	font-weight: 800;
	color: #FFFFFF;
	margin: 2px 0 4px 0;
	line-height: 1.3;
}

.catering-pkg-card .pkg-price {
	font-size: 15px;
	font-weight: 900;
	color: #FF5400;
}

.catering-pkg-card .pkg-price span {
	font-size: 12px;
	color: #94A3B8;
	font-weight: 500;
}

.catering-pkg-card .pkg-desc {
	font-size: 12.5px;
	color: #94A3B8;
	margin: 8px 0 14px 0;
	line-height: 1.5;
}

.catering-pkg-card .btn-select-pkg {
	background: #25293A;
	color: #E2E8F0;
	border: 1px solid #3B425A;
	border-radius: 8px;
	padding: 7px 14px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	width: 100%;
}

.catering-pkg-card.active .btn-select-pkg {
	background: #FF5400;
	border-color: #FF5400;
	color: #FFFFFF;
	font-weight: 800;
}

.smoky-catering-calculator-card {
	background: #141620;
	border: 1.5px solid #2F3445;
	border-radius: 20px;
	padding: 26px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.smoky-catering-calculator-card .calc-header h3 {
	font-size: 18px;
	font-weight: 900;
	color: #FFFFFF;
	margin: 0 0 6px 0;
}

.smoky-catering-calculator-card .calc-header p {
	font-size: 12.5px;
	color: #94A3B8;
	margin: 0 0 20px 0;
}

.calc-form-group {
	margin-bottom: 14px;
}

.calc-form-group label {
	display: block;
	font-size: 11.5px;
	font-weight: 700;
	color: #CBD5E1;
	margin-bottom: 6px;
}

.calc-input {
	width: 100%;
	background: #0E1017;
	border: 1.5px solid #2F3445;
	border-radius: 10px;
	padding: 10px 12px;
	color: #FFFFFF;
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s ease;
}

.calc-input:focus {
	border-color: #FF5400;
}

.calc-form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

@media (max-width: 600px) {
	.calc-form-row-2 {
		grid-template-columns: 1fr;
	}
}

.calc-subtotal-box {
	background: #0E1017;
	border: 1.5px solid #FF5400;
	border-radius: 14px;
	padding: 14px 16px;
	margin: 16px 0;
}

.subtotal-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.subtotal-info span {
	font-size: 12px;
	color: #94A3B8;
	font-weight: 600;
}

.subtotal-info strong {
	font-size: 20px;
	color: #00F59B;
	font-weight: 900;
}

.calc-features-list {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 11px;
	color: #CBD5E1;
	border-top: 1px solid #232736;
	padding-top: 8px;
}

.calc-features-list span i {
	color: #00F59B;
}

.btn-catering-submit {
	width: 100%;
	background: linear-gradient(135deg, #00F59B, #00B36E);
	color: #0E1017;
	border: none;
	border-radius: 12px;
	padding: 13px 18px;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	box-shadow: 0 6px 20px rgba(0, 245, 155, 0.3);
	transition: all 0.2s ease;
}

.btn-catering-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 25px rgba(0, 245, 155, 0.45);
}

/* ==========================================================================
   1. OJOL PROMO BANNER (Seamlessly Attached Below Halal Trust Badges Strip)
   ========================================================================== */
.smoky-ojol-promo-section {
	border-top: none !important;
	padding: 12px 0 16px 0 !important;
	position: relative;
	z-index: 10;
}

@media (max-width: 768px) {
	.smoky-ojol-promo-section {
		padding: 10px 0 14px 0 !important;
	}
}

.smoky-menu-section .smoky-section-header {
	margin-bottom: 22px !important;
}

@media (max-width: 768px) {
	.smoky-menu-section .smoky-section-header {
		margin-bottom: 18px !important;
	}
}

/* ==========================================================================
   ELEGANT SECTION DIVIDER LINES & UNIFIED SPACING (Consistent Boundaries)
   ========================================================================== */
.smoky-stories-section,
.smoky-flash-sale-section,
.smoky-web-vouchers-section,
.smoky-menu-section,
.smoky-catering-section,
.smoky-special-ad-section,
.smoky-smokehouse-section,
.smoky-features-section,
.smoky-process-section,
.smoky-reviews-section,
.smoky-outlets-section,
.smoky-faq-section {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	padding: 55px 0 50px 0 !important;
}

@media (max-width: 768px) {
	.smoky-stories-section,
	.smoky-flash-sale-section,
	.smoky-web-vouchers-section,
	.smoky-menu-section,
	.smoky-catering-section,
	.smoky-special-ad-section,
	.smoky-smokehouse-section,
	.smoky-features-section,
	.smoky-process-section,
	.smoky-reviews-section,
	.smoky-outlets-section,
	.smoky-faq-section {
		padding: 38px 0 34px 0 !important;
	}
}
