/**
 * Smoky Chix - Mobile App-Like Experience Stylesheet
 * Native feel, bottom navigation, floating drawer, touch friendly, smooth slide sheets
 */

/* 1. Mobile Bottom Navigation Bar */
.smoky-mobile-bottom-nav {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 66px;
	background: rgba(18, 19, 24, 0.96);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid var(--smoky-card-border);
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 999;
	box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.5);
	padding: 0 8px;
}

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

.mobile-nav-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 3px;
	color: var(--smoky-text-muted);
	font-size: 11px;
	font-weight: 800;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px 12px;
	border-radius: var(--smoky-radius-md);
	transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
	position: relative;
}

.mobile-nav-item i {
	font-size: 22px;
	transition: transform 0.2s ease;
}

.mobile-nav-item:active i {
	transform: scale(0.85);
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
	color: var(--smoky-flame);
}

.mobile-nav-item.active::after {
	content: '';
	position: absolute;
	top: 2px;
	width: 16px;
	height: 3px;
	border-radius: 2px;
	background: var(--smoky-flame);
	box-shadow: 0 0 10px var(--smoky-flame);
}

.nav-cart-icon-box {
	position: relative;
}

.mobile-cart-badge {
	position: absolute;
	top: -6px;
	right: -8px;
	background: var(--smoky-neon);
	color: #121316;
	font-weight: 900;
	font-size: 10px;
	min-width: 17px;
	height: 17px;
	border-radius: 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
	border: 1.5px solid #121316;
	animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.15); }
}

