/* Web v2 — catálogo y componentes (layout.css carga primero) */

/* Grilla ML (inyectarEstilosGrillaUniversal) */
.ml-grid-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 16px; width: 100%; padding: 20px 0; }
@media (max-width: 576px) {
	.ml-grid-container { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px 0; }
	.ml-card-info { padding: 10px !important; }
	.ml-price { font-size: 1.15rem !important; }
	.ml-title { font-size: 0.75rem !important; }
	.showcase-badge-container { top: 5px !important; left: 5px !important; }
	.showcase-badge { font-size: 0.65rem !important; padding: 3px 6px !important; }
	.showcase-actions { top: 5px !important; right: 5px !important; }
	.showcase-action-btn, .btn-fav, .btn-share-card { width: 30px !important; height: 30px !important; }
	.showcase-action-btn img, .btn-fav img { width: 16px !important; height: 16px !important; }
}
.ml-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.1); transition: box-shadow .2s ease; position: relative; display: flex; flex-direction: column; border: 1px solid #f0f0f0; height: 100%; }
.ml-card:hover { box-shadow: 0 8px 16px rgba(0,0,0,.1); }
.ml-card-link-wrap { text-decoration: none; color: inherit; display: flex; flex-direction: column; flex-grow: 1; }
.ml-card-img-link { position: absolute; inset: 0; z-index: 2; text-indent: -9999px; overflow: hidden; }
.ml-card-img-box { width: 100%; aspect-ratio: 1/1; position: relative; background: #fff; overflow: hidden; }
.ml-card-img { width: 100%; height: 100%; object-fit: contain; position: absolute; top: 0; left: 0; transition: opacity .25s ease; }
.ml-card-img.hover { opacity: 0; z-index: 1; }
/* Hover solo en dispositivos con mouse (no touch) */
@media (hover: hover) and (pointer: fine) {
	.ml-card-img-box--dual:hover .ml-card-img.hover,
	.ml-card-img-box--dual:focus-within .ml-card-img.hover { opacity: 1; }
	.ml-card-img-box--dual:hover .ml-card-img.default,
	.ml-card-img-box--dual:focus-within .ml-card-img.default { opacity: 0; }
}
.ml-card-img-box--dual:not(:hover) .ml-card-img.hover,
.ml-card-img-box--dual:not(:focus-within) .ml-card-img.hover { opacity: 0; }
/* Navegación variantes en cards: flechas + dots debajo de la imagen */
.ml-card-variant-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 6px 10px 8px;
	background: #fafafa;
	border-top: 1px solid #f0f0f0;
}
.ml-card-variant-arrow {
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e0e0e0;
	border-radius: 50%;
	background: #fff;
	color: #555;
	font-size: .85rem;
	cursor: pointer;
	flex-shrink: 0;
	transition: background .15s ease, border-color .15s ease;
}
.ml-card-variant-arrow:hover { background: #f5f5f5; border-color: #bbb; }
.ml-card-variant-arrow:disabled { opacity: .35; cursor: default; }
.ml-card-variant-dots {
	display: flex;
	gap: 5px;
	align-items: center;
}
.ml-card-variant-dot {
	width: 8px;
	height: 8px;
	border: 0;
	padding: 0;
	border-radius: 50%;
	background: #d0d0d0;
	cursor: pointer;
	transition: transform .15s ease, background .15s ease;
}
.ml-card-variant-dot.is-active {
	background: var(--sandy-brown);
	transform: scale(1.25);
}
.ml-card-variant-dot:focus-visible {
	outline: 2px solid var(--sandy-brown);
	outline-offset: 2px;
}
.ml-card-variant-count {
	position: absolute;
	right: 8px;
	bottom: 8px;
	z-index: 6;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 4px;
	background: rgba(0, 0, 0, .72);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	line-height: 22px;
	text-align: center;
	pointer-events: none;
}
.ml-card-medidas { font-size: .75rem; color: #888; margin: 4px 0 0; line-height: 1.3; min-height: 1em; }
.ml-card-meta { margin-top: 4px; display: flex; flex-direction: column; gap: 2px; min-height: 1.2em; }
.ml-bajo-pedido {
	font-size: .8rem; color: #c2410c; font-weight: 700; display: inline-block;
	background: #fff7ed; border: 1px solid #fdba74; border-radius: 4px;
	padding: 2px 6px; margin-bottom: 4px;
}
/* Filtro rápido — chips bajo hero */
.web-home-filtros-wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 8px 15px 0;
	background: #ededed;
}
.ml-filtro-rapido { margin: 0; }
.ml-filtro-rapido-scroll {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	padding: 4px 2px 10px;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.ml-filtro-rapido-scroll::-webkit-scrollbar { display: none; }
.ml-filtro-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	flex: 0 0 auto;
	padding: 8px 14px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid #e0e0e0;
	color: #333;
	font-size: .85rem;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.ml-filtro-chip:hover {
	border-color: var(--sandy-brown);
	box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.ml-filtro-chip.is-active {
	border-color: var(--sandy-brown);
	background: #fff8f0;
	color: #c05621;
	font-weight: 600;
}
.ml-filtro-chip-ico { font-size: 1rem; line-height: 1; }
.ml-filtro-chip-img { border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.web-section-sub { font-size: .85rem; color: #666; margin: 4px 0 0; font-weight: 400; }

.web-sr-only {
	position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
	overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Hero oculto sin eventos — no ocupa espacio */
.web-home-hero-wrap[hidden] { display: none !important; }

/* Carruseles home por sección */
.ml-home-section {
	background: #fff; border-radius: 6px; padding: 16px 16px 8px;
	box-shadow: 0 1px 2px rgba(0,0,0,.08); margin-top: 8px;
}
.ml-home-carousel { position: relative; }
.ml-home-carousel-viewport { overflow: hidden; width: 100%; }
.ml-home-carousel-track {
	display: flex; gap: 10px; transition: transform .35s ease;
	will-change: transform;
}
.ml-home-carousel-item {
	flex: 0 0 calc(50% - 5px);
	min-width: 0;
}
@media (min-width: 576px) {
	.ml-home-carousel-item { flex: 0 0 calc(33.333% - 7px); }
}
@media (min-width: 900px) {
	.ml-home-carousel-item { flex: 0 0 calc(25% - 8px); }
}
.ml-home-carousel-nav {
	position: absolute; top: 38%; transform: translateY(-50%); z-index: 3;
	width: 36px; height: 36px; border-radius: 50%; border: none;
	background: rgba(255,255,255,.95); color: #333; font-size: 1.5rem; line-height: 1;
	cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.ml-home-carousel-nav:hover { background: #fff; }
.ml-home-carousel-nav--prev { left: -4px; }
.ml-home-carousel-nav--next { right: -4px; }
.ml-home-carousel-nav[hidden] { display: none !important; }
.ml-home-carousel-dots {
	display: flex; justify-content: center; gap: 6px; margin-top: 10px;
}
.ml-home-carousel-dot {
	width: 7px; height: 7px; border-radius: 50%; border: none; padding: 0;
	background: #ddd; cursor: pointer;
}
.ns-skeleton-grid--carousel {
	display: flex; gap: 10px; overflow: hidden; padding: 8px 0 20px;
}
.ns-skeleton-grid--carousel .ns-skel-card { flex: 0 0 calc(50% - 5px); min-width: 0; }
@media (min-width: 576px) {
	.ns-skeleton-grid--carousel .ns-skel-card { flex: 0 0 calc(33.333% - 7px); }
}
@media (min-width: 900px) {
	.ns-skeleton-grid--carousel .ns-skel-card { flex: 0 0 calc(25% - 8px); }
}
.ml-local-name { font-size: .8rem; color: #666; font-weight: 600; display: block; }
.ml-card-meta .ml-shipping { margin-top: 0; }
.ml-shipping-regional {
	display: block; font-size: .72rem; color: #3483fa; line-height: 1.35;
	margin-top: 2px; font-weight: 500;
}
.ml-card-cta {
	padding: 0 10px 10px; margin-top: auto;
}
.ml-card-add-btn {
	display: block; width: 100%; padding: 9px 12px; border: none; border-radius: 6px;
	background: #3483fa; color: #fff; font-size: .85rem; font-weight: 600;
	cursor: pointer; text-align: center; text-decoration: none;
	transition: background .2s, transform .15s;
}
.ml-card-add-btn:hover { background: #2968c8; }
.ml-card-add-btn--secondary {
	background: #fff; color: #3483fa; border: 1px solid #3483fa;
}
.ml-card-add-btn--secondary:hover { background: #f0f7ff; }
.ml-card-add-btn.is-added { background: #00a650; }

/* Home — categorías comida con banner (Fase B) */
.ml-comida-cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 14px;
}
.ml-comida-cat-card {
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	border: 1px solid #eee;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
	transition: box-shadow .2s, transform .15s;
}
.ml-comida-cat-card:hover {
	box-shadow: 0 6px 18px rgba(0,0,0,.1);
	transform: translateY(-2px);
}
.ml-comida-cat-card-media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 7;
	background: #f0f0f0;
	overflow: hidden;
}
.ml-comida-cat-card-media picture,
.ml-comida-cat-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ml-comida-cat-card-body {
	padding: 12px 14px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.ml-comida-cat-card-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--onyx);
}
.ml-comida-cat-card-meta {
	font-size: .8rem;
	color: var(--sonic-silver);
}
.ml-home-section--comida-cats { margin-bottom: 8px; }

/* Página #/comida — bloques por local */
.ml-comida-local-block {
	margin-bottom: 28px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f0f0f0;
}
.ml-comida-local-block:last-child { border-bottom: 0; }
.ml-comida-local-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 14px;
}
.ml-comida-local-logo {
	width: 48px;
	height: 48px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid #eee;
	background: #fff;
	flex-shrink: 0;
}
.ml-comida-local-head-text {
	flex: 1 1 auto;
	min-width: 0;
}
.ml-comida-local-grid {
	margin-top: 12px;
}
@media (min-width: 992px) {
	.ml-comida-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.ml-home-carousel-item--local { flex: 0 0 calc(72% - 5px); }
@media (min-width: 576px) {
	.ml-home-carousel-item--local { flex: 0 0 calc(45% - 7px); }
}
@media (min-width: 900px) {
	.ml-home-carousel-item--local { flex: 0 0 calc(33.333% - 8px); }
}
.ml-local-card {
	display: flex; gap: 12px; align-items: flex-start; padding: 14px;
	background: #fff; border: 1px solid #eee; border-radius: 10px;
	text-decoration: none; color: inherit; height: 100%; box-sizing: border-box;
	transition: box-shadow .2s, border-color .2s;
}
.ml-local-card:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,.08); border-color: #ddd;
}
.ml-local-card-logo-wrap {
	flex: 0 0 56px; width: 56px; height: 56px; border-radius: 10px;
	background: #f7f7f7; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.ml-local-card-logo { width: 100%; height: 100%; object-fit: contain; }
.ml-local-card-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.ml-local-card-status {
	display: inline-block; align-self: flex-start; font-size: .7rem; font-weight: 700;
	padding: 2px 8px; border-radius: 999px; letter-spacing: .01em; line-height: 1.35;
}
.ml-local-card-sched {
	display: block;
	font-size: .75rem;
	color: #666;
	line-height: 1.35;
	margin-top: 1px;
}
.ml-local-card-status--abierto { background: #e6f7ed; color: #00a650; }
.ml-local-card-status--cerrado { background: #f5f5f5; color: #999; }
.ml-local-card-status--cierra-pronto { background: #fff8e6; color: #e67e22; }
.ml-local-card-status--abre-pronto { background: #fff3e6; color: #d35400; }
.ml-local-card-status--sin-horario { background: #f0f4ff; color: #3483fa; }
.ml-local-card-name { font-size: .95rem; line-height: 1.25; color: #333; }
.ml-local-card-city { font-size: .78rem; color: #888; }
.ml-local-card-count { font-size: .75rem; color: #666; }
.ml-local-card-link { font-size: .8rem; color: #3483fa; font-weight: 600; margin-top: 4px; }
@media (max-width: 576px) {
	.ml-card-variant-count { min-width: 20px; height: 20px; font-size: .65rem; line-height: 20px; left: 5px; bottom: 5px; }
}
.showcase-actions { position: absolute; top: 10px; right: 10px; z-index: 3; display: flex; flex-direction: column; gap: 5px; align-items: center; opacity: 0; transform: translateX(50px); transition: opacity .3s, transform .3s; }
.ml-card:hover .showcase-actions { opacity: 1; transform: translateX(0); }
@media (max-width: 1023px) {
	.showcase-actions { opacity: 1; transform: translateX(0); }
}
.showcase-action-btn, .btn-fav, .btn-share-card { background: #fff; border: 1px solid #eee; border-radius: 50%; width: 35px; height: 35px; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,.1); padding: 0; transition: transform .2s, background .2s; }
.showcase-action-btn:hover, .btn-fav:hover, .btn-share-card:hover { transform: scale(1.05); background: #fdfdfd; }
.showcase-action-btn img, .btn-fav img { width: 20px; height: 20px; object-fit: contain; opacity: .6; transition: opacity .2s; }
.showcase-action-btn:hover img, .btn-fav:hover img { opacity: 1; }
.btn-share-card .share-icon { width: 16px; height: 16px; opacity: .6; }
.btn-share-card:hover .share-icon { opacity: 1; }
.ml-price-row-promo { display: flex; align-items: center; gap: 8px; margin-bottom: 2px; min-height: 18px; }
.ml-price-list { font-size: .85rem; color: #999; text-decoration: line-through; }
.ml-discount { font-size: .85rem; color: #00a650; font-weight: 600; }
.rating-stars { color: var(--sandy-brown); font-size: .95rem; margin-top: 6px; letter-spacing: 1px; line-height: 1; }
.ml-card-disp { font-size: .78rem; color: #b45309; font-weight: 600; margin-top: 4px; }
.showcase-badge-container { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; z-index: 8; max-width: calc(100% - 52px); pointer-events: none; }
.showcase-badge-container .showcase-badge { pointer-events: auto; box-shadow: 0 1px 3px rgba(0,0,0,.18); }
.showcase-badge { padding: 4px 8px; font-size: .75rem; font-weight: bold; border-radius: 4px; color: #fff; width: fit-content; text-transform: uppercase; }
.badge-pink { background: var(--sandy-brown); }
.badge-A { background: #e67e22; }
.badge-B { background: #e74c3c; }
.badge-C { background: #34495e; }
.ml-card-info { padding: 16px; border-top: 1px solid #f5f5f5; flex-grow: 1; display: flex; flex-direction: column; }
.ml-price-container { display: flex; align-items: center; gap: 8px; }
.ml-price { font-size: 1.4rem; font-weight: 400; color: #333; line-height: 1.2; }
.ml-title { font-size: .85rem; color: #666; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 300; }
.ml-shipping { font-size: .8rem; color: #00a650; font-weight: 600; margin-top: 4px; }
.state-C { opacity: .85; }
.state-C .ml-card-img-box { filter: grayscale(100%); }

/* Secciones tipo index.php */
.web-section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 20px; border-bottom: 2px solid var(--sandy-brown); padding-bottom: 10px; }
.web-section-head--spaced { margin-top: 40px; }
.web-section-title { font-size: 1.5rem; color: var(--onyx); font-weight: 600; margin: 0; }
.web-section-link, .web-section-action { color: var(--sandy-brown); font-weight: 600; font-size: .9rem; background: none; border: none; cursor: pointer; text-decoration: none; }
.web-section-action:hover, .web-section-link:hover { text-decoration: underline; }

/* Historial horizontal */
.web-historial-grid {
	display: flex; gap: 16px; overflow-x: auto; padding: 20px 0 10px;
	scroll-snap-type: x mandatory; scrollbar-width: thin; align-items: stretch;
}
.web-historial-grid .ml-card {
	min-width: 230px; max-width: 230px; width: 230px; flex: 0 0 230px;
	scroll-snap-align: start; height: auto;
}
.web-historial-grid .ml-card-link-wrap { flex: 1; }
.web-historial-grid .ml-card-info { flex: 1; }
.web-historial-grid::-webkit-scrollbar { height: 6px; }
.web-historial-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 8px; }
.web-historial-grid::-webkit-scrollbar-thumb:hover { background: var(--sandy-brown); }

/* Sidebar categorías escritorio — oculto ≥1024px (categorías vía mega menú; ver layout.css) */
.web-sidebar-desk {
	width: 260px; flex-shrink: 0; padding-right: 16px;
	position: sticky; top: 20px; align-self: flex-start;
}
.web-sidebar-desk-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; color: var(--sonic-silver); margin: 20px 0 8px; }
.web-cat-nav { list-style: none; margin: 0; padding: 0; }
.web-cat-link { display: block; padding: 8px 10px; font-size: .92rem; border-radius: 6px; }
.web-cat-link:hover, .web-cat-link.active { background: #fff4ed; color: var(--sandy-brown); font-weight: 600; }
.web-cat-sub { list-style: none; margin: 0; padding: 0 0 0 10px; }
.web-cat-sub .web-cat-link { font-size: .85rem; }

@media (max-width: 1023px) {
	.web-sidebar-desk { display: none !important; }
}

/* Mega menú desktop (impHeadPage) */
.web-nav-cat-btn { cursor: pointer; display: flex; align-items: center; gap: 5px; font-weight: 700; color: var(--onyx); }
.web-nav-chevron { font-size: .7rem; margin-top: 2px; }
.web-nav-link { color: var(--onyx); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 5px; }
.nav-btn-categorias { position: relative; padding: 0; }
.mega-menu-desktop { display: none; position: absolute; top: 100%; left: 0; background: #fff; width: 280px; box-shadow: 0 10px 25px rgba(0,0,0,.15); border-radius: 0 0 12px 12px; z-index: 1000; list-style: none; padding: 10px 0; border: 1px solid #eaeaea; border-top: 2px solid var(--sandy-brown); margin: 0; }
.mega-menu-sub { display: none; background: #fff; width: 280px; box-shadow: 4px 10px 25px rgba(0,0,0,.15); border-radius: 12px; list-style: none; padding: 5px 0; border: 1px solid #eaeaea; z-index: 1001; margin: 0; }
.scroll-nivel-1 { max-height: calc(100vh - 120px); overflow-y: auto; }
.scroll-nivel-2 { max-height: 260px; overflow-y: auto; }
.mega-menu-link { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; color: #333; font-size: .95rem; text-decoration: none; border-bottom: 1px solid #f9f9f9; }
.mega-menu-item:last-child > .mega-menu-link { border-bottom: none; }
.mega-menu-item { position: relative; list-style: none; }
.mega-menu-item:hover > .mega-menu-link { background: #fff4ed; color: var(--sandy-brown); }
.arrow { font-size: 1.2rem; color: #ccc; }
.mega-menu-item:hover > .mega-menu-link .arrow { color: var(--sandy-brown); }
.nav-btn-categorias:hover > .mega-menu-desktop { display: block; animation: fadeInMenu .2s ease-in-out; }
@keyframes fadeInMenu { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }
.ns-desk-left { display: flex; align-items: center; gap: 12px; }
.ns-desk-img { width: 24px; height: 24px; object-fit: contain; border-radius: 4px; border: 1px solid #eee; padding: 2px; background: #fff; }
.ns-desk-title { font-weight: 500; }

/* Menú móvil acordeón (impMenCel / imprimirMenuMobileRecursivo) */
.sidebar-accordion-menu.ns-menu-row,
.ns-menu-row { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 12px 10px; border-bottom: 1px solid var(--cultured); cursor: pointer; background: transparent; border-left: 3px solid transparent; transition: all .3s cubic-bezier(.4,0,.2,1); }
.ns-menu-row.active { background: rgba(244,162,97,.05); border-left: 3px solid var(--sandy-brown); }
.ns-menu-link { display: flex; align-items: center; gap: 12px; flex-grow: 1; text-decoration: none; color: inherit; }
.ns-menu-img { width: 26px; height: 26px; object-fit: contain; border-radius: 6px; border: 1px solid #eee; padding: 2px; background: #fff; transition: transform .3s ease; }
.ns-menu-row:active .ns-menu-img { transform: scale(.9); }
.ns-menu-title { font-weight: 500; color: var(--onyx); transition: color .3s; }
.ns-menu-row.active .ns-menu-title { font-weight: bold; color: var(--sandy-brown); }
.ns-menu-badge-wrapper { display: flex; align-items: center; gap: 10px; pointer-events: none; }
.ns-menu-badge { color: var(--sonic-silver); background: var(--cultured); padding: 2px 8px; border-radius: 10px; font-size: .75rem; font-weight: bold; transition: background .3s, color .3s; }
.ns-menu-row.active .ns-menu-badge { background: var(--sandy-brown); color: #fff; }
.ns-chevron-wrapper { display: flex; align-items: center; justify-content: center; background: none; border: none; padding: 4px; }
.ns-chevron { width: 20px; height: 20px; color: #888; transition: transform .35s cubic-bezier(.4,0,.2,1), color .3s; display: inline-block; }
.ns-menu-row.active .ns-chevron { transform: rotate(180deg); color: var(--sandy-brown); }
.sidebar-submenu-category-list,
.sidebar-submenu { display: none; list-style: none; margin: 0; padding: 0 0 0 12px; }
.sidebar-submenu-category-list.active,
.sidebar-submenu.active { display: block; }

/* Contacto lateral */
body.ns-panel-open { overflow: hidden; }
.contact-sidebar { position: fixed; top: 0; right: -420px; width: min(400px, 94vw); height: 100vh; height: 100dvh; background: #fff; box-shadow: -8px 0 24px rgba(0,0,0,.12); z-index: 9999; transition: right .3s ease; display: flex; flex-direction: column; }
.contact-sidebar.open { right: 0; }
.contact-header { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 16px 18px; background: linear-gradient(135deg, var(--sandy-brown), #e8944a); color: #fff; flex-shrink: 0; }
.contact-header h3 { font-size: 1.05rem; font-weight: 700; margin: 0; flex: 1; }
.contact-back-btn { background: rgba(255,255,255,.2); border: none; color: #fff; font-size: 1.2rem; cursor: pointer; line-height: 1; padding: 4px 10px; border-radius: 6px; }
.contact-back-btn:hover { background: rgba(255,255,255,.35); }
#close-contact-btn { background: none; border: none; color: #fff; font-size: 1.75rem; cursor: pointer; line-height: 1; padding: 0 4px; flex-shrink: 0; }
#close-contact-btn:hover { opacity: .85; }
.contact-body { padding: 18px; overflow-y: auto; flex-grow: 1; -webkit-overflow-scrolling: touch; }
.contact-view[hidden] { display: none !important; }
.contact-intro { font-size: .9rem; color: #555; margin: 0 0 16px; line-height: 1.5; }
.contact-intro--local { margin-top: 4px; }
.contact-form-intro { font-size: .88rem; color: #666; margin: 0 0 10px; font-weight: 600; }
.contact-divider { margin: 18px 0; border: none; border-top: 1px solid #eee; }
.contact-optional { font-weight: 400; color: #999; font-size: .85em; }

.contact-channel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.contact-channel-card { display: flex; align-items: center; gap: 10px; padding: 12px; border-radius: 10px; text-decoration: none; color: #fff; transition: transform .15s, opacity .15s; }
.contact-channel-card:hover { transform: translateY(-1px); opacity: .95; }
.contact-channel-card--wa { background: #25D366; }
.contact-channel-card--fb { background: #1877F2; }
.contact-channel-icon { display: flex; flex-shrink: 0; }
.contact-channel-text { display: flex; flex-direction: column; line-height: 1.2; font-size: .85rem; }
.contact-channel-text strong { font-size: .92rem; }
.contact-channel-text small { opacity: .9; font-size: .75rem; }

.contact-reclamo-entry { display: block; width: 100%; text-align: left; padding: 12px 14px; margin-bottom: 4px; border: 1px dashed #ddd; border-radius: 10px; background: #fafafa; cursor: pointer; transition: border-color .2s, background .2s; }
.contact-reclamo-entry:hover { border-color: var(--sandy-brown); background: #fff8f2; }
.contact-reclamo-entry--compact { margin-top: 12px; }
.contact-reclamo-entry-title { display: block; font-weight: 700; color: var(--onyx); font-size: .92rem; }
.contact-reclamo-entry-sub { display: block; font-size: .8rem; color: #777; margin-top: 2px; }

.contact-local-card { margin-bottom: 12px; }
.contact-local-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 10px; }
.contact-local-logo { width: 52px; height: 52px; object-fit: contain; border-radius: 10px; border: 1px solid #eee; background: #fff; flex-shrink: 0; }
.contact-local-name { display: block; font-size: 1rem; color: var(--onyx); margin-bottom: 4px; }
.contact-local-ubic { font-size: .85rem; color: var(--sonic-silver); margin: 4px 0 0; }
.contact-local-horarios { list-style: none; margin: 0 0 12px; padding: 0; font-size: .85rem; }
.contact-local-horarios li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px solid #f0f0f0; color: #444; }
.contact-local-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 4px; }
.contact-local-btn { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: 8px; background: var(--sandy-brown); color: #fff; font-weight: 600; font-size: .85rem; text-decoration: none; border: none; cursor: pointer; }
.contact-local-btn--outline { background: #fff; color: var(--sandy-brown); border: 1px solid var(--sandy-brown); }
.contact-local-btn--wa { background: #25D366; }

.contact-social-btn { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 8px; text-decoration: none; color: #fff; font-weight: 600; font-size: .95rem; transition: opacity .2s, transform .15s; }
.contact-social-btn:hover { opacity: .92; transform: translateY(-1px); }
.contact-social-btn:active { transform: translateY(0); }
.whatsapp { background: #25D366; }
.facebook { background: #1877F2; }

/* Footer */
.footer-ns-pro { text-align: center; padding: 40px 20px 100px; border-top: 1px solid #eaeaea; margin-top: 40px; }
.footer-ns-pro p { font-size: .8rem; color: #888; letter-spacing: 1px; margin-bottom: 8px; text-transform: uppercase; font-weight: 500; }
.footer-ns-pro a { color: var(--onyx); text-decoration: none; font-weight: 700; }
.footer-ns-pro a:hover { color: var(--sandy-brown); }
.footer-ns-pro .legal-text { font-size: .7rem; color: #aaa; text-transform: none; letter-spacing: normal; }

/* Skeleton / shimmer (legacy impSkeletonGrilla) */
.ns-skeleton-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 16px;
	width: 100%;
	padding: 20px 0;
}
.ns-skel-card {
	background: #fff;
	border-radius: 8px;
	border: 1px solid #f0f0f0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.ns-skel-img {
	width: 100%;
	aspect-ratio: 1/1;
	background: #e8e8e8;
	position: relative;
	overflow: hidden;
}
.ns-skel-info {
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex-grow: 1;
}
.ns-skel-line {
	height: 12px;
	background: #e8e8e8;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}
.ns-skel-line.price { height: 24px; width: 60%; margin-bottom: 4px; }
.ns-skel-line.title { width: 100%; }
.ns-skel-line.title-2 { width: 80%; }
.ns-skel-line.stars { width: 40%; margin-top: auto; }
.ns-skel-img::after,
.ns-skel-line::after {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
	animation: ns-shimmer 1.5s infinite;
}
@keyframes ns-shimmer { 100% { left: 100%; } }
.web-skel-section-head { border-bottom-color: #eee !important; }
.web-skel-section-title { height: 28px; width: 55%; max-width: 320px; }
.web-ficha-skeleton { margin-bottom: 24px; }
.web-ficha-skel-grid {
	display: grid;
	gap: 24px;
}
@media (min-width: 768px) {
	.web-ficha-skel-grid { grid-template-columns: 1fr 1fr; }
}
.web-ficha-skel-img { border-radius: 10px; min-height: 280px; }
.web-ficha-skel-info { display: flex; flex-direction: column; }
@media (max-width: 576px) {
	.ns-skeleton-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 10px 0; }
	.ns-skel-info { padding: 10px; }
}

/* Spinner + estados */
.modern-spinner { width: 40px; height: 40px; border: 4px solid var(--cultured); border-top: 4px solid var(--sandy-brown); border-radius: 50%; animation: web-spin .8s linear infinite; margin: auto; }
@keyframes web-spin { to { transform: rotate(360deg); } }
.web-scroll-trigger { height: 60px; width: 100%; display: flex; justify-content: center; align-items: center; padding: 20px 0; }
.web-main-error { background: #fee; color: #900; padding: 10px 16px; margin-bottom: 12px; border-radius: 8px; }
.web-empty, .web-error-box, .web-grid-loading { text-align: center; padding: 40px 20px; color: var(--sonic-silver); }
.web-empty-state { text-align: center; padding: 48px 20px; background: #fafafa; border-radius: 12px; margin: 20px 0; border: 1px dashed #e5e5e5; }
.web-empty-title { font-size: 1.25rem; color: var(--onyx); margin: 0 0 8px; }
.web-empty-hint { margin-top: 16px; }
.web-empty-link { color: var(--sandy-brown); font-weight: 600; background: none; border: none; cursor: pointer; font-size: inherit; text-decoration: underline; }
.ns-skeleton-grid--inline { padding: 10px 0; }

/* Landing local */
.web-local-landing {
	margin-bottom: 24px;
	border-radius: 14px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.web-local-landing--v2 .web-local-hero {
	position: relative;
}
.web-local-banner {
	display: block;
	width: 100%;
	max-height: 280px;
	overflow: hidden;
	background: linear-gradient(135deg, #f5f5f5, #ececec);
}
.web-local-banner--placeholder {
	min-height: 140px;
	background: linear-gradient(135deg, #f4a26133, #2a9d8f22);
}
.web-local-banner img {
	width: 100%;
	height: auto;
	min-height: 120px;
	max-height: 280px;
	object-fit: cover;
	display: block;
}
.web-local-hero-overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: flex-end;
	gap: 14px;
	padding: 16px 18px;
	background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 55%, transparent 100%);
	color: #fff;
}
.web-local-hero-logo {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 12px;
	border: 2px solid rgba(255,255,255,.85);
	background: #fff;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.web-local-hero-text { min-width: 0; }
.web-local-landing--v2 .web-local-name {
	font-size: 1.35rem;
	margin: 0 0 6px;
	color: #fff;
	text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.web-local-landing--v2 .web-local-status { margin: 0; }
.web-local-body { padding: 18px 20px 20px; }
.web-local-meta { margin-bottom: 14px; }
.web-local-meta-row { margin: 0 0 6px; font-size: .92rem; color: #444; line-height: 1.45; }
.web-local-meta-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: #999; font-weight: 700; margin-bottom: 2px; }
.web-local-horarios-wrap { margin: 0 0 14px; border: 1px solid #eee; border-radius: 10px; padding: 12px 14px; }
.web-local-horarios-title { margin: 0 0 8px; font-weight: 700; font-size: .9rem; color: var(--onyx); }
.web-local-horarios { list-style: none; margin: 0; padding: 0; }
.web-local-horarios li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-top: 1px solid #f3f3f3; font-size: .88rem; color: #555; }
.web-local-horarios li:first-child { border-top: 0; padding-top: 0; }
.web-local-horarios-mas { margin-top: 8px; }
.web-local-horarios-mas summary {
	cursor: pointer;
	font-size: .84rem;
	font-weight: 600;
	color: var(--sandy-brown);
	list-style: none;
	padding: 4px 0;
}
.web-local-horarios-mas summary::-webkit-details-marker { display: none; }
.web-local-horarios--resto { margin-top: 6px; padding-top: 4px; border-top: 1px dashed #eee; }
.contact-local-horarios-wrap { margin: 0 0 12px; }
.contact-local-horarios-title { margin: 0 0 6px; font-weight: 700; font-size: .85rem; color: var(--onyx); }
.contact-local-horarios { list-style: none; margin: 0; padding: 0; font-size: .85rem; }
.contact-local-horarios li { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; border-bottom: 1px solid #f0f0f0; color: #444; }
.contact-local-horarios li:last-child { border-bottom: 0; }
.contact-local-horarios-mas summary {
	cursor: pointer;
	font-size: .82rem;
	font-weight: 600;
	color: var(--sandy-brown);
	list-style: none;
	margin-top: 6px;
}
.contact-local-horarios-mas summary::-webkit-details-marker { display: none; }
.contact-local-horarios--resto { margin-top: 4px; }
@media (max-width: 767px) {
	.web-local-banner { max-height: 200px; }
	.web-local-banner img { max-height: 200px; min-height: 100px; }
	.web-local-hero-logo { width: 52px; height: 52px; }
	.web-local-landing--v2 .web-local-name { font-size: 1.15rem; }
}
@media (min-width: 992px) {
	.web-local-banner { max-height: 320px; }
	.web-local-banner img { max-height: 320px; }
}
.web-local-head {
	display: flex;
	gap: 16px;
	padding: 20px;
	align-items: flex-start;
}
.web-local-logo {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 10px;
	border: 1px solid #eee;
	flex-shrink: 0;
	background: #fff;
}
.web-local-name { font-size: 1.5rem; margin: 0 0 4px; color: var(--onyx); }
.web-local-status {
	display: inline-block;
	margin: 0 0 8px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: .78rem;
	font-weight: 700;
}
.web-local-status--abierto { background: #e6f7ed; color: #00a650; }
.web-local-hero-overlay .web-local-status--abierto { background: rgba(0,166,80,.9); color: #fff; }
.web-local-status--cerrado { background: #f5f5f5; color: #999; }
.web-local-hero-overlay .web-local-status--cerrado { background: rgba(80,80,80,.75); color: #fff; }
.web-local-status--cierra-pronto { background: #fff8e6; color: #e67e22; }
.web-local-hero-overlay .web-local-status--cierra-pronto { background: rgba(230,126,34,.92); color: #fff; }
.web-local-status--abre-pronto { background: #fff3e6; color: #d35400; }
.web-local-hero-overlay .web-local-status--abre-pronto { background: rgba(211,84,0,.9); color: #fff; }
.web-local-status--sin-horario { background: #f0f4ff; color: #3483fa; }
.web-local-ubic { color: var(--sonic-silver); font-size: .9rem; margin: 0 0 8px; }
.web-local-desc { color: #555; font-size: .95rem; margin: 0 0 14px; line-height: 1.55; }
.web-local-desc.wa-fmt p { margin: 0 0 .75em; }
.web-local-desc.wa-fmt p:last-child { margin-bottom: 0; }
.web-cat-desc { color: #555; font-size: .95rem; margin: 0 0 16px; line-height: 1.55; max-width: 720px; }
.web-cat-desc.wa-fmt p { margin: 0 0 .75em; }
.web-cat-desc.wa-fmt p:last-child { margin-bottom: 0; }
.web-local-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.web-local-btn {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border-radius: 8px;
	background: var(--sandy-brown);
	color: #fff;
	font-weight: 600;
	font-size: .9rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
}
.web-local-btn--outline { background: #fff; color: var(--sandy-brown); border: 1px solid var(--sandy-brown); }
.web-local-btn--wa { background: #25D366; color: #fff; border: none; }
.web-local-btn--ofertas { color: #e67e22; border-color: #e67e22; }
.web-local-btn-icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Eventos promocionales — legacy strip (fallback) */
.web-eventos-strip { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.web-evento-banner {
	display: block; position: relative; border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 16px rgba(0,0,0,.12); text-decoration: none; color: inherit;
}
.web-evento-landing { margin-bottom: 24px; border-radius: 12px; overflow: hidden; background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.web-evento-landing-head { display: flex; gap: 16px; padding: 20px; align-items: center; }
.web-evento-logo { width: 64px; height: 64px; object-fit: contain; border-radius: 8px; border: 1px solid #eee; }
.web-evento-landing-title { font-size: 1.6rem; margin: 6px 0 4px; color: var(--onyx); }
.web-evento-tag { display: inline-block; font-size: .75rem; font-weight: 700; background: var(--sandy-brown); color: #fff; padding: 3px 10px; border-radius: 20px; }
.web-evento-landing-banner { display: block; width: 100%; }
.web-evento-landing-banner img { width: 100%; height: 220px; object-fit: cover; }

/* Hero evento — ancho completo bajo header */
.web-home-hero-wrap {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: #fff;
}
.web-home-hero-wrap .ml-hero {
	border-radius: 0;
	margin: 0;
	box-shadow: none;
}
.web-home-hero-wrap .ml-hero-track {
	width: 100%;
	max-width: none;
	max-height: none;
	height: clamp(160px, 28vw, 400px);
	aspect-ratio: unset;
}

/* Home MercadoLibre — accesos (hero vive en #web-home-hero) */
.ml-home { margin-bottom: 20px; margin-top: 12px; }
.ml-hero {
	position: relative; border-radius: 6px; overflow: hidden;
	background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.12);
	margin-bottom: 16px;
}
.ml-hero-track { position: relative; width: 100%; aspect-ratio: 1200 / 340; max-height: 340px; }
.ml-hero-slide {
	position: absolute; inset: 0; opacity: 0; transition: opacity .45s ease;
	text-decoration: none; color: #fff; display: block;
}
.ml-hero-slide.is-active { opacity: 1; z-index: 1; }
.ml-hero-slide picture, .ml-hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ml-hero-caption {
	position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 28px;
	background: linear-gradient(transparent, rgba(0,0,0,.55));
}
.ml-hero-kicker { display: block; font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; opacity: .95; }
.ml-hero-title { display: block; font-size: clamp(1.25rem, 3vw, 2rem); font-weight: 700; line-height: 1.15; margin-top: 4px; }
.ml-hero-sub { display: block; font-size: .95rem; margin-top: 6px; opacity: .92; }
.ml-hero-nav {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
	width: 44px; height: 44px; border-radius: 50%; border: none;
	background: rgba(255,255,255,.92); color: #333; font-size: 1.75rem; line-height: 1;
	cursor: pointer; box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.ml-hero-nav:hover { background: #fff; }
.ml-hero-nav--prev { left: 12px; }
.ml-hero-nav--next { right: 12px; }
.ml-hero-dots {
	position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 8px; z-index: 3;
}
.ml-hero-dot {
	width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
	background: rgba(255,255,255,.55); cursor: pointer;
}
.ml-hero-dot.is-active { background: #fff; transform: scale(1.15); }

.ml-shortcuts-wrap { position: relative; margin-bottom: 8px; }
.ml-shortcuts {
	display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
	padding-bottom: 4px; scrollbar-width: none;
}
.ml-shortcuts::-webkit-scrollbar { display: none; }
.ml-shortcut-slot { flex: 0 0 auto; scroll-snap-align: start; }
.ml-shortcut-card, .ml-shortcut-card-link {
	display: flex; flex-direction: column; width: 220px; min-height: 280px;
	background: #fff; border-radius: 6px; box-shadow: 0 1px 2px rgba(0,0,0,.12);
	padding: 16px; text-decoration: none; color: inherit; position: relative;
	flex: 0 0 auto; scroll-snap-align: start; transition: box-shadow .2s ease;
}
.ml-shortcut-card-link { width: 100%; min-height: 0; box-shadow: none; padding: 0; }
.ml-shortcut-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.ml-shortcut-title {
	font-size: .95rem; font-weight: 600; color: rgba(0,0,0,.9);
	margin: 0 0 12px; line-height: 1.25;
}
.ml-shortcut-body {
	flex: 1; display: flex; align-items: center; justify-content: center;
	min-height: 120px;
}
.ml-shortcut-body--icon span { font-size: 3rem; line-height: 1; }
.ml-shortcut-card--catalogo .ml-shortcut-body--icon { background: linear-gradient(135deg, #fff4ed, #ffe8d6); }
.ml-shortcut-card--ofertas .ml-shortcut-body--icon { background: linear-gradient(135deg, #ffe8f0, #fff0f5); }
.ml-shortcut-card--contacto .ml-shortcut-body--icon { background: linear-gradient(135deg, #e8f5e9, #f1f8e9); }
.ml-shortcut-img { max-width: 100%; max-height: 140px; object-fit: contain; }
.ml-shortcut-price { font-size: 1.35rem; font-weight: 400; color: #333; margin: 0 0 4px; }
.ml-shortcut-desc { font-size: .85rem; color: #666; margin: 0 0 8px; line-height: 1.35; flex: 1; }
.ml-shortcut-foot { margin: 8px 0 0; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ml-shortcut-link { font-size: .85rem; color: #3483fa; font-weight: 600; }
.ml-shortcut-meta { font-size: .8rem; color: #666; }
.ml-shortcut-clear {
	position: absolute; top: 8px; right: 8px; width: 28px; height: 28px;
	border: none; border-radius: 50%; background: #f5f5f5; color: #666;
	font-size: 1.1rem; line-height: 1; cursor: pointer; z-index: 2;
}
.ml-shortcut-clear:hover { background: #eee; color: #333; }
.ml-shortcuts-scroll {
	position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
	width: 40px; height: 40px; border-radius: 50%; border: none;
	background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15);
	font-size: 1.5rem; cursor: pointer; z-index: 2;
}
@media (max-width: 576px) {
	.ml-hero-track { aspect-ratio: 16 / 9; max-height: 200px; }
	.ml-shortcut-card, .ml-shortcut-card-link { width: 168px; min-height: 240px; padding: 12px; }
	.ml-hero-caption { padding: 14px 16px; }
}

/* Sección catálogo sobre fondo gris ML */
.ml-catalog-section {
	background: #fff; border-radius: 6px; padding: 16px 16px 4px;
	box-shadow: 0 1px 2px rgba(0,0,0,.08); margin-top: 8px;
}
.web-section-head { border-bottom-color: #eee; margin-top: 0; }
.web-section-head--catalog { padding-bottom: 12px; margin-bottom: 4px; }

/* Historial — carrusel horizontal (index.php legacy) */
.web-historial-section { margin-bottom: 24px; }
.web-section-head--historial { border-bottom: 2px solid var(--sandy-brown); padding-bottom: 10px; margin-bottom: 0; }
.web-historial-grid {
	display: flex; gap: 16px; overflow-x: auto; padding: 20px 0 10px;
	scroll-snap-type: x mandatory; scrollbar-width: thin; align-items: stretch;
}
.web-historial-grid .ml-card {
	min-width: 230px; max-width: 230px; width: 230px; flex: 0 0 230px;
	scroll-snap-align: start; height: auto;
}
.web-historial-grid .ml-card-link-wrap { flex: 1; }
.web-historial-grid .ml-card-info { flex: 1; }
.web-historial-grid::-webkit-scrollbar { height: 6px; }
.web-historial-grid::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 8px; }
.web-historial-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 8px; }
.web-historial-grid::-webkit-scrollbar-thumb:hover { background: var(--sandy-brown); }

.web-nav-link--ofertas { font-weight: 700 !important; color: var(--sandy-brown) !important; }
.web-nav-link.active { text-decoration: underline; text-underline-offset: 3px; }
body.is-local-context #web-mob-ns:not([hidden]) { display: flex; }
.web-section-title--ofertas { color: var(--sandy-brown); }
.header-user-actions .action-btn.has-count .count { background: var(--sandy-brown); }

/* Badges ficha */
.web-badge { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: .8rem; font-weight: 700; margin-right: 8px; }
.web-badge--disponible { background: #ecfdf5; color: #047857; }
.web-badge--nuevo { background: #333; color: #fff; }
.web-badge--liquidacion { background: #fee2e2; color: #b91c1c; }
.web-badge--reposicion { background: #f1f5f9; color: #475569; }
.web-badge--encargue, .web-badge--plazo { background: #fff7ed; color: #c2410c; }
.web-badge--pausado { background: #e2e8f0; color: #64748b; }
.web-badge--digital, .web-badge--servicio { background: #eff6ff; color: #1d4ed8; }
.web-ficha-estado { margin: 10px 0; }
.web-ficha-msg { font-size: .9rem; color: #b45309; margin: 8px 0 0; }
.web-precio-lista { font-size: 1rem; color: #999; text-decoration: line-through; margin-right: 10px; }
.web-precio-off { font-size: .85rem; color: #00a650; font-weight: 700; margin-right: 10px; }
.web-precio-oculto { font-size: 1.1rem; color: var(--sonic-silver); font-style: italic; }
.web-ficha-local-link { color: var(--sandy-brown); font-weight: 600; font-size: .9rem; display: inline-block; margin-bottom: 6px; }
.web-end-catalog { color: #888; font-size: .9rem; text-align: center; }
.web-breadcrumbs { font-size: .85rem; color: var(--sonic-silver); margin-bottom: 16px; display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.web-bc-sep { opacity: .5; }
.web-pag { display: flex; gap: 12px; align-items: center; justify-content: center; margin: 24px 0; }
.web-pag-btn { border: 1px solid #ddd; background: #fff; padding: 8px 16px; border-radius: 8px; cursor: pointer; }

/* Ficha producto v2 */
.web-ficha { display: grid; gap: 24px; margin-bottom: 24px; }
@media (min-width: 768px) { .web-ficha { grid-template-columns: 1fr 1fr; } }
.web-ficha-img-main { width: 100%; border-radius: 10px; background: #f0f0f0; }
.web-ficha-thumbs { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.web-ficha-thumb { border: 2px solid transparent; border-radius: 6px; padding: 0; width: 56px; height: 56px; overflow: hidden; cursor: pointer; background: #fff; }
.web-ficha-thumb.active { border-color: var(--sandy-brown); }
.web-ficha-thumb img { width: 100%; height: 100%; object-fit: cover; }
.web-ficha-title { font-size: 1.4rem; margin: 8px 0; color: var(--onyx); }
.web-ficha-precio { font-size: 1.5rem; font-weight: 700; margin: 12px 0; }
.web-select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 8px; }
.web-btn--primary { background: var(--sandy-brown); color: #fff; border: none; padding: 12px 24px; border-radius: 8px; font-weight: 700; font-size: 1rem; width: 100%; max-width: 320px; cursor: pointer; }
.web-ficha-seccion { background: #fff; border-radius: 10px; padding: 16px; margin-bottom: 16px; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.web-specs { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; }
.wa-fmt strong { font-weight: 700; }
.wa-fmt-code { background: #f1f5f9; padding: 1px 5px; border-radius: 4px; font-size: .9em; }

.mobile-bottom-navigation { z-index: 9990 !important; }

main { padding-bottom: 80px; }
@media (min-width: 1024px) {
	main { padding-bottom: 24px; }
}

/* Chat 02 — carrito, medidas, contacto, menú conteos */
.web-cat-count { font-size: .85em; color: var(--sonic-silver); font-weight: 400; }
.web-ficha-actions { margin: 4px 0 8px; }
.web-btn-share { border: 1px solid #ddd; background: #fff; padding: 6px 12px; border-radius: 6px; cursor: pointer; font-size: .85rem; }
.web-qty-label { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; margin: 8px 0; }
.web-qty-input { width: 64px; padding: 6px 8px; border: 1px solid #ddd; border-radius: 6px; }
.web-medidas-form { background: #fafafa; border: 1px solid #eee; border-radius: 8px; padding: 12px; margin: 12px 0; }
.web-medidas-form h3 { font-size: 1rem; margin: 0 0 10px; }
.web-medidas-grid { display: grid; gap: 10px; }
.web-medidas-field { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .9rem; }
.web-medidas-input { width: 80px; padding: 6px; border: 1px solid #ddd; border-radius: 6px; }
.web-medidas-hint { font-size: .85rem; color: var(--sonic-silver); margin: 8px 0 0; }
.web-precio-medidas-note { display: block; font-size: .75rem; color: var(--sonic-silver); font-weight: 400; margin-top: 4px; }
.web-digital-block { margin: 12px 0; }
.web-digital-preview { max-width: 100%; border-radius: 8px; border: 1px solid #eee; }
.web-digital-preview-pdf { width: 100%; min-height: 360px; border: 1px solid #eee; border-radius: 8px; }
.web-digital-preview-vid { max-width: 100%; border-radius: 8px; background: #111; }
.web-digital-pdf-link { display: inline-block; margin-top: 8px; font-size: .85rem; }
.web-digital-tier { font-size: .9rem; margin-top: 8px; }
.web-ficha-cupos { color: #2e7d32; }
.web-ficha-digital-note { color: #555; font-size: .9rem; }
.web-ficha-cta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-top: 12px; }
.web-ficha-cta .web-btn--outline { flex: 1 1 auto; min-width: 160px; }
.web-qty-cupo-hint { font-size: .8rem; color: #666; font-weight: 400; }
.web-btn--secondary { display: inline-block; background: #fff; border: 1px solid var(--sandy-brown); color: var(--onyx); padding: 8px 14px; border-radius: 8px; text-decoration: none; font-size: .9rem; }
.web-cart-page { max-width: 1200px; margin: 0 auto; padding: 0 15px 40px; }
.web-cart-page-hint { font-size: .88rem; color: #666; margin: -8px 0 16px; }
.web-cart-layout {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 24px;
	align-items: start;
}
.web-cart-lines { min-width: 0; }
.web-cart-sidebar {
	position: sticky;
	top: calc(var(--web-header-h, 64px) + 12px);
}
.web-cart-foot {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 20px;
	box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.web-cart-total { display: flex; justify-content: space-between; align-items: center; font-size: 1.15rem; margin-bottom: 12px; font-weight: 700; }
.web-cart-note { font-size: .82rem; color: var(--sonic-silver); margin: 0 0 14px; line-height: 1.4; }
.web-cart-actions { display: flex; flex-direction: column; gap: 10px; }
.web-cart-actions .web-btn { text-align: center; }
.web-cart-shipping-info {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #f0f0f0;
	font-size: .78rem;
	color: #666;
	line-height: 1.5;
}
/* Grupos por comercio */
.cart-group {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
	box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.cart-group-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	background: #fafafa;
	border-bottom: 1px solid #f0f0f0;
}
.cart-group-logo {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 6px;
	border: 1px solid #eee;
	flex-shrink: 0;
}
.cart-group-logo--placeholder {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--sandy-brown);
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
}
.cart-group-nombre {
	font-weight: 700;
	font-size: .95rem;
	color: var(--onyx);
	text-decoration: none;
}
.cart-group-nombre:hover { color: var(--sandy-brown); }
.cart-group .cart-order-list--page { padding: 0 12px; border-radius: 0; }
.cart-group .cart-order-line { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; }
.cart-group .cart-order-line:first-child { border-top: 0; }
.cart-group-shipping {
	padding: 8px 16px;
	font-size: .8rem;
}
.cart-group-shipping-tag {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 4px 10px;
	border-radius: 999px;
	font-weight: 600;
}
.cart-group-shipping-tag--free {
	background: #e8f5e9;
	color: #2e7d32;
	border: 1px solid #a5d6a7;
}
.cart-group-shipping-tag--consult {
	background: #fff8e1;
	color: #e65100;
	border: 1px solid #ffcc80;
}
.cart-group-wa-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 4px 16px 14px;
	padding: 10px 16px;
	background: #25D366;
	color: #fff;
	border-radius: 8px;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .15s ease;
}
.cart-group-wa-btn:hover { background: #128C7E; }
.cart-group-wa-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
/* Logo en line-item del carrito (preview) */
.cart-order-line-local-logo {
	width: 14px;
	height: 14px;
	object-fit: contain;
	border-radius: 2px;
	flex-shrink: 0;
	vertical-align: middle;
}
/* Mobile: total sticky abajo, lista sin sidebar */
@media (max-width: 900px) {
	.web-cart-layout {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.web-cart-sidebar {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 55;
		top: auto;
	}
	.web-cart-foot {
		border-radius: 16px 16px 0 0;
		border-bottom: 0;
		padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
		box-shadow: 0 -6px 24px rgba(0,0,0,.12);
	}
	.web-cart-foot.is-collapsed .web-cart-total-row,
	.web-cart-foot.is-collapsed .web-cart-note,
	.web-cart-foot.is-collapsed .web-pago-totals,
	.web-cart-foot.is-collapsed .web-pago-foot-steps,
	.web-cart-foot.is-collapsed .web-cart-actions,
	.web-cart-foot.is-collapsed .web-cart-shipping-info { display: none; }
	.web-cart-foot-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 4px 0 8px;
		background: transparent;
		border: 0;
		font-size: .88rem;
		font-weight: 700;
		color: var(--onyx);
		cursor: pointer;
	}
	.web-cart-foot-toggle-icon { font-size: .7rem; transition: transform .2s ease; }
	.web-cart-foot.is-collapsed .web-cart-foot-toggle-icon { transform: rotate(180deg); }
	.web-cart-page { padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px)); }
	.web-cart-actions .web-btn--primary,
	.web-cart-actions .web-btn--wa { width: 100%; max-width: none; }
	.cart-qty-stepper-btn { min-width: 44px; height: 44px; }
}
.web-cart-note { font-size: .85rem; color: var(--sonic-silver); margin-bottom: 12px; }
.web-btn--wa { display: inline-block; background: #25D366; color: #fff; text-align: center; padding: 12px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; width: 100%; max-width: 320px; }
.contact-form label { display: block; font-size: .85rem; margin: 10px 0 4px; color: #444; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 6px; font: inherit; box-sizing: border-box; transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--sandy-brown); outline: none; box-shadow: 0 0 0 3px rgba(244,162,97,.2); }
.contact-form button[type="submit"] { width: 100%; margin-top: 14px; padding: 12px; background: var(--onyx); color: #fff; border: none; border-radius: 6px; font-weight: 700; cursor: pointer; transition: background .2s; }
.contact-form button[type="submit"]:hover:not(:disabled) { background: var(--sandy-brown); }
.contact-form button[type="submit"]:disabled { opacity: .6; cursor: wait; }
.web-contact-resp { margin-top: 10px; font-size: .9rem; }
.web-contact-ok { color: #2e7d32; }
.web-contact-err { color: #c0392b; }

/* Menú comida — local modo_catalogo=comida (WEB.2) */
.menu-comida {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 8px;
	width: 100%;
}
@media (min-width: 992px) {
	.menu-comida {
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
}
.menu-comida-toolbar-row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	position: sticky;
	top: var(--web-header-h, 64px);
	z-index: 40;
	background: #fff;
	padding: 8px 0 10px;
	margin: 0 0 4px;
	border-bottom: 1px solid #f0f0f0;
	box-shadow: 0 4px 12px rgba(255,255,255,.95);
}
/* Catálogo local comida: header sticky; chips de categoría scrollean con el menú (no tapan platos) */
body.is-local-context[data-local-modo="comida"] > header {
	position: sticky;
	top: 0;
	z-index: 45;
	background: #fff;
	box-shadow: 0 1px 0 var(--cultured);
}
body.is-local-context[data-local-modo="comida"] .menu-comida-toolbar-row {
	position: relative;
	top: auto;
	z-index: 1;
	box-shadow: none;
	margin-bottom: 8px;
}
body.is-local-context[data-local-modo="comida"] .menu-comida-section {
	scroll-margin-top: calc(var(--web-header-h, 72px) + 16px);
}
.menu-comida-cat-nav {
	display: flex;
	flex-wrap: nowrap;
	gap: 8px;
	overflow-x: auto;
	flex: 1 1 auto;
	min-width: 0;
	padding: 2px 0;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}
.menu-comida-cat-nav--solo {
	flex: 1 1 auto;
}
.menu-comida-view-toggle {
	display: inline-flex;
	flex: 0 0 auto;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
}
.menu-comida-view-btn {
	padding: 8px 12px;
	border: 0;
	background: transparent;
	font-size: .82rem;
	font-weight: 600;
	cursor: pointer;
	color: #666;
	white-space: nowrap;
}
.menu-comida-view-btn.is-active {
	background: var(--sandy-brown);
	color: #fff;
}
.menu-comida-cat-chip {
	flex: 0 0 auto;
	padding: 8px 14px;
	border-radius: 20px;
	border: 1px solid #e0e0e0;
	background: #fff;
	font-size: .85rem;
	font-weight: 600;
	text-decoration: none;
	color: var(--onyx);
	white-space: nowrap;
}
.menu-comida-cat-chip:hover {
	border-color: var(--sandy-brown);
	color: var(--sandy-brown);
}
.menu-comida-section {
	scroll-margin-top: calc(var(--web-header-h, 64px) + var(--menu-comida-sticky-h, 52px) + 12px);
}
.menu-comida-section-title {
	font-size: 1.35rem; font-weight: 700; color: var(--onyx);
	margin: 0 0 14px; padding-bottom: 8px; border-bottom: 2px solid var(--sandy-brown);
}
.menu-comida-items { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 992px) {
	.menu-comida--lista .menu-comida-items,
	.menu-comida--tarjeta .menu-comida-items {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}
}

/* Vista lista (predeterminada) */
.menu-comida-row--lista {
	display: grid;
	grid-template-columns: 88px 1fr;
	gap: 12px;
	align-items: start;
	padding: 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 10px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.menu-comida-row--lista:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.menu-comida-list-media {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 88px;
	height: 88px;
	text-decoration: none;
	background: #f5f5f5;
	border-radius: 8px;
	overflow: hidden;
}
.menu-comida-list-thumb {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}
.menu-comida-list-body {
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.menu-comida-name {
	font-size: 1rem;
	font-weight: 700;
	color: var(--onyx);
	text-decoration: none;
	line-height: 1.25;
}
.menu-comida-name:hover { color: var(--sandy-brown); }
.menu-comida-desc {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: .85rem;
	color: #666;
	line-height: 1.35;
	margin: 0;
}
.menu-comida-plazo { font-size: .78rem; color: #3483fa; font-weight: 600; margin: 0; }
.menu-comida-plazo[hidden] { display: none; }

/* Variantes comida — checks + pedido */
.menu-comida-variantes { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.menu-comida-variantes-title {
	font-size: .78rem;
	font-weight: 700;
	color: #888;
	text-transform: uppercase;
	letter-spacing: .02em;
}
.menu-comida-var-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 10px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	cursor: pointer;
	transition: border-color .2s, background .2s;
}
.menu-comida-var-item:hover { border-color: #ccc; }
.menu-comida-var-item.is-selected {
	border-color: var(--sandy-brown);
	background: rgba(244,162,97,.08);
}
.menu-comida-var-check {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin: 2px 0 0;
	accent-color: var(--sandy-brown);
}
.menu-comida-var-body {
	flex: 1 1 auto;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 4px 12px;
	min-width: 0;
}
.menu-comida-var-tamano {
	font-size: .86rem;
	color: var(--onyx);
}
.menu-comida-var-tamano-label { font-weight: 700; }
.menu-comida-var-precio {
	font-size: .86rem;
	font-weight: 700;
	color: var(--onyx);
	white-space: nowrap;
}
.menu-comida-order-panel {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px dashed #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.menu-comida-order-panel[hidden] { display: none; }
.menu-comida-order-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.menu-comida-qty-wrap {
	font-size: .85rem;
	font-weight: 600;
	color: var(--onyx);
	display: flex;
	align-items: center;
	gap: 8px;
}
.menu-comida-qty {
	width: 64px;
	padding: 6px 8px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: .9rem;
	text-align: center;
}
.menu-comida-line-total {
	font-size: .9rem;
	color: var(--onyx);
}
.menu-comida-line-total strong { font-size: 1rem; }
.menu-comida-add-btn {
	width: 100%;
	padding: 10px 14px;
	font-size: .88rem;
}
.menu-comida-add-btn.is-added { background: #2e7d32; }
.web-qty-fixed {
	font-size: .9rem;
	font-weight: 600;
}
.menu-comida-qty-fixed {
	font-size: .85rem;
	font-weight: 600;
	color: var(--onyx);
}
.menu-comida-qty-fixed strong { color: var(--sandy-brown); }
.menu-comida-qty-wrap[hidden],
.menu-comida-qty-fixed[hidden] { display: none; }
.menu-comida-ver-link { margin-top: 8px; display: inline-block; width: auto; }

/* Vista tarjetas */
.menu-comida--tarjeta .menu-comida-row--tarjeta {
	display: grid;
	grid-template-columns: minmax(130px, 40%) 1fr;
	gap: 0;
	align-items: stretch;
	padding: 0;
	overflow: hidden;
	min-height: 200px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.menu-comida--tarjeta .menu-comida-row--tarjeta:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.menu-comida--tarjeta .menu-comida-media-col {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	min-height: 100%;
	background: #f5f5f5;
	overflow: hidden;
	text-decoration: none;
}
.menu-comida--tarjeta .menu-comida-photo {
	position: static;
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	display: block;
}
.menu-comida--tarjeta .menu-comida-content {
	padding: 16px 18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}
.menu-comida--tarjeta .menu-comida-name { font-size: 1.1rem; }
.menu-comida--tarjeta .menu-comida-desc { font-size: .88rem; }
.menu-comida-item--retail .ml-card { height: 100%; }
.menu-comida-item--retail { max-width: 280px; }
@media (min-width: 768px) {
	.menu-comida-row--lista {
		grid-template-columns: 104px 1fr;
		gap: 16px;
		padding: 14px 16px;
	}
	.menu-comida-list-thumb { width: 104px; height: 104px; }
	.menu-comida--tarjeta .menu-comida-row--tarjeta { min-height: 220px; }
	.menu-comida--tarjeta .menu-comida-content { padding: 18px 22px; gap: 8px; }
	.menu-comida--tarjeta .menu-comida-name { font-size: 1.2rem; }
}
@media (max-width: 575px) {
	.menu-comida--tarjeta .menu-comida-row--tarjeta {
		grid-template-columns: 1fr;
		min-height: 0;
	}
	.menu-comida--tarjeta .menu-comida-media-col {
		min-height: 0;
		aspect-ratio: 16 / 10;
	}
}

/* CartShell — barra inferior reutilizable (ver CART_SHELL_WEB.md) */
body.has-cart-shell {
	padding-bottom: calc(var(--cart-shell-offset, 144px) + env(safe-area-inset-bottom, 0px));
}
body.has-cart-shell-expanded .mobile-bottom-navigation {
	visibility: hidden;
	pointer-events: none;
}
.cart-shell {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	background: #fff;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 -4px 24px rgba(0,0,0,.14);
}
.cart-shell-preview {
	max-height: 0;
	overflow: hidden;
	overflow-y: auto;
	border-bottom: 1px solid #eee;
	padding: 0 16px;
	background: #fafafa;
	transition: max-height .28s ease, padding .28s ease;
}
.cart-shell.is-expanded .cart-shell-preview {
	max-height: min(45vh, 340px);
	padding: 12px 16px;
}

/* WEB.6 — líneas de pedido multi-ítem (preview + #/carrito) */
.cart-order-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.cart-order-list--page { gap: 10px; }
.cart-order-line {
	display: grid;
	grid-template-columns: minmax(30px, auto) 40px minmax(0, 1fr) auto auto;
	gap: 6px 8px;
	align-items: center;
	padding: 8px 10px;
	background: #fff;
	border-radius: 8px;
	border: 1px solid #eee;
}
.cart-order-line--page {
	padding: 10px 12px;
	box-shadow: 0 1px 3px rgba(0,0,0,.06);
	grid-template-columns: 48px minmax(0, 1fr) auto auto;
}
.cart-order-line--page.cart-order-line--medida {
	grid-template-columns: minmax(30px, auto) 48px minmax(0, 1fr) auto auto;
}
.cart-order-line-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	min-width: 0;
}
.cart-order-line-local {
	font-size: .76rem;
	color: #3483fa;
	text-decoration: none;
	line-height: 1.25;
}
.cart-order-line-local:hover { text-decoration: underline; }
.cart-qty-stepper {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	margin-top: 4px;
}
.cart-qty-stepper-btn {
	min-width: 40px;
	height: 40px;
	border: 0;
	background: #f5f5f5;
	color: #333;
	font-size: 1.35rem;
	font-weight: 400;
	line-height: 1;
	cursor: pointer;
	padding: 0 12px;
	transition: background .15s ease;
}
.cart-qty-stepper-btn:hover { background: #ebebeb; }
.cart-qty-stepper-btn:active { background: #e0e0e0; }
.cart-qty-stepper-val {
	min-width: 36px;
	padding: 0 8px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: .95rem;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	border-left: 1px solid #e0e0e0;
	border-right: 1px solid #e0e0e0;
}
@media (max-width: 767px) {
	.cart-qty-stepper-btn { min-width: 44px; height: 44px; }
}
@keyframes cart-line-flash {
	0% {
		background-color: rgba(244, 162, 97, .38);
		border-color: rgba(244, 162, 97, .55);
	}
	100% {
		background-color: #fff;
		border-color: #eee;
	}
}
.cart-order-line--flash {
	animation: cart-line-flash .55s ease-out;
}
.cart-order-line-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	max-width: 52px;
	padding: 3px 7px;
	font-size: .78rem;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	color: var(--sandy-brown);
	word-break: break-word;
	background: rgba(244, 162, 97, .12);
	border: 1px solid rgba(244, 162, 97, .28);
	border-radius: 999px;
}
.cart-order-line-badge--medida {
	min-width: 32px;
	font-size: .74rem;
	letter-spacing: -.01em;
}
.cart-order-line-badge--qty {
	min-width: 26px;
	font-variant-numeric: tabular-nums;
}
.cart-order-line-badge--edit {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
}
.cart-order-line-badge-input {
	width: 40px;
	padding: 4px 2px;
	border: 1px solid rgba(244, 162, 97, .45);
	border-radius: 999px;
	font-size: .82rem;
	font-weight: 800;
	text-align: center;
	color: var(--sandy-brown);
	background: rgba(244, 162, 97, .12);
}
.cart-order-line-badge-input:focus {
	outline: none;
	border-color: var(--sandy-brown);
	box-shadow: 0 0 0 2px rgba(244, 162, 97, .2);
}
.cart-order-line-img {
	width: 48px;
	height: 48px;
	object-fit: contain;
	background: #f5f5f5;
	border-radius: 6px;
}
.cart-order-line-medida {
	font-size: .8rem;
	font-weight: 700;
	color: var(--sandy-brown);
	white-space: nowrap;
}
.cart-order-line-medida--na {
	color: #ccc;
	font-weight: 500;
}
.cart-order-line-name {
	font-size: .84rem;
	font-weight: 600;
	color: var(--onyx);
	text-decoration: none;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
a.cart-order-line-name:hover { color: var(--sandy-brown); }
.cart-order-line-qty {
	font-size: .82rem;
	font-weight: 700;
	color: var(--sandy-brown);
	text-align: center;
	min-width: 28px;
}
.cart-order-line-qty--edit { margin: 0; }
.cart-order-line-qty-input {
	width: 48px;
	padding: 4px 6px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: .82rem;
	text-align: center;
}
.cart-order-line-price {
	font-size: .84rem;
	font-weight: 700;
	color: var(--onyx);
	text-align: right;
	white-space: nowrap;
	justify-self: end;
}
.cart-order-line-remove {
	width: 26px;
	height: 26px;
	border: 0;
	border-radius: 50%;
	background: #f5f5f5;
	color: #c0392b;
	font-size: 1rem;
	line-height: 1;
	cursor: pointer;
	flex-shrink: 0;
}
.cart-order-line-remove:hover { background: #fdecea; }
.cart-order-line-remove--text {
	width: auto;
	height: auto;
	border-radius: 6px;
	padding: 4px 8px;
	font-size: .75rem;
	font-weight: 600;
	background: transparent;
	text-decoration: underline;
}
@media (max-width: 400px) {
	.cart-order-line {
		grid-template-columns: minmax(26px, auto) 36px minmax(0, 1fr) auto auto;
	}
	.cart-order-line-price { grid-column: 4 / 5; }
	.cart-order-line-remove { grid-column: 5 / 6; }
	.cart-order-line-remove--text { grid-column: 1 / -1; justify-self: end; }
}
.cart-shell-main {
	padding: 8px 0 calc(8px + env(safe-area-inset-bottom, 0px));
}
.cart-shell-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 4px 0 8px;
	border: 0;
	background: transparent;
	color: #666;
	font-size: .78rem;
	font-weight: 600;
	cursor: pointer;
}
.cart-shell-toggle-icon {
	font-size: .65rem;
	transition: transform .25s ease;
}
.cart-shell.is-expanded .cart-shell-toggle-icon { transform: rotate(180deg); }
.cart-shell-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.cart-shell-thumbs {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.cart-shell-thumbs-stack {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	min-width: 36px;
}
.cart-shell-thumb {
	display: block;
	position: relative;
	width: 36px;
	height: 36px;
	margin-left: -10px;
	border-radius: 50%;
	border: 2px solid #fff;
	background: #f5f5f5;
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0,0,0,.14);
	flex-shrink: 0;
}
.cart-shell-thumbs-stack .cart-shell-thumb:first-child { margin-left: 0; }
.cart-shell-thumb img { width: 100%; height: 100%; object-fit: contain; }
.cart-shell-thumb-more {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 36px;
	height: 36px;
	margin-left: -10px;
	border-radius: 50%;
	background: var(--sandy-brown);
	color: #fff;
	font-size: .72rem;
	font-weight: 700;
	border: 2px solid #fff;
	box-shadow: 0 1px 4px rgba(0,0,0,.14);
	flex-shrink: 0;
}
.cart-shell-info {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
	flex: 1 1 auto;
}
.cart-shell-summary {
	font-size: .72rem;
	color: #888;
	line-height: 1.25;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.cart-shell-summary[hidden] { display: none; }
.cart-shell-count { font-size: .78rem; color: #666; }
.cart-shell-total { font-size: 1.1rem; color: var(--onyx); }
.cart-shell-buy {
	width: auto;
	min-width: 108px;
	padding: 10px 18px;
	font-size: .92rem;
	max-width: none;
	flex-shrink: 0;
}
@media (min-width: 1024px) {
	body.has-cart-shell { padding-bottom: calc(var(--cart-shell-h, 88px) + 24px); }
	body.has-cart-shell .mobile-bottom-navigation { bottom: auto; }
}
.web-cart-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
}
.web-cart-checkout-btn { max-width: none; }
.web-cart-wa-btn { text-align: center; }

/* Checkout y seguimiento (Chat 03) */
.web-checkout-page { max-width: 720px; margin: 0 auto; padding-bottom: 24px; }
.web-checkout-local { font-size: .92rem; color: #444; margin-bottom: 12px; }
.web-checkout-summary { margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.web-checkout-summary .cart-order-list--page { pointer-events: none; }
.web-checkout-summary .cart-order-line-remove { display: none; }
.web-checkout-form label { display: block; font-size: .88rem; font-weight: 600; margin: 0; color: #333; }
.web-checkout-field { margin-top: 12px; }
.web-checkout-field-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 4px;
}
.web-field-help-btn {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	border: 1px solid #ccc;
	background: #f8f8f8;
	color: #555;
	font-size: .78rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}
.web-field-help-btn:hover,
.web-field-help-btn:focus-visible {
	background: #fff3e6;
	border-color: var(--sandy-brown, #e67e22);
	color: #333;
}
.web-field-help-text {
	margin: 6px 0 0;
	padding: 8px 10px;
	font-size: .84rem;
	line-height: 1.45;
	color: #555;
	background: #f9f9f9;
	border-left: 3px solid var(--sandy-brown, #e67e22);
	border-radius: 0 6px 6px 0;
}
.web-req { color: #c0392b; }
.web-opt { font-weight: 400; color: #888; font-size: .82rem; }
.web-checkout-form input[type="text"],
.web-checkout-form input[type="tel"],
.web-checkout-form input[type="email"],
.web-checkout-form textarea {
	width: 100%; box-sizing: border-box; padding: 10px 12px; border: 1px solid #ddd;
	border-radius: 8px; font-size: 1rem; font-family: inherit;
}
.web-checkout-subtitle { font-size: 1rem; margin: 20px 0 8px; color: #222; }
.web-checkout-pago { border: none; padding: 0; margin: 16px 0; }
.web-checkout-pago legend { font-size: .88rem; font-weight: 600; margin-bottom: 8px; }
.web-checkout-radio { display: flex; align-items: center; gap: 8px; font-size: .92rem; margin: 6px 0; font-weight: 400; cursor: pointer; }
.web-checkout-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.web-checkout-back { margin-top: 12px; font-size: .9rem; }
.web-btn--ghost {
	background: transparent; color: #333; border: 1px solid #ccc; text-align: center; text-decoration: none;
}

/* —— Seguimiento pedido (#/pedido) — estilo ML —— */
.web-rastreo-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 16px 20px 32px;
	background: #ededed;
	min-height: 60vh;
}
.web-rastreo-body { min-height: 200px; }
.web-rastreo-layout {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.web-rastreo-layout.has-sticky-footer { /* padding vía body.web-rastreo-active */ }
.web-rastreo-layout.has-sticky-pay { /* mantiene clase para ocultar botón MP duplicado en aside móvil */ }

/* Footer móvil — mismo patrón que cart-shell (encima del menú inferior) */
body.web-rastreo-active {
	padding-bottom: calc(var(--rastreo-sticky-h, 72px) + var(--mob-nav-h, 56px) + 12px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 900px) {
	body.web-rastreo-active { padding-bottom: 24px; }
}
.web-rastreo-sticky.cart-shell--rastreo {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10050;
	background: #fff;
	border-top: 1px solid #e0e0e0;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, .14);
}
@media (max-width: 899px) {
	.web-rastreo-layout.has-sticky-footer .web-rastreo-sticky.cart-shell--rastreo { display: block; }
}
.web-rastreo-sticky .cart-shell-main { padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px)); }
.web-rastreo-sticky-inner { width: 100%; max-width: 1180px; margin: 0 auto; }
.web-rastreo-sticky-total { flex: 1; min-width: 0; }
.web-rastreo-sticky-lbl {
	display: block;
	font-size: .72rem;
	color: rgba(0, 0, 0, .45);
	text-transform: uppercase;
	letter-spacing: .04em;
}
.web-rastreo-sticky-val {
	font-size: 1.25rem;
	font-weight: 700;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-sticky-pay {
	flex: 0 0 auto;
	min-width: 108px;
	width: auto;
	max-width: none;
	padding: 10px 18px;
	font-size: .92rem;
}

/* Panel multi-comercio */
.web-rastreo-comercios-hint {
	margin: -6px 0 14px;
	font-size: .82rem;
	color: rgba(0, 0, 0, .55);
	line-height: 1.45;
}
.web-rastreo-comercios-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}
@media (min-width: 600px) {
	.web-rastreo-comercios-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.web-rastreo-comercio-card {
	display: block;
	padding: 14px 16px;
	border-radius: 8px;
	border: 1px solid #eee;
	background: #fafafa;
	text-decoration: none;
	color: inherit;
	transition: border-color .15s ease, box-shadow .15s ease;
}
a.web-rastreo-comercio-card:hover {
	border-color: #3483fa;
	box-shadow: 0 2px 8px rgba(52, 131, 250, .12);
}
.web-rastreo-comercio-card.is-current {
	border-color: #3483fa;
	background: #f0f7ff;
	box-shadow: inset 0 0 0 1px rgba(52, 131, 250, .15);
}
.web-rastreo-comercio-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 8px;
}
.web-rastreo-comercio-name {
	font-size: .95rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-comercio-actual {
	font-size: .72rem;
	font-weight: 600;
	color: #3483fa;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.web-rastreo-comercio-card .web-rastreo-status-pill { margin-bottom: 8px; }
.web-rastreo-comercio-total {
	margin: 0 0 4px;
	font-size: .85rem;
	color: rgba(0, 0, 0, .55);
}
.web-rastreo-comercio-link {
	font-size: .82rem;
	font-weight: 600;
	color: #3483fa;
}

.web-rastreo-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	align-items: start;
}
@media (min-width: 900px) {
	.web-rastreo-grid {
		grid-template-columns: minmax(0, 1fr) 340px;
		gap: 20px;
	}
}

.web-rastreo-main {
	display: flex;
	flex-direction: column;
	gap: 14px;
	min-width: 0;
}

/* Hero compacto */
.web-rastreo-hero {
	text-align: left;
	padding: 18px 20px;
	border-radius: 8px;
	background: #fff;
	border: none;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
@media (min-width: 900px) {
	.web-rastreo-hero { padding: 20px 24px; }
}
.web-rastreo-hero--entregado { border-left: 4px solid #00a650; }
.web-rastreo-hero--cancelado,
.web-rastreo-hero--devuelto { border-left: 4px solid #f23d4f; }
.web-rastreo-hero--activo,
.web-rastreo-hero--preparacion,
.web-rastreo-hero--despachado { border-left: 4px solid var(--sandy-brown, #c97b3a); }
.web-rastreo-status-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 4px;
	font-size: .78rem;
	font-weight: 700;
	margin-bottom: 8px;
	background: #fff3e8;
	color: var(--deep-saffron, #e76f51);
	border: none;
	text-transform: uppercase;
	letter-spacing: .03em;
}
.web-rastreo-status-pill--entregado { background: #e6f7ef; color: #00a650; }
.web-rastreo-status-pill--preparacion { background: #e8f4fd; color: #3483fa; }
.web-rastreo-status-pill--despachado { background: #eef2ff; color: #3730a3; }
.web-rastreo-status-pill--cancelado,
.web-rastreo-status-pill--devuelto { background: #fee8ea; color: #f23d4f; }
.web-rastreo-status-icon { font-size: .9rem; }
.web-rastreo-hero-title {
	margin: 0 0 4px;
	font-size: 1.25rem;
	font-weight: 400;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-hero-local {
	margin: 0 0 4px;
	font-size: .95rem;
	font-weight: 600;
	color: #3483fa;
}
.web-rastreo-hero-meta {
	margin: 0;
	font-size: .82rem;
	color: rgba(0, 0, 0, .55);
}
.web-rastreo-hero-meta code {
	font-size: .85rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .75);
	background: #f5f5f5;
	padding: 1px 6px;
	border-radius: 4px;
	border: none;
}

/* Paneles izquierda */
.web-rastreo-panel {
	background: #fff;
	border: none;
	border-radius: 8px;
	padding: 16px 20px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.web-rastreo-panel--alert { background: #fff5f5; box-shadow: 0 1px 2px rgba(242, 61, 79, .15); }
.web-rastreo-panel-title {
	margin: 0 0 14px;
	font-size: .88rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .9);
	text-transform: none;
	letter-spacing: 0;
}
.web-rastreo-panel-title--alert { color: #f23d4f; }
.web-rastreo-timeline-wrap { padding: 4px 0 0; }

/* Tarjeta vendedor / productos (estilo ML) */
.web-rastreo-seller-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
	overflow: hidden;
}
.web-rastreo-seller-card + .web-rastreo-seller-card { margin-top: 14px; }
.web-rastreo-seller-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding: 14px 20px;
	border-bottom: 1px solid #eee;
	background: #fafafa;
}
.web-rastreo-seller-name {
	font-size: .95rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-seller-cnt {
	font-size: .78rem;
	color: rgba(0, 0, 0, .45);
}
.web-rastreo-track-label {
	padding: 10px 20px;
	font-size: .82rem;
	font-weight: 600;
	color: #334155;
	background: #f8fafc;
	border-bottom: 1px solid #eee;
}
.web-rastreo-seller-card--inm .web-rastreo-track-label { background: #f0fdf4; color: #166534; }
.web-rastreo-seller-card--fab .web-rastreo-track-label { background: #fff7ed; color: #9a3412; }

/* Fila producto ML */
.web-rastreo-ml-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.web-rastreo-ml-row {
	display: grid;
	grid-template-columns: 72px 1fr auto;
	gap: 12px 16px;
	align-items: start;
	padding: 16px 20px;
	border-bottom: 1px solid #eee;
}
.web-rastreo-ml-row:last-child { border-bottom: none; }
.web-rastreo-ml-row.is-entregado { background: #fafdfa; }
.web-rastreo-ml-thumb {
	width: 72px;
	height: 72px;
	border-radius: 4px;
	border: 1px solid #eee;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
}
.web-rastreo-ml-thumb-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.web-rastreo-ml-thumb-ph { font-size: 1.5rem; opacity: .4; }
.web-rastreo-ml-info { min-width: 0; }
.web-rastreo-ml-title {
	margin: 0 0 4px;
	font-size: .9rem;
	font-weight: 400;
	color: rgba(0, 0, 0, .9);
	line-height: 1.35;
}
.web-rastreo-ml-row.is-entregado .web-rastreo-ml-title { color: rgba(0, 0, 0, .45); text-decoration: line-through; }
.web-rastreo-ml-qty {
	margin: 0 0 6px;
	font-size: .78rem;
	color: rgba(0, 0, 0, .45);
}
.web-rastreo-ml-price {
	font-size: 1.1rem;
	font-weight: 400;
	color: rgba(0, 0, 0, .9);
	white-space: nowrap;
	text-align: right;
	align-self: start;
	padding-top: 2px;
}
.web-rastreo-item-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 4px;
}
.web-rastreo-item-tl {
	grid-column: 1 / -1;
	margin-top: 4px;
	padding-top: 10px;
	border-top: 1px dashed #eee;
}

/* Resumen compra — columna derecha sticky */
.web-rastreo-aside { min-width: 0; }
@media (min-width: 900px) {
	.web-rastreo-aside { position: sticky; top: 16px; }
}
.web-rastreo-resumen-card {
	background: #fff;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.web-rastreo-resumen-title {
	margin: 0 0 16px;
	font-size: 1.15rem;
	font-weight: 600;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-res-rows { margin-bottom: 12px; }
.web-rastreo-res-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 6px 0;
	font-size: .88rem;
	color: rgba(0, 0, 0, .55);
}
.web-rastreo-res-row span:last-child { color: rgba(0, 0, 0, .9); font-weight: 500; }
.web-rastreo-res-row--ok span:last-child { color: #00a650; }
.web-rastreo-res-row--warn span:last-child { color: #f73; font-weight: 600; }
.web-rastreo-res-total {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 14px 0;
	margin-bottom: 14px;
	border-top: 1px solid #eee;
	font-size: 1rem;
	color: rgba(0, 0, 0, .9);
}
.web-rastreo-res-total strong {
	font-size: 1.5rem;
	font-weight: 600;
}
.web-rastreo-pago-block { margin-top: 0; }
.web-rastreo-aside-wa { margin-top: 14px; }
.web-rastreo-aside-wa .web-rastreo-wa-btn { max-width: none !important; width: 100%; }
.web-rastreo-aside-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #eee;
}

/* Footer sticky móvil — ver cart-shell--rastreo arriba */

/* Badges */
.web-rastreo-badge {
	font-size: .72rem;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 4px;
	background: #fff3cd;
	color: #856404;
}
.web-rastreo-badge--ok { background: #e6f7ef; color: #00a650; }
.web-rastreo-badge--st { background: #e8f4fd; color: #3483fa; }
.web-rastreo-badge--dev { background: #fee8ea; color: #f23d4f; }
.web-rastreo-plazo { font-size: .75rem; color: #64748b; background: #f1f5f9; padding: 3px 8px; border-radius: 4px; }

/* Resumen entrega dual track */
.web-rastreo-resumen {
	margin: 0;
	padding: 14px 16px;
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.web-rastreo-resumen-msg { font-size: .88rem; color: #334155; margin: 0 0 10px; line-height: 1.45; }
.web-rastreo-resumen-block { margin-top: 8px; font-size: .85rem; }
.web-rastreo-resumen-block--ok strong { color: #00a650; }
.web-rastreo-resumen-block--pend strong { color: #f73; }
.web-rastreo-resumen-list { margin: 6px 0 0; padding-left: 1.2em; color: #475569; line-height: 1.5; }
.web-rastreo-resumen-st { color: #64748b; font-size: .85em; }

/* Pago */
.web-rastreo-pago-section {
	margin: 0;
	padding: 14px 0 0;
	background: transparent;
	border: none;
	border-top: 1px solid #eee;
	border-radius: 0;
}
.web-rastreo-pago-hint { font-size: .82rem; color: rgba(0, 0, 0, .55); margin: 0 0 10px; line-height: 1.45; }
.web-rastreo-pago--ok,
.web-rastreo-pago--parcial,
.web-rastreo-pago--pend,
.web-rastreo-pago--vendedor {
	font-size: .88rem;
	font-weight: 500;
	padding: 10px 12px;
	border-radius: 6px;
	margin: 0 0 10px;
	line-height: 1.4;
}
.web-rastreo-pago--ok { background: #e6f7ef; color: #00a650; }
.web-rastreo-pago--parcial { background: #fff8e6; color: #9a6700; }
.web-rastreo-pago--vendedor { background: #f5f5f5; color: #555; border-left: 3px solid #bbb; }
.web-rastreo-pago--pend { background: #f5f5f5; color: rgba(0, 0, 0, .55); }
.web-rastreo-mp-lbl { display: block; font-size: .82rem; font-weight: 600; color: rgba(0, 0, 0, .75); margin: 0 0 6px; }
.web-rastreo-mp-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.web-rastreo-mp-input {
	flex: 1;
	min-width: 100px;
	padding: 10px 12px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
}
.web-rastreo-mp-saldo { font-size: .82rem; color: rgba(0, 0, 0, .45); width: 100%; }
.web-rastreo-notas {
	margin: 12px 0 0;
	padding: 10px 12px;
	font-size: .82rem;
	color: rgba(0, 0, 0, .55);
	background: #f5f5f5;
	border-radius: 6px;
	border-left: 3px solid var(--sandy-brown, #c97b3a);
	line-height: 1.45;
}
.web-rastreo-notas span { font-weight: 600; color: rgba(0, 0, 0, .75); }
.web-rastreo-dev-monto,
.web-rastreo-dev-neto { font-size: .88rem; color: #7f1d1d; margin: 0 0 6px; }

/* Historial */
.web-rastreo-hist-list {
	list-style: none;
	margin: 0;
	padding: 0;
}
.web-rastreo-hist-item {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid #f1f5f9;
}
.web-rastreo-hist-item:last-child { border-bottom: none; padding-bottom: 0; }
.web-rastreo-hist-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
	margin-top: 6px;
	flex-shrink: 0;
}
.web-rastreo-hist-dot--entregado { background: #00a650; }
.web-rastreo-hist-dot--activo,
.web-rastreo-hist-dot--preparacion,
.web-rastreo-hist-dot--despachado { background: var(--sandy-brown, #c97b3a); }
.web-rastreo-hist-dot--cancelado,
.web-rastreo-hist-dot--devuelto { background: #f23d4f; }
.web-rastreo-hist-body { flex: 1; min-width: 0; }
.web-rastreo-hist-time { display: block; font-size: .75rem; color: #94a3b8; }
.web-rastreo-hist-lbl {
	display: block;
	font-size: .88rem;
	font-weight: 500;
	color: rgba(0, 0, 0, .75);
	text-transform: capitalize;
}
.web-rastreo-hist-nota { display: block; font-size: .8rem; color: #64748b; margin-top: 2px; }

/* Links secundarios */
.web-rastreo-link-btn {
	display: block;
	text-align: center;
	padding: 10px 14px;
	border-radius: 6px;
	border: 1px solid #ddd;
	background: #fff;
	color: #3483fa;
	text-decoration: none;
	font-size: .88rem;
	font-weight: 500;
	transition: background .15s ease;
}
.web-rastreo-link-btn:hover { background: #f5f5f5; }

@media (max-width: 899px) {
	.web-rastreo-page { padding: 10px 12px 24px; }
	.web-rastreo-ml-row {
		grid-template-columns: 64px 1fr;
		padding: 14px 16px;
	}
	.web-rastreo-ml-price {
		grid-column: 2;
		text-align: left;
		font-size: 1rem;
		font-weight: 600;
		margin-top: 4px;
	}
	.web-rastreo-ml-thumb { width: 64px; height: 64px; }
	.web-rastreo-resumen-card { margin-top: 0; }
	/* Ocultar botón MP duplicado en aside móvil — usar sticky */
	.web-rastreo-layout.has-sticky-pay .web-rastreo-aside #web-btn-pagar-mp { display: none; }
}

@media (max-width: 480px) {
	.web-rastreo-hero-title { font-size: 1.1rem; }
	.web-rastreo-res-total strong { font-size: 1.3rem; }
}

/* Timeline dentro de rastreo */
.web-rastreo-page .ped-timeline__marker {
	width: 2.25rem;
	height: 2.25rem;
	font-size: .9rem;
}
.web-rastreo-page .ped-timeline__label { font-size: .85rem; }
.web-rastreo-page .ped-timeline__step--current .ped-timeline__marker {
	background: #3483fa;
	box-shadow: 0 0 0 3px rgba(52, 131, 250, .2);
}
.web-rastreo-page .ped-timeline__step--done .ped-timeline__marker { background: #00a650; }
.web-rastreo-page .ped-timeline__connector--done { background: #00a650; }

.ped-timeline {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	width: 100%;
	gap: 0;
}
.ped-timeline--vertical {
	flex-direction: column;
	align-items: stretch;
}
.ped-timeline__step {
	flex: 1 1 0;
	min-width: 4.5rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 6px;
}
.ped-timeline--vertical .ped-timeline__step {
	flex-direction: row;
	align-items: flex-start;
	text-align: left;
	flex: 0 0 auto;
	gap: 12px;
}
.ped-timeline__marker {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: .85rem;
	font-weight: 700;
	background: #e2e8f0;
	color: #64748b;
	flex-shrink: 0;
}
.ped-timeline__step--done .ped-timeline__marker { background: #2a9d8f; color: #fff; }
.ped-timeline__step--current .ped-timeline__marker { background: var(--deep-saffron, #e76f51); color: #fff; box-shadow: 0 0 0 3px rgba(231, 111, 81, .25); }
.ped-timeline__body { min-width: 0; }
.ped-timeline__label { display: block; font-size: .82rem; font-weight: 600; color: #334155; line-height: 1.25; }
.ped-timeline__step--current .ped-timeline__label { color: #0f172a; }
.ped-timeline__hint { display: block; font-size: .72rem; color: #64748b; margin-top: 2px; line-height: 1.3; }
.ped-timeline__connector {
	flex: 1 1 8px;
	height: 3px;
	background: #e2e8f0;
	margin-top: .95rem;
	min-width: 6px;
}
.ped-timeline__connector--done { background: #2a9d8f; }
.ped-timeline--vertical .ped-timeline__connector {
	width: 3px;
	height: 14px;
	flex: 0 0 auto;
	margin: 0 0 0 .95rem;
	align-self: flex-start;
}
.ped-timeline--compact .ped-timeline__hint { display: none; }
.ped-timeline--compact .ped-timeline__label { font-size: .78rem; }
.ped-timeline--mini {
	display: flex;
	gap: 6px;
	align-items: center;
	padding: 4px 0;
}
.ped-timeline__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #cbd5e1;
}
.ped-timeline__dot--done { background: #2a9d8f; }
.ped-timeline__dot--current { background: #e76f51; box-shadow: 0 0 0 2px rgba(231, 111, 81, .35); }
.ped-timeline--cancelado .ped-timeline__marker,
.ped-timeline--devuelto .ped-timeline__step--current .ped-timeline__marker { background: #c0392b; color: #fff; }
@media (max-width: 560px) {
	.ped-timeline:not(.ped-timeline--mini) { flex-direction: column; align-items: stretch; }
	.ped-timeline:not(.ped-timeline--mini) .ped-timeline__step { flex-direction: row; text-align: left; }
	.ped-timeline:not(.ped-timeline--mini) .ped-timeline__connector {
		width: 3px; height: 14px; margin: 0 0 0 .95rem; flex: 0 0 auto;
	}
}
.ped-timeline__fecha { display: block; font-size: .68rem; color: #94a3b8; margin-top: 2px; }

.web-btn--mp {
	background: #3483fa;
	color: #fff;
	border: none;
	display: inline-block;
	width: 100%;
	padding: 12px 16px;
	border-radius: 6px;
	font-weight: 600;
	font-size: .95rem;
	cursor: pointer;
	text-align: center;
	box-sizing: border-box;
}
.web-btn--mp:hover { background: #2968c8; }
.web-btn--mp:disabled { opacity: .65; cursor: wait; }
.web-cobro-embed { margin-top: 12px; min-height: 280px; }
.web-cobro-embed-frame { width: 100%; min-height: 280px; border: 0; border-radius: 10px; background: #fff; }
.web-abono-page { max-width: 640px; margin: 0 auto; padding: 8px 0 24px; }
.web-abono-msg { font-size: .95rem; color: #334155; margin: 0 0 12px; line-height: 1.45; }
.web-abono-msg--ok { color: #059669; font-weight: 600; }
.web-abono-msg--err { color: #b91c1c; }
.web-abono-periodo { font-size: .9rem; color: #475569; margin: 0 0 8px; }
.web-abono-monto { font-size: 1rem; margin: 0 0 14px; }

.web-checkout-ok-card {
	padding: 16px 18px; border-radius: 12px; border: 1px solid #eee; background: #fafafa;
}
.web-checkout-ok-card--mp { border-color: #b8d4f8; background: #f0f7ff; }
.web-checkout-ok-card--vendedor { border-color: #e8e4de; }
.web-checkout-ok-card .web-pago-badge { margin-bottom: 10px; }
.web-checkout-ok-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.web-checkout-ok-actions .web-btn--sm { flex: 1 1 auto; min-width: 120px; text-align: center; }

/* —— Pagos por comercio (MP vs vendedor) —— */
.web-pago-guide {
	padding: 14px 16px;
	border-radius: 10px;
	margin-bottom: 16px;
	font-size: .88rem;
	line-height: 1.45;
}
.web-pago-guide strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.web-pago-guide p { margin: 0; opacity: .9; }
.web-pago-guide--mixto { background: #fff8e6; border: 1px solid #ffe08a; color: #5c4a00; }
.web-pago-guide--mp { background: #eef6ff; border: 1px solid #b8d4f8; color: #0c3d7a; }
.web-pago-guide--vendedor { background: #f5f5f5; border: 1px solid #e0e0e0; color: #333; }

.web-pago-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .02em;
}
.web-pago-badge-icon { font-size: .85rem; line-height: 1; }
.web-pago-badge--mp { background: #e8f4fd; color: #3483fa; border: 1px solid #b8d4f8; }
.web-pago-badge--vendedor { background: #f5f5f5; color: #555; border: 1px solid #ddd; }

.web-pago-bucket {
	margin-bottom: 20px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid #e8e4de;
	background: #fff;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.web-pago-bucket--mp { border-color: #c5ddf8; }
.web-pago-bucket--vendedor { border-color: #e0e0e0; }
.web-pago-bucket-head {
	padding: 14px 16px;
	background: #fafafa;
	border-bottom: 1px solid #eee;
}
.web-pago-bucket--mp .web-pago-bucket-head { background: linear-gradient(180deg, #f0f7ff 0%, #fafafa 100%); }
.web-pago-bucket--vendedor .web-pago-bucket-head { background: #fafafa; }
.web-pago-bucket-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: #222;
}
.web-pago-bucket-sub { margin: 4px 0 0; font-size: .82rem; color: #666; }
.web-pago-bucket-body { padding: 12px; display: flex; flex-direction: column; gap: 12px; }
.web-pago-bucket-body .cart-group { margin: 0; box-shadow: none; }
.web-pago-bucket-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 16px;
	background: #fafafa;
	border-top: 1px solid #eee;
	font-size: .92rem;
	font-weight: 600;
}
.web-pago-bucket--mp .web-pago-bucket-foot { color: #3483fa; }

.web-pago-grupo-head { align-items: flex-start !important; }
.web-pago-grupo-titles { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.web-pago-grupo-idx {
	font-size: .72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #888;
}
.web-pago-grupo-hint {
	margin: 0;
	font-size: .8rem;
	color: #666;
	line-height: 1.4;
}
.web-pago-grupo-foot {
	padding: 0 12px 12px;
}
.web-pago-grupo--mp { border-left: 3px solid #3483fa; }
.web-pago-grupo--vendedor { border-left: 3px solid #bbb; }

.web-pago-totals {
	margin-top: 4px;
	padding-top: 12px;
	border-top: 2px solid #eee;
}
.web-pago-totals--ok { margin: 0 0 16px; padding: 12px 14px; background: #fafafa; border-radius: 10px; border: 1px solid #eee; }
.web-pago-total-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 12px;
	padding: 6px 0;
	font-size: .9rem;
	color: #555;
}
.web-pago-total-row strong { color: #222; font-size: 1rem; }
.web-pago-total-row--mp strong { color: #3483fa; }
.web-pago-total-row--vendedor strong { color: #555; }
.web-pago-total-row--general {
	margin-top: 6px;
	padding-top: 10px;
	border-top: 1px dashed #ddd;
	font-size: 1rem;
	font-weight: 700;
	color: #222;
}
.web-pago-total-row--general strong { font-size: 1.2rem; }

.web-pago-foot-steps {
	margin: 12px 0;
	padding: 12px;
	background: #f8fafc;
	border-radius: 8px;
	font-size: .82rem;
	color: #444;
	line-height: 1.45;
}
.web-pago-foot-steps ul { margin: 6px 0 0; padding-left: 1.2em; }
.web-pago-foot-steps li { margin: 4px 0; }

.web-pago-form-hint { font-size: .82rem; color: #666; margin: 0 0 8px; font-weight: 400; }
.web-pago-form-mp-note {
	font-size: .88rem;
	color: #0c3d7a;
	background: #eef6ff;
	padding: 10px 12px;
	border-radius: 8px;
	margin: 12px 0 0;
	line-height: 1.45;
}

.web-btn--sm { padding: 8px 14px; font-size: .85rem; max-width: none; width: auto; display: inline-block; }

.web-checkout-split-notice {
	font-size: .9rem; background: #fff8e6; border: 1px solid #f0d78c; border-radius: 8px;
	padding: 10px 14px; margin-bottom: 16px; color: #5c4a1a;
}
.web-checkout-grupo {
	margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px dashed #ddd;
}
.web-checkout-grupo:last-of-type { border-bottom: none; }
.web-checkout-grupo-title { font-size: .98rem; margin: 0 0 10px; color: #222; }
.web-checkout-grupo-total {
	display: flex; justify-content: space-between; font-size: .95rem; margin-top: 8px; color: #444;
}
.web-cart-total--general { margin-top: 12px; padding-top: 12px; border-top: 2px solid #eee; font-size: 1.2rem; }

.web-checkout-ok-page { max-width: 720px; margin: 0 auto; padding-bottom: 24px; }
.web-checkout-ok-head { text-align: center; margin-bottom: 20px; }
.web-checkout-ok-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 52px; height: 52px; border-radius: 50%; background: #2a9d8f; color: #fff;
	font-size: 1.6rem; font-weight: 700; margin-bottom: 8px;
}
.web-checkout-ok-lead { color: #444; margin: 8px 0; }
.web-checkout-ok-general { font-size: 1.05rem; margin-top: 8px; }
.web-checkout-ok-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.web-checkout-ok-card {
	background: #fafafa; border: 1px solid #eee; border-radius: 12px; padding: 14px 16px;
}
.web-checkout-ok-total { margin: 8px 0 12px; font-size: .95rem; }
.web-checkout-ok-code { font-size: 1.05rem; letter-spacing: .04em; }
.web-checkout-ok-hint {
	margin: 0 0 10px;
	padding: 10px 12px;
	font-size: .88rem;
	line-height: 1.45;
	color: #444;
	background: #f5f5f5;
	border-radius: 8px;
}
.web-checkout-ok-hint--warn {
	background: #fff8e6;
	border-left: 3px solid #e6a817;
}
.web-checkout-ok-hint--mail {
	background: #eefbf6;
	border-left: 3px solid #2a9d8f;
}
.web-btn--outline {
	background: #fff;
	color: #333;
	border: 1px solid #ccc;
}
.web-btn--outline:hover { border-color: var(--sandy-brown, #e67e22); }
.web-btn--sm { font-size: .85rem; padding: 8px 14px; display: inline-block; margin-right: 6px; margin-top: 4px; }
.web-rastreo-contacto-line { margin: 6px 0; font-size: .9rem; }
.web-rastreo-contacto-line span { color: #666; margin-right: 6px; }
.web-rastreo-contacto-hint { margin: 10px 0 0; font-size: .84rem; color: #555; line-height: 1.45; }
.web-rastreo-mixto-hint { margin: 0; font-size: .88rem; line-height: 1.45; }
.web-rastreo-panel--contacto { background: #f8fafc; border-color: #e2e8f0; }
.web-rastreo-seller-card--grupo { margin-bottom: 14px; }
.web-rastreo-badge--ext { background: #fff3e6; color: #9a5b00; font-size: .72rem; margin-left: 8px; }
.web-rastreo-badge--operador {
	background: #f3efff;
	color: #5b3ea6;
	font-size: .72rem;
}
.web-rastreo-badge--admin {
	background: #eef4ff;
	color: #1e4a8a;
	font-size: .72rem;
	margin-left: 8px;
	white-space: nowrap;
}
.web-rastreo-panel--comercios-ok { margin-bottom: 16px; }
.web-pago-totals--rastreo { margin: 0 0 14px; }
.web-rastreo-copy-code {
	margin-left: 8px;
	font-size: .78rem;
	padding: 4px 10px;
	vertical-align: middle;
}
.web-rastreo-hero-meta { flex-wrap: wrap; }

/* P4 — Mis compras · P5 — Checkout 2 pasos */
.web-checkout-step-badge {
	margin: 0 0 14px;
	font-size: .85rem;
	color: #555;
}
.web-checkout-pago-page .web-checkout-pago--step2 {
	margin: 10px 0;
	padding: 10px;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	background: #fafafa;
}
.web-mis-compras-page { max-width: 640px; margin: 0 auto; padding: 8px 0 24px; }
.web-mis-compras-hint { font-size: .88rem; color: #666; margin: 0 0 16px; line-height: 1.45; }
.web-mis-compras-grupo {
	margin-bottom: 18px;
	border: 1px solid #e8e8e8;
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
}
.web-mis-compras-grupo-head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 10px;
	padding: 12px 14px;
	background: #f8fafc;
	border-bottom: 1px solid #eee;
}
.web-mis-compras-grupo-title { margin: 0; font-size: 1rem; font-weight: 600; }
.web-mis-compras-fecha { font-size: .78rem; color: #888; }
.web-mis-compras-pedidos { display: flex; flex-direction: column; }
.web-mis-compras-card {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 4px 12px;
	padding: 12px 14px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f0f0f0;
}
.web-mis-compras-card:last-child { border-bottom: none; }
.web-mis-compras-card:hover { background: #f9fbff; }
.web-mis-compras-local { font-weight: 500; }
.web-mis-compras-total { font-weight: 600; text-align: right; }
.web-mis-compras-link { grid-column: 1 / -1; font-size: .82rem; color: #3483fa; }
.web-mis-compras-estado { grid-column: 1 / -1; font-size: .78rem; color: #666; }
.web-checkout-entrega-modo { margin: 0 0 12px; padding: 10px; border: 1px solid #e8e8e8; border-radius: 8px; }
.web-checkout-entrega-legend { font-size: .88rem; font-weight: 600; margin-bottom: 8px; }
.web-rastreo-panel--entrega { background: #f8fafc; }
.web-rastreo-entrega-modo { margin: 0 0 6px; }
.web-rastreo-entrega-dir { margin: 0; font-size: .9rem; }
.web-rastreo-entrega-alias { margin: 4px 0 0; font-size: .84rem; color: #666; }

.web-rastreo-comprobantes { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 10px; }
.web-rastreo-comprobante {
	display: flex;
	flex-direction: column;
	gap: 4px;
	max-width: 140px;
	text-decoration: none;
	color: #3483fa;
	font-size: .78rem;
}
.web-rastreo-comprobante img {
	width: 140px;
	height: 100px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #f8fafc;
}
.web-rastreo-pago-hint--sena { background: #f3efff; padding: 8px 10px; border-radius: 8px; }

.web-cart-hist {
	margin: 24px 0 8px;
	padding: 16px;
	border: 1px solid #e8e8e8;
	border-radius: 12px;
	background: #fafbfc;
}
.web-cart-hist-heading { margin: 0 0 6px; font-size: 1rem; }
.web-cart-hist-note { margin: 0 0 12px; font-size: .84rem; color: #555; line-height: 1.45; }
.web-cart-hist-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.web-cart-hist-item {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 10px 12px;
	background: #fff;
	border: 1px solid #eee;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
}
.web-cart-hist-item:hover { border-color: #c5d8f7; background: #f9fbff; }
.web-cart-hist-title { font-weight: 500; font-size: .9rem; }
.web-cart-hist-date { font-size: .78rem; color: #888; white-space: nowrap; }
.web-cart-hist-empty { margin: 0; font-size: .88rem; color: #666; }
.web-cart-hist-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.web-cart-page--empty .web-cart-hist { max-width: 640px; margin-left: auto; margin-right: auto; }
