/**
 * Smoky Chix - Core Design System & Layout
 * Theme: Western Smokehouse x Rempah Nusantara Fusion
 */

:root {
	--smoky-flame: #FF5400;
	--smoky-flame-hover: #E04800;
	--smoky-neon: #00F59B;
	--smoky-neon-hover: #00D687;
	--smoky-yellow: #FFB703;
	--smoky-red: #EF233C;
	--smoky-bg-dark: #121316;
	--smoky-card-bg: #1A1C23;
	--smoky-card-border: #2B2E38;
	--smoky-surface: #22252E;
	--smoky-text-white: #FFFFFF;
	--smoky-text-muted: #9CA3AF;
	--smoky-text-dim: #6B7280;
	
	--smoky-font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--smoky-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	
	--smoky-radius-sm: 8px;
	--smoky-radius-md: 14px;
	--smoky-radius-lg: 24px;
	--smoky-radius-full: 9999px;
	
	--smoky-shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
	--smoky-shadow-glow: 0 10px 30px rgba(255, 84, 0, 0.35);
	--smoky-shadow-neon: 0 10px 30px rgba(0, 245, 155, 0.3);
}

/* Reset & Box Sizing */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
	margin-top: 0 !important;
	padding-top: 0 !important;
	overflow-x: clip !important;
	max-width: 100vw;
	width: 100%;
}

body {
	margin-top: 0 !important;
	padding-top: 0 !important;
	overflow-x: clip !important;
	max-width: 100vw;
	width: 100%;
	position: relative;
}

/* Force hide WordPress Admin Bar on frontend for clean app presentation */
#wpadminbar {
	display: none !important;
}

body.smoky-body-dark,
body.smoky-body-light {
	font-family: var(--smoky-font-body);
	line-height: 1.6;
	font-size: 15px;
	overflow-x: clip !important;
	max-width: 100vw;
	width: 100%;
	padding-bottom: 70px; /* Space for mobile app bottom bar */
}

body.smoky-body-dark {
	background-color: var(--smoky-bg-dark);
	color: var(--smoky-text-white);
}

@media (min-width: 992px) {
	body.smoky-body-dark,
	body.smoky-body-light {
		padding-bottom: 0;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.25s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

button, input, select, textarea {
	font-family: inherit;
	font-size: inherit;
}

.smoky-container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}

@media (max-width: 991px) {
	.smoky-container {
		padding: 0 12px;
	}
}

@media (max-width: 576px) {
	.smoky-container {
		padding: 0 8px;
	}
}

section {
	max-width: 100vw;
	overflow-x: clip;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--smoky-font-heading);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.text-flame {
	color: var(--smoky-flame);
	background: linear-gradient(135deg, #FF5400 0%, #FFB703 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.text-neon {
	color: var(--smoky-neon);
}

/* 1. Top Marquee Banner */
.smoky-marquee-wrapper {
	background: linear-gradient(90deg, #FF5400 0%, #E63946 50%, #FF5400 100%);
	color: #FFFFFF;
	font-weight: 800;
	font-size: 12.5px;
	letter-spacing: 0.5px;
	padding: 8px 0;
	overflow: hidden;
	white-space: nowrap;
	display: flex;
}

.smoky-marquee-content {
	display: inline-flex;
	gap: 40px;
	animation: smokyMarquee 25s linear infinite;
}

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

/* 2. Table Alert Bar */
.smoky-table-alert-bar {
	background: var(--smoky-neon);
	color: var(--smoky-neon-text, #121316);
	padding: 10px 0;
	font-weight: 700;
	font-size: 13.5px;
	position: relative;
	z-index: 1010;
}

.smoky-table-alert-bar .smoky-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.smoky-close-table-bar {
	background: none;
	border: none;
	font-size: 20px;
	font-weight: 900;
	cursor: pointer;
	color: var(--smoky-neon-text, #121316);
}

/* 3. Header & Sticky Nav */
.smoky-site-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(18, 19, 22, 0.85);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	transition: all 0.3s ease;
}

.smoky-site-header.scrolled {
	background: rgba(14, 15, 18, 0.96);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.smoky-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.smoky-header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.smoky-brand {
	display: flex;
	align-items: center;
}

.smoky-logo-img {
	height: 44px;
	width: auto;
	max-width: 250px;
	object-fit: contain;
	display: block;
}

/* Live Store Status Badge */
.smoky-header-status-wrap {
	display: none;
}

@media (min-width: 900px) {
	.smoky-header-status-wrap {
		display: flex;
		align-items: center;
	}
}

.smoky-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: var(--smoky-radius-full);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.3px;
	white-space: nowrap !important;
	flex-shrink: 0;
}

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

.smoky-status-pill.closed {
	background: rgba(239, 35, 60, 0.15);
	color: var(--smoky-red);
	border: 1px solid rgba(239, 35, 60, 0.3);
}

.pulse-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--smoky-neon);
	box-shadow: 0 0 10px var(--smoky-neon);
	animation: pulseGlow 1.5s infinite;
}

.closed-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--smoky-red);
}