/* 2. Floating Sticky Order Tray Pill */
.smoky-floating-order-pill {
	position: fixed;
	bottom: 76px; /* Above mobile bottom bar */
	left: 50%;
	transform: translateX(-50%) translateY(120px);
	width: calc(100% - 32px);
	max-width: 500px;
	background: linear-gradient(135deg, #FF5400 0%, #E02800 100%);
	color: #fff;
	padding: 10px 16px;
	border-radius: var(--smoky-radius-full);
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: 0 10px 30px rgba(255, 84, 0, 0.5);
	z-index: 998;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.smoky-floating-order-pill.visible {
	transform: translateX(-50%) translateY(0);
	opacity: 1;
	pointer-events: auto;
}

@media (min-width: 992px) {
	.smoky-floating-order-pill {
		bottom: 24px;
	}
}

.pill-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pill-items-badge {
	background: #fff;
	color: var(--smoky-flame);
	font-weight: 900;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: var(--smoky-radius-full);
}

.pill-totals {
	display: flex;
	flex-direction: column;
}

.pill-totals small {
	font-size: 10px;
	opacity: 0.85;
}

.pill-totals strong {
	font-size: 15px;
	font-weight: 900;
}

.smoky-btn-pill-open {
	background: #121316;
	color: #fff;
	border: none;
	font-weight: 800;
	font-size: 12.5px;
	padding: 8px 16px;
	border-radius: var(--smoky-radius-full);
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

/* 3. WhatsApp Order Tray Drawer (Mobile Bottom Sheet & Desktop Drawer) */
.smoky-cart-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 1001;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.smoky-cart-drawer-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.smoky-cart-drawer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 90vh;
	background: #181920;
	border-radius: 24px 24px 0 0;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	transform: translateY(100%);
	transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
	.smoky-cart-drawer {
		top: 0;
		right: 0;
		left: auto;
		bottom: auto;
		width: 460px;
		height: 100%;
		border-radius: 0;
		transform: translateX(100%);
	}
}

.smoky-cart-drawer.active {
	transform: translateY(0);
}

@media (min-width: 768px) {
	.smoky-cart-drawer.active {
		transform: translateX(0);
	}
}

/* Draggable Handle Indicator for Mobile Sheet */
.smoky-cart-drawer::before {
	content: '';
	width: 44px;
	height: 4px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	align-self: center;
	margin-top: 10px;
}

@media (min-width: 768px) {
	.smoky-cart-drawer::before {
		display: none;
	}
}

.smoky-drawer-header {
	padding: 16px 20px;
	border-bottom: 1px solid var(--smoky-card-border);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.drawer-title-wrap h3 {
	font-size: 18px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.item-count-label {
	font-size: 12px;
	color: var(--smoky-text-muted);
}

.smoky-drawer-close {
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.smoky-drawer-body {
	flex-grow: 1;
	overflow-y: auto;
	padding: 20px;
	-webkit-overflow-scrolling: touch;
}

/* Order Mode Selector */
.smoky-order-mode-selector {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin-bottom: 18px;
}

.mode-btn {
	background: #20222B;
	border: 1.5px solid var(--smoky-card-border);
	padding: 10px 6px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	color: var(--smoky-text-muted);
	cursor: pointer;
	text-align: center;
	transition: all 0.2s ease;
}

.mode-btn input {
	display: none;
}

.mode-btn i {
	font-size: 18px;
}

.mode-btn.active {
	background: rgba(255, 84, 0, 0.15);
	border-color: var(--smoky-flame);
	color: var(--smoky-flame);
}

.smoky-table-input-wrap {
	margin-bottom: 16px;
}

.smoky-table-input-wrap label {
	font-size: 12px;
	font-weight: 700;
	display: block;
	margin-bottom: 6px;
}

.smoky-table-input-wrap input {
	width: 100%;
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	padding: 10px 14px;
	border-radius: var(--smoky-radius-sm);
	color: #fff;
	outline: none;
}

/* Cart Items in Drawer */
.smoky-drawer-items-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 20px;
}

.cart-item-row {
	background: #20222B;
	border: 1px solid var(--smoky-card-border);
	padding: 14px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.cart-item-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.cart-item-title {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
}

.cart-item-meta {
	font-size: 11.5px;
	color: var(--smoky-text-muted);
	line-height: 1.4;
}

.cart-item-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 4px;
}

.cart-item-price {
	font-size: 14.5px;
	font-weight: 900;
	color: var(--smoky-neon);
}

.qty-control-box {
	display: flex;
	align-items: center;
	gap: 8px;
	background: #14151B;
	border: 1px solid var(--smoky-card-border);
	border-radius: var(--smoky-radius-full);
	padding: 2px 6px;
}

.qty-btn {
	background: none;
	border: none;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
	width: 24px;
	height: 24px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.qty-val {
	font-size: 13px;
	font-weight: 800;
	min-width: 16px;
	text-align: center;
}

/* Voucher box */
.smoky-voucher-box {
	background: #20222B;
	border: 1px dashed var(--smoky-card-border);
	padding: 12px;
	border-radius: var(--smoky-radius-md);
	margin-bottom: 18px;
}

.voucher-input-row {
	display: flex;
	gap: 8px;
}

.voucher-input-row input {
	flex-grow: 1;
	background: #14151B;
	border: 1px solid var(--smoky-card-border);
	padding: 8px 12px;
	border-radius: var(--smoky-radius-sm);
	color: #fff;
	font-weight: 800;
	font-size: 13px;
	outline: none;
}

.voucher-input-row button {
	background: var(--smoky-neon);
	color: #121316;
	border: none;
	font-weight: 900;
	font-size: 12px;
	padding: 0 16px;
	border-radius: var(--smoky-radius-sm);
	cursor: pointer;
}

.voucher-feedback-msg {
	font-size: 11.5px;
	margin-top: 6px;
}

/* Customer Form */
.smoky-customer-form {
	margin-bottom: 18px;
}

.form-title {
	font-size: 13.5px;
	margin-bottom: 10px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 6px;
}

.smoky-customer-form .form-group {
	margin-bottom: 10px;
}

.smoky-customer-form input,
.smoky-customer-form textarea {
	width: 100%;
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	padding: 10px 14px;
	border-radius: var(--smoky-radius-sm);
	color: #fff;
	font-size: 13px;
	outline: none;
}

.smoky-customer-form input:focus,
.smoky-customer-form textarea:focus {
	border-color: var(--smoky-flame);
}

/* Summary Box */
.smoky-cart-summary-box {
	background: #13141A;
	border: 1px solid var(--smoky-card-border);
	padding: 16px;
	border-radius: var(--smoky-radius-md);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 13px;
	color: var(--smoky-text-muted);
}

.summary-row.total-row {
	border-top: 1px dashed var(--smoky-card-border);
	padding-top: 10px;
	margin-top: 4px;
	color: #fff;
	font-size: 16px;
	font-weight: 900;
}

.summary-row.total-row strong {
	color: var(--smoky-neon);
	font-size: 18px;
}

/* Drawer Footer */
.smoky-drawer-footer {
	padding: 16px 20px;
	border-top: 1px solid var(--smoky-card-border);
	background: #14151B;
}

.smoky-btn-checkout-wa {
	width: 100%;
	background: linear-gradient(135deg, #00F59B 0%, #00B36E 100%);
	color: #121316;
	border: none;
	padding: 14px 20px;
	border-radius: var(--smoky-radius-full);
	font-size: 15px;
	font-weight: 900;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	box-shadow: 0 6px 20px rgba(0, 245, 155, 0.35);
	transition: all 0.25s ease;
}

.smoky-btn-checkout-wa:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 25px rgba(0, 245, 155, 0.5);
}

/* 4. Food Customizer Modal */
.smoky-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(8px);
	z-index: 1050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.smoky-modal-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.smoky-modal-card {
	background: #181920;
	border: 1.5px solid var(--smoky-card-border);
	width: 100%;
	max-width: 620px;
	max-height: 90vh;
	border-radius: var(--smoky-radius-lg);
	overflow-y: auto;
	position: relative;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.smoky-modal-close-btn {
	position: absolute;
	top: 15px;
	right: 15px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #252833;
	border: none;
	color: #fff;
	font-size: 20px;
	cursor: pointer;
	z-index: 10;
}

.modal-food-header {
	position: relative;
	height: 220px;
	background: #14151B;
	overflow: hidden;
}

.modal-food-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal-food-body {
	padding: 24px;
}

.custom-option-group {
	margin-bottom: 20px;
}

.custom-option-group h4 {
	font-size: 14px;
	margin-bottom: 10px;
	color: #fff;
}

.portion-radio-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
}

.portion-option {
	background: #20222B;
	border: 1px solid var(--smoky-card-border);
	padding: 10px 14px;
	border-radius: var(--smoky-radius-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	cursor: pointer;
}

.portion-option.selected {
	border-color: var(--smoky-flame);
	background: rgba(255, 84, 0, 0.1);
}

.sauce-select-dropdown {
	width: 100%;
	background: #20222B;
	border: 1px solid var(--smoky-card-border);
	padding: 10px 14px;
	border-radius: var(--smoky-radius-sm);
	color: #fff;
	outline: none;
}

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

.addon-check-item {
	background: #20222B;
	border: 1px solid var(--smoky-card-border);
	padding: 10px 14px;
	border-radius: var(--smoky-radius-sm);
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 13px;
	cursor: pointer;
}

.modal-action-bar {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 24px;
	border-top: 1px solid var(--smoky-card-border);
	padding-top: 18px;
}

.modal-qty-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #20222B;
	border: 1px solid var(--smoky-card-border);
	padding: 6px 12px;
	border-radius: var(--smoky-radius-full);
}

.btn-add-custom-tray {
	flex-grow: 1;
	background: var(--smoky-flame);
	color: #fff;
	border: none;
	padding: 14px 20px;
	border-radius: var(--smoky-radius-full);
	font-weight: 900;
	font-size: 15px;
	cursor: pointer;
}

/* 5. Stories Viewer Modal */
.smoky-story-viewer-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	z-index: 2000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.25s ease;
}

.smoky-story-viewer-modal.active {
	opacity: 1;
	pointer-events: auto;
}

.story-viewer-progress-bar {
	position: absolute;
	top: 20px;
	left: 20px;
	right: 20px;
	height: 4px;
	background: rgba(255, 255, 255, 0.3);
	border-radius: 2px;
	overflow: hidden;
	z-index: 10;
}

.story-progress-fill {
	height: 100%;
	width: 0%;
	background: #fff;
	transition: width 0.1s linear;
}

.story-viewer-close {
	position: absolute;
	top: 30px;
	right: 20px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	z-index: 10;
}

.story-viewer-slide {
	max-width: 420px;
	width: 100%;
	height: 85vh;
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
}

/* 6. Offcanvas Menu (Native Mobile Slide Drawer) */
.smoky-offcanvas-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 85%;
	max-width: 320px;
	height: 100%;
	background: #181920;
	z-index: 1050;
	transform: translateX(-100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
	padding: 24px;
	box-shadow: 10px 0 40px rgba(0, 0, 0, 0.7);
	border-right: 1px solid var(--smoky-card-border);
	font-family: var(--smoky-font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif);
}

.smoky-offcanvas-menu.active {
	transform: translateX(0);
}

.smoky-offcanvas-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 1049;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.smoky-offcanvas-overlay.active {
	opacity: 1;
	pointer-events: auto;
}

.smoky-offcanvas-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--smoky-card-border);
}

.smoky-offcanvas-close {
	background: var(--smoky-surface);
	border: 1px solid var(--smoky-card-border);
	color: #fff;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.smoky-offcanvas-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin: 15px 0 25px 0;
}

.smoky-offcanvas-links a {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 800;
	color: #D1D5DB;
	padding: 8px 12px;
	border-radius: var(--smoky-radius-md);
	background: #1F212B;
	border: 1px solid var(--smoky-card-border);
	transition: all 0.2s ease;
}

.smoky-offcanvas-links a:hover {
	background: var(--smoky-flame);
	border-color: var(--smoky-flame);
	color: #fff;
}

.smoky-btn-wa-full {
	margin-top: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #00F59B 0%, #00B36E 100%);
	color: #121316;
	padding: 14px;
	border-radius: var(--smoky-radius-full);
	font-weight: 900;
	font-size: 14px;
	box-shadow: 0 6px 20px rgba(0, 245, 155, 0.35);
}

/* ==========================================================================
   MOBILE LIGHT MODE COMPREHENSIVE SUITE (Zero Clash & Razor Sharp Readability)
   ========================================================================== */
body.smoky-body-light .smoky-mobile-bottom-nav {
	background: rgba(255, 255, 255, 0.96) !important;
	border-top: 1px solid #E2E8F0 !important;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06) !important;
}

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

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

body.smoky-body-light .mobile-nav-item.active::after {
	background: var(--smoky-flame) !important;
	box-shadow: 0 0 8px var(--smoky-flame) !important;
}

body.smoky-body-light .mobile-cart-badge {
	background: var(--smoky-flame) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
	border-color: #FFFFFF !important;
}

body.smoky-body-light .smoky-cart-drawer {
	background: #FFFFFF !important;
	color: #0F172A !important;
	box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15) !important;
}

body.smoky-body-light .smoky-cart-drawer::before {
	background: rgba(0, 0, 0, 0.15) !important;
}

body.smoky-body-light .smoky-drawer-header {
	background: #F8FAFC !important;
	border-bottom: 1px solid #E2E8F0 !important;
}

body.smoky-body-light .drawer-title-wrap h3 {
	color: #0F172A !important;
}

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

body.smoky-body-light .smoky-drawer-close {
	background: #F1F5F9 !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-drawer-body {
	background: #FFFFFF !important;
}

body.smoky-body-light .mode-btn {
	background: #F8FAFC !important;
	border: 1.5px solid #E2E8F0 !important;
	color: #475569 !important;
}

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

body.smoky-body-light .smoky-table-input-wrap {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-table-input-wrap label {
	color: #0F172A !important;
}

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

body.smoky-body-light .cart-item-row {
	background: #F8FAFC !important;
	border: 1px solid #E2E8F0 !important;
}

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

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

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

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

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

body.smoky-body-light .cart-item-remove-btn {
	color: #EF233C !important;
}

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

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

body.smoky-body-light .voucher-input-row button {
	background: var(--smoky-flame) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
}

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

body.smoky-body-light .smoky-customer-form .form-title {
	color: #0F172A !important;
}

body.smoky-body-light .smoky-customer-form input,
body.smoky-body-light .smoky-customer-form textarea {
	background: #FFFFFF !important;
	border-color: #CBD5E1 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-cart-summary-box {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
}

body.smoky-body-light .summary-row span {
	color: #64748B !important;
}

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

body.smoky-body-light .summary-row.total-row strong {
	color: var(--smoky-flame) !important;
}

body.smoky-body-light .smoky-offcanvas-menu {
	background: #FFFFFF !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-offcanvas-header {
	border-bottom-color: #E2E8F0 !important;
}

body.smoky-body-light .smoky-offcanvas-close {
	background: #F1F5F9 !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-offcanvas-links a {
	background: #F8FAFC !important;
	border-color: #E2E8F0 !important;
	color: #0F172A !important;
}

body.smoky-body-light .smoky-offcanvas-links a:hover {
	background: var(--smoky-flame) !important;
	border-color: var(--smoky-flame) !important;
	color: var(--smoky-flame-text, #FFFFFF) !important;
}
