/* Zestia Mercado + Directo structural variants.
   Loaded after storefront_templates.css. No operational value or tenant data
   is defined here: palette values come from the business theme contract. */

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) {
  --zmd-surface: var(--zsf-surface, var(--surface, Canvas));
  --zmd-surface-raised: var(--zsf-surface-raised, color-mix(in srgb, var(--zmd-surface) 92%, var(--zsf-text, CanvasText) 8%));
  --zmd-text: var(--zsf-text, var(--text, CanvasText));
  --zmd-muted: var(--zsf-text-muted, var(--muted, GrayText));
  --zmd-line: var(--zsf-line, var(--border, color-mix(in srgb, CanvasText 20%, transparent)));
  --zmd-brand: var(--zsf-brand-primary, var(--brand, Highlight));
  --zmd-brand-hover: var(--zsf-brand-primary-hover, var(--brand-dark, Highlight));
  --zmd-on-brand: var(--zsf-on-brand, var(--brand-contrast, HighlightText));
  --zmd-focus: var(--zsf-focus, color-mix(in srgb, var(--zmd-brand) 72%, CanvasText));
  width: 100%;
  min-width: 0;
  color: var(--zmd-text);
  container: zmd-storefront / inline-size;
}

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *,
body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *::before,
body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *::after {
  box-sizing: border-box;
}

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
  :is(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--zmd-focus);
  outline-offset: 3px;
}

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
  :is(.button, button[type="submit"]:not(.toggle-button):not(.stepper-btn):not(.subnav__link), .main-menu__link.active) {
  color: var(--zmd-on-brand);
  -webkit-text-fill-color: var(--zmd-on-brand);
}

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
  :is(.muted, .product-desc, .product-card__allergens, .mini-cart__price) {
  color: var(--zmd-muted);
}

body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
  :is(.button, .ghost-button, button, input, select, textarea) {
  min-height: 44px;
}

/* ================================================================== */
/* Mercado: category sidebar, comparison-first catalogue and compact
   operational panels. */

body.app-body.storefront-shell .zst-mercado-adapter {
  --zmd-market-sidebar: clamp(210px, 16vw, 252px);
  --zmd-market-cart: clamp(290px, 22vw, 344px);
  --zmd-market-gap: clamp(12px, 1.4vw, 22px);
}

body.app-body.storefront-shell .zst-mercado-adapter__workspace {
  width: 100%;
  min-width: 0;
}

body.app-body.storefront-shell .zst-mercado-adapter :is(.card, .product-card, .featured-card, .mini-cart, .auth-card, .cart-panel, .checkout-panel) {
  border-color: var(--zmd-line);
  background: var(--zmd-surface);
  color: var(--zmd-text);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--zmd-text) 9%, transparent);
}