@keyframes pulseGlow {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.4; transform: scale(1.3); }
}

/* Desktop Nav Links */
.smoky-desktop-nav {
	display: none;
}

@media (min-width: 992px) {
	.smoky-desktop-nav {
		display: block;
	}
}

.smoky-menu-list {
	display: flex;
	align-items: center;
	gap: 26px;
	list-style: none;
}

.smoky-menu-list a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--smoky-text-muted);
}

.smoky-menu-list a:hover,
.smoky-menu-list a.active {
	color: var(--smoky-flame);
}

/* Header Actions */
.smoky-header-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.smoky-btn-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	transition: all 0.2s ease;
}

.smoky-btn-icon:hover {
	background: var(--smoky-flame);
	border-color: var(--smoky-flame);
	transform: scale(1.05);
}

.smoky-cart-trigger-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(135deg, #242731 0%, #1A1C23 100%);
	border: 1.5px solid var(--smoky-card-border);
	padding: 6px 14px 6px 8px;
	border-radius: var(--smoky-radius-full);
	cursor: pointer;
	color: #fff;
	transition: all 0.25s ease;
}

.smoky-cart-trigger-btn:hover {
	border-color: var(--smoky-flame);
	box-shadow: 0 4px 15px rgba(255, 84, 0, 0.25);
}

.smoky-cart-icon-wrap {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--smoky-flame);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	font-size: 17px;
}

.smoky-cart-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--smoky-neon);
	color: var(--smoky-neon-text, #121316);
	font-weight: 900;
	font-size: 10.5px;
	min-width: 18px;
	height: 18px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
	border: 1.5px solid #121316;
}

.smoky-cart-subtotal-info {
	display: none;
	flex-direction: column;
	text-align: left;
}

@media (min-width: 640px) {
	.smoky-cart-subtotal-info {
		display: flex;
	}
}

/* User Account / Portal Header Pill */
.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-nav-container {
		height: 60px !important;
		padding: 0 10px !important;
		gap: 8px !important;
	}
	.smoky-header-left {
		gap: 8px !important;
		flex-shrink: 1 !important;
		min-width: 0 !important;
	}
	.smoky-mobile-toggle {
		width: 38px !important;
		height: 38px !important;
		min-width: 38px !important;
		flex-shrink: 0 !important;
	}
	.smoky-logo-img {
		max-height: 30px !important;
		width: auto !important;
	}
	.smoky-header-actions {
		gap: 6px !important;
		flex-shrink: 0 !important;
	}
	.smoky-search-trigger {
		display: none !important;
	}
	.smoky-cart-trigger-btn {
		display: none !important;
	}
	.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;
	}
}

.smoky-cart-label {
	font-size: 11px;
	color: var(--smoky-text-muted);
	font-weight: 600;
}

.smoky-cart-val {
	font-size: 13px;
	font-weight: 800;
	color: var(--smoky-neon);
}

/* Hamburger button */
.smoky-mobile-toggle {
	width: 42px;
	height: 42px;
	border-radius: var(--smoky-radius-sm);
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
}

@media (min-width: 992px) {
	.smoky-mobile-toggle {
		display: none;
	}
}

