/* Appearance V2 pilot. Every selector is scoped to the opt-in html class. */

html.lz-app-v2 {
  --lz-v2-button: rgba(39, 41, 62, 1);
  --lz-v2-button-text: #fff;
  --lz-v2-card-radius: 4px;
  --lz-v2-surface: #fff;
  --lz-v2-surface-muted: #f5f5f5;
  --lz-v2-text: #303030;
  --lz-v2-text-muted: #777;
  --lz-v2-border: rgba(28, 33, 39, .06);
  --lz-v2-media-ratio: 1 / 1;
  --lz-v2-space-1: 4px;
  --lz-v2-space-2: 8px;
  --lz-v2-space-3: 12px;
  --lz-v2-space-4: 16px;
  --lz-v2-space-5: 20px;
  --lz-v2-space-6: 24px;
  --lz-v2-space-8: 32px;
  --lz-v2-space-10: 40px;
  --lz-v2-space-12: 48px;
  --lz-v2-card-padding: var(--lz-v2-space-4);
  --lz-v2-card-gap: var(--lz-v2-space-3);
  --lz-v2-cta-height: 44px;
  --lz-v2-cta-inset: var(--lz-v2-space-3);
  --lz-v2-focus-ring: rgba(0, 98, 190, .42);
  /* Keep the page perceptibly separate from white product cards without
     introducing a visible gray cast in the light storefront. */
  --lz-v2-page: #fbfcfd;
}

html.lz-app-v2 body,
html.lz-app-v2 .body-estabelecimento,
html.lz-app-v2 .middle {
  background-color: var(--lz-v2-page, initial);
}

html.lz-app-v2 .header .top {
  background-color: var(--lz-v2-header);
  color: var(--lz-v2-header-text);
}

html.lz-app-v2 .header .top .brand span,
html.lz-app-v2 .header .top .holder-shop-bag span,
html.lz-app-v2 .header .top .holder-shop-bag i,
html.lz-app-v2 .header .top .user-menu i {
  color: var(--lz-v2-header-text);
}

html.lz-app-v2 .footer,
html.lz-app-v2 .footer-info {
  background-color: var(--lz-v2-footer, var(--lz-v2-button));
  color: var(--lz-v2-footer-text, var(--lz-v2-button-text));
}

html.lz-app-v2.lz-card-square { --lz-v2-card-radius: 2px; }
html.lz-app-v2.lz-card-soft { --lz-v2-card-radius: 12px; }
html.lz-app-v2.lz-card-rounded { --lz-v2-card-radius: 18px; }

html.lz-app-v2.lz-image-square { --lz-v2-media-ratio: 1 / 1; }
html.lz-app-v2.lz-image-portrait { --lz-v2-media-ratio: 4 / 5; }
html.lz-app-v2.lz-image-landscape { --lz-v2-media-ratio: 3 / 2; }

html.lz-app-v2.lz-card-square .produto,
html.lz-app-v2.lz-card-square .novoproduto,
html.lz-app-v2.lz-card-square .produto-detalhes,
html.lz-app-v2.lz-card-square .sacola-table,
html.lz-app-v2.lz-card-square .pedido-resumo,
html.lz-app-v2.lz-card-soft .produto,
html.lz-app-v2.lz-card-soft .novoproduto,
html.lz-app-v2.lz-card-soft .produto-detalhes,
html.lz-app-v2.lz-card-soft .sacola-table,
html.lz-app-v2.lz-card-soft .pedido-resumo,
html.lz-app-v2.lz-card-rounded .produto,
html.lz-app-v2.lz-card-rounded .novoproduto,
html.lz-app-v2.lz-card-rounded .produto-detalhes,
html.lz-app-v2.lz-card-rounded .sacola-table,
html.lz-app-v2.lz-card-rounded .pedido-resumo {
  overflow: hidden;
  border-radius: var(--lz-v2-card-radius) !important;
}

html.lz-app-v2.lz-image-square .produto .capa,
html.lz-app-v2.lz-image-square .novoproduto .capa {
  aspect-ratio: 1 / 1;
  height: auto !important;
}

html.lz-app-v2.lz-image-portrait .produto .capa,
html.lz-app-v2.lz-image-portrait .novoproduto .capa {
  aspect-ratio: 4 / 5;
  height: auto !important;
}

html.lz-app-v2.lz-image-landscape .produto .capa,
html.lz-app-v2.lz-image-landscape .novoproduto .capa {
  aspect-ratio: 3 / 2;
  height: auto !important;
}

html.lz-app-v2.lz-image-square .produto .capa,
html.lz-app-v2.lz-image-portrait .produto .capa,
html.lz-app-v2.lz-image-landscape .produto .capa {
  background-position: center !important;
  background-size: cover !important;
}

html.lz-app-v2.lz-image-square .novoproduto .capa img,
html.lz-app-v2.lz-image-portrait .novoproduto .capa img,
html.lz-app-v2.lz-image-landscape .novoproduto .capa img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.lz-app-v2.lz-button-a .botao-acao,
html.lz-app-v2.lz-button-b .botao-acao,
html.lz-app-v2.lz-button-c .botao-acao,
html.lz-app-v2.lz-button-a .sacola-adicionar,
html.lz-app-v2.lz-button-b .sacola-adicionar,
html.lz-app-v2.lz-button-c .sacola-adicionar {
  display: inline-flex !important;
  min-height: 48px;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  padding: 0 16px !important;
  border: 1px solid var(--lz-v2-button) !important;
  background: var(--lz-v2-button) !important;
  color: var(--lz-v2-button-text) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1 !important;
  text-align: center;
}

html.lz-app-v2.lz-button-a .botao-acao i,
html.lz-app-v2.lz-button-b .botao-acao i,
html.lz-app-v2.lz-button-c .botao-acao i,
html.lz-app-v2.lz-button-a .sacola-adicionar i,
html.lz-app-v2.lz-button-b .sacola-adicionar i,
html.lz-app-v2.lz-button-c .sacola-adicionar i,
html.lz-app-v2.lz-button-a .botao-acao span,
html.lz-app-v2.lz-button-b .botao-acao span,
html.lz-app-v2.lz-button-c .botao-acao span,
html.lz-app-v2.lz-button-a .sacola-adicionar span,
html.lz-app-v2.lz-button-b .sacola-adicionar span,
html.lz-app-v2.lz-button-c .sacola-adicionar span {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  line-height: 1 !important;
  transform: none !important;
}

html.lz-app-v2.lz-button-a .botao-acao,
html.lz-app-v2.lz-button-a .sacola-adicionar {
  border-radius: 12px !important;
}

html.lz-app-v2.lz-button-b .botao-acao,
html.lz-app-v2.lz-button-b .sacola-adicionar {
  width: 100% !important;
  min-height: 54px;
  border-radius: 14px !important;
}

html.lz-app-v2.lz-button-c .botao-acao,
html.lz-app-v2.lz-button-c .sacola-adicionar {
  min-height: 44px;
  border-radius: 22px !important;
  padding-inline: 20px !important;
}

html.lz-app-v2 .lz-theme-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin: 0 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

html.lz-app-v2 .lz-theme-toggle i {
  margin: 0 !important;
  color: currentColor !important;
  font-size: 19px;
  line-height: 1;
}

html.lz-app-v2 .lz-theme-toggle:focus-visible {
  outline: 3px solid rgba(0, 98, 190, .35);
  outline-offset: 2px;
}

html.lz-app-v2 .lz-theme-toggle-desktop {
  float: right;
  width: 34px;
  height: 34px;
  margin: -7px 0 0 10px;
  color: #fff;
}

html.lz-app-v2 .lz-theme-toggle-desktop i {
  font-size: 16px;
}

html.lz-app-v2 .header .top .visible-sm.visible-xs .user-info {
  position: relative;
}

html.lz-app-v2 .lz-theme-toggle-mobile {
  position: absolute;
  top: -7px;
  right: 48px;
  margin: 0;
}

/* The icon-font moon is visually unbalanced at small sizes; draw a crisp crescent instead. */
html.lz-app-v2.lz-theme-light .lz-theme-toggle i.lni-night {
  position: relative;
  width: 18px;
  height: 18px;
  font-size: 0 !important;
}

html.lz-app-v2.lz-theme-light .lz-theme-toggle i.lni-night::before {
  content: "" !important;
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
}

html.lz-app-v2.lz-theme-light .lz-theme-toggle i.lni-night::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--lz-v2-header, var(--lz-v2-button));
}

html.lz-app-v2.lz-theme-light .header .top .holder-shop-bag .counter {
  border-color: var(--lz-v2-header) !important;
  background: #333 !important;
  color: #fff !important;
}

html.lz-app-v2 .lz-discount-badge {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  margin: 0 7px;
  padding: 3px 7px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #b32727;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  vertical-align: middle;
}

html.lz-app-v2.lz-theme-dark {
  color-scheme: dark;
  /* Override the light default so every legacy page surface remains continuous. */
  --lz-v2-page: #121416;
  --lz-v2-surface: #1d1f22;
  --lz-v2-surface-muted: #26292d;
  --lz-v2-text: #f3f3f3;
  --lz-v2-text-muted: #b7b9bd;
  --lz-v2-border: rgba(255, 255, 255, .08);
}

