/**
 * ============================================================
 *  ZAPTOU — STOREFRONT APP STYLES
 *  Estilos da Vitrine do Cardápio Digital (Cliente)
 *  Depende de: design-system.css (tokens CSS)
 * ============================================================
 */

/* Global Layout & Sticky Footer Base */
html {
	height: 100%;
	overflow-x: hidden;
	-webkit-tap-highlight-color: transparent;
	scroll-behavior: smooth;
}
body {
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	margin: 0;
	overflow-x: hidden;
	width: 100%;
	background-color: #f7f8fa;
	-webkit-overflow-scrolling: touch;
}
.z-store-main-wrap:not(.z-store-footer-inner) {
	flex: 1 0 auto;
	width: 100%;
	box-sizing: border-box;
}
@media (max-width: 899px) {
	.z-store-main-wrap:not(.z-store-footer-inner) {
		padding-bottom: calc(85px + env(safe-area-inset-bottom, 16px)) !important;
	}
}

/* Store Hero */
.z-store-hero {
	position: relative;
	background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
	background-size: cover;
	background-position: center;
	min-height: 260px;
	display: flex;
	align-items: flex-end;
	padding: 20px 16px;
	margin: 0;
	overflow: hidden;
}
@media (min-width: 768px) {
	.z-store-hero {
		min-height: 320px;
		padding: 32px 40px;
	}
}
.z-store-hero-bg {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 0;
}
.z-store-hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.z-store-hero-overlay {
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
	z-index: 1;
}
.z-store-hero-content {
	position: relative;
	z-index: 2;
	color: white;
	width: 100%;
}
.z-store-hero-logo {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	overflow: hidden;
	border: 3px solid white;
	margin-bottom: 12px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	flex-shrink: 0;
}
@media (min-width: 768px) {
	.z-store-hero-logo {
		width: 90px;
		height: 90px;
		border-radius: 20px;
		margin-bottom: 16px;
	}
}
.z-store-hero h1 { color: #2f333b; }
.z-store-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.z-store-hero h1 {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 8px;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.z-store-hero h1 {
		font-size: 2rem;
	}
}
.z-store-hero-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 0.82rem;
	opacity: 0.9;
}
.z-store-hero-meta span {
	display: flex;
	align-items: center;
	gap: 4px;
}
.z-store-hero-actions {
	display: flex;
	gap: 12px;
	margin-top: 16px;
}
.z-store-hero-btn {
	padding: 10px 20px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.2s;
	font-family: var(--z-font, 'Inter', sans-serif);
}
.z-store-hero-btn.primary {
	background: var(--z-primary);
	color: white;
}
.z-store-hero-btn.secondary {
	background: #25d366;
	color: white;
	border: none;
}
.z-store-hero-btn:hover {
	transform: translateY(-2px);
}