.smoky-mobile-toggle span {
	width: 20px;
	height: 2px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.2s ease;
}

/* 4. Hero Section */
.smoky-hero-section {
	position: relative;
	padding: 40px 0 60px;
	overflow: hidden;
}

.smoky-hero-glow-bg {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 84, 0, 0.2) 0%, rgba(255, 84, 0, 0) 70%);
	pointer-events: none;
	z-index: 0;
}

.smoky-hero-container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) {
	.smoky-hero-container {
		grid-template-columns: 1.1fr 0.9fr;
		padding: 40px 20px 80px;
	}
}

.smoky-hero-pill-badge {
	display: inline-flex;
	padding: 6px 16px;
	border-radius: var(--smoky-radius-full);
	background: rgba(255, 84, 0, 0.15);
	border: 1.5px solid var(--smoky-flame);
	color: var(--smoky-flame);
	font-weight: 900;
	font-size: 12.5px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
}

.smoky-hero-headline {
	font-size: 36px;
	font-weight: 900;
	line-height: 1.15;
	margin-bottom: 18px;
}

@media (min-width: 768px) {
	.smoky-hero-headline {
		font-size: 52px;
	}
}

.smoky-hero-desc {
	font-size: 16px;
	color: var(--smoky-text-muted);
	margin-bottom: 30px;
	max-width: 540px;
}

.smoky-hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 35px;
}

.smoky-hero-proof {
	display: flex;
	align-items: center;
	gap: 15px;
}

.smoky-avatar-group {
	display: flex;
}

.smoky-mini-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #242731;
	border: 2px solid var(--smoky-bg-dark);
	margin-left: -8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
}

.smoky-mini-avatar:first-child {
	margin-left: 0;
}

.smoky-proof-text {
	display: flex;
	flex-direction: column;
	font-size: 13px;
}

.smoky-proof-text strong {
	color: #fff;
	font-weight: 800;
}

.smoky-proof-text span {
	color: var(--smoky-text-muted);
}

.smoky-hero-visual-col {
	position: relative;
	display: flex;
	justify-content: center;
	min-width: 0 !important;
	max-width: 100% !important;
	width: 100%;
}

.smoky-hero-image-wrap {
	position: relative;
	max-width: 480px;
	width: 100%;
	min-width: 0 !important;
	overflow: visible;
}

.smoky-hero-swiper {
	width: 100% !important;
	max-width: 480px !important;
	min-width: 0 !important;
	height: 380px !important;
	border-radius: 28px;
	overflow: hidden !important;
	border: 3px solid var(--smoky-flame);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
	position: relative;
}

.smoky-hero-swiper .swiper-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 100% !important;
}

.smoky-hero-swiper .swiper-slide {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 380px !important;
	overflow: hidden;
	box-sizing: border-box;
}

.smoky-hero-swiper img.smoky-hero-main-img,
.smoky-hero-main-img {
	position: relative;
	z-index: 1;
	width: 100% !important;
	height: 380px !important;
	max-width: 100% !important;
	object-fit: cover !important;
	display: block !important;
	border-radius: 24px;
	filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.6));
}

/* Guard against any WordPress smiley or emoji injection */
img.wp-smiley,
img.emoji {
	display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}

.smoky-hero-slide-tag {
	position: absolute;
	top: 14px;
	right: 14px;
	left: auto;
	z-index: 5;
	background: rgba(18, 19, 24, 0.88);
	backdrop-filter: blur(8px);
	border: 1.5px solid var(--smoky-flame);
	color: #FFFFFF !important;
	padding: 6px 14px;
	border-radius: var(--smoky-radius-full);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.5px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.smoky-hero-swiper .swiper-pagination,
.smoky-ad-swiper .swiper-pagination {
	bottom: 12px !important;
	z-index: 10;
}

.smoky-hero-swiper .swiper-pagination-bullet,
.smoky-ad-swiper .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.5);
	opacity: 1;
	transition: all 0.25s ease;
}

.smoky-hero-swiper .swiper-pagination-bullet-active,
.smoky-ad-swiper .swiper-pagination-bullet-active {
	width: 24px;
	background: var(--smoky-flame) !important;
	box-shadow: 0 0 10px var(--smoky-flame);
}