html.lz-app-v2.lz-theme-dark body,
html.lz-app-v2.lz-theme-dark .body-estabelecimento,
html.lz-app-v2.lz-theme-dark .middle,
html.lz-app-v2.lz-theme-dark .sceneElement {
  background: var(--lz-v2-page, #121416) !important;
  color: var(--lz-v2-text);
}

html.lz-app-v2.lz-theme-dark .produto,
html.lz-app-v2.lz-theme-dark .novoproduto,
html.lz-app-v2.lz-theme-dark .produto-detalhes,
html.lz-app-v2.lz-theme-dark .app-infos,
html.lz-app-v2.lz-theme-dark .sacola-table,
html.lz-app-v2.lz-theme-dark .pedido-resumo,
html.lz-app-v2.lz-theme-dark .fake-select {
  border-color: var(--lz-v2-border) !important;
  background-color: var(--lz-v2-surface) !important;
  color: var(--lz-v2-text) !important;
}

/* Form controls stay inside LojaZap-owned surfaces. Third-party widgets such as
   ProChat are mounted directly under body and must keep their own theme. */
html.lz-app-v2.lz-theme-dark .header input,
html.lz-app-v2.lz-theme-dark .header textarea,
html.lz-app-v2.lz-theme-dark .header select,
html.lz-app-v2.lz-theme-dark .middle input,
html.lz-app-v2.lz-theme-dark .middle textarea,
html.lz-app-v2.lz-theme-dark .middle select,
html.lz-app-v2.lz-theme-dark .sceneElement input,
html.lz-app-v2.lz-theme-dark .sceneElement textarea,
html.lz-app-v2.lz-theme-dark .sceneElement select {
  border-color: var(--lz-v2-border) !important;
  background-color: var(--lz-v2-surface) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .produto a,
html.lz-app-v2.lz-theme-dark .novoproduto a,
html.lz-app-v2.lz-theme-dark .produto span,
html.lz-app-v2.lz-theme-dark .novoproduto span,
html.lz-app-v2.lz-theme-dark .app-infos .title,
html.lz-app-v2.lz-theme-dark .app-infos .description,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge span,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge a,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge i,
html.lz-app-v2.lz-theme-dark .title-line,
html.lz-app-v2.lz-theme-dark .subtotal,
html.lz-app-v2.lz-theme-dark .categoria .title {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .header label,
html.lz-app-v2.lz-theme-dark .middle label,
html.lz-app-v2.lz-theme-dark .sceneElement label {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .header .top .counter {
  border-color: var(--lz-v2-surface) !important;
  background-color: var(--lz-v2-button) !important;
  color: var(--lz-v2-button-text) !important;
}

html.lz-app-v2.lz-theme-dark .header .top .brand a,
html.lz-app-v2.lz-theme-dark .header .top .brand a span,
html.lz-app-v2.lz-theme-dark .header .top .holder-shop-bag,
html.lz-app-v2.lz-theme-dark .header .top .cash,
html.lz-app-v2.lz-theme-dark .navigator .nav > li > a,
html.lz-app-v2.lz-theme-dark .navigator .nav > li > span,
html.lz-app-v2.lz-theme-dark .title-icon > span,
html.lz-app-v2.lz-theme-dark .bread,
html.lz-app-v2.lz-theme-dark .bread a,
html.lz-app-v2.lz-theme-dark .bread span,
html.lz-app-v2.lz-theme-dark .produto-detalhes .valor_anterior span,
html.lz-app-v2.lz-theme-dark .produto-detalhes .thelabel,
html.lz-app-v2.lz-theme-dark .sacola-table a,
html.lz-app-v2.lz-theme-dark .sacola-table .nome,
html.lz-app-v2.lz-theme-dark .sacola-table .sacola-remover,
html.lz-app-v2.lz-theme-dark .sidebar-info .title span,
html.lz-app-v2.lz-theme-dark .sidebar-info .content,
html.lz-app-v2.lz-theme-dark .sidebar-info .listitem span {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .header .top .brand .colored {
  color: var(--lz-v2-header, var(--lz-v2-button)) !important;
}

html.lz-app-v2.lz-theme-dark .header input::placeholder,
html.lz-app-v2.lz-theme-dark .header textarea::placeholder,
html.lz-app-v2.lz-theme-dark .middle input::placeholder,
html.lz-app-v2.lz-theme-dark .middle textarea::placeholder,
html.lz-app-v2.lz-theme-dark .sceneElement input::placeholder,
html.lz-app-v2.lz-theme-dark .sceneElement textarea::placeholder {
  color: var(--lz-v2-text-muted) !important;
  opacity: 1;
}

html.lz-app-v2.lz-theme-dark .sacola-table .nulled {
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2.lz-theme-dark .app-infos .description,
html.lz-app-v2.lz-theme-dark .produto .descricao,
html.lz-app-v2.lz-theme-dark .produto .descricao span,
html.lz-app-v2.lz-theme-dark .novoproduto .descricao,
html.lz-app-v2.lz-theme-dark .novoproduto .descricao span,
html.lz-app-v2.lz-theme-dark .produto-detalhes .descricao,
html.lz-app-v2.lz-theme-dark .produto-detalhes .descricao span {
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2 .produto-detalhes .thelabel-normal {
  line-height: 1.35;
  white-space: nowrap;
}

/* Keep legacy Bootstrap rows inside the rounded pilot cards. */
html.lz-app-v2 .produto-detalhes > .row {
  margin-right: 0;
  margin-left: 0;
}

html.lz-app-v2 .produto-detalhes > .row > [class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

html.lz-app-v2 .produto-detalhes {
  padding-top: 10px;
  padding-bottom: 12px;
}

/* Match the product gallery to the card finish selected by the merchant. */
html.lz-app-v2 #carouselgaleria,
html.lz-app-v2 #carouselgaleria .carousel-inner,
html.lz-app-v2 #carouselgaleria .carousel-inner > .item,
html.lz-app-v2 #carouselgaleria .carousel-inner > .item > a,
html.lz-app-v2 #carouselgaleria .carousel-inner > .item img {
  overflow: hidden;
  border-radius: var(--lz-v2-card-radius) !important;
}

html.lz-app-v2 #carouselgaleria .carousel-inner > .item img {
  display: block;
  width: 100%;
}

html.lz-app-v2 .produto,
html.lz-app-v2 .novoproduto,
html.lz-app-v2 .produto-detalhes,
html.lz-app-v2 .sacola-table {
  border: 1px solid var(--lz-v2-border) !important;
}

html.lz-app-v2 .produto .detalhes,
html.lz-app-v2 .novoproduto .detalhes {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px !important;
}

html.lz-app-v2 .produto .detalhes i,
html.lz-app-v2 .novoproduto .detalhes i,
html.lz-app-v2 .sacola-adicionar i {
  flex: 0 0 auto;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1 !important;
}

html.lz-app-v2 .produto .detalhes span,
html.lz-app-v2 .novoproduto .detalhes span,
html.lz-app-v2 .sacola-adicionar > span {
  margin: 0 !important;
  line-height: 1.2 !important;
  transform: translateY(1px);
}

html.lz-app-v2 .produto .apenas.apenas-single {
  white-space: nowrap;
}

html.lz-app-v2 .produto .apenas.apenas-single br {
  display: none;
}

html.lz-app-v2 .sacola-adicionar {
  display: inline-flex !important;
  min-height: 48px;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  text-align: center;
}

/* Neutralize Bootstrap negative gutters inside the product action bar. */
html.lz-app-v2 .subtotal-adicionar {
  padding: 16px 18px !important;
  overflow: hidden;
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: var(--lz-v2-card-radius) !important;
  background: var(--lz-v2-surface) !important;
}

/* Keep observations and the purchase summary in the same card language. */
html.lz-app-v2 .comprar .line.observacoes {
  margin: 14px 0;
  padding: 16px 18px !important;
  overflow: hidden;
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: var(--lz-v2-card-radius) !important;
  background: var(--lz-v2-surface) !important;
}

html.lz-app-v2 .comprar .line.observacoes > .row {
  margin-right: -8px;
  margin-left: -8px;
}

html.lz-app-v2 .comprar .line.observacoes > .row > [class*="col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

html.lz-app-v2 .comprar .line.observacoes textarea {
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: max(4px, calc(var(--lz-v2-card-radius) - 6px)) !important;
  background: var(--lz-v2-surface-muted) !important;
}

html.lz-app-v2 .subtotal-adicionar > .row {
  display: flex;
  align-items: center;
  margin-right: 0;
  margin-left: 0;
}

html.lz-app-v2 .subtotal-adicionar > .row > [class*="col-"] {
  padding-right: 8px;
  padding-left: 8px;
}

html.lz-app-v2 .botao-acao {
  display: inline-flex !important;
  min-height: 46px;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  padding: 0 16px !important;
  line-height: 1.2 !important;
  text-align: center;
}

html.lz-app-v2 .botao-acao i,
html.lz-app-v2 .botao-acao > i,
html.lz-app-v2 .botao-acao > span {
  flex: 0 0 auto;
  margin: 0 !important;
  line-height: 1 !important;
}

html.lz-app-v2 .botao-acao i,
html.lz-app-v2 .botao-acao > i {
  font-size: 16px !important;
}

html.lz-app-v2.lz-theme-dark .navigator,
html.lz-app-v2.lz-theme-dark .clearline,
html.lz-app-v2.lz-theme-dark .line {
  border-color: var(--lz-v2-border) !important;
}

/* Complete dark-mode coverage for legacy storefront components. */
html.lz-app-v2.lz-theme-dark .app-infos {
  background: var(--lz-v2-page, #121416) !important;
}

html.lz-app-v2.lz-theme-dark .search-bar form,
html.lz-app-v2.lz-theme-dark .search-bar-mobile form {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: 8px;
  background: var(--lz-v2-surface) !important;
}

html.lz-app-v2.lz-theme-dark .search-bar input[type="text"],
html.lz-app-v2.lz-theme-dark .search-bar-mobile input[type="text"] {
  float: none !important;
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
  padding: 0 14px !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .search-bar button,
html.lz-app-v2.lz-theme-dark .search-bar-mobile button {
  display: inline-flex !important;
  float: none !important;
  flex: 0 0 48px;
  width: 48px !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 0 !important;
  border-left: 1px solid var(--lz-v2-border) !important;
  background: var(--lz-v2-surface-muted) !important;
}

html.lz-app-v2.lz-theme-dark .search-bar button i,
html.lz-app-v2.lz-theme-dark .search-bar-mobile button i {
  width: auto !important;
  margin: 0 !important;
  color: var(--lz-v2-button) !important;
  font-size: 17px !important;
  line-height: 1 !important;
  transform: none !important;
}

html.lz-app-v2.lz-theme-dark #sidrLeft,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidr-inner,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-header,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-content,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-info,
html.lz-app-v2.lz-theme-dark .sidr.left,
html.lz-app-v2.lz-theme-dark .sidr.left .sidr-inner,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-header,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-content,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-info {
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark #sidrLeft a,
html.lz-app-v2.lz-theme-dark #sidrLeft i,
html.lz-app-v2.lz-theme-dark #sidrLeft span,
html.lz-app-v2.lz-theme-dark #sidrLeft .title,
html.lz-app-v2.lz-theme-dark #sidrLeft .content,
html.lz-app-v2.lz-theme-dark .sidr.left a,
html.lz-app-v2.lz-theme-dark .sidr.left i,
html.lz-app-v2.lz-theme-dark .sidr.left span,
html.lz-app-v2.lz-theme-dark .sidr.left .title,
html.lz-app-v2.lz-theme-dark .sidr.left .content {
  border-color: var(--lz-v2-border) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-info .title > i,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-info .listitem > i,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-info .listitem i,
html.lz-app-v2.lz-theme-dark #sidrLeft .sidebar-info .social i,
html.lz-app-v2.lz-theme-dark #sidrLeft .close-sidebar,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-info .title > i,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-info .listitem > i,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-info .listitem i,
html.lz-app-v2.lz-theme-dark .sidr.left .sidebar-info .social i,
html.lz-app-v2.lz-theme-dark .sidr.left .close-sidebar {
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2.lz-theme-dark .tv-infinite-menu {
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-page, #121416) !important;
}

html.lz-app-v2.lz-theme-dark .tv-infinite-menu a {
  border-color: var(--lz-v2-border) !important;
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2.lz-theme-dark .tv-infinite-menu a.active,
html.lz-app-v2.lz-theme-dark .tv-infinite-menu a:hover,
html.lz-app-v2.lz-theme-dark .tv-infinite-menu a:focus {
  border-color: var(--lz-v2-button) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .produto,
html.lz-app-v2.lz-theme-dark .novoproduto,
html.lz-app-v2.lz-theme-dark .produto-detalhes,
html.lz-app-v2.lz-theme-dark .sacola-table {
  border-color: var(--lz-v2-border) !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
}

html.lz-app-v2.lz-theme-dark .produto .descricao,
html.lz-app-v2.lz-theme-dark .produto .descricao *,
html.lz-app-v2.lz-theme-dark .novoproduto .descricao,
html.lz-app-v2.lz-theme-dark .novoproduto .descricao *,
html.lz-app-v2.lz-theme-dark .produto-detalhes .descricao,
html.lz-app-v2.lz-theme-dark .produto-detalhes .descricao * {
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2.lz-theme-dark .produto .valor,
html.lz-app-v2.lz-theme-dark .produto .valor *,
html.lz-app-v2.lz-theme-dark .novoproduto .valor,
html.lz-app-v2.lz-theme-dark .novoproduto .valor *,
html.lz-app-v2.lz-theme-dark .produto-detalhes .valor,
html.lz-app-v2.lz-theme-dark .produto-detalhes .valor * {
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2.lz-theme-dark .produto-detalhes .ref,
html.lz-app-v2.lz-theme-dark .produto-detalhes .ref span,
html.lz-app-v2.lz-theme-dark .produto-detalhes .ref a {
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2.lz-theme-dark .produto-detalhes .ref .btn-success,
html.lz-app-v2.lz-theme-dark .produto-detalhes .ref .btn-success i {
  color: #fff !important;
}

html.lz-app-v2.lz-theme-dark .comprar .line-variacao {
  border: 1px solid var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
}

html.lz-app-v2.lz-theme-dark .line-variacao .thelabel,
html.lz-app-v2.lz-theme-dark .line-variacao .escolhas,
html.lz-app-v2.lz-theme-dark .opcoes .opcao .titulo {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .opcoes .opcao {
  border: 1px solid var(--lz-v2-border) !important;
  background: var(--lz-v2-surface-muted) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .opcoes .opcao .check {
  border-right: 1px solid var(--lz-v2-border);
  background: rgba(255, 255, 255, .04) !important;
}

html.lz-app-v2.lz-theme-dark .opcoes .opcao.active {
  border-color: var(--lz-v2-button) !important;
  box-shadow: 0 0 0 1px var(--lz-v2-button);
}

html.lz-app-v2.lz-theme-dark .opcoes .opcao.active .check {
  border-color: var(--lz-v2-button);
  background: var(--lz-v2-button) !important;
}

html.lz-app-v2.lz-theme-dark .opcoes .opcao .descricao {
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2.lz-theme-dark .subtotal-adicionar {
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: var(--lz-v2-card-radius) !important;
  background: var(--lz-v2-surface) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .subtotal-adicionar .subtotal,
html.lz-app-v2.lz-theme-dark .subtotal-adicionar .subtotal strong,
html.lz-app-v2.lz-theme-dark .subtotal-adicionar .subtotal span {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .modal-content {
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .modal-header {
  border-color: var(--lz-v2-border) !important;
}

html.lz-app-v2.lz-theme-dark .modal-header .close,
html.lz-app-v2.lz-theme-dark .modal-header .close i,
html.lz-app-v2.lz-theme-dark .modal .adicionado .title,
html.lz-app-v2.lz-theme-dark .modal .adicionado .text {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .modal .adicionado .checkicon {
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2.lz-theme-dark .modal .botao-acao-gray {
  border: 1px solid var(--lz-v2-border) !important;
  background: var(--lz-v2-surface-muted) !important;
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .modal .botao-acao-gray i,
html.lz-app-v2.lz-theme-dark .modal .botao-acao-gray span {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .title-line span,
html.lz-app-v2.lz-theme-dark .checkout-switch-panel,
html.lz-app-v2.lz-theme-dark .checkout-switch-panel label,
html.lz-app-v2.lz-theme-dark .checkout-switch-panel strong,
html.lz-app-v2.lz-theme-dark .checkout-switch-panel small,
html.lz-app-v2.lz-theme-dark .comprovante,
html.lz-app-v2.lz-theme-dark .comprovante span,
html.lz-app-v2.lz-theme-dark .comprovante strong,
html.lz-app-v2.lz-theme-dark .comprovante p,
html.lz-app-v2.lz-theme-dark .alerta-comprovante {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2.lz-theme-dark .checkout-switch-panel,
html.lz-app-v2.lz-theme-dark .comprovante {
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
}

html.lz-app-v2.lz-theme-dark .alerta-comprovante {
  border-color: var(--lz-v2-button) !important;
  background: var(--lz-v2-surface-muted) !important;
}

html.lz-app-v2.lz-theme-dark .checkout-switch-slider {
  border-color: var(--lz-v2-border) !important;
  background: #555a61 !important;
}

html.lz-app-v2.lz-theme-dark .header .top .counter {
  border-color: var(--lz-v2-header, #2d3035) !important;
  background: #2d3035 !important;
  color: #fff !important;
}

/* Keep the original platform mark inside the merchant-colored footer. */
html.lz-app-v2 .footer {
  overflow: hidden;
  background: var(--lz-v2-footer, var(--lz-v2-button)) !important;
  color: var(--lz-v2-footer-text, var(--lz-v2-button-text)) !important;
}

html.lz-app-v2 .footer .footer-info {
  margin: 0 !important;
  padding: var(--lz-v2-space-12) 12px var(--lz-v2-space-6);
  border: 0 !important;
  background: var(--lz-v2-footer, var(--lz-v2-button)) !important;
  color: var(--lz-v2-footer-text, var(--lz-v2-button-text)) !important;
}

html.lz-app-v2 .footer .copyright {
  margin: 0 !important;
  padding: 0 12px var(--lz-v2-space-10);
  border: 0 !important;
  background: var(--lz-v2-footer, var(--lz-v2-button)) !important;
  color: var(--lz-v2-footer-text, var(--lz-v2-button-text)) !important;
}

html.lz-app-v2 .footer .watermark {
  width: max-content;
  max-width: calc(100% - 32px);
  margin: 0 auto var(--lz-v2-space-8);
  padding: 10px 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
}

html.lz-app-v2 .footer .watermark img {
  width: auto;
  max-width: 150px;
  height: auto;
  opacity: 1 !important;
  filter: none !important;
}

/* Give the add-to-cart confirmation actions the same visual footprint. */
html.lz-app-v2 .modal .row.lowpadd {
  display: flex;
  align-items: stretch;
  margin-right: -10px;
  margin-left: -10px;
}

html.lz-app-v2 .modal .row.lowpadd::before,
html.lz-app-v2 .modal .row.lowpadd::after {
  display: none !important;
  content: none !important;
}

html.lz-app-v2 .modal .row.lowpadd > [class*="col-"] {
  display: flex;
  padding-right: 10px;
  padding-left: 10px;
}

html.lz-app-v2 .modal .row.lowpadd .botao-acao {
  width: 100% !important;
  min-height: 48px;
}

@media (min-width: 992px) {
  /* Preserve generous separation before the footer on product pages. */
  html.lz-app-v2 .relacionados {
    padding-bottom: clamp(170px, 12vw, 230px);
  }

  /* The legacy row totals 15 Bootstrap columns; a grid keeps every action aligned. */
  html.lz-app-v2 .linha-subtotal > .row:last-child {
    display: grid;
    grid-template-columns: minmax(190px, .8fr) repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
    padding: 16px 18px 20px;
  }

  html.lz-app-v2 .linha-subtotal > .row:last-child::before,
  html.lz-app-v2 .linha-subtotal > .row:last-child::after {
    display: none !important;
    content: none !important;
  }

  html.lz-app-v2 .linha-subtotal > .row:last-child > [class*="col-"] {
    float: none;
    width: auto;
    padding: 0;
  }

  html.lz-app-v2 .linha-subtotal > .row:last-child > .clear {
    display: none !important;
  }

  html.lz-app-v2 .linha-subtotal > .row:last-child form,
  html.lz-app-v2 .linha-subtotal > .row:last-child .botao-acao {
    width: 100% !important;
    margin: 0;
  }

  html.lz-app-v2 .sacola-table thead th,
  html.lz-app-v2 .sacola-table tbody td {
    padding: 14px 18px !important;
  }
}

@media (max-width: 767px) {
  html.lz-app-v2.lz-has-sticky-actions .sb-chat-btn {
    bottom: 92px !important;
  }

  html.lz-app-v2 .comprar .line.observacoes > .row {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  html.lz-app-v2 .comprar .line.observacoes > .row > [class*="col-"] {
    float: none;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
  }

  html.lz-app-v2 .comprar .line.observacoes > .row > [class*="col-"] + [class*="col-"] {
    margin-top: 10px;
  }

  html.lz-app-v2 .linha-subtotal > .row > .clear.visible-xs.visible-sm {
    display: none !important;
  }

  html.lz-app-v2 .linha-subtotal > .row > [class*="col-"] > form {
    margin-top: 12px;
  }

  html.lz-app-v2 .container.nopaddmobile > .row.rowtitle {
    margin-top: 88px;
    margin-right: 0;
    margin-left: 0;
    padding-right: 15px;
    padding-left: 15px;
  }

  html.lz-app-v2 .relacionados {
    padding-bottom: 58px;
  }

  html.lz-app-v2 .modal .row.lowpadd {
    display: block;
    margin-right: 0;
    margin-left: 0;
  }

  html.lz-app-v2 .modal .row.lowpadd > [class*="col-"] {
    display: block;
    padding-right: 0;
    padding-left: 0;
  }

  html.lz-app-v2 .modal .row.lowpadd > [class*="col-"] + [class*="col-"] {
    margin-top: 10px;
  }

  html.lz-app-v2 .lz-theme-toggle-mobile {
    top: -3px;
    right: 48px;
    width: 36px;
    height: 36px;
  }

  html.lz-app-v2 .lz-theme-toggle-mobile i {
    font-size: 17px;
  }

  html.lz-app-v2 .produto-detalhes > .row > [class*="col-"] {
    padding-right: 12px;
    padding-left: 12px;
  }

  html.lz-app-v2.lz-button-a .subtotal-adicionar .row,
  html.lz-app-v2.lz-button-b .subtotal-adicionar .row,
  html.lz-app-v2.lz-button-c .subtotal-adicionar .row {
    display: flex;
    align-items: center;
  }

  html.lz-app-v2.lz-button-a .subtotal-adicionar .col-md-6,
  html.lz-app-v2.lz-button-b .subtotal-adicionar .col-md-6,
  html.lz-app-v2.lz-button-c .subtotal-adicionar .col-md-6 {
    width: 50%;
  }

  html.lz-app-v2.lz-button-a .sacola-adicionar,
  html.lz-app-v2.lz-button-b .sacola-adicionar,
  html.lz-app-v2.lz-button-c .sacola-adicionar {
    float: none !important;
  }

  html.lz-app-v2 .produto-detalhes .sacola-adicionar {
    width: 100% !important;
    min-height: 48px;
    padding: 0 14px !important;
    font-size: 14px;
  }

  html.lz-app-v2 .subtotal-adicionar .row {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
  }

  html.lz-app-v2 .subtotal-adicionar .col-md-6 {
    width: 50%;
    padding-right: 6px;
    padding-left: 6px;
  }

  html.lz-app-v2 .subtotal-adicionar .subtotal {
    padding-top: 0;
    text-align: left;
  }
}

/* Canonical product-card contract shared by home, category, search and related items. */
html.lz-app-v2 .lz-product-card {
  display: flex;
  width: 100%;
  height: 100% !important;
  min-height: 0 !important;
  overflow: hidden;
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  color: var(--lz-v2-text);
}

html.lz-app-v2 .lz-product-card__layout {
  display: flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

html.lz-app-v2 .lz-product-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  max-height: none !important;
  flex: 0 0 auto;
  overflow: hidden;
  aspect-ratio: var(--lz-v2-media-ratio);
  border-radius: 0;
  background-color: var(--lz-v2-surface-muted);
  background-position: center !important;
  background-size: cover !important;
}

html.lz-app-v2 .lz-product-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

html.lz-app-v2 .lz-product-card__content {
  display: flex;
  width: 100%;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  gap: var(--lz-v2-space-2);
  padding: var(--lz-v2-space-3) 14px 10px;
  text-align: center;
}

html.lz-app-v2 .lz-product-card__title {
  position: static;
  display: -webkit-box !important;
  width: 100%;
  min-height: 38px;
  margin: 0 !important;
  padding: 0;
  overflow: hidden;
  background: transparent !important;
  color: var(--lz-v2-text) !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  text-shadow: none !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

html.lz-app-v2 .lz-product-card__valor-anterior,
html.lz-app-v2 .lz-product-card__blank-valor-anterior,
html.lz-app-v2 .lz-product-card__apenas,
html.lz-app-v2 .lz-product-card__valor,
html.lz-app-v2 .lz-product-card__preco {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0 !important;
  padding: 0;
  line-height: 1.35;
  text-align: center;
}

html.lz-app-v2 .lz-product-card__valor-anterior,
html.lz-app-v2 .lz-product-card__blank-valor-anterior,
html.lz-app-v2 .lz-product-card__apenas {
  min-height: 18px;
  color: var(--lz-v2-text-muted) !important;
  font-size: 13px;
  line-height: 1.4;
}

html.lz-app-v2 .produto.lz-product-card .lz-product-card__apenas {
  width: 100% !important;
  flex: 0 0 auto;
  white-space: normal !important;
  overflow-wrap: anywhere;
}

html.lz-app-v2 .lz-product-card__valor,
html.lz-app-v2 .lz-product-card__preco {
  min-height: 22px;
  color: var(--lz-v2-button) !important;
  font-size: 16px;
  font-weight: 600;
}

html.lz-app-v2 .lz-product-card--no-price .lz-product-card__content {
  padding-bottom: var(--lz-v2-space-4);
}

html.lz-app-v2 .lz-product-card__cta {
  display: inline-flex;
  width: calc(100% - (var(--lz-v2-cta-inset) * 2));
  min-height: var(--lz-v2-cta-height);
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: var(--lz-v2-space-2);
  margin: auto var(--lz-v2-cta-inset) var(--lz-v2-cta-inset) !important;
  padding: 0 var(--lz-v2-space-3);
  border-radius: min(10px, var(--lz-v2-card-radius));
  line-height: 1.2 !important;
  text-align: center;
}

html.lz-app-v2 .lz-product-card__cta i {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  align-items: center;
  justify-content: center;
  font-size: 16px !important;
  line-height: 1 !important;
}

html.lz-app-v2 .lz-product-card__cta span {
  display: inline-flex;
  align-items: center;
  line-height: 1.2 !important;
}

html.lz-app-v2 .categoria .produtos .row.tv-grid > [class*="col-"],
html.lz-app-v2 .categoria .produtos .tv-infinite > .col-infinite,
html.lz-app-v2 .relacionados .produtos .tv-infinite > .col-infinite {
  display: flex;
  align-items: stretch;
}

@media (min-width: 992px) {
  html.lz-app-v2 .relacionados .produtos .tv-infinite {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
}

@media (max-width: 991px) {
  html.lz-app-v2 .relacionados .produtos .tv-infinite {
    display: flex;
    align-items: stretch;
    gap: var(--lz-v2-space-1);
  }

  html.lz-app-v2 .relacionados .produtos .tv-infinite > .col-infinite {
    display: flex !important;
    flex: 0 0 min(42vw, 160px);
    width: min(42vw, 160px) !important;
    max-width: none !important;
    align-items: stretch !important;
  }

  html.lz-app-v2 .relacionados .produtos .tv-infinite > .col-infinite > .lz-product-card {
    height: 100% !important;
  }
}

/* List cards keep the established image-at-right layout with the same tokens. */
html.lz-app-v2 .lz-product-card--list .lz-product-card__layout > .row {
  display: flex;
  width: 100%;
  min-width: 0;
  align-items: stretch;
  margin: 0;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__layout > .row > .npr {
  float: none;
  width: auto !important;
  min-width: 0;
  flex: 1 1 0;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__layout > .row > .npr + [class*="col-"] {
  display: flex;
  float: none;
  width: clamp(112px, 28%, 144px) !important;
  min-width: 112px;
  flex: 0 0 clamp(112px, 28%, 144px);
  align-items: center;
  padding: var(--lz-v2-space-3) var(--lz-v2-space-3) var(--lz-v2-space-3) 0;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__content {
  align-items: flex-start;
  justify-content: center;
  padding: var(--lz-v2-card-padding);
  text-align: left;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__title,
html.lz-app-v2 .lz-product-card--list .lz-product-card__content * {
  text-align: left;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__title {
  min-height: 0;
  font-size: 16px;
  line-height: 1.35;
}

html.lz-app-v2 .lz-product-card--list .descricao,
html.lz-app-v2 .lz-product-card--list .descricao span {
  color: var(--lz-v2-text-muted) !important;
  font-size: 14px;
  line-height: 1.45;
}

html.lz-app-v2 .lz-product-card--list .lz-product-card__media {
  width: 100%;
  height: auto !important;
  min-height: 0;
  flex: 0 0 auto;
  aspect-ratio: var(--lz-v2-media-ratio);
  border-radius: max(2px, calc(var(--lz-v2-card-radius) - 5px));
}

/* Product page: one geometry for light and dark, with colors supplied by tokens. */
html.lz-app-v2 .lz-product-detail {
  overflow: hidden;
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
}

html.lz-app-v2 .lz-product-detail__previous-price,
html.lz-app-v2 .lz-product-detail__price {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  text-align: right;
}

html.lz-app-v2 .comprar .lz-option-group {
  margin: var(--lz-v2-space-3) 0 var(--lz-v2-space-4);
  padding: var(--lz-v2-card-padding) !important;
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
}

html.lz-app-v2 .comprar .lz-option-card {
  display: flex;
  min-height: 62px;
  overflow: hidden;
  border: 1px solid var(--lz-v2-border);
  border-radius: 8px;
  background: var(--lz-v2-surface-muted);
  color: var(--lz-v2-text);
}

html.lz-app-v2 .comprar .lz-option-card.active {
  border-color: var(--lz-v2-button) !important;
  box-shadow: 0 0 0 1px var(--lz-v2-button);
}

html.lz-app-v2 .comprar .lz-option-card.active .check {
  border-color: var(--lz-v2-button);
  background: var(--lz-v2-button) !important;
}

html.lz-app-v2 .comprar .lz-option-card.active .check i {
  color: #fff !important;
}

html.lz-app-v2 .comprar .lz-option-card:focus-visible,
html.lz-app-v2 .campo-numero [role="button"]:focus-visible,
html.lz-app-v2 .lz-product-card__layout:focus-visible {
  outline: 3px solid var(--lz-v2-focus-ring);
  outline-offset: 2px;
}

html.lz-app-v2 .comprar .lz-option-card .check {
  display: flex;
  min-width: 52px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--lz-v2-border);
}

html.lz-app-v2 .comprar .lz-option-card .detalhes {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: var(--lz-v2-space-1);
  padding: var(--lz-v2-space-3);
}

html.lz-app-v2 .comprar .lz-option-card .titulo,
html.lz-app-v2 .comprar .lz-option-card .descricao {
  color: inherit;
  line-height: 1.4;
}

html.lz-app-v2 .comprar .lz-option-card .descricao {
  color: var(--lz-v2-text-muted);
}

html.lz-app-v2 .lz-purchase-quantity {
  margin: var(--lz-v2-space-4) 0;
  padding: var(--lz-v2-card-padding);
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
}

html.lz-app-v2 .lz-purchase-quantity > .row {
  display: flex;
  align-items: center;
  margin-right: 0;
  margin-left: 0;
}

html.lz-app-v2 .lz-purchase-quantity > .row > [class*="col-"] {
  float: none;
  width: 50%;
  padding: 0;
}

html.lz-app-v2 .lz-purchase-quantity__label {
  display: block;
  margin: 0;
}

html.lz-app-v2 .lz-purchase-quantity .campo-numero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--lz-v2-space-2);
}

html.lz-app-v2 .lz-purchase-quantity .campo-numero [role="button"] {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

html.lz-app-v2 .lz-observations {
  display: block;
  margin: var(--lz-v2-space-4) 0;
  padding: var(--lz-v2-card-padding);
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
}

html.lz-app-v2 .lz-observations__label {
  display: block;
  margin: 0 0 var(--lz-v2-space-2);
  color: var(--lz-v2-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

html.lz-app-v2 .lz-observations > .row {
  display: block;
  margin: 0;
}

html.lz-app-v2 .lz-observations > .row > [class*="col-"] {
  float: none;
  width: 100%;
  padding: 0;
}

html.lz-app-v2 .lz-observations__field {
  display: block;
  width: 100%;
  min-height: 120px;
  margin: 0;
  border-color: var(--lz-v2-border);
  border-radius: max(6px, calc(var(--lz-v2-card-radius) - 4px));
  background: var(--lz-v2-surface-muted);
  color: var(--lz-v2-text);
}

html.lz-app-v2 .lz-legacy-duplicate {
  display: none !important;
}

html.lz-app-v2 .lz-product-action {
  margin-top: var(--lz-v2-space-5);
  padding: var(--lz-v2-space-4);
  border: 1px solid var(--lz-v2-border);
  border-radius: var(--lz-v2-card-radius);
  background: var(--lz-v2-surface);
}

html.lz-app-v2 .lz-product-action > .row {
  display: flex;
  align-items: center;
  margin: 0;
}

html.lz-app-v2 .lz-product-action > .row > [class*="col-"] {
  float: none;
  width: 50%;
  padding: 0 var(--lz-v2-space-2);
}

html.lz-app-v2 .lz-product-action .subtotal {
  padding: 0;
  text-align: left;
}

@media (max-width: 767px) {
  html.lz-app-v2 .lz-product-card {
    margin-bottom: var(--lz-v2-space-4);
  }

  html.lz-app-v2 .lz-product-card__content {
    padding: 10px 10px var(--lz-v2-space-2);
  }

  html.lz-app-v2 .lz-product-card__title {
    min-height: 40px;
    font-size: 15px;
    line-height: 1.35;
  }

  html.lz-app-v2 .lz-product-card--list .lz-product-card__layout > .row > .npr + [class*="col-"] {
    width: 116px !important;
    min-width: 116px;
    flex-basis: 116px;
  }

  html.lz-app-v2 .lz-product-card--list .lz-product-card__content {
    gap: 6px;
    padding: 14px;
  }

  html.lz-app-v2 .lz-product-card--list .lz-product-card__title {
    min-height: 0;
    font-size: 15px;
  }

  html.lz-app-v2 .lz-product-card--list .descricao,
  html.lz-app-v2 .lz-product-card--list .descricao span {
    font-size: 13px;
    line-height: 1.45;
  }

  html.lz-app-v2 .relacionados .lz-product-card__content {
    gap: var(--lz-v2-space-2);
    padding: var(--lz-v2-space-3) var(--lz-v2-space-3) 10px;
  }

  html.lz-app-v2 .relacionados .lz-product-card__valor-anterior,
  html.lz-app-v2 .relacionados .lz-product-card__blank-valor-anterior,
  html.lz-app-v2 .relacionados .lz-product-card__apenas {
    font-size: 13px;
  }

  html.lz-app-v2 .relacionados .lz-product-card__valor,
  html.lz-app-v2 .relacionados .lz-product-card__preco {
    font-size: 16px;
  }

  html.lz-app-v2 .lz-product-card__cta {
    width: calc(100% - 18px);
    margin-right: 9px !important;
    margin-bottom: 9px !important;
    margin-left: 9px !important;
  }

  html.lz-app-v2 .lz-product-detail__previous-price,
  html.lz-app-v2 .lz-product-detail__price {
    text-align: left;
  }

  html.lz-app-v2 .comprar .lz-option-group,
  html.lz-app-v2 .lz-observations,
  html.lz-app-v2 .lz-product-action {
    padding: var(--lz-v2-space-3) !important;
  }

  html.lz-app-v2 .footer .footer-info {
    padding-top: var(--lz-v2-space-8);
  }

  html.lz-app-v2 .footer .copyright {
    padding-bottom: var(--lz-v2-space-8);
  }

  html.lz-app-v2 .footer .watermark {
    margin-bottom: var(--lz-v2-space-6);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.lz-app-v2 *,
  html.lz-app-v2 *::before,
  html.lz-app-v2 *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Follow-up fixes for the demo6 pilot - 2026-08-03. */
html.lz-app-v2 .navigator .nav > li.dropdown > .dropdown-menu,
html.lz-app-v2 .navigator .nav .dropdown-menu {
  min-width: 160px;
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: var(--lz-v2-card-radius) !important;
  background: var(--lz-v2-surface) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18) !important;
}

html.lz-app-v2 .navigator .nav .dropdown-menu > li > a,
html.lz-app-v2 .navigator .nav .dropdown-menu > li > span {
  display: block;
  color: var(--lz-v2-text) !important;
  background: transparent !important;
  line-height: 1.35;
}

html.lz-app-v2 .navigator .nav .dropdown-menu > li > a:hover,
html.lz-app-v2 .navigator .nav .dropdown-menu > li > a:focus,
html.lz-app-v2 .navigator .nav .dropdown-menu > li > span:hover {
  color: var(--lz-v2-button) !important;
  background: var(--lz-v2-surface-muted) !important;
}

html.lz-app-v2 .banners,
html.lz-app-v2 #carouselbanners,
html.lz-app-v2 #carouselbanners .carousel-inner,
html.lz-app-v2 #carouselbanners .item,
html.lz-app-v2 #carouselbanners .item > a,
html.lz-app-v2 #carouselbanners .item img {
  overflow: hidden;
  border-radius: var(--lz-v2-card-radius) !important;
}

html.lz-app-v2 .lz-theme-toggle-desktop {
  float: none !important;
  margin: 0 4px 0 8px !important;
  vertical-align: middle;
}

html.lz-app-v2 .header .top .holder-shop-bag,
html.lz-app-v2 .header .top .user-info {
  vertical-align: middle;
}

html.lz-app-v2.lz-theme-dark .checkout-switch-panel input[name*="cupom" i],
html.lz-app-v2.lz-theme-dark .checkout-switch-panel input[placeholder*="cupom" i],
html.lz-app-v2.lz-theme-dark .cupom-collapsed input[name*="cupom" i],
html.lz-app-v2.lz-theme-dark .cupom-collapsed input[placeholder*="cupom" i] {
  border: 1px solid var(--lz-v2-border) !important;
  background: var(--lz-v2-surface-muted) !important;
  color: var(--lz-v2-text) !important;
  box-shadow: none !important;
}

html.lz-app-v2.lz-theme-dark .checkout-switch-panel input[name*="cupom" i]::placeholder,
html.lz-app-v2.lz-theme-dark .checkout-switch-panel input[placeholder*="cupom" i]::placeholder,
html.lz-app-v2.lz-theme-dark .cupom-collapsed input[name*="cupom" i]::placeholder,
html.lz-app-v2.lz-theme-dark .cupom-collapsed input[placeholder*="cupom" i]::placeholder {
  color: var(--lz-v2-text-muted) !important;
  opacity: 1;
}

html.lz-app-v2.lz-theme-dark .botao-acao,
html.lz-app-v2.lz-theme-dark .botao-acao i,
html.lz-app-v2.lz-theme-dark .botao-acao span,
html.lz-app-v2.lz-theme-dark .sacola-alterar,
html.lz-app-v2.lz-theme-dark .sacola-alterar i,
html.lz-app-v2.lz-theme-dark .sacola-alterar span {
  align-items: center;
  color: var(--lz-v2-button-text) !important;
  vertical-align: middle;
}

html.lz-app-v2.lz-theme-dark .sacola-alterar {
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
}

/* The checkout uses .back-button for the same secondary action on some routes. */
html.lz-app-v2.lz-theme-dark .back-button,
html.lz-app-v2.lz-theme-dark .back-button i,
html.lz-app-v2.lz-theme-dark .back-button span {
  align-items: center;
  color: var(--lz-v2-text) !important;
  border-color: var(--lz-v2-border) !important;
  background: var(--lz-v2-surface) !important;
  vertical-align: middle;
}

html.lz-app-v2.lz-theme-dark .back-button {
  display: inline-flex;
  justify-content: center;
}

html.lz-app-v2 .lz-product-card--grid {
  border-radius: var(--lz-v2-card-radius) var(--lz-v2-card-radius) 0 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__layout {
  border-radius: var(--lz-v2-card-radius) var(--lz-v2-card-radius) 0 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* The legacy rounded-theme rule is more specific; override only grid cards. */
html.lz-app-v2.lz-card-rounded .produto.lz-product-card--grid,
html.lz-app-v2.lz-card-soft .produto.lz-product-card--grid,
html.lz-app-v2.lz-card-square .produto.lz-product-card--grid {
  border-radius: var(--lz-v2-card-radius) var(--lz-v2-card-radius) 0 0 !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__content {
  min-height: 156px;
  gap: var(--lz-v2-space-1);
  justify-content: flex-start;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__title {
  min-height: 38px;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__apenas,
html.lz-app-v2 .lz-product-card--grid .lz-product-card__valor {
  min-height: 20px;
  margin: 0 !important;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card--no-price,
html.lz-app-v2 .lz-product-card--grid.lz-product-card--no-price .lz-product-card__content {
  min-height: 156px;
}

html.lz-app-v2 .lz-product-card__cta,
html.lz-app-v2 .lz-product-card__cta i,
html.lz-app-v2 .lz-product-card__cta span {
  align-items: center !important;
  justify-content: center !important;
  margin-top: 0 !important;
  transform: none !important;
  vertical-align: middle;
}

html.lz-app-v2 .lz-category-last {
  padding-bottom: clamp(64px, 8vw, 112px);
}

html.lz-app-v2 .footer .footer-info {
  padding-top: clamp(40px, 5vw, 64px) !important;
  padding-bottom: clamp(32px, 4vw, 52px) !important;
}

html.lz-app-v2 .footer .copyright {
  padding-top: 0 !important;
  padding-bottom: clamp(40px, 5vw, 64px) !important;
}

@media (max-width: 767px) {
  html.lz-app-v2 .lz-theme-toggle-mobile {
    top: 50% !important;
    right: 44px !important;
    transform: translateY(-50%);
  }

  html.lz-app-v2 .lz-product-card--grid .lz-product-card__content {
    min-height: 148px;
    padding-right: 12px;
    padding-left: 12px;
  }

  html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta {
    width: calc(100% - 18px) !important;
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  html.lz-app-v2 .lz-category-last {
    padding-bottom: 72px;
  }
}

/* Final alignment and contrast pass for the demo6 pilot - 2026-08-03. */
html.lz-app-v2 .header .minitop .row .col-md-6:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 36px;
}

html.lz-app-v2 .header .minitop .row .col-md-6:last-child .funcionamento {
  padding-right: 8px;
}

html.lz-app-v2 .lz-theme-toggle-desktop {
  position: static !important;
  float: none !important;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  margin: 0 !important;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .row > .col-md-3:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag {
  display: inline-flex !important;
  float: none !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag > div {
  display: inline-flex;
  align-items: center;
}

html.lz-app-v2 .navigator .nav .dropdown-menu > li,
html.lz-app-v2 .navigator .nav .dropdown-menu > li + li,
html.lz-app-v2 .navigator .nav .dropdown-menu > li > a,
html.lz-app-v2 .navigator .nav .dropdown-menu > li > span {
  border: 0 !important;
  border-top: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
}

html.lz-app-v2.lz-theme-dark .header .social a,
html.lz-app-v2.lz-theme-dark .header .social a i,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge a,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge a i,
html.lz-app-v2.lz-theme-dark .app-infos .info-badge i.lni-whatsapp,
html.lz-app-v2.lz-theme-dark .produto-detalhes .ref .btn-success,
html.lz-app-v2.lz-theme-dark .produto-detalhes .ref .btn-success i {
  color: #fff !important;
  opacity: 1 !important;
}

html.lz-app-v2.lz-theme-dark .produto-detalhes .ref .btn-success {
  background: #25d366 !important;
  border-color: #25d366 !important;
}

/* Final header and product-share alignment pass for the demo6 pilot. */
html.lz-app-v2 .header .minitop {
  padding: 0 !important;
}

html.lz-app-v2 .header .minitop .row,
html.lz-app-v2 .header .minitop .row .col-md-6 {
  min-height: 60px;
}

html.lz-app-v2 .header .minitop .row .col-md-6:first-child,
html.lz-app-v2 .header .minitop .row .col-md-6:last-child {
  display: flex;
  align-items: center;
}

html.lz-app-v2 .header .minitop .row .col-md-6:first-child {
  justify-content: flex-start;
}

html.lz-app-v2 .header .minitop .row .col-md-6:last-child {
  justify-content: flex-end;
}

html.lz-app-v2 .header .minitop .funcionamento {
  display: inline-flex !important;
  align-items: center;
  min-height: 34px;
  margin: 0 !important;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  height: 50px;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .cash {
  display: inline-flex !important;
  align-items: center;
  height: auto !important;
  line-height: 20px !important;
  margin: 0 !important;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag > div,
html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .shop-bag {
  display: inline-flex !important;
  position: relative !important;
  width: 32px !important;
  height: 32px !important;
  align-items: center;
  justify-content: center;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .shop-bag > i {
  display: block;
  width: 26px !important;
  height: 26px !important;
  margin: 0 !important;
  line-height: 26px !important;
  text-align: center;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .counter {
  position: absolute !important;
  top: -5px !important;
  right: -7px !important;
  left: auto !important;
  display: inline-flex !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 18px !important;
}

html.lz-app-v2 .navigator .nav > li > a,
html.lz-app-v2 .navigator .nav > li > .sidrLeft {
  display: inline-flex !important;
  min-height: 50px;
  align-items: center;
  gap: 8px;
}

html.lz-app-v2 .navigator .nav > li > .sidrLeft {
  cursor: pointer;
}

html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon,
html.lz-app-v2 .navigator .nav > li > .sidrLeft .lz-nav-icon {
  display: inline-flex;
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
  align-items: center;
  justify-content: center;
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon svg,
html.lz-app-v2 .navigator .nav > li > .sidrLeft .lz-nav-icon svg,
html.lz-app-v2 .produto-detalhes .ref .btn-success.lz-product-share svg {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 !important;
}

html.lz-app-v2 .produto-detalhes .ref .btn-success.lz-product-share {
  line-height: 0 !important;
}

html.lz-app-v2 .lz-share-feedback {
  position: fixed;
  z-index: 10001;
  right: 20px;
  bottom: 20px;
  max-width: min(320px, calc(100vw - 40px));
  padding: 12px 16px;
  border: 1px solid var(--lz-v2-border);
  border-radius: 10px;
  background: var(--lz-v2-surface);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  color: var(--lz-v2-text);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 767px) {
  html.lz-app-v2 .lz-share-feedback {
    right: 16px;
    bottom: 16px;
  }
}

/* Keep a visible but compact separation between related products and footer. */
html.lz-app-v2 .relacionados {
  padding-bottom: 24px !important;
  margin-bottom: 0 !important;
}

/* Let grid thumbnails reach the card edge without changing list geometry. */
html.lz-app-v2 .lz-product-card--grid .lz-product-card__media {
  width: calc(100% + 2px);
  margin: -1px -1px 0;
}

/* Demo6 pilot polish: shared geometry for product cards and product detail. */
html.lz-app-v2 .lz-product-card--grid .lz-product-card__media,
html.lz-app-v2 .lz-product-card--grid .lz-product-card__media img {
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  outline: 0;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__media {
  /* The media sits flush with the card, without its own lower rounded edge. */
  border-radius: var(--lz-v2-card-radius) var(--lz-v2-card-radius) 0 0 !important;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__content,
html.lz-app-v2 .lz-product-card--grid.lz-product-card--no-price .lz-product-card__content {
  min-height: 144px;
  flex: 0 0 144px;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta {
  display: inline-flex !important;
  margin: 0 var(--lz-v2-cta-inset) var(--lz-v2-cta-inset) !important;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__apenas {
  color: var(--lz-v2-text-muted) !important;
  font-size: 12px;
  font-weight: 400;
}

html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta,
html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta i,
html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

html.lz-app-v2 .produto-detalhes {
  position: relative;
}

html.lz-app-v2 .produto-detalhes .lz-product-share {
  position: static !important;
  z-index: 2;
  display: inline-flex !important;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border: 1px solid var(--lz-v2-border) !important;
  border-radius: 50% !important;
  background: var(--lz-v2-surface) !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .08) !important;
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-share svg {
  width: 19px;
  height: 19px;
}

html.lz-app-v2 .produto-detalhes .valor_anterior,
html.lz-app-v2 .produto-detalhes .valor_anterior span {
  color: var(--lz-v2-text-muted) !important;
  font-weight: 400 !important;
}

html.lz-app-v2 .navigator .nav > li > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon {
  display: inline-flex;
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--lz-v2-button);
}

html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon svg {
  width: 15px;
  height: 15px;
}

html.lz-app-v2.lz-theme-dark .navigator .nav > li > a .lz-nav-icon {
  color: var(--lz-v2-button);
}

@media (max-width: 767px) {
  html.lz-app-v2 .lz-product-card--grid .lz-product-card__content,
  html.lz-app-v2 .lz-product-card--grid.lz-product-card--no-price .lz-product-card__content {
    min-height: 140px;
    flex-basis: 140px;
  }

  html.lz-app-v2 .lz-product-card--grid .lz-product-card__cta {
    width: calc(100% - 18px) !important;
    margin: 0 9px 9px !important;
  }

  html.lz-app-v2 .lz-product-detail__previous-price,
  html.lz-app-v2 .lz-product-detail__price {
    text-align: center !important;
  }

  html.lz-app-v2 .produto-detalhes .lz-product-share {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 767px) {
  html.lz-app-v2 .header .top .visible-sm.visible-xs .user-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
  }

  html.lz-app-v2 .header .top .visible-sm.visible-xs .user-info .holder-shop-bag {
    display: flex !important;
    float: none !important;
    align-items: center;
    margin: 0 !important;
  }

  html.lz-app-v2 .lz-theme-toggle-mobile {
    position: static !important;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    margin: 0 !important;
    transform: none !important;
  }

  html.lz-app-v2 .relacionados {
    padding-bottom: 18px !important;
  }
}

/* Keep every desktop navigation item on the same icon baseline. */
html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon,
html.lz-app-v2 .navigator .nav > li > .sidrLeft .lz-nav-icon {
  display: inline-flex !important;
  width: 15px !important;
  height: 15px !important;
  flex: 0 0 15px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  line-height: 1 !important;
}

html.lz-app-v2 .navigator .nav > li > a .lz-nav-icon svg,
html.lz-app-v2 .navigator .nav > li > .sidrLeft .lz-nav-icon svg {
  display: block;
  width: 15px !important;
  height: 15px !important;
}

/* The legacy desktop mini-top column is 36px high. Keep its contents centered
   within the 60px status strip instead of pinning them to its top edge. */
html.lz-app-v2 .header .minitop .row .col-md-6.lz-theme-toggle-host {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  min-height: 60px !important;
  height: 60px !important;
}

html.lz-app-v2 .header .minitop .lz-theme-toggle-host .funcionamento,
html.lz-app-v2 .header .minitop .lz-theme-toggle-host .lz-theme-toggle-desktop {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: none !important;
}

/* Remove the legacy negative margin that lifts only the cart icon above its text. */
html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .shop-bag {
  margin: 0 !important;
  bottom: auto !important;
}

/* Product details: one reading order and a lightweight share action. */
html.lz-app-v2 .produto-detalhes .lz-product-detail__legacy-title-row,
html.lz-app-v2 .produto-detalhes .lz-product-detail__legacy-name-row,
html.lz-app-v2 .produto-detalhes .lz-product-detail__share-row,
html.lz-app-v2 .produto-detalhes .lz-product-detail__legacy-content-row,
html.lz-app-v2 .produto-detalhes .lz-product-detail__legacy-price-row {
  display: none !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__header {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px !important;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--lz-v2-border);
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__title {
  min-width: 0;
  margin: 0 !important;
  color: var(--lz-v2-text) !important;
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 600;
  line-height: 1.15;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-row,
html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row {
  margin: 0 !important;
  padding: 0 !important;
}

/* The page title already identifies the product. Keep its card identity compact. */
html.lz-app-v2 .produto-detalhes .lz-product-detail__identity {
  display: grid;
  min-width: 0;
  gap: 4px;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-summary {
  margin: 0 !important;
  color: var(--lz-v2-text-muted) !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.25;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-row .thelabel-normal,
html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row .thelabel-normal {
  display: none !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-row .col-md-9,
html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row .col-md-9,
html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-row .col-md-12,
html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row .col-md-12 {
  width: 100% !important;
  padding: 0 !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-row {
  display: none !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row .descricao {
  margin: 0 0 16px !important;
  color: var(--lz-v2-text-muted) !important;
  font-size: 16px;
  line-height: 1.55;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__details-row .descricao::before {
  content: 'Detalhes';
  display: block;
  margin: 0 0 6px;
  color: var(--lz-v2-text);
  font-size: 13px;
  font-weight: 700;
}

/* Price information is split into discrete pieces instead of inheriting the
   legacy inline "De: ... Apenas" string. */
html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack {
  display: flex !important;
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 0 !important;
  padding: 16px 0 0 !important;
  border-top: 1px solid var(--lz-v2-border);
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__previous-price,
html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-discount-badge,
html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__price-prefix,
html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__price {
  width: auto !important;
  margin: 0 !important;
  text-align: inherit !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__previous-price {
  color: var(--lz-v2-text-muted) !important;
  font-size: 14px;
  line-height: 1.35;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__price-prefix {
  color: var(--lz-v2-text-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-discount-badge {
  padding: 3px 6px;
  font-size: 11px;
  line-height: 1.1;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__price-stack .lz-product-detail__price {
  color: var(--lz-v2-button) !important;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.1;
}

/* Rebuild the product summary outside Bootstrap's negative row margins. */
html.lz-app-v2 .produto-detalhes .lz-product-detail__body {
  display: block;
  min-width: 0;
  padding: 2px 0 0;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__description {
  min-width: 0;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__description-label {
  display: block;
  margin: 0 0 7px;
  color: var(--lz-v2-text) !important;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__description .descricao {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-wrap: anywhere;
  color: var(--lz-v2-text-muted) !important;
  font-size: 15px;
  line-height: 1.55;
  text-align: left !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing {
  min-width: 0;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--lz-v2-border);
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing .lz-product-detail__price-stack {
  width: 100% !important;
  max-width: none !important;
  align-items: baseline;
  justify-content: flex-end;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing .col-md-12,
html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing .col-sm-12,
html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing .col-xs-12 {
  float: none !important;
  width: 100% !important;
  min-height: 0 !important;
  padding: 0 !important;
}

html.lz-app-v2 .lz-share-dialog-backdrop {
  position: fixed;
  z-index: 2147483000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 12, 17, .56);
}

html.lz-app-v2 .lz-share-dialog {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  border: 1px solid var(--lz-v2-border);
  border-radius: 18px;
  background: var(--lz-v2-surface);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  color: var(--lz-v2-text);
}

html.lz-app-v2 .lz-share-dialog h2 {
  margin: 0 40px 4px 0;
  color: var(--lz-v2-text);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.25;
}

html.lz-app-v2 .lz-share-dialog p {
  margin: 0 40px 20px 0;
  overflow: hidden;
  color: var(--lz-v2-text-muted);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.lz-app-v2 .lz-share-dialog__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: var(--lz-v2-text-muted);
  font-size: 13px;
  font-weight: 600;
}

html.lz-app-v2 .lz-share-dialog__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

html.lz-app-v2 .lz-share-option {
  --lz-share-color: var(--lz-v2-text-muted);
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--lz-v2-border);
  border-radius: 10px;
  background: var(--lz-v2-surface-muted);
  color: var(--lz-share-color) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;
}

html.lz-app-v2 .lz-share-option:hover,
html.lz-app-v2 .lz-share-option:focus {
  border-color: var(--lz-v2-button);
  color: var(--lz-share-color) !important;
}

html.lz-app-v2 .lz-share-option__mark {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lz-share-color);
  color: #fff;
  font-size: 0;
}

html.lz-app-v2 .lz-share-option__mark::after {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

html.lz-app-v2 .lz-share-option__mark svg {
  display: block;
  width: 13px;
  height: 13px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

html.lz-app-v2 .lz-share-option--whatsapp {
  --lz-share-color: #25d366;
  color: #5be88d !important;
}

html.lz-app-v2 .lz-share-option--facebook {
  --lz-share-color: #1877f2;
  color: #6ba9ff !important;
}

html.lz-app-v2 .lz-share-option--facebook .lz-share-option__mark svg {
  fill: #fff;
  stroke: none;
}

html.lz-app-v2 .lz-share-option--copy {
  --lz-share-color: var(--lz-v2-button);
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2 .lz-share-option--system {
  --lz-share-color: var(--lz-v2-text-muted);
  color: var(--lz-v2-text-muted) !important;
}

/* Use fixed, recognisable marks: legacy theme rules must not turn them black. */
html.lz-app-v2 .lz-share-option--whatsapp .lz-share-option__mark {
  background: #25d366 !important;
}

html.lz-app-v2 .lz-share-option--facebook .lz-share-option__mark {
  background: #1877f2 !important;
}

html.lz-app-v2 .lz-share-option--copy .lz-share-option__mark {
  background: var(--lz-v2-button) !important;
}

html.lz-app-v2 .lz-share-option--system .lz-share-option__mark {
  background: #6b7280 !important;
}

html.lz-app-v2 .lz-share-option__mark svg {
  color: #fff !important;
  stroke: #fff !important;
}

/* Share dialog: neutral hierarchy, recognizable icons and compact choices. */
html.lz-app-v2 .lz-share-dialog-backdrop {
  padding: 20px;
  background: rgba(5, 8, 12, .6);
  backdrop-filter: blur(2px);
}

html.lz-app-v2 .lz-share-dialog {
  width: min(440px, 100%);
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .2);
}

html.lz-app-v2 .lz-share-dialog h2 {
  margin: 0 52px 5px 0;
  font-size: 21px;
  font-weight: 650;
}

html.lz-app-v2 .lz-share-dialog p {
  margin: 0 52px 18px 0;
  overflow: visible;
  color: var(--lz-v2-text-muted) !important;
  font-size: 14px;
  line-height: 1.45;
  text-overflow: clip;
  white-space: normal;
}

html.lz-app-v2 .lz-share-dialog__product {
  display: grid;
  gap: 2px;
  margin: 0 0 16px;
  padding: 11px 13px;
  border: 1px solid var(--lz-v2-border);
  border-radius: 12px;
  background: var(--lz-v2-surface-muted);
}

html.lz-app-v2 .lz-share-dialog__product span {
  color: var(--lz-v2-text-muted) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.25;
  text-transform: uppercase;
}

html.lz-app-v2 .lz-share-dialog__product strong {
  overflow: hidden;
  color: var(--lz-v2-text) !important;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

html.lz-app-v2 .lz-share-dialog__close {
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 36px;
  min-width: 36px;
  height: 36px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--lz-v2-border);
  border-radius: 50%;
  background: var(--lz-v2-surface-muted);
  color: var(--lz-v2-text-muted) !important;
}

html.lz-app-v2 .lz-share-dialog__close:hover,
html.lz-app-v2 .lz-share-dialog__close:focus {
  border-color: var(--lz-v2-button);
  color: var(--lz-v2-button) !important;
}

html.lz-app-v2 .lz-share-dialog__close svg {
  display: block;
  width: 16px;
  height: 16px;
}

html.lz-app-v2 .lz-share-dialog__options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

html.lz-app-v2 .lz-share-option {
  min-width: 0;
  min-height: 54px;
  justify-content: flex-start;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  background: var(--lz-v2-surface);
  color: var(--lz-v2-text) !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
}

html.lz-app-v2 .lz-share-option:hover,
html.lz-app-v2 .lz-share-option:focus {
  background: var(--lz-v2-surface-muted);
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2 .lz-share-option__mark {
  width: 34px;
  min-width: 34px;
  height: 34px;
  border-radius: 10px;
}

html.lz-app-v2 .lz-share-option__mark svg {
  width: 17px;
  height: 17px;
}

html.lz-app-v2 .lz-share-option__text {
  min-width: 0;
  color: inherit !important;
}

html.lz-app-v2 .lz-share-option--whatsapp,
html.lz-app-v2 .lz-share-option--facebook,
html.lz-app-v2 .lz-share-option--copy,
html.lz-app-v2 .lz-share-option--system {
  color: var(--lz-v2-text) !important;
}

html.lz-app-v2 .lz-share-option--wide {
  grid-column: 1 / -1;
}

/* Final spacing and contrast pass for cards and header actions. */
html.lz-app-v2 .lz-product-card__content .lz-product-card__valor-anterior {
  margin: 0 0 2px !important;
}

html.lz-app-v2 .lz-product-card__content .lz-product-card__apenas {
  margin: 0 0 3px !important;
  line-height: 1.2 !important;
}

html.lz-app-v2 .lz-product-card__content .lz-discount-badge {
  align-self: center;
  margin: 4px 0 3px !important;
}

html.lz-app-v2 .lz-product-card__content .lz-price-stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

html.lz-app-v2 .lz-product-card__content .lz-price-stack .lz-product-card__valor-anterior,
html.lz-app-v2 .lz-product-card__content .lz-price-stack .lz-product-card__apenas,
html.lz-app-v2 .lz-product-card__content .lz-price-stack .lz-discount-badge,
html.lz-app-v2 .lz-product-card__content .lz-price-stack .valor {
  margin: 0 !important;
}

html.lz-app-v2 .lz-price-prefix-hidden {
  display: none !important;
}

html.lz-app-v2 .header .top .hidden-sm.hidden-xs .holder-shop-bag .counter {
  top: -9px !important;
  right: -8px !important;
}

@media (max-width: 767px) {
  html.lz-app-v2 .produto-detalhes .lz-product-detail__header {
    min-height: 42px;
    margin-bottom: 10px !important;
    padding-bottom: 10px;
  }

  html.lz-app-v2 .produto-detalhes .lz-product-detail__title {
    font-size: 16px;
  }

  html.lz-app-v2 .produto-detalhes .lz-product-detail__reference-summary {
    font-size: 11px;
  }

  html.lz-app-v2 .produto-detalhes .lz-product-detail__description .descricao {
    font-size: 15px;
  }

  html.lz-app-v2 .produto-detalhes .lz-product-detail__pricing .lz-product-detail__price-stack {
    justify-content: center;
  }

  html.lz-app-v2 .lz-share-dialog {
    padding: 22px 18px 18px;
  }

  html.lz-app-v2 .lz-share-dialog__options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html.lz-app-v2 .header .top .visible-sm.visible-xs .holder-shop-bag .counter {
    position: absolute !important;
    top: -8px !important;
    right: -6px !important;
    left: auto !important;
  }
}

@media (max-width: 359px) {
  html.lz-app-v2 .lz-share-dialog__options {
    grid-template-columns: 1fr;
  }
}