/* Status badge */
.z-store-status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}
.z-store-status.open {
	background: rgba(74, 222, 128, 0.2);
	color: #16a34a;
}
.z-store-status.closed {
	background: rgba(248, 113, 113, 0.2);
	color: #dc2626;
}
.z-store-status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
}
.z-store-status.open i { background: #16a34a; }
.z-store-status.closed i { background: #dc2626; }

/* Search Bar */
.z-store-search {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #ffffff;
	padding: 12px 16px;
	border-bottom: 1px solid var(--z-border, rgba(0,0,0,0.08));
}
@media (min-width: 768px) {
	.z-store-search {
		padding: 12px 24px;
	}
	.z-store-search-inner {
		max-width: 1200px;
		margin: 0 auto;
	}
}
.z-store-search input {
	width: 100%;
	padding: 12px 16px 12px 44px;
	border: 1px solid var(--z-border, rgba(0,0,0,0.10));
	border-radius: 12px;
	font-size: 0.95rem;
	background: #f8f9fa;
	font-family: var(--z-font, 'Inter', sans-serif);
	transition: all 0.2s;
}
.z-store-search input:focus {
	outline: none;
	border-color: var(--z-primary);
	background: #ffffff;
	box-shadow: 0 0 0 3px var(--z-primary-light);
}
.z-store-search-icon {
	position: absolute;
	left: 28px;
	top: 50%;
	transform: translateY(-50%);
	color: #9ca3af;
}

/* Category Tabs */
.z-store-tabs {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 12px 16px;
	background: #ffffff;
	border-bottom: 1px solid var(--z-border, rgba(0,0,0,0.08));
	-webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
	.z-store-tabs {
		padding: 12px 24px;
		justify-content: center;
	}
}
.z-store-tabs::-webkit-scrollbar { display: none; }
.z-store-tab {
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.85rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	color: var(--z-text-secondary, #5b4137);
	background: var(--z-surface-2, #f8f9fa);
	border: 1px solid transparent;
	transition: all 0.2s;
	font-family: var(--z-font, 'Inter', sans-serif);
}
.z-store-tab:hover {
	border-color: var(--z-primary);
	color: var(--z-primary);
}
.z-store-tab.active {
	background: var(--z-primary);
	color: white;
	border-color: var(--z-primary);
}

/* Section */
.z-store-section {
	padding: 20px 16px;
	background: #f8f9fa;
	margin-bottom: 2px;
}
@media (min-width: 768px) {
	.z-store-section {
		padding: 28px 24px;
	}
}
.z-store-main-wrap {
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.z-store-main-wrap {
		padding: 0 24px;
	}
}
.z-store-section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 16px;
}
.z-store-view-all {
	font-size: 0.85rem;
	color: var(--z-primary);
	text-decoration: none;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	transition: opacity 0.2s;
}
.z-store-view-all:hover { opacity: 0.8; }
.z-store-section-header h2 {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--z-text, #111827);
	font-family: var(--z-font, 'Inter', sans-serif);
	letter-spacing: -0.3px;
}
.z-store-section-header p {
	font-size: 0.82rem;
	color: var(--z-text-muted, #6b7280);
	margin-top: 4px;
	font-weight: 500;
}
.z-store-section-header a {
	font-size: 0.85rem;
	color: var(--z-primary);
	text-decoration: none;
	font-weight: 600;
}

/* Product Grid */
.z-store-products {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 480px) {
	.z-store-products {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 768px) {
	.z-store-products {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}
}
@media (min-width: 1024px) {
	.z-store-products {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
}

/* Product Card */
.z-store-product {
	display: flex;
	gap: 12px;
	padding: 12px;
	border: 1px solid var(--z-border, rgba(0,0,0,0.06));
	border-radius: 14px;
	cursor: pointer;
	transition: all 0.2s;
	background: #ffffff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.z-store-product:hover {
	border-color: var(--z-primary);
	box-shadow: 0 6px 20px rgba(0,0,0,0.10);
	transform: translateY(-2px);
}
.z-store-product-img {
	width: 100px;
	height: 100px;
	border-radius: 12px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f8f9fa;
}
.z-store-product-info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.z-store-product-name {
	font-weight: 700;
	color: var(--z-text, #111827);
	margin-bottom: 4px;
	font-size: 0.95rem;
	font-family: var(--z-font, 'Inter', sans-serif);
	line-height: 1.3;
}
.z-store-product-desc {
	font-size: 0.8rem;
	color: var(--z-text-muted, #6b7280);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.4;
}
.z-store-product-price {
	font-weight: 800;
	color: var(--z-primary);
	font-size: 1.05rem;
	margin-top: 8px;
	font-family: var(--z-font, 'Inter', sans-serif);
}
.z-store-product-old-price {
	text-decoration: line-through;
	color: #9ca3af;
	font-size: 0.8rem;
	margin-right: 6px;
	font-weight: 500;
}
.z-store-product-badge {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	margin-bottom: 4px;
}
.z-store-product-badge.promo {
	background: #fef2f2;
	color: #dc2626;
}
.z-store-product-badge.best {
	background: #fef3c7;
	color: #d97706;
}
.z-store-product-badge.new {
	background: #f0fdf4;
	color: #16a34a;
}
.z-store-product-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.z-store-add-btn {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: var(--z-primary);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	flex-shrink: 0;
}
.z-store-add-btn:hover {
	transform: scale(1.1);
	box-shadow: 0 2px 8px rgba(255,102,0,0.3);
}

/* Product Modal */
.z-product-modal {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	z-index: 1000;
	background: rgba(0,0,0,0.5);
	align-items: center;
	justify-content: center;
	padding: 16px;
}
.z-product-modal.active { display: flex; }
.z-product-modal-content {
	background: white;
	border-radius: 20px;
	max-width: 500px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	position: relative;
}
.z-product-modal-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(0,0,0,0.5);
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
}
.z-product-modal-img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	border-radius: 20px 20px 0 0;
}
.z-product-modal-body { padding: 20px; }
.z-product-modal-name { font-size: 1.3rem; font-weight: 700; color: #111827; margin-bottom: 8px; }
.z-product-modal-desc { color: #6b7280; line-height: 1.6; margin-bottom: 16px; }
.z-product-modal-price { font-size: 1.4rem; font-weight: 700; color: var(--z-primary); margin-bottom: 20px; }

/* Cart Float */
.z-store-cart-float {
	position: fixed;
	bottom: 80px;
	left: 16px;
	right: 16px;
	max-width: 400px;
	margin: 0 auto;
	background: var(--z-primary);
	color: white;
	padding: 16px 20px;
	border-radius: 16px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 8px 28px rgba(0,0,0,0.25);
	z-index: 90;
	cursor: pointer;
	transition: all 0.2s;
	font-family: var(--z-font, 'Inter', sans-serif);
}
@media (min-width: 768px) {
	.z-store-cart-float {
		max-width: 400px;
		left: 50%;
		transform: translateX(-50%);
	}
	.z-store-cart-float:hover {
		transform: translateX(-50%) translateY(-2px);
		box-shadow: 0 12px 36px rgba(0,0,0,0.30);
	}
}
@media (min-width: 900px) {
	.z-store-cart-float { display: none !important; }
}
.z-store-cart-float-info {
	display: flex;
	align-items: center;
	gap: 12px;
}
.z-store-cart-float-count {
	background: rgba(255,255,255,0.2);
	padding: 4px 10px;
	border-radius: 8px;
	font-weight: 700;
}
.z-store-feedback-stack {
	position: fixed;
	left: 50%;
	bottom: 152px;
	transform: translateX(-50%);
	width: min(440px, calc(100% - 32px));
	z-index: 9999;
	display: grid;
	gap: 10px;
	pointer-events: none;
}
.z-store-feedback {
	pointer-events: auto;
	display: grid;
	grid-template-columns: 32px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 14px;
	border-radius: 14px;
	background: #111827;
	color: #fff;
	box-shadow: 0 16px 40px rgba(15, 23, 42, .24);
	font-family: var(--z-font, 'Inter', sans-serif);
	animation: zFeedbackIn .18s ease-out;
}
.z-store-feedback.success { background: #14532d; }
.z-store-feedback.error { background: #991b1b; }
.z-store-feedback.warning { background: #7c2d12; }
.z-store-feedback__icon {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: rgba(255,255,255,.16);
	display: flex;
	align-items: center;
	justify-content: center;
}
.z-store-feedback__text strong {
	display: block;
	font-size: .92rem;
	line-height: 1.25;
}
.z-store-feedback__text span {
	display: block;
	font-size: .78rem;
	opacity: .86;
	margin-top: 2px;
}
.z-store-feedback__action {
	border: 0;
	border-radius: 10px;
	background: #fff;
	color: #111827;
	font-weight: 800;
	font-size: .78rem;
	padding: 9px 12px;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	font-family: inherit;
}
@keyframes zFeedbackIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Bottom Nav - Mobile Only */
.z-store-bottomnav {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #ffffff;
	border-top: 1px solid var(--z-border, rgba(0,0,0,0.08));
	display: flex;
	justify-content: space-around;
	padding: 8px 0;
	z-index: 100;
	box-shadow: 0 -2px 12px rgba(0,0,0,0.06);
}
@media (min-width: 900px) {
	.z-store-bottomnav { display: none !important; }
}
.z-store-bottomnav a,
.z-store-bottomnav button,
.z-store-bottomnav .z-bottomnav-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-decoration: none;
	color: #6b7280;
	font-size: 0.7rem;
	padding: 4px 12px;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	position: relative;
	transition: color 0.15s ease;
}
.z-store-bottomnav a:hover,
.z-store-bottomnav .z-bottomnav-btn:hover {
	color: var(--z-primary, #ff6600);
}
.z-store-bottomnav a.active,
.z-store-bottomnav .z-bottomnav-btn.active {
	color: var(--z-primary, #ff6600);
	font-weight: 700;
}
.z-bottomnav-badge {
	position: absolute;
	top: 0;
	right: 6px;
	background: var(--z-primary, #ff6600);
	color: #fff;
	font-size: 0.6rem;
	font-weight: 800;
	min-width: 16px;
	height: 16px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* Store Info Modal */
.z-store-info-modal { display: none; position: fixed; inset: 0; z-index: 1100; background: rgba(0,0,0,0.55); align-items: center; justify-content: center; padding: 16px; }
.z-store-info-modal.active { display: flex; }
.z-store-info-content { background: #fff; border-radius: 16px; max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 0; }
.z-store-info-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #eee; }
.z-store-info-header h2 { font-size: 1.2rem; font-weight: 700; margin: 0; }
.z-store-info-close { width: 36px; height: 36px; border-radius: 50%; border: none; background: #f3f4f6; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #6b7280; transition: background 0.2s; }
.z-store-info-close:hover { background: #e5e7eb; }
.z-store-info-body { padding: 24px; }
.z-store-info-section { margin-bottom: 24px; }
.z-store-info-section:last-child { margin-bottom: 0; }
.z-store-info-section h3 { font-size: 0.85rem; font-weight: 700; color: #6b7280; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 12px; }
.z-store-info-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; color: #374151; }
.z-store-info-row .day { font-weight: 600; }
.z-store-info-row .hours { color: #6b7280; }
.z-store-info-row .hours.closed { color: #dc2626; }
.z-store-info-contact { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f9fafb; border-radius: 12px; text-decoration: none; color: #374151; transition: background 0.2s; margin-bottom: 8px; }
.z-store-info-contact:hover { background: #f3f4f6; }
.z-store-info-contact i { font-size: 1.2rem; width: 20px; text-align: center; }

/* Desktop Header Bar */
.z-desktop-header {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 68px;
	background: #ffffff;
	border-bottom: 1px solid #e5e7eb;
	z-index: 200;
	align-items: center;
	padding: 0 40px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
@media (min-width: 900px) {
	.z-desktop-header { display: flex; }
	body { padding-top: 68px; }
}
.z-desktop-header-inner {
	width: min(1634px, 100%);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 20px;
}
.z-desktop-header-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: #111827;
	font-weight: 700;
	font-size: 1rem;
}
.z-desktop-header-logo img {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	object-fit: cover;
}
.z-desktop-header-nav {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-left: 20px;
}
.z-desktop-header-nav a {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 0.88rem;
	font-weight: 500;
	color: #6b7280;
	text-decoration: none;
	transition: all 0.2s;
}
.z-desktop-header-nav a:hover { color: var(--z-primary); background: #f9fafb; }
.z-desktop-header-nav a.active { color: var(--z-primary); font-weight: 600; }
.z-desktop-header-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}
.z-desktop-header-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border-radius: 8px;
	font-size: 0.85rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	background: transparent;
	color: #374151;
	cursor: pointer;
	transition: all 0.2s;
	font-family: var(--z-font, 'Inter', sans-serif);
}
.z-desktop-header-btn:hover { background: #f3f4f6; }
.z-desktop-header-btn.whatsapp { color: #25d366; }
.z-desktop-header-btn.whatsapp:hover { background: #f0fdf4; }
.z-desktop-header-btn.cart { color: var(--z-primary); position: relative; }
.z-desktop-header-btn .badge { position: absolute; top: -2px; right: -2px; background: var(--z-primary); color: #fff; font-size: 0.6rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 999px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* Footer */
/* Footer — Compacto 2 Linhas (Apenas Desktop) */
.z-store-footer {
	background: #111827;
	color: #9ca3af;
	padding: 22px 32px;
	margin-top: auto !important;
	margin-bottom: 0 !important;
	border-top: 1px solid #1f2937;
	font-family: var(--z-font, 'Inter', sans-serif);
	width: 100%;
	box-sizing: border-box;
}
@media (max-width: 899px) {
	.z-store-footer {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
		border: none !important;
		overflow: hidden !important;
		pointer-events: none !important;
	}
}
@media (min-width: 900px) {
	.z-store-footer {
		display: block !important;
		margin-top: auto !important;
		margin-bottom: 0 !important;
		padding: 22px 32px;
	}
}
.z-store-footer-inner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	max-width: 1200px;
	margin: 0 auto;
}
.z-store-footer-line1 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 0.88rem;
	color: #9ca3af;
}
.z-store-footer-store {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.z-store-footer-store .store-name {
	color: #ffffff;
	font-weight: 700;
	font-size: 0.95rem;
}
.z-store-footer-store .store-tagline {
	color: #6b7280;
	font-size: 0.82rem;
}
.z-store-footer-address {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: #9ca3af;
	font-size: 0.82rem;
}
.z-store-footer-line2 {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 12px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 0.78rem;
	color: #6b7280;
}
.z-store-footer-copy {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}
.z-store-footer-copy .powered-by {
	color: #9ca3af;
}
.z-store-footer-copy strong {
	color: #e5e7eb;
}
.z-store-footer-links {
	display: flex;
	align-items: center;
	gap: 14px;
}
.z-store-footer-faq-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #9ca3af;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 6px;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 4px;
	transition: all 0.2s;
}
.z-store-footer-faq-btn:hover {
	border-color: rgba(255, 255, 255, 0.35);
	color: #ffffff;
}
.z-store-footer-insta {
	color: #9ca3af;
	font-size: 1.15rem;
	display: inline-flex;
	align-items: center;
	transition: color 0.2s;
	text-decoration: none;
}
.z-store-footer-insta:hover {
	color: #e1306c;
}

/* Bottom Sheet Overlay */
.z-mob-sheet-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 200;
	opacity: 0;
	transition: opacity 0.3s;
}
.z-mob-sheet-overlay.active {
	display: block;
	opacity: 1;
}
.z-mob-sheet {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	max-height: 90vh;
	background: white;
	border-radius: 20px 20px 0 0;
	z-index: 201;
	overflow-y: auto;
	transform: translateY(100%);
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-mob-sheet.active {
	display: block;
	transform: translateY(0);
}
.z-mob-sheet-handle {
	display: flex;
	justify-content: center;
	padding: 12px 0 4px;
	position: sticky;
	top: 0;
	background: white;
	z-index: 1;
}
.z-mob-sheet-handle span {
	width: 40px;
	height: 4px;
	border-radius: 2px;
	background: #d1d5db;
}
.z-mob-sheet-body {
	padding: 0 20px 24px;
}

/* Product Sheet Content */
.z-mob-product-img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 16px;
	margin-bottom: 16px;
}
.z-mob-product-title {
	font-size: 1.3rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 6px;
}
.z-mob-product-ingredients {
	font-size: 0.85rem;
	color: #6b7280;
	line-height: 1.5;
	margin-bottom: 12px;
}
.z-mob-product-price-row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
}
.z-mob-product-price {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--z-primary);
}
.z-mob-product-old-price {
	font-size: 0.9rem;
	color: #9ca3af;
	text-decoration: line-through;
}

/* Options Group */
.z-mob-options-group {
	margin-bottom: 16px;
}
.z-mob-options-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}
.z-mob-options-title {
	font-size: 0.9rem;
	font-weight: 700;
	color: #111827;
}
.z-mob-options-required {
	font-size: 0.75rem;
	color: #dc2626;
	font-weight: 600;
}
.z-mob-option-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	margin-bottom: 8px;
	cursor: pointer;
	transition: all 0.2s;
	background: white;
}
.z-mob-option-row:hover,
.z-mob-option-row.selected {
	border-color: var(--z-primary);
	background: #fff8f5;
}
.z-mob-option-row .label {
	font-weight: 600;
	font-size: 0.9rem;
	color: #111827;
}
.z-mob-option-row .price {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--z-primary);
}
.z-mob-option-row input { display: none; }

/* Qty Stepper */
.z-mob-qty-stepper {
	display: flex;
	align-items: center;
	gap: 0;
	border: 1.5px solid #e5e7eb;
	border-radius: 12px;
	overflow: hidden;
}
.z-mob-qty-btn {
	width: 44px;
	height: 44px;
	border: none;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #374151;
	transition: background 0.2s;
}
.z-mob-qty-btn:hover { background: #e5e7eb; }
.z-mob-qty-value {
	min-width: 40px;
	text-align: center;
	font-weight: 700;
	font-size: 1rem;
	color: #111827;
}
.z-mob-add-cart-btn {
	flex: 1;
	height: 48px;
	background: var(--z-primary);
	color: white;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	cursor: pointer;
	transition: all 0.2s;
}
.z-mob-add-cart-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.z-mob-add-cart-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Cart Drawer */
.z-cart-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	z-index: 1200;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}
.z-cart-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 99998 !important;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.z-cart-overlay.active {
	display: block;
	opacity: 1;
	visibility: visible;
}
.z-cart-drawer {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 420px;
	max-width: 100vw;
	background: #fff;
	z-index: 99999 !important;
	flex-direction: column;
	box-shadow: -4px 0 20px rgba(0,0,0,0.08);
}
.z-cart-drawer.active {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translateX(0);
}
body.cart-open .z-store-bottomnav,
body.cart-open .z-cat-bottomnav,
body.cart-open .pd-product-bottomnav,
body.cart-open .z-store-cart-float {
	display: none !important;
	visibility: hidden !important;
	opacity: 0 !important;
	transform: translateY(100%) !important;
	pointer-events: none !important;
}
.z-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid #e5e7eb;
	flex-shrink: 0;
}
.z-cart-drawer-header h3 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #111827;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}
.z-cart-drawer-header .count {
	background: var(--z-primary);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
}
.z-cart-drawer-close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: none;
	background: #f3f4f6;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #6b7280;
	transition: background 0.2s;
}
.z-cart-drawer-close:hover { background: #e5e7eb; }
.z-cart-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}
.z-cart-drawer-empty {
	text-align: center;
	padding: 60px 20px;
	color: #9ca3af;
}
.z-cart-drawer-empty .icon {
	font-size: 3rem;
	margin-bottom: 12px;
	color: #d1d5db;
}
.z-cart-drawer-item {
	display: flex;
	gap: 12px;
	padding: 16px 0;
	border-bottom: 1px solid #f3f4f6;
}
.z-cart-drawer-item-img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
	object-fit: cover;
	flex-shrink: 0;
	background: #f8f9fa;
}
.z-cart-drawer-item-info {
	flex: 1;
	min-width: 0;
}
.z-cart-drawer-item-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: #111827;
	margin-bottom: 2px;
}
.z-cart-drawer-item-detail {
	font-size: 0.78rem;
	color: #6b7280;
	margin-bottom: 6px;
}
.z-cart-drawer-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.z-cart-drawer-item-price {
	font-weight: 700;
	color: var(--z-primary);
	font-size: 0.9rem;
}
.z-cart-drawer-qty {
	display: flex;
	align-items: center;
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}
.z-cart-drawer-qty button {
	width: 28px;
	height: 28px;
	border: none;
	background: #f9fafb;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #374151;
	font-size: 0.8rem;
	transition: background 0.2s;
}
.z-cart-drawer-qty button:hover { background: #e5e7eb; }
.z-cart-drawer-qty span {
	min-width: 28px;
	text-align: center;
	font-weight: 600;
	font-size: 0.82rem;
}
.z-cart-drawer-remove {
	background: none;
	border: none;
	color: #9ca3af;
	cursor: pointer;
	padding: 4px;
	font-size: 0.8rem;
	transition: color 0.2s;
}
.z-cart-drawer-remove:hover { color: #dc2626; }
.z-cart-drawer-footer {
	padding: 16px 24px 20px;
	border-top: 1px solid #e5e7eb;
	flex-shrink: 0;
	background: #fff;
}
.z-cart-drawer-subtotal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 4px;
	font-size: 0.85rem;
	color: #6b7280;
}
.z-cart-drawer-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.05rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 16px;
	padding-top: 8px;
	border-top: 1px solid #f3f4f6;
}
.z-cart-drawer-total .value {
	color: var(--z-primary);
	font-weight: 800;
}
.z-cart-drawer-checkout {
	display: block;
	width: 100%;
	padding: 14px;
	background: var(--z-primary);
	color: #fff;
	border: none;
	border-radius: 12px;
	font-weight: 700;
	font-size: 0.95rem;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
	box-shadow: 0 2px 10px rgba(167,58,0,0.25);
}
.z-cart-drawer-checkout:hover {
	opacity: 0.92;
	transform: translateY(-1px);
	box-shadow: 0 4px 16px rgba(167,58,0,0.35);
}
.z-cart-drawer-continue {
	display: block;
	text-align: center;
	margin-top: 12px;
	color: var(--z-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.85rem;
}
/* Mobile: Cart as bottom sheet (slides up) */
@media (max-width: 899px) {
	.z-cart-drawer {
		display: none !important;
		visibility: hidden !important;
		opacity: 0 !important;
		pointer-events: none !important;
	}
	.z-cart-drawer.active {
		display: flex !important;
		visibility: visible !important;
		opacity: 1 !important;
		pointer-events: auto !important;
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		max-height: 88vh;
		border-radius: 24px 24px 0 0;
		box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
		z-index: 99999 !important;
		animation: z-cart-slide-up 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
	}
}
	.z-cart-drawer-header {
		padding: 8px 24px 16px;
	}
	.z-cart-drawer-body {
		padding: 0 20px 16px;
	}
	.z-cart-drawer-footer {
		padding: 12px 20px 20px;
	}
	.z-cart-drawer-item-img {
		width: 48px;
		height: 48px;
	}
	.z-cart-drawer-handle {
		display: flex;
		justify-content: center;
		padding: 12px 0 4px;
		position: sticky;
		top: 0;
		background: #fff;
		z-index: 1;
	}
	.z-cart-drawer-handle span {
		width: 40px;
		height: 4px;
		border-radius: 2px;
		background: #d1d5db;
	}
}
@media (min-width: 900px) {
	.z-cart-drawer-handle { display: none; }
}

/* Toast */
.z-mob-toast {
	position: fixed;
	bottom: 100px;
	left: 50%;
	transform: translateX(-50%);
	background: #111827;
	color: white;
	padding: 12px 24px;
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 600;
	z-index: 999;
	opacity: 1;
	transition: opacity 0.3s;
	box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.z-mob-toast.hide { opacity: 0; }

/* Skeleton */
.z-mob-skeleton {
	background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
	background-size: 200% 100%;
	animation: skeleton-shimmer 1.5s infinite;
	border-radius: 8px;
}
@keyframes skeleton-shimmer {
	0% { background-position: 200% 0; }
	100% { background-position: -200% 0; }
}
@media (min-width: 900px) {
	body { background: #f7f8fa !important; color: #2f333b; min-height: 100vh; display: flex; flex-direction: column; }
	.z-store-hero {
		width: min(1634px, calc(100% - 136px));
		min-height: 312px;
		margin: 42px auto 0;
		padding: 0;
		border-radius: 4px;
		overflow: visible;
		align-items: flex-end;
		background: #f3f4f6;
	}
	.z-store-hero-bg { overflow: hidden; border-radius: 4px; }
	.z-store-hero-bg img { object-fit: cover; }
	.z-store-hero-overlay { display: none; }
	.z-store-hero-content {
		color: #2f333b;
		transform: translateY(122px);
		display: grid;
		grid-template-columns: 96px 1fr auto;
		align-items: center;
		gap: 24px;
		padding: 0;
	}
	.z-store-hero-logo {
		width: 96px;
		height: 96px;
		border: 0;
		border-radius: 999px;
		box-shadow: 0 2px 8px rgba(0,0,0,.10);
		background: #fff;
		margin: 0;
	}
	.z-store-hero h1 {
		font-size: 44px;
		font-weight: 500;
		letter-spacing: -1px;
		margin: 0;
	}
	.z-store-hero-meta {
		grid-column: 2 / 4;
		color: #6b7280;
		opacity: 1;
		font-size: 15px;
		margin-top: -22px;
	}
	.z-store-hero-actions {
		grid-column: 3;
		grid-row: 1;
		margin: 0;
		align-items: center;
	}
	.z-store-hero-btn {
		background: transparent !important;
		color: var(--z-primary) !important;
		border: 0 !important;
		box-shadow: none;
		padding: 0 10px;
		font-size: 18px;
		border-radius: 0;
	}
	.z-store-search {
		width: min(1634px, calc(100% - 136px));
		margin: 166px auto 0;
		padding: 0;
		border: 0;
		position: relative !important;
		z-index: 1;
		background: #fff;
	}
	.z-store-search input {
		height: 78px;
		border-radius: 4px;
		background: #fff;
		font-size: 20px;
		padding-left: 70px;
	}
	.z-store-search-icon {
		left: 28px;
		color: var(--z-primary);
		font-size: 22px;
	}
	.z-store-tabs {
		position: sticky;
		top: 0;
		z-index: 80;
		width: min(1634px, calc(100% - 136px));
		margin: 24px auto 0;
		padding: 14px 0;
		justify-content: flex-start;
		border-bottom: 1px solid #eeeeee;
	}
	.z-store-tab {
		background: transparent;
		border: 0;
		border-radius: 0;
		padding: 10px 18px 12px 0;
		color: #6b7280;
		font-size: 16px;
	}
	.z-store-tab.active,
	.z-store-tab:hover {
		background: transparent;
		color: var(--z-primary);
		border-bottom: 2px solid var(--z-primary);
	}
	.z-store-main-wrap {
		max-width: none;
		width: min(1634px, calc(100% - 136px));
		padding: 0;
		margin: 0 auto;
	}
	.z-store-section {
		background: #fff;
		padding: 44px 0 0;
		margin: 0;
	}
	.z-store-section-header {
		margin-bottom: 24px;
	}
	.z-store-section-header h2 {
		font-size: 29px;
		font-weight: 700;
	}
	.z-store-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 36px;
	}
	.z-store-product {
		min-height: 258px;
		padding: 20px;
		border: 1px solid #e5e7eb;
		border-radius: 4px;
		box-shadow: 0 1px 4px rgba(0,0,0,.04);
		flex-direction: row-reverse;
		align-items: center;
	}
	.z-store-product:hover {
		border-color: #d1d5db;
		box-shadow: 0 8px 24px rgba(0,0,0,.08);
		transform: none;
	}
	.z-store-product-img {
		width: 214px;
		height: 160px;
		border-radius: 0;
	}
	.z-store-product-name {
		font-size: 24px;
		font-weight: 500;
		line-height: 1.25;
		margin-bottom: 18px;
	}
	.z-store-product-desc {
		font-size: 16px;
		line-height: 1.55;
		-webkit-line-clamp: 2;
	}
	.z-store-product-price {
		color: #2fa86f;
		font-size: 20px;
		font-weight: 500;
	}
	/* Mobile elements hidden on desktop */
	.z-mob-header { display: none !important; }
	.z-mob-pt-header { padding-top: 0 !important; }
}

/* Floating WhatsApp CTA */
.z-floating-whatsapp {
	position: fixed;
	bottom: 24px;
	right: 16px;
	z-index: 9999;
}
@media (min-width: 768px) {
	.z-floating-whatsapp {
		bottom: 32px;
		right: 32px;
	}
}
.z-floating-whatsapp-bubble {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #25d366;
	color: #fff;
	padding: 14px 22px;
	border-radius: 28px;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--z-font, 'Inter', sans-serif);
	box-shadow: 0 6px 20px rgba(0,0,0,0.20);
	text-decoration: none;
	transition: all 0.25s ease;
	animation: zFloatWhatsapp 2s ease-in-out infinite;
	cursor: pointer;
}
.z-floating-whatsapp-bubble:hover {
	transform: scale(1.06);
	box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}
.z-floating-whatsapp-bubble img {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}
.z-floating-whatsapp-text {
	white-space: nowrap;
}
.z-floating-whatsapp-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	width: 14px;
	height: 14px;
	background: #ff3b30;
	border-radius: 50%;
	border: 2px solid #25d366;
	animation: zPulse 2s ease-in-out infinite;
}
@keyframes zFloatWhatsapp {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
@keyframes zPulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.15); }
}

/* Social Proof Section */
.z-social-proof {
	padding: 40px 16px;
	background: var(--z-surface-2, #f8f9fa);
	text-align: center;
}
@media (min-width: 768px) {
	.z-social-proof {
		padding: 56px 24px;
	}
}
.z-social-proof-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--z-primary);
	font-family: var(--z-font, 'Inter', sans-serif);
	line-height: 1.1;
}
@media (min-width: 768px) {
	.z-social-proof-number {
		font-size: 3.5rem;
	}
}
.z-social-proof-label {
	font-size: 0.95rem;
	color: var(--z-text-secondary, #6b7280);
	margin-top: 4px;
	font-weight: 500;
}
.z-social-proof-logos {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
	opacity: 0.5;
	flex-wrap: wrap;
}
.z-social-proof-logos img {
	height: 32px;
	object-fit: contain;
	filter: grayscale(100%);
}

/* UGC / Testimonials Section */
.z-ugc-section {
	padding: 40px 16px;
	background: #ffffff;
}
@media (min-width: 768px) {
	.z-ugc-section {
		padding: 56px 24px;
	}
}
.z-ugc-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 640px) {
	.z-ugc-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.z-ugc-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.z-ugc-card {
	background: var(--z-surface-2, #f8f9fa);
	border-radius: 16px;
	padding: 24px;
	border: 1px solid var(--z-border, rgba(0,0,0,0.06));
	transition: all 0.2s;
}
.z-ugc-card:hover {
	border-color: var(--z-primary);
	box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.z-ugc-stars {
	color: #fbbf24;
	font-size: 0.9rem;
	margin-bottom: 8px;
}
.z-ugc-text {
	font-size: 0.9rem;
	color: var(--z-text, #111827);
	line-height: 1.6;
	margin-bottom: 12px;
	font-style: italic;
}
.z-ugc-author {
	display: flex;
	align-items: center;
	gap: 10px;
}
.z-ugc-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--z-primary);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.8rem;
	flex-shrink: 0;
}
.z-ugc-name {
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--z-text, #111827);
}
.z-ugc-title {
	font-size: 0.75rem;
	color: var(--z-text-muted, #6b7280);
}

/* FAQ Section */
.z-faq-section {
	padding: 40px 16px;
	background: var(--z-surface-2, #f8f9fa);
}
@media (min-width: 768px) {
	.z-faq-section {
		padding: 56px 24px;
	}
}
.z-faq-item {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 8px;
	background: #ffffff;
	border: 1px solid var(--z-border, rgba(0,0,0,0.06));
}
.z-faq-question {
	width: 100%;
	padding: 16px 20px;
	background: none;
	border: none;
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--z-text, #111827);
	font-family: var(--z-font, 'Inter', sans-serif);
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
}
.z-faq-question:hover {
	color: var(--z-primary);
}
.z-faq-icon {
	flex-shrink: 0;
	transition: transform 0.2s;
}
.z-faq-item.open .z-faq-icon {
	transform: rotate(180deg);
}
.z-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 20px;
	font-size: 0.88rem;
	color: var(--z-text-secondary, #6b7280);
	line-height: 1.6;
}
.z-faq-item.open .z-faq-answer {
	max-height: 300px;
	padding: 0 20px 16px;
}

/* ============================================================
 *  iFOOD-STYLE CATEGORY NAVIGATION & GROUPED PRODUCTS
 *  Restructured storefront layout (2026-08-24)
 * ============================================================ */

/* ── SMOOTH SCROLL ──────────────────────────────────────────── */
html {
	scroll-behavior: smooth;
}

/* ── STICKY CATEGORY NAVBAR ─────────────────────────────────── */
.z-store-category-nav {
	position: sticky;
	top: 0;
	z-index: 90;
	background: #ffffff;
	border-bottom: 1px solid var(--z-border, rgba(0, 0, 0, 0.08));
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}
.z-store-category-nav-inner {
	display: flex;
	align-items: center;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 16px;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.z-store-category-nav-inner::-webkit-scrollbar { display: none; }
.z-store-category-nav-item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.84rem;
	font-weight: 600;
	white-space: nowrap;
	text-decoration: none;
	color: var(--z-text-secondary, #5b4137);
	background: var(--z-surface-2, #f3f4f6);
	border: 1px solid transparent;
	transition: all 0.2s ease;
	font-family: var(--z-font, 'Inter', sans-serif);
	flex-shrink: 0;
}
.z-store-category-nav-item:hover {
	border-color: var(--z-primary);
	color: var(--z-primary);
}
.z-store-category-nav-item.active {
	background: var(--z-primary);
	color: #ffffff;
	border-color: var(--z-primary);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.z-store-category-nav-item img {
	width: 18px;
	height: 18px;
	object-fit: cover;
	border-radius: 4px;
}
@media (min-width: 768px) {
	.z-store-category-nav-inner {
		padding: 10px 24px;
		justify-content: flex-start;
		gap: 10px;
	}
	.z-store-category-nav-item {
		padding: 10px 20px;
		font-size: 0.88rem;
	}
}

/* ── CATEGORY SECTION (grouped products) ────────────────────── */
.z-store-category-section {
	padding: 24px 16px;
	background: #ffffff;
}
.z-store-category-section + .z-store-category-section {
	border-top: 1px solid var(--z-border, rgba(0, 0, 0, 0.04));
}
@media (min-width: 768px) {
	.z-store-category-section {
		padding: 32px 24px;
	}
}
.z-store-category-title {
	font-size: 1.3rem;
	font-weight: 800;
	color: var(--z-text, #111827);
	font-family: var(--z-font, 'Inter', sans-serif);
	letter-spacing: -0.3px;
	margin: 0 0 4px 0;
	scroll-margin-top: 70px;
}
.z-store-category-count {
	font-size: 0.82rem;
	color: var(--z-text-muted, #6b7280);
	margin: 0 0 16px 0;
}

/* ── PRODUCT GRID (grouped by category) ─────────────────────── */
.z-store-product-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
}
@media (min-width: 768px) {
	.z-store-product-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}
@media (min-width: 1024px) {
	.z-store-product-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

/* ── MOBILE: Horizontal product cards (image right) ─────────── */
@media (max-width: 767px) {
	.z-store-product-grid .z-store-product {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		justify-content: space-between !important;
		padding: 12px 16px !important;
		height: auto !important;
		min-height: 0 !important;
	}
	.z-store-product-grid .z-store-product-img {
		order: 2 !important;
		width: 80px !important;
		height: 80px !important;
		margin: 0 0 0 12px !important;
		border-radius: 12px !important;
	}
	.z-store-product-grid .z-store-product-info {
		order: 1 !important;
		flex: 1 !important;
		min-width: 0 !important;
	}
}

/* ── REVIEWS SECTION ────────────────────────────────────────── */
/* Reviews Section (Carrossel de Avaliações) */
.z-store-reviews-section {
	padding: 24px 20px;
	background: #ffffff;
	border: 1px solid var(--z-border, #e5e7eb);
	border-radius: 20px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
	margin-top: 28px;
	margin-bottom: 24px;
}
@media (min-width: 768px) {
	.z-store-reviews-section {
		padding: 32px 28px;
		margin-top: 36px;
		margin-bottom: 32px;
	}
}
.z-store-reviews-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 20px;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}
.z-store-reviews-header h2 {
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--z-text, #111827);
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 4px 0;
}
.z-store-reviews-header p {
	font-size: 0.85rem;
	color: var(--z-text-muted, #6b7280);
	margin: 0;
}
.z-store-reviews-nav {
	display: flex;
	gap: 8px;
}
.z-reviews-nav-btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid var(--z-border, #e5e7eb);
	background: #ffffff;
	color: var(--z-text, #374151);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
}
.z-reviews-nav-btn:hover {
	border-color: var(--z-primary, #ff6600);
	color: var(--z-primary, #ff6600);
	background: #fff8f3;
}
.z-store-reviews-track-shell {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.z-store-reviews-grid {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 4px 2px 14px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.z-store-reviews-grid::-webkit-scrollbar {
	height: 6px;
}
.z-store-reviews-grid::-webkit-scrollbar-thumb {
	background: #e5e7eb;
	border-radius: 6px;
}
.z-store-reviews-grid .z-ugc-card {
	flex: 0 0 290px;
	max-width: 340px;
	scroll-snap-align: start;
	background: #ffffff;
	border: 1px solid var(--z-border, #e5e7eb);
	border-radius: 16px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 767px) {
	.z-store-reviews-grid .z-ugc-card {
		flex: 0 0 260px;
	}
}
.z-store-reviews-grid .z-ugc-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}
.z-ugc-card-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.z-ugc-stars {
	display: flex;
	gap: 2px;
}
.z-ugc-date {
	font-size: 0.75rem;
	color: #9ca3af;
}
.z-ugc-text {
	font-size: 0.88rem;
	color: #374151;
	line-height: 1.45;
	margin: 0;
	flex: 1;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.z-ugc-author {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: auto;
	padding-top: 8px;
	border-top: 1px solid #f3f4f6;
}
.z-ugc-avatar {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: color-mix(in srgb, var(--color-primary, #ff6600), #fff 80%);
	color: var(--color-primary, #ff6600);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.85rem;
	flex-shrink: 0;
}
.z-ugc-author-info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.z-ugc-name {
	font-size: 0.82rem;
	font-weight: 700;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.z-ugc-verified {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.72rem;
	color: #16a34a;
	font-weight: 600;
}
.z-ugc-empty {
	display: flex;
	align-items: center;
	gap: 14px;
	background: #f9fafb;
	border: 1px dashed #d1d5db;
	border-radius: 14px;
	padding: 16px 20px;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}
.z-ugc-empty strong {
	display: block;
	font-size: 0.9rem;
	color: #374151;
	margin-bottom: 2px;
}
.z-ugc-empty p {
	margin: 0;
	font-size: 0.82rem;
	color: #6b7280;
}

/* ── FAQ MODAL (Desktop footer link) ─────────────────────────── */
.z-faq-modal-overlay {
	display: none;
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9999;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.z-faq-modal-overlay.active {
	display: flex;
}
.z-faq-modal {
	background: #ffffff;
	border-radius: 20px;
	width: min(560px, calc(100vw - 32px));
	max-height: 80vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.z-faq-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px 16px;
	border-bottom: 1px solid var(--z-border, rgba(0, 0, 0, 0.06));
}
.z-faq-modal-header h2 {
	font-size: 1.15rem;
	font-weight: 800;
	color: var(--z-text, #111827);
	font-family: var(--z-font, 'Inter', sans-serif);
	margin: 0;
}
.z-faq-modal-close {
	background: none;
	border: none;
	font-size: 1.2rem;
	color: var(--z-text-muted, #6b7280);
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 8px;
	transition: background 0.2s;
}
.z-faq-modal-close:hover {
	background: var(--z-surface-2, #f3f4f6);
}
.z-faq-modal-body {
	padding: 16px 24px 24px;
	overflow-y: auto;
	flex: 1;
}

/* ── FAQ FOOTER LINK (Desktop only) ──────────────────────────── */
.z-store-footer-faq-link {
	display: none;
}
@media (min-width: 768px) {
	.z-store-footer-faq-link {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		color: #9ca3af;
		text-decoration: none;
		font-size: 0.8rem;
		transition: color 0.2s;
		cursor: pointer;
		background: none;
		border: none;
		font-family: var(--z-font, 'Inter', sans-serif);
	}
	.z-store-footer-faq-link:hover {
		color: #d1d5db;
	}
}

/* ── MOBILE: Hide footer FAQ completely ─────────────────────── */
@media (max-width: 767px) {
	.z-store-footer-faq-link {
		display: none !important;
	}
}

/* ── DUPLICATED FAQ CLEANUP ──────────────────────────────────── */
/* Remove the old bottom-info section that mixed FAQ and reviews */
.z-bottom-info-section {
	display: none;
}

/* ══════════════════════════════════════════════════════════════
   MARKETPLACE VISUAL DNA INTEGRATION (STOREFRONT UNIFICATION)
   ══════════════════════════════════════════════════════════════ */

/* Banner Cover */
.storefront-banner {
	height: 180px;
	border-radius: 18px;
	overflow: hidden;
	background: linear-gradient(135deg, color-mix(in srgb, var(--color-primary, #ff6600), #fff 84%), #eef2f7);
	position: relative;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	margin-top: 16px;
}
.storefront-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}
.storefront-banner .banner__placeholder {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: color-mix(in srgb, var(--color-primary, #ff6600), #111 32%);
}
.storefront-banner .banner__placeholder span {
	font-size: 54px;
}

/* Store Identity Head */
.storefront-head {
	margin-top: 18px;
	padding: 0 4px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}
.storefront-head .store-id {
	display: flex;
	align-items: center;
	gap: 16px;
	min-width: 0;
}
.storefront-head .store-logo {
	width: 72px;
	height: 72px;
	border-radius: 16px;
	object-fit: cover;
	background: #fff;
	border: 1px solid var(--color-border, #e5e7eb);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	flex-shrink: 0;
}
.storefront-head h1 {
	font-size: 26px;
	line-height: 1.15;
	margin: 0 0 6px;
	letter-spacing: -0.02em;
	font-weight: 800;
	color: #111827;
}
.storefront-head .meta {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	color: #6b7280;
	font-weight: 600;
	font-size: 13px;
	align-items: center;
}
.storefront-head .meta span,
.storefront-head .meta .status {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.storefront-head .status {
	font-weight: 750;
}
.storefront-head .status.is-open {
	color: #059669;
	background: #ecfdf5;
	padding: 2px 8px;
	border-radius: 6px;
}
.storefront-head .status.is-closed {
	color: #dc2626;
	background: #fef2f2;
	padding: 2px 8px;
	border-radius: 6px;
}
.storefront-head .status-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	display: inline-block;
}
.storefront-head .status.is-open .status-dot { background: #059669; box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.2); }
.storefront-head .status.is-closed .status-dot { background: #dc2626; }
.storefront-head .meta-pill {
	background: #f3f4f6;
	padding: 2px 8px;
	border-radius: 6px;
	font-weight: 600;
	color: #374151;
}

.storefront-head .store-side {
	display: flex;
	gap: 10px;
	align-items: center;
}
.storefront-head .info-btn {
	border: 1px solid var(--color-border, #e5e7eb);
	background: #fff;
	border-radius: 10px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 0 16px;
	color: #1f2937;
	font-weight: 700;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.2s ease;
}
.storefront-head .info-btn:hover {
	border-color: var(--color-primary, #ff6600);
	color: var(--color-primary, #ff6600);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Service & Search Row */
.storefront-service-row {
	margin-top: 18px;
	display: grid;
	grid-template-columns: 1fr 160px 200px;
	gap: 12px;
}
.storefront-search,
.storefront-service-box {
	height: 54px;
	border: 1px solid var(--color-border, #e5e7eb);
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 0 16px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}
.storefront-search {
	position: relative;
}
.storefront-search input {
	border: 0;
	outline: 0;
	width: 100%;
	font-size: 15px;
	color: #111827;
	background: transparent;
	font-family: inherit;
}
.storefront-search .clear-btn {
	display: none;
	background: #f3f4f6;
	border: 0;
	border-radius: 6px;
	padding: 4px 10px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #6b7280;
	cursor: pointer;
	white-space: nowrap;
}
.storefront-search.has-value .clear-btn {
	display: inline-flex;
}
.storefront-service-box {
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 2px;
}
.storefront-service-box small {
	color: #6b7280;
	font-weight: 600;
	font-size: 0.75rem;
}
.storefront-service-box strong {
	color: #111827;
	font-size: 14px;
	font-weight: 750;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

/* Category Navigation (Sticky Rail) */
.storefront-category-nav {
	position: sticky;
	top: 68px;
	z-index: 95;
	margin-top: 20px;
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--color-border, #e5e7eb);
}
@media (max-width: 899px) {
	.storefront-category-nav {
		top: 54px;
		margin-top: 14px;
	}
}
.storefront-category-nav .rail {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 10px 0;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.storefront-category-nav .rail::-webkit-scrollbar {
	display: none;
}
.storefront-category-nav .category-link {
	flex: 0 0 auto;
	min-height: 38px;
	padding: 0 16px;
	border-radius: 999px;
	border: 1px solid var(--color-border, #e5e7eb);
	background: #fff;
	color: #4b5563;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 0.85rem;
	white-space: nowrap;
	text-decoration: none;
	transition: all 0.2s ease;
}
.storefront-category-nav .category-link:hover {
	border-color: var(--color-primary, #ff6600);
	color: var(--color-primary, #ff6600);
}
.storefront-category-nav .category-link.is-active {
	color: #fff;
	background: var(--color-primary, #ff6600);
	border-color: var(--color-primary, #ff6600);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.storefront-category-nav .category-link img {
	width: 18px;
	height: 18px;
	object-fit: cover;
	border-radius: 4px;
}

/* Featured Destaques Carousel */
.storefront-featured-shell {
	position: relative;
	margin-top: 14px;
}
.storefront-featured-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(260px, 290px);
	gap: 16px;
	overflow-x: auto;
	padding: 4px 2px 14px;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}
.storefront-featured-card {
	scroll-snap-align: start;
	background: #fff;
	border: 1.5px solid var(--color-border, #e5e7eb);
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
	display: flex;
	flex-direction: column;
	text-align: left;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	cursor: pointer;
	border: 1px solid #e5e7eb;
}
.storefront-featured-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
.storefront-featured-card .media {
	height: 140px;
	background: #f3f4f6;
	position: relative;
	overflow: hidden;
}
.storefront-featured-card .media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.storefront-featured-card .body {
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}
.storefront-featured-card .body h3 {
	font-size: 1rem;
	font-weight: 800;
	color: #111827;
	margin: 0;
	line-height: 1.3;
}
.storefront-featured-card .body p {
	font-size: 0.8rem;
	color: #6b7280;
	margin: 0;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.storefront-featured-card .price-row {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
	padding-top: 8px;
}
.storefront-featured-card .price-row .price {
	font-size: 1.05rem;
	font-weight: 800;
	color: var(--color-primary, #ff6600);
}
.storefront-featured-card .price-row .old-price {
	font-size: 0.82rem;
	color: #9ca3af;
	text-decoration: line-through;
}

/* Responsive Overrides (Mobile) */
@media (max-width: 768px) {
	.storefront-banner {
		height: 140px;
		margin-top: 8px;
		border-radius: 14px;
	}
	.storefront-head {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 12px;
		padding: 0;
	}
	.storefront-head .store-id {
		gap: 12px;
	}
	.storefront-head .store-logo {
		width: 58px;
		height: 58px;
		border-radius: 14px;
	}
	.storefront-head h1 {
		font-size: 1.25rem;
	}
	.storefront-head .store-side {
		width: 100%;
	}
	.storefront-head .info-btn {
		width: 100%;
		height: 38px;
		border-radius: 10px;
	}
	.storefront-service-row {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-top: 12px;
	}
	.storefront-service-box {
		display: none; /* Mobile foca na busca limpa */
	}
	.storefront-featured-track {
		grid-auto-columns: calc(50% - 8px);
		gap: 12px;
		padding: 4px 0 12px;
	}
	.storefront-featured-card .media {
		height: 110px;
	}
	.storefront-featured-card .body {
		padding: 10px 12px;
	}
	.storefront-featured-card .body h3 {
		font-size: 0.9rem;
	}
	.storefront-featured-card .price-row .price {
		font-size: 0.95rem;
	}

	/* Card horizontal estilo iFood/Marketplace no mobile */
	.z-store-product-grid {
		display: flex !important;
		flex-direction: column !important;
		gap: 12px !important;
	}
	.z-store-product {
		display: flex !important;
		flex-direction: row !important;
		justify-content: space-between !important;
		align-items: center !important;
		gap: 12px !important;
		padding: 14px 16px !important;
		background: #ffffff !important;
		border: 1.5px solid #e5e7eb !important;
		border-radius: 18px !important;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
		text-align: left !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
	.z-store-product-info {
		flex: 1 !important;
		min-width: 0 !important;
		display: flex !important;
		flex-direction: column !important;
		gap: 4px !important;
		padding: 0 !important;
	}
	.z-store-product-img {
		width: 88px !important;
		height: 88px !important;
		aspect-ratio: 1 / 1 !important;
		border-radius: 14px !important;
		overflow: hidden !important;
		flex-shrink: 0 !important;
		order: 2 !important;
		background: #f3f4f6 !important;
		object-fit: cover !important;
	}
	.z-store-product-name {
		font-size: 0.95rem !important;
		font-weight: 800 !important;
		color: #111827 !important;
	}
	.z-store-product-desc {
		font-size: 0.78rem !important;
		color: #6b7280 !important;
		margin: 0 !important;
		display: -webkit-box !important;
		-webkit-line-clamp: 2 !important;
		-webkit-box-orient: vertical !important;
		overflow: hidden !important;
		line-height: 1.35 !important;
	}
	.z-store-product-footer {
		margin-top: 6px !important;
		padding-top: 0 !important;
		border-top: none !important;
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
	}
	.z-store-product-price {
		font-size: 1rem !important;
		font-weight: 800 !important;
		color: var(--color-primary, #ff6600) !important;
	}
	.z-store-add-btn {
		width: 32px !important;
		height: 32px !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		background: var(--color-primary, #ff6600) !important;
		color: #fff !important;
		border: none !important;
	}
}

/* Category Section Spacing & Scroll Anchor */
.z-store-category-section {
	scroll-margin-top: 130px;
	margin-top: 36px;
}
@media (max-width: 899px) {
	.z-store-category-section {
		scroll-margin-top: 100px;
		margin-top: 24px;
	}
}
.z-store-section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
}
.z-store-category-title {
	font-size: 1.35rem;
	font-weight: 850;
	color: #111827;
	margin: 0;
	line-height: 1.2;
}
.z-store-category-count {
	font-size: 0.82rem;
	color: #6b7280;
	margin: 3px 0 0;
}