.smoky-float-badge {
	position: absolute;
	z-index: 2;
	background: rgba(30, 32, 40, 0.92);
	backdrop-filter: blur(10px);
	border: 1.5px solid var(--smoky-card-border);
	padding: 8px 16px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
	animation: floatBobbing 4s ease-in-out infinite;
}

.smoky-float-badge .badge-icon {
	font-size: 22px;
}

.smoky-float-badge .badge-text {
	display: flex;
	flex-direction: column;
}

.smoky-float-badge .badge-text strong {
	font-size: 13px;
	color: #fff;
}

.smoky-float-badge .badge-text small {
	font-size: 11px;
	color: var(--smoky-neon);
	font-weight: 700;
}

.smoky-float-badge.badge-1 {
	top: -10px;
	left: -10px;
	animation-delay: 0s;
}

.smoky-float-badge.badge-2 {
	bottom: -14px;
	left: -5px;
	animation-delay: 1.5s;
}

.smoky-float-badge.badge-3 {
	bottom: -14px;
	right: -5px;
	animation-delay: 2.5s;
}

.smoky-float-badge.badge-mascot {
	top: -12px;
	right: -10px;
	animation-delay: 3s;
	border-color: rgba(255, 84, 0, 0.45);
	background: rgba(25, 27, 35, 0.95);
}

.badge-icon-mascot {
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #121316;
	border: 1.5px solid #FF5400;
	overflow: hidden;
	flex-shrink: 0;
}

.mascot-chip-thumb {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.smoky-footer-mascot-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	background: rgba(255, 84, 0, 0.08);
	border: 1.5px solid rgba(255, 84, 0, 0.25);
	padding: 8px 14px;
	border-radius: 14px;
}

.footer-mascot-img {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	object-fit: contain;
	background: #121316;
	border: 1.5px solid #FF5400;
	padding: 2px;
}

.footer-mascot-text strong {
	display: block;
	font-size: 12.5px;
	font-weight: 800;
	color: #FF5400;
	line-height: 1.2;
}

.footer-mascot-text small {
	display: block;
	font-size: 11px;
	color: #94A3B8;
	line-height: 1.2;
}

@keyframes floatBobbing {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-12px); }
}

/* Trust Badges Strip */
.smoky-trust-strip {
	border-top: 1px solid var(--smoky-card-border);
	border-bottom: 1px solid var(--smoky-card-border);
	background: #17181F;
	padding: 22px 0;
	margin-top: 40px;
}

.smoky-trust-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

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

.smoky-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.smoky-trust-item img {
	width: 44px;
	height: 44px;
}

.smoky-trust-item strong {
	font-size: 13px;
	display: block;
	color: #fff;
}

.smoky-trust-item small {
	font-size: 11.5px;
	color: var(--smoky-text-muted);
}

/* ==========================================================================
   LIGHT MODE DESIGN SYSTEM (Clean Porcelain Luxe Foodie)
   Zero text clash, flawless high-contrast readability, premium white glass
   ========================================================================== */
body.smoky-body-light {
	--smoky-bg-dark: #F8FAFC;
	--smoky-card-bg: #FFFFFF;
	--smoky-card-border: #E2E8F0;
	--smoky-surface: #F1F5F9;
	--smoky-text-white: #0F172A;
	--smoky-text-muted: #64748B;
	--smoky-text-dim: #94A3B8;
	
	background-color: #F8FAFC !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-site-header {
	background: rgba(255, 255, 255, 0.94) !important;
	border-bottom: 1px solid #E2E8F0 !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.smoky-body-light .smoky-mobile-toggle {
	background: #F1F5F9 !important;
	border-color: #CBD5E1 !important;
}

body.smoky-body-light .smoky-mobile-toggle span {
	background: #0F172A !important;
}

body.smoky-body-light .smoky-btn-icon {
	background: #F1F5F9 !important;
	border-color: #CBD5E1 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-cart-trigger-btn {
	background: #F8FAFC !important;
	border-color: #CBD5E1 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-menu-list a {
	color: #334155 !important;
}