body.app-body.storefront-shell .zst-mercado-adapter--home :is(.category-grid, .featured-grid) {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--home .category-card {
  min-height: clamp(150px, 14vw, 230px);
}

body.app-body.storefront-shell .zst-mercado-adapter--home .promo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-main {
  min-width: 0;
  display: grid;
  grid-template-columns: var(--zmd-market-sidebar) minmax(0, 1fr);
  align-items: start;
  gap: 0 var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu
  :is(.menu-header, .lunch-banner, .empty-state) {
  grid-column: 1 / -1;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .storefront-catalog-tools {
  grid-column: 2;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .main-menu {
  grid-column: 1;
  grid-row: 2 / span 80;
  position: sticky;
  top: 156px;
  max-height: calc(100svh - 180px);
  margin: 0;
  padding: 10px;
  overflow-y: auto;
  border: 1px solid var(--zmd-line);
  border-radius: 14px;
  background: var(--zmd-surface);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu
  .lunch-banner + .storefront-catalog-tools + .main-menu {
  grid-row: 3 / span 80;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .main-menu__list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 4px;
  padding: 0;
  overflow: visible;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .main-menu__item {
  min-width: 0;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .main-menu__link {
  width: 100%;
  min-height: 44px;
  justify-content: flex-start;
  padding: 9px 11px;
  overflow-wrap: anywhere;
  text-align: left;
  border-radius: 9px;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .main-menu__link.active {
  background: var(--zmd-brand);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-section {
  grid-column: 2;
  grid-row: 3;
  min-width: 0;
  margin: 0 0 clamp(26px, 4vw, 54px);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu
  .lunch-banner ~ .menu-section {
  grid-row: 4;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: row dense;
  align-items: stretch;
  gap: var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card--compact {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  min-height: 0;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__media-link,
body.app-body.storefront-shell .zst-mercado-adapter--menu .product-media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-body--compact {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* The market layout intentionally keeps four dense comparison cards beside
   the category rail. Stack canonical title and action rows so neither the
   product name nor its primary CTA can collapse into vertical glyphs. */
body.app-body.storefront-shell .zst-mercado-adapter--menu .product-title,
body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__actions {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-title h3,
body.app-body.storefront-shell .zst-mercado-adapter--menu .product-title .price {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-title .price {
  justify-self: start;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-form--quick-add,
body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__primary-action {
  width: 100%;
  min-width: 0;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__primary-action {
  min-height: 46px;
  padding-inline: 10px;
  white-space: normal;
  overflow-wrap: anywhere;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__details-link {
  width: 100%;
  min-height: 44px;
  justify-content: flex-start;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .product-card__actions {
  margin-top: auto;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-shell > .mini-cart {
  display: none;
}

body.app-body.storefront-shell .zst-mercado-adapter--menu .mini-cart__items {
  max-height: calc(100svh - 380px);
  overflow-y: auto;
}

body.app-body.storefront-shell .zst-mercado-adapter--category .featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--zmd-market-gap);
}

body.app-body.storefront-shell .zst-mercado-adapter--category .featured-card--product-list {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

body.app-body.storefront-shell .zst-mercado-adapter--product .product-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  align-items: start;
  gap: clamp(22px, 3vw, 42px);
}

body.app-body.storefront-shell .zst-mercado-adapter--product .product-page__facts,
body.app-body.storefront-shell .zst-mercado-adapter--product .product-page__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.app-body.storefront-shell .zst-mercado-adapter--cart .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  align-items: start;
  gap: clamp(18px, 2.4vw, 34px);
}

body.app-body.storefront-shell .zst-mercado-adapter--cart .checkout-panel {
  position: sticky;
  top: 112px;
}

body.app-body.storefront-shell .zst-mercado-adapter--account :is(.account-workspace, .portal-account-workspace) {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(18px, 2.4vw, 34px);
}

body.app-body.storefront-shell .zst-mercado-adapter--role-auth .auth-shell {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  align-items: stretch;
}

body.app-body.storefront-shell .zst-mercado-adapter--role-legal .legal-page {
  width: min(100%, 74rem);
  margin-inline: auto;
  line-height: 1.72;
}

/* ================================================================== */
/* Directo: fast add actions and a persistent operational cart. */

body.app-body.storefront-shell .zst-directo-adapter {
  --zmd-direct-cart: clamp(320px, 25vw, 390px);
  --zmd-direct-gap: clamp(12px, 1.5vw, 24px);
}

body.app-body.storefront-shell .zst-directo-adapter__workspace {
  width: 100%;
  min-width: 0;
}

body.app-body.storefront-shell .zst-directo-adapter :is(.card, .product-card, .mini-cart, .auth-card, .cart-panel, .checkout-panel) {
  border-color: color-mix(in srgb, var(--zmd-brand) 34%, var(--zmd-line));
  background: var(--zmd-surface);
  color: var(--zmd-text);
}

body.app-body.storefront-shell .zst-directo-adapter :is(.button, button[type="submit"]:not(.toggle-button):not(.stepper-btn):not(.subnav__link)) {
  background: var(--zmd-brand);
  border-color: var(--zmd-brand);
}

body.app-body.storefront-shell .zst-directo-adapter :is(.button, button[type="submit"]:not(.toggle-button):not(.stepper-btn):not(.subnav__link)):hover {
  background: var(--zmd-brand-hover);
  border-color: var(--zmd-brand-hover);
}

body.app-body.storefront-shell .zst-directo-adapter--home :is(.category-grid, .featured-grid) {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

body.app-body.storefront-shell .zst-directo-adapter--home .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.app-body.storefront-shell .zst-directo-adapter--menu .menu-shell {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--zmd-direct-cart);
  align-items: start;
  gap: var(--zmd-direct-gap);
}

body.app-body.storefront-shell .zst-directo-adapter--menu .menu-main {
  min-width: 0;
  display: block;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .main-menu {
  position: sticky;
  top: 260px;
  z-index: 22;
  margin: 0 0 18px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--zmd-line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--zmd-surface) 94%, transparent);
  backdrop-filter: blur(14px);
}

body.app-body.storefront-shell .zst-directo-adapter--menu .main-menu__list {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x proximity;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .main-menu__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .main-menu__link {
  min-height: 44px;
  padding-inline: 13px;
  border-radius: 10px;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .main-menu__link.active {
  background: var(--zmd-brand);
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: var(--zmd-direct-gap);
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-card--compact {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  border-width: 2px;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-body--compact {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-desc--compact {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-form--quick-add,
body.app-body.storefront-shell .zst-directo-adapter--menu .product-card__primary-action {
  width: 100%;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .product-card__primary-action {
  min-height: 50px;
  justify-content: center;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .menu-shell > .mini-cart {
  position: sticky;
  top: 156px;
  max-height: calc(100svh - 180px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-width: 2px;
  box-shadow: 0 18px 44px color-mix(in srgb, var(--zmd-text) 18%, transparent);
}

body.app-body.storefront-shell .zst-directo-adapter--menu .mini-cart__items {
  max-height: none;
  min-height: 0;
  overflow-y: auto;
}

body.app-body.storefront-shell .zst-directo-adapter--menu .mini-cart__footer .button {
  width: 100%;
  min-height: 52px;
}

body.app-body.storefront-shell .zst-directo-adapter--category .featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--zmd-direct-gap);
}

body.app-body.storefront-shell .zst-directo-adapter--product .product-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(350px, .55fr);
  align-items: start;
  gap: clamp(24px, 3vw, 48px);
}

body.app-body.storefront-shell .zst-directo-adapter--product .product-page__summary {
  position: sticky;
  top: 90px;
}

body.app-body.storefront-shell .zst-directo-adapter--product .product-page__cta-row,
body.app-body.storefront-shell .zst-directo-adapter--product .product-form .product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 9px;
}

body.app-body.storefront-shell .zst-directo-adapter--product :is(.product-page__primary-action, .product-add-button) {
  width: 100%;
  min-height: 54px;
}

body.app-body.storefront-shell .zst-directo-adapter--cart .cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, .6fr);
  align-items: start;
  gap: clamp(20px, 3vw, 42px);
}

body.app-body.storefront-shell .zst-directo-adapter--cart .checkout-panel {
  position: sticky;
  top: 90px;
  border-width: 2px;
}

body.app-body.storefront-shell .zst-directo-adapter--account :is(.account-workspace, .portal-account-workspace) {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  gap: clamp(20px, 3vw, 42px);
}

body.app-body.storefront-shell .zst-directo-adapter--account .portal-account-panel {
  position: sticky;
  top: 90px;
  align-self: start;
}

body.app-body.storefront-shell .zst-directo-adapter--role-auth .auth-shell {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(380px, 1.3fr);
  align-items: stretch;
}

body.app-body.storefront-shell .zst-directo-adapter--role-auth .auth-card .button {
  width: 100%;
  min-height: 52px;
}

body.app-body.storefront-shell .zst-directo-adapter--role-legal .legal-page {
  width: min(100%, 68rem);
  margin-inline: auto;
  line-height: 1.72;
}

/* ================================================================== */
/* Tablet: Mercado keeps its category rail, Directo keeps its cart until the
   viewport can no longer sustain a safe two-column purchase workspace. */

@media (max-width: 1280px) {
  body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-shell > .mini-cart {
    display: none;
  }

  body.app-body.storefront-shell .zst-mercado-adapter--menu .product-grid,
  body.app-body.storefront-shell .zst-mercado-adapter--category .featured-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.app-body.storefront-shell .zst-directo-adapter--menu .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  body.app-body.storefront-shell .zst-mercado-adapter--home :is(.category-grid, .featured-grid),
  body.app-body.storefront-shell .zst-directo-adapter--home :is(.category-grid, .featured-grid) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-main {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  body.app-body.storefront-shell .zst-mercado-adapter--menu .product-grid,
  body.app-body.storefront-shell .zst-mercado-adapter--category .featured-grid,
  body.app-body.storefront-shell .zst-directo-adapter--category .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.app-body.storefront-shell .zst-directo-adapter--menu .menu-shell {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 330px);
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
    :is(.product-page__hero, .cart-layout, .account-workspace, .portal-account-workspace, .auth-shell) {
    grid-template-columns: minmax(0, 1fr);
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
    :is(.product-page__summary, .checkout-panel, .portal-account-panel) {
    position: static;
  }
}

/* Mobile: category navigation becomes a horizontal rail and the canonical
   dock/cart drawer remains the only persistent cart control. */
@media (max-width: 768px) {
  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .menu-shell,
  body.app-body.storefront-shell .zst-mercado-adapter--menu .menu-main {
    display: block;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu)
    .menu-shell > .mini-cart {
    display: none;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .main-menu {
    position: sticky;
    top: 62px;
    z-index: 22;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin-bottom: 16px;
    padding: 7px;
    overflow: hidden;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .main-menu__list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .main-menu__item {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .main-menu__link {
    width: auto;
    white-space: nowrap;
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter--menu, .zst-directo-adapter--menu) .menu-section {
    width: 100%;
    margin-bottom: 28px;
  }

  body.app-body.storefront-shell .zst-mercado-adapter--menu .product-grid,
  body.app-body.storefront-shell .zst-directo-adapter--menu .product-grid,
  body.app-body.storefront-shell .zst-mercado-adapter--category .featured-grid,
  body.app-body.storefront-shell .zst-directo-adapter--category .featured-grid,
  body.app-body.storefront-shell .zst-mercado-adapter--home .promo-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.app-body.storefront-shell .zst-mercado-adapter--home :is(.category-grid, .featured-grid),
  body.app-body.storefront-shell .zst-directo-adapter--home :is(.category-grid, .featured-grid) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.app-body.storefront-shell .zst-mercado-adapter--product .product-page__facts,
  body.app-body.storefront-shell .zst-mercado-adapter--product .product-page__options,
  body.app-body.storefront-shell .zst-directo-adapter--home .steps-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter)
    :is(.product-card, .featured-card, .cart-panel, .checkout-panel, .auth-card) {
    min-width: 0;
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  body.app-body.storefront-shell .zst-mercado-adapter--home :is(.category-grid, .featured-grid),
  body.app-body.storefront-shell .zst-directo-adapter--home :is(.category-grid, .featured-grid) {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *,
  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *::before,
  body.app-body.storefront-shell :is(.zst-mercado-adapter, .zst-directo-adapter) *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