body.smoky-body-light .smoky-menu-list a:hover,
body.smoky-body-light .smoky-menu-list a.active {
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-hero-section {
	background: radial-gradient(circle at 80% 20%, rgba(var(--smoky-flame-rgb, 255, 84, 0), 0.08) 0%, transparent 60%),
	            radial-gradient(circle at 20% 80%, rgba(var(--smoky-neon-rgb, 0, 245, 155), 0.06) 0%, transparent 50%),
	            #F8FAFC !important;
}

body.smoky-body-light .smoky-float-badge {
	background: rgba(255, 255, 255, 0.96) !important;
	border: 1.5px solid #CBD5E1 !important;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
}

body.smoky-body-light .smoky-float-badge .badge-text strong,
body.smoky-body-light .badge-info strong,
body.smoky-body-light .chip-info strong {
	color: #0F172A !important;
	font-weight: 900 !important;
}

body.smoky-body-light .smoky-float-badge .badge-text small,
body.smoky-body-light .badge-info small,
body.smoky-body-light .chip-info small {
	color: var(--smoky-flame) !important;
	font-weight: 800 !important;
}

body.smoky-body-light .smoky-proof-text strong {
	color: #0F172A !important;
	font-weight: 800 !important;
}

body.smoky-body-light .smoky-proof-text span {
	color: #64748B !important;
	font-weight: 600 !important;
}

body.smoky-body-light .smoky-food-card,
body.smoky-body-light .smoky-flash-item-card,
body.smoky-body-light .smoky-outlet-card,
body.smoky-body-light .smoky-review-card,
body.smoky-body-light .smoky-story-bubble,
body.smoky-body-light .smoky-process-card {
	background: #FFFFFF !important;
	border: 1.5px solid #E2E8F0 !important;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

body.smoky-body-light .smoky-food-card:hover,
body.smoky-body-light .smoky-flash-item-card:hover,
body.smoky-body-light .smoky-outlet-card:hover,
body.smoky-body-light .smoky-review-card:hover {
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09) !important;
	border-color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-card-media {
	background: #F1F5F9 !important;
}

body.smoky-body-light .smoky-hero-content h1,
body.smoky-body-light .smoky-section-header h2,
body.smoky-body-light .smoky-card-title,
body.smoky-body-light .outlet-card-header h3,
body.smoky-body-light .smoky-process-card h3,
body.smoky-body-light .smoky-faq-item summary,
body.smoky-body-light .smoky-archive-header h1,
body.smoky-body-light .flash-card-info h4 {
	color: #0F172A !important;
}

body.smoky-body-light .smoky-card-excerpt,
body.smoky-body-light .smoky-section-header p,
body.smoky-body-light .smoky-hero-desc,
body.smoky-body-light .outlet-card-address {
	color: #64748B !important;
}

body.smoky-body-light .smoky-search-box input {
	background: #FFFFFF !important;
	border-color: #CBD5E1 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-cat-tab {
	background: #FFFFFF !important;
	border-color: #E2E8F0 !important;
	color: #475569 !important;
}

body.smoky-body-light .smoky-cat-tab.active {
	background: var(--smoky-flame) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
	border-color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-cat-tab .cat-count {
	background: #E2E8F0 !important;
	color: #0F172A !important;
	border: 1px solid #CBD5E1 !important;
	font-weight: 800 !important;
}

body.smoky-body-light .smoky-cat-tab.active .cat-count {
	background: rgba(0, 0, 0, 0.22) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
	border: 1px solid rgba(0, 0, 0, 0.15) !important;
	font-weight: 900 !important;
}

body.smoky-body-light .smoky-trust-strip,
body.smoky-body-light .smoky-process-section,
body.smoky-body-light .smoky-flash-section {
	background: #F1F5F9 !important;
	border-color: #E2E8F0 !important;
}

body.smoky-body-light .smoky-trust-item strong {
	color: #0F172A !important;
}

body.smoky-body-light .smoky-faq-section {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
}

body.smoky-body-light .smoky-faq-item {
	background: #FFFFFF !important;
	border-color: #E2E8F0 !important;
}

body.smoky-body-light .smoky-faq-item summary {
	color: #0F172A !important;
}

body.smoky-body-light .smoky-faq-item p {
	color: #475569 !important;
}

body.smoky-body-light .smoky-offcanvas-menu,
body.smoky-body-light .smoky-cart-drawer,
body.smoky-body-light .smoky-modal-dialog {
	background: #FFFFFF !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-mobile-bottom-nav {
	background: rgba(255, 255, 255, 0.94) !important;
	border-top: 1px solid #E2E8F0 !important;
}

body.smoky-body-light .mobile-nav-item {
	color: #64748B !important;
}

body.smoky-body-light .mobile-nav-item.active {
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-site-footer {
	background: #0F172A !important;
	color: #F8FAFC !important;
}

body.smoky-body-light .smoky-current-price {
	color: #0F172A !important;
}

body.smoky-body-light .smoky-current-price.promo {
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-original-price,
body.smoky-body-light .normal-price {
	color: #94A3B8 !important;
	text-decoration: line-through !important;
	font-size: 13px !important;
	font-weight: 600 !important;
}

body.smoky-body-light .smoky-card-footer {
	border-color: #E2E8F0 !important;
}

body.smoky-body-light .smoky-modal-card {
	background: #FFFFFF !important;
	color: #0F172A !important;
	border: 1px solid #E2E8F0 !important;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15) !important;
}

body.smoky-body-light .portion-option {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .portion-option.selected {
	background: #FFF7ED !important;
	border-color: var(--smoky-flame) !important;
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .addon-check-item {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .sauce-select-dropdown {
	background: #FFFFFF !important;
	border-color: #CBD5E1 !important;
	color: #0F172A !important;
}

body.smoky-body-light .modal-food-body h3 {
	color: #0F172A !important;
}

body.smoky-body-light .modal-food-body p {
	color: #64748B !important;
}

body.smoky-body-light .modal-qty-box {
	background: #F1F5F9 !important;
	border-color: #CBD5E1 !important;
}

body.smoky-body-light .qty-val {
	color: #0F172A !important;
}

body.smoky-body-light .qty-btn {
	color: #0F172A !important;
}

/* ==========================================================================
   SPECIAL AD BANNER RESPONSIVE 2-COLUMN SPLIT (Desktop & Tablet Layout)
   ========================================================================== */
.smoky-special-ad-section {
	padding: 50px 0;
}

.smoky-special-ad-card {
	background: linear-gradient(135deg, #1C1E26 0%, #121316 100%);
	border: 2px solid var(--smoky-card-border);
	border-radius: 28px;
	padding: 30px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	align-items: center;
	box-shadow: 0 20px 50px rgba(0,0,0,0.5);
	position: relative;
	overflow: hidden;
	min-width: 0 !important;
}

@media (min-width: 768px) {
	.smoky-special-ad-card {
		grid-template-columns: 1.05fr 0.95fr;
		padding: 40px 45px;
		gap: 35px;
	}
}

@media (min-width: 1024px) {
	.smoky-special-ad-card {
		grid-template-columns: 1.1fr 0.9fr;
		padding: 48px 55px;
		gap: 45px;
	}
}

.ad-text-col {
	min-width: 0 !important;
	max-width: 100% !important;
	width: 100%;
}

.ad-pill-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: var(--smoky-radius-full);
	font-size: 12.5px;
	font-weight: 700;
	color: #FFFFFF !important;
}

.ad-image-col {
	width: 100%;
	min-width: 0 !important;
	max-width: 100% !important;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.smoky-ad-swiper {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 360px !important;
	border-radius: 20px;
	overflow: hidden !important;
	border: 2.5px solid var(--smoky-flame);
	box-shadow: 0 15px 35px rgba(255, 84, 0, 0.35);
	position: relative;
}

.smoky-ad-swiper .swiper-wrapper {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 100% !important;
}

.smoky-ad-swiper .swiper-slide {
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	height: 360px !important;
	overflow: hidden;
	box-sizing: border-box;
}

.smoky-ad-swiper img {
	width: 100% !important;
	height: 360px !important;
	max-width: 100% !important;
	object-fit: cover !important;
	display: block !important;
	border-radius: 18px;
}

/* ==========================================================================
   DARK SURFACE ENCLAVE PROTECTION (Guarantee White Text on Dark Containers)
   ========================================================================== */
.smoky-special-ad-card,
.smoky-special-ad-card h1,
.smoky-special-ad-card h2,
.smoky-special-ad-card h3,
.smoky-special-ad-card h4,
body.smoky-body-light .smoky-special-ad-card h2,
body.smoky-body-dark .smoky-special-ad-card h2 {
	color: #FFFFFF !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.smoky-special-ad-card p,
body.smoky-body-light .smoky-special-ad-card p,
body.smoky-body-dark .smoky-special-ad-card p {
	color: #E2E8F0 !important;
}

.smoky-special-ad-card .smoky-badge-sub {
	color: #FF5400 !important;
}

.smoky-special-ad-card .smoky-btn-outline {
	color: #FFFFFF !important;
	border-color: rgba(255, 255, 255, 0.45) !important;
	background: rgba(255, 255, 255, 0.1) !important;
}

.smoky-special-ad-card .smoky-btn-outline:hover {
	background: var(--smoky-flame) !important;
	border-color: var(--smoky-flame) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
}

/* ==========================================================================
   LIGHT MODE REVIEWS, SOCIAL PROOF & BADGES (100% Crisp Contrast)
   ========================================================================== */
body.smoky-body-light .smoky-badge-sub {
	color: var(--smoky-flame) !important;
	font-weight: 900 !important;
}

body.smoky-body-light .review-card-text {
	color: #1E293B !important;
	font-weight: 500 !important;
	font-size: 14.5px !important;
	line-height: 1.6 !important;
}

body.smoky-body-light .author-info strong {
	color: #0F172A !important;
	font-weight: 800 !important;
}

body.smoky-body-light .author-info small {
	color: #64748B !important;
}

body.smoky-body-light .platform-tag {
	color: #047857 !important;
	font-weight: 800 !important;
}

body.smoky-body-light .author-avatar {
	background: #F1F5F9 !important;
	border: 1px solid #E2E8F0 !important;
}

/* Light Mode Hero Chips (Crisp Forest Emerald Subtitle) */
body.smoky-body-light .badge-info small,
body.smoky-body-light .chip-info small {
	color: #047857 !important;
	font-weight: 800 !important;
}

/* Light Mode Logo Filter Silhouette Protection */
body.smoky-body-light .smoky-brand img,
body.smoky-body-light .smoky-offcanvas-header img {
	filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.9));
}

/* ==========================================================================
   STORIES, FLASH BANNER, SPICE PILLS & OUTLETS LIGHT MODE SUITE
   ========================================================================== */
/* 1. Stories Highlights */
body.smoky-body-light .story-label {
	color: #0F172A !important;
	font-weight: 800 !important;
}

body.smoky-body-light .circle-inner {
	background: #FFFFFF !important;
	border-color: #E2E8F0 !important;
}

/* 2. Flash Sale Dark Enclave Protection */
.smoky-flash-card-banner,
.smoky-flash-card-banner h2,
.smoky-flash-card-banner h3,
.smoky-flash-title-col h2,
body.smoky-body-light .smoky-flash-card-banner h2,
body.smoky-body-light .smoky-flash-title-col h2,
body.smoky-body-dark .smoky-flash-card-banner h2,
body.smoky-body-dark .smoky-flash-title-col h2 {
	color: #FFFFFF !important;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.smoky-flash-card-banner p,
.smoky-flash-title-col p,
body.smoky-body-light .smoky-flash-card-banner p,
body.smoky-body-light .smoky-flash-title-col p,
body.smoky-body-dark .smoky-flash-card-banner p,
body.smoky-body-dark .smoky-flash-title-col p {
	color: #E2E8F0 !important;
}

.smoky-flash-card-banner .time-block {
	background: #14151B !important;
	border-color: #2B2E38 !important;
}

.smoky-flash-card-banner .time-block .digit {
	color: #FFFFFF !important;
}

.smoky-flash-card-banner .time-block small {
	color: #94A3B8 !important;
}

.smoky-flash-card-banner .countdown-label {
	color: #FFB703 !important;
}

body.smoky-body-light .flash-card-info h4 {
	color: #0F172A !important;
}

body.smoky-body-light .stock-progress-wrap small {
	color: #64748B !important;
}

body.smoky-body-light .progress-bar-bg {
	background: #E2E8F0 !important;
}

/* 3. Hero Social Proof Rating & Trust */
body.smoky-body-light .hero-trust-text strong,
body.smoky-body-light .hero-rating-wrap strong {
	color: #0F172A !important;
}

body.smoky-body-light .hero-trust-text small,
body.smoky-body-light .hero-rating-wrap small {
	color: #475569 !important;
}

/* 4. Spicy Filter Pills & Spice Tags */
body.smoky-body-light .smoky-spice-pill {
	background: #FFFFFF !important;
	border: 1px solid #CBD5E1 !important;
	color: #334155 !important;
	font-weight: 700 !important;
}

body.smoky-body-light .smoky-spice-pill.active {
	background: var(--smoky-red) !important;
	border-color: var(--smoky-red) !important;
	color: #FFFFFF !important;
}

body.smoky-body-light .smoky-spicy-filter-pills .filter-label {
	color: #0F172A !important;
	font-weight: 800 !important;
}

body.smoky-body-light .smoky-spice-tag.level-0 { color: #047857 !important; }
body.smoky-body-light .smoky-spice-tag.level-1 { color: #D97706 !important; }
body.smoky-body-light .smoky-spice-tag.level-2 { color: #EA580C !important; }
body.smoky-body-light .smoky-spice-tag.level-3 { color: #DC2626 !important; font-weight: 900 !important; }

/* 5. Outlets Section in Light Mode */
body.smoky-body-light .smoky-outlets-section {
	background: #F8FAFC !important;
}

body.smoky-body-light .outlet-card-header h3 {
	color: #0F172A !important;
}

body.smoky-body-light .hours-badge {
	color: #047857 !important;
	font-weight: 800 !important;
}

body.smoky-body-light .outlet-card-address {
	color: #475569 !important;
}

body.smoky-body-light .smoky-btn-maps {
	background: #F1F5F9 !important;
	color: #0F172A !important;
	border: 1px solid #CBD5E1 !important;
}

body.smoky-body-light .smoky-btn-wa-sm {
	background: #DCFCE7 !important;
	color: #15803D !important;
	border: 1px solid #86EFAC !important;
	font-weight: 800 !important;
}

body.smoky-body-light .pill-label {
	color: #64748B !important;
}

/* 6. Footer in Light Mode */
body.smoky-body-light .smoky-site-footer {
	background: #0F172A !important;
	color: #94A3B8 !important;
}

body.smoky-body-light .footer-heading {
	color: #FFFFFF !important;
}

body.smoky-body-light .footer-links a {
	color: #CBD5E1 !important;
}

body.smoky-body-light .footer-links a:hover {
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .footer-hours-card {
	background: #1E293B !important;
	border: 1px solid #334155 !important;
	color: #E2E8F0 !important;
}

body.smoky-body-light .footer-hours-card strong {
	color: #FFFFFF !important;
}

body.smoky-body-light .halal-footer-tag {
	color: #34D399 !important;
}

body.smoky-body-light .smoky-footer-bottom {
	border-top-color: #1E293B !important;
	color: #94A3B8 !important;
}

/* FAQ Accordion Item Active Transition & Arrow Rotation */
.smoky-faq-item summary i {
	transition: transform 0.3s ease;
}

.smoky-faq-item[open] summary i {
	transform: rotate(180deg);
}

.smoky-faq-item[open] {
	border-color: var(--smoky-flame) !important;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* 7. Hide Footer on Mobile & Tablet (when enabled in Breeze Theme Options) */
@media (max-width: 991px) {
	.smoky-site-footer.smoky-footer-hide-mobile-tablet {
		display: none !important;
	}
}
