* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

:root {
  --lj-font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --lj-primaria: #c07a35;
  --lj-primaria-dark: #a66a2d;
  --lj-primaria-light: #d49650;
  --lj-fundo: #f4ede5;
  --lj-fundo-claro: #faf7f3;
  --lj-fundo-escuro: #e8ddd0;
  --lj-borda: var(--lj-fundo-escuro);
  --lj-superficie: #ffffff;
  --lj-texto: #2d2a26;
  --lj-texto-secundario: #6b6560;
  --lj-texto-mudo: #9a9590;
  --lj-texto-claro: #ffffff;
  --lj-sucesso: #2e7d32;
  --lj-sucesso-texto: #2e7d32;
  --lj-sucesso-fundo: #2e7d32;
  --lj-texto-sobre-sucesso: #ffffff;
  --lj-perigo: #c62828;
  --lj-perigo-fundo: #fdecec;
  --lj-aviso: #b26a00;
  --lj-aviso-fundo: #fff4d6;
  --lj-info: #1565c0;
  --lj-info-fundo: #e8f1fb;
  --lj-toast-fundo: #2d2a26;
  --lj-toast-texto: #ffffff;
  --lj-radius: 16px;
  --lj-radius-sm: 10px;
  --lj-sombra: 0 2px 12px rgba(0, 0, 0, 0.07);
  --lj-sombra-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

body.lj-body {
  margin: 0;
  font-family: var(--lj-font-family);
  background: var(--lj-fundo);
  color: var(--lj-texto);
  line-height: 1.5;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

.lj-main {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding-bottom: 3rem;
}

.lj-container {
  width: 100%;
  min-width: 0;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.lj-header,
.lj-footer {
  width: 100%;
  min-width: 0;
}

a {
  color: var(--lj-primaria-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
}

.lj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lj-superficie);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  padding-top: env(safe-area-inset-top);
}

.lj-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.lj-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  color: var(--lj-texto);
}

.lj-brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
}

.lj-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lj-brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lj-brand-copy strong {
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lj-brand-copy small {
  font-size: 0.7rem;
  color: var(--lj-texto-mudo);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lj-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}

.lj-nav-link {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.45rem 0.6rem;
  border-radius: var(--lj-radius-sm);
  color: var(--lj-texto-secundario);
  font-size: 0.65rem;
  font-weight: 600;
}

.lj-nav-link i {
  font-size: 1.1rem;
}

.lj-nav-link.is-active,
.lj-nav-link:hover {
  color: var(--lj-primaria-dark);
  background: var(--lj-fundo-claro);
}

.lj-nav-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.lj-cart-badge {
  position: absolute;
  top: 0;
  right: 2px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
  font-size: 0.65rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lj-hero {
  background: linear-gradient(135deg, var(--lj-primaria) 0%, var(--lj-primaria-dark) 100%);
  color: var(--lj-texto-claro);
  padding: 2.2rem 0;
  text-align: center;
}

.lj-hero.has-banner {
  background-size: cover;
  background-position: center;
  padding: 3.5rem 0;
}

.lj-hero h1 {
  margin: 0 0 0.35rem;
  font-size: 1.6rem;
  font-weight: 800;
}

.lj-hero p {
  margin: 0 auto;
  max-width: 560px;
  opacity: 0.92;
}

.lj-hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.lj-toolbar {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lj-search {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--lj-superficie);
  border-radius: 999px;
  padding: 0.65rem 1.1rem;
  box-shadow: var(--lj-sombra);
}

.lj-search i {
  color: var(--lj-texto-mudo);
}

.lj-search input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--lj-texto);
  min-width: 0;
}

.lj-chips {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.lj-chips::-webkit-scrollbar {
  display: none;
}

.lj-chip {
  flex-shrink: 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--lj-superficie);
  color: var(--lj-texto-secundario);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: var(--lj-sombra);
  transition: all 0.15s;
}

.lj-chip.is-active,
.lj-chip:hover {
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
}

.lj-menu {
  margin-top: 1.4rem;
}

.lj-menu-section {
  margin-bottom: 2rem;
}

.lj-section-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lj-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lj-fundo-escuro);
}

.lj-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.lj-card {
  background: var(--lj-superficie);
  border-radius: var(--lj-radius);
  overflow: hidden;
  box-shadow: var(--lj-sombra);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition:
    transform 0.15s,
    box-shadow 0.15s;
}

.lj-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--lj-sombra-hover);
}

.lj-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--lj-fundo-claro);
}

.lj-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lj-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lj-texto-mudo);
  font-size: 1.8rem;
}

.lj-tag {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.lj-tag-promo {
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
}

.lj-tag-last {
  background: var(--lj-aviso-fundo);
  color: var(--lj-aviso);
  top: auto;
  bottom: 0.5rem;
}

.lj-card-body {
  padding: 0.7rem 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.lj-card-body h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
}

.lj-card-body h3 a {
  color: var(--lj-texto);
}

.lj-card-desc {
  margin: 0;
  font-size: 0.76rem;
  color: var(--lj-texto-secundario);
}

.lj-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.lj-price {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.lj-price s {
  color: var(--lj-texto-mudo);
  font-size: 0.72rem;
}

.lj-price strong {
  color: var(--lj-primaria-dark);
  font-size: 1rem;
  font-weight: 800;
}

.lj-price-lg strong {
  font-size: 1.6rem;
}

.lj-price-lg s {
  font-size: 0.95rem;
}

.lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.2rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  background: var(--lj-fundo-escuro);
  color: var(--lj-texto);
  text-align: center;
}

.lj-btn:hover {
  filter: brightness(0.96);
}

.lj-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.lj-btn-primary {
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
}

.lj-btn-primary:hover {
  background: var(--lj-primaria-dark);
  filter: none;
}

.lj-btn-outline {
  background: transparent;
  border: 2px solid var(--lj-primaria);
  color: var(--lj-primaria-dark);
}

.lj-btn-lg {
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

.lj-btn-block {
  width: 100%;
}

.lj-btn-icon {
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.lj-add-btn {
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
}

.lj-add-btn:hover {
  background: var(--lj-primaria-dark);
}

.lj-add-btn.is-added {
  color: var(--lj-texto-sobre-sucesso);
  background: var(--lj-sucesso-fundo);
}

.lj-breadcrumb {
  margin: 1rem auto 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.lj-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.lj-product {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  min-width: 0;
}

.lj-related-products {
  margin-top: 2rem;
}

.lj-product-media {
  width: 100%;
  max-width: 540px;
  min-width: 0;
}

.lj-product-photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--lj-radius);
  overflow: hidden;
  background: var(--lj-superficie);
  box-shadow: var(--lj-sombra);
}

.lj-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.lj-product-photo-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lj-texto-mudo);
  font-size: 3rem;
}

.lj-product-info {
  min-width: 0;
}

.lj-product-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  overflow-x: auto;
}

.lj-thumb {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--lj-radius-sm);
  overflow: hidden;
  cursor: pointer;
  background: var(--lj-superficie);
  flex-shrink: 0;
}

.lj-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lj-thumb.is-active {
  border-color: var(--lj-primaria);
}

.lj-overline {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--lj-primaria-dark);
}

.lj-product-info h1 {
  margin: 0.2rem 0 0.6rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.lj-product-desc {
  color: var(--lj-texto-secundario);
  margin: 0.8rem 0 0;
  white-space: pre-line;
}

.lj-customizer {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid var(--lj-borda);
  border-radius: var(--lj-radius);
  background: var(--lj-superficie);
}

.lj-customizer h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.lj-customizer p {
  margin: 0 0 0.75rem;
  color: var(--lj-texto-secundario);
  font-size: 0.9rem;
}

.lj-customizer-list {
  display: grid;
  gap: 0.5rem;
}

.lj-customizer-progress {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.lj-customizer-progress[hidden] {
  display: none;
}

.lj-customizer-progress-copy {
  display: flex;
  align-items: flex-end;
}

.lj-customizer-progress-copy span {
  color: var(--lj-primaria-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lj-customizer-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--lj-borda);
}

.lj-customizer-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lj-primaria), var(--lj-primaria-dark));
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.lj-customizer-step {
  display: grid;
  gap: 0.8rem;
  min-width: 0;
}

.lj-customizer-step[hidden] {
  display: none;
}

.lj-customizer-step.is-forward {
  animation: lj-customizer-step-forward 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.lj-customizer-step.is-backward {
  animation: lj-customizer-step-backward 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.lj-customizer-step-header {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lj-customizer-title,
.lj-customizer-step-title {
  margin: 0;
  color: var(--lj-texto);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: none;
}

.lj-customizer-step-title:focus {
  outline: none;
}

.lj-customizer-step-header small {
  color: var(--lj-texto-secundario);
  font-size: 0.78rem;
}

.lj-customizer-step-options {
  display: grid;
  gap: 0.5rem;
}

.lj-customizer-step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding-top: 0.25rem;
}

.lj-customizer-step-actions .lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
}

.lj-customizer-step-actions .lj-btn:disabled {
  visibility: hidden;
}

.lj-customizer-step-empty {
  margin: 0;
  padding: 0.8rem;
  border: 1px dashed var(--lj-borda);
  border-radius: var(--lj-radius-sm);
  color: var(--lj-texto-secundario);
  background: var(--lj-fundo-claro);
  font-size: 0.8rem;
  text-align: center;
}

.lj-customizer-separator {
  height: 1px;
  background: var(--lj-borda);
}

.lj-customizer-option {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: var(--lj-radius-sm);
  background: var(--lj-fundo-claro);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lj-customizer-option:hover {
  border-color: var(--lj-borda);
  transform: translateY(-1px);
}

.lj-customizer-option.is-selected {
  border-color: color-mix(in srgb, var(--lj-primaria) 55%, var(--lj-borda));
  background: color-mix(in srgb, var(--lj-primaria) 8%, var(--lj-superficie));
  box-shadow: 0 4px 12px color-mix(in srgb, var(--lj-primaria) 10%, transparent);
}

.lj-customizer-option.is-locked {
  cursor: default;
}

.lj-customizer-option.is-locked:hover {
  transform: none;
}

.lj-customizer-option input {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--lj-primaria);
}

.lj-customizer-image {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--lj-borda);
  border-radius: 8px;
  background: var(--lj-superficie);
  color: var(--lj-texto-mudo);
}

.lj-customizer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lj-customizer-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.lj-customizer-copy strong {
  overflow-wrap: anywhere;
}

.lj-customizer-option small,
.lj-cart-customization {
  color: var(--lj-texto-secundario);
  font-size: 0.8rem;
}

.lj-customizer-lock {
  color: var(--lj-primaria);
  font-weight: 700;
}

.lj-customizer-complete {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding: 0.75rem;
  border: 1px solid color-mix(in srgb, var(--lj-sucesso-texto) 50%, var(--lj-borda));
  border-radius: var(--lj-radius-sm);
  color: var(--lj-sucesso-texto);
  background: color-mix(in srgb, var(--lj-sucesso-fundo) 18%, var(--lj-superficie));
  animation: lj-customizer-complete-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lj-customizer-complete[hidden] {
  display: none;
}

.lj-customizer-complete > i {
  font-size: 1.15rem;
}

.lj-customizer-complete > span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lj-customizer-complete strong {
  color: var(--lj-texto);
  font-size: 0.82rem;
}

.lj-customizer-complete small {
  color: var(--lj-texto-secundario);
  font-size: 0.72rem;
}

@keyframes lj-customizer-step-forward {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lj-customizer-step-backward {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lj-customizer-complete-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lj-customizer-step.is-forward,
  .lj-customizer-step.is-backward,
  .lj-customizer-complete {
    animation: none;
  }

  .lj-customizer-progress-track span,
  .lj-customizer-option {
    transition: none;
  }
}

.lj-cart-customization {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 0.1rem;
  margin: 0.15rem 0 0.25rem;
}

.lj-cart-customization > span {
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.lj-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.lj-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--lj-superficie);
  border-radius: 999px;
  box-shadow: var(--lj-sombra);
  overflow: hidden;
}

.lj-stepper button {
  width: 42px;
  height: 46px;
  border: none;
  background: transparent;
  color: var(--lj-primaria-dark);
  font-size: 0.9rem;
  cursor: pointer;
}

.lj-stepper input {
  width: 46px;
  border: none;
  text-align: center;
  font: inherit;
  font-weight: 800;
  color: var(--lj-texto);
  background: transparent;
  -moz-appearance: textfield;
}

.lj-stepper input::-webkit-outer-spin-button,
.lj-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lj-stock-hint {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  color: var(--lj-aviso);
  font-weight: 600;
}

.lj-page-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lj-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  min-width: 0;
}

.lj-cart-layout.is-empty,
.lj-cart-layout.is-loading {
  grid-template-columns: minmax(0, 1fr);
}

.lj-cart-items,
.lj-cart-summary {
  min-width: 0;
}

#lj-cart-list,
.lj-cart-item {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.lj-cart-layout.is-empty .lj-cart-items,
.lj-cart-layout.is-loading .lj-cart-items {
  grid-column: 1 / -1;
}

.lj-cart-layout.is-empty .lj-empty {
  max-width: 520px;
  margin: 0 auto;
}

.lj-cart-loading {
  padding: 2rem;
  text-align: center;
  color: var(--lj-texto-mudo);
}

.lj-cart-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--lj-superficie);
  border-radius: var(--lj-radius);
  padding: 0.7rem;
  box-shadow: var(--lj-sombra);
  margin-bottom: 0.7rem;
}

.lj-cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--lj-radius-sm);
  object-fit: cover;
  background: var(--lj-fundo-claro);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lj-texto-mudo);
}

.lj-cart-item-info {
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.lj-cart-item-info h3 {
  margin: 0 0 0.15rem;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lj-cart-item-price {
  font-size: 0.82rem;
  color: var(--lj-texto-secundario);
}

.lj-cart-item-subtotal {
  font-weight: 800;
  color: var(--lj-primaria-dark);
  font-size: 0.9rem;
}

.lj-cart-item-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.lj-cart-item .lj-stepper {
  box-shadow: none;
  border: 1px solid var(--lj-fundo-escuro);
}

.lj-cart-item .lj-stepper button {
  width: 32px;
  height: 34px;
}

.lj-cart-item .lj-stepper input {
  width: 34px;
  font-size: 0.85rem;
}

.lj-cart-remove {
  border: none;
  background: none;
  color: var(--lj-perigo);
  font-size: 0.8rem;
  cursor: pointer;
  padding: 0.2rem;
}

.lj-cart-summary {
  background: var(--lj-superficie);
  border-radius: var(--lj-radius);
  padding: 1.1rem;
  box-shadow: var(--lj-sombra);
  height: fit-content;
}

.lj-cart-summary h2 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.lj-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--lj-texto-secundario);
  padding: 0.3rem 0;
}

.lj-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed var(--lj-fundo-escuro);
  margin-top: 0.6rem;
  padding-top: 0.8rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.lj-summary-total strong {
  font-size: 1.25rem;
  color: var(--lj-primaria-dark);
}

.lj-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  flex: 1;
  min-width: 0;
}

.lj-form-row {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.lj-form-group label,
.lj-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lj-texto-secundario);
}

.lj-label-alt {
  font-weight: 500;
  color: var(--lj-texto-mudo);
}

.lj-form-group input,
.lj-form-group textarea,
.lj-form-group select {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--lj-fundo-escuro);
  border-radius: var(--lj-radius-sm);
  background: var(--lj-fundo-claro);
  color: var(--lj-texto);
  width: 100%;
}

.lj-form-group textarea {
  min-height: 88px;
  max-height: 180px;
  resize: vertical;
}

.lj-delivery-address {
  border: 1px solid var(--lj-fundo-escuro);
  border-radius: var(--lj-radius-sm);
  padding: 0.85rem;
  margin-bottom: 0.9rem;
  background: var(--lj-fundo-claro);
}

.lj-form-group input:focus,
.lj-form-group textarea:focus,
.lj-form-group select:focus {
  outline: 2px solid var(--lj-primaria-light);
  border-color: var(--lj-primaria);
}

.lj-radio {
  display: block;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.lj-radio input {
  position: absolute;
  opacity: 0;
}

.lj-radio-card {
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--lj-fundo-escuro);
  border-radius: var(--lj-radius-sm);
  transition: all 0.15s;
}

.lj-radio-card i {
  font-size: 1.15rem;
  color: var(--lj-primaria-dark);
}

.lj-radio-card span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lj-radio-card strong,
.lj-radio-card small {
  overflow-wrap: anywhere;
}

.lj-radio-card strong {
  font-size: 0.88rem;
}

.lj-radio-card small {
  font-size: 0.74rem;
  color: var(--lj-texto-mudo);
}

.lj-radio input:checked + .lj-radio-card {
  border-color: var(--lj-primaria);
  background: var(--lj-fundo-claro);
}

.lj-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.95rem;
  border-radius: var(--lj-radius-sm);
  font-size: 0.85rem;
  margin: 0.5rem 0;
}

.lj-alert i {
  margin-top: 0.15rem;
}

.lj-alert-info {
  background: var(--lj-info-fundo);
  color: var(--lj-info);
}

.lj-alert-warn {
  background: var(--lj-aviso-fundo);
  color: var(--lj-aviso);
}

.lj-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
}

.lj-status-lg {
  font-size: 0.82rem;
  padding: 0.4rem 0.9rem;
}

.lj-status.is-success {
  background: var(--lj-sucesso-fundo);
  color: var(--lj-texto-sobre-sucesso);
}

.lj-status.is-warning {
  background: var(--lj-aviso-fundo);
  color: var(--lj-aviso);
}

.lj-status.is-muted {
  background: var(--lj-fundo-claro);
  color: var(--lj-texto-secundario);
}

.lj-status.is-danger {
  background: var(--lj-perigo-fundo);
  color: var(--lj-perigo);
}

.lj-text-success {
  color: var(--lj-sucesso-texto);
}

.lj-text-center {
  text-align: center;
}

.lj-text-right {
  text-align: right;
}

.lj-muted {
  color: var(--lj-texto-mudo);
  font-size: 0.8rem;
}

.lj-checkout-error {
  color: var(--lj-perigo);
  font-size: 0.83rem;
  font-weight: 600;
  margin: 0.6rem 0 0;
}

.lj-toast-container {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(92vw, 380px);
}

.lj-toast {
  background: var(--lj-toast-fundo);
  color: var(--lj-toast-texto);
  padding: 0.8rem 1rem;
  border-radius: var(--lj-radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: var(--lj-sombra-hover);
  animation: lj-toast-in 0.25s ease;
}

.lj-toast.is-success i {
  color: color-mix(in srgb, var(--lj-sucesso) 55%, var(--lj-toast-texto));
}

.lj-toast.is-error i {
  color: color-mix(in srgb, var(--lj-perigo) 60%, var(--lj-toast-texto));
}

@keyframes lj-toast-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lj-auth {
  display: flex;
  justify-content: center;
  padding-top: 1.6rem;
}

.lj-auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--lj-superficie);
  border-radius: var(--lj-radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--lj-sombra);
}

.lj-auth-head {
  text-align: center;
  margin-bottom: 1.2rem;
}

.lj-auth-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.lj-auth-mark {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
  margin: 0 auto 0.6rem;
}

.lj-auth-head h1 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  font-weight: 800;
}

.lj-auth-head p {
  margin: 0;
  color: var(--lj-texto-secundario);
  font-size: 0.85rem;
}

.lj-auth-help {
  text-align: center;
  font-size: 0.8rem;
  color: var(--lj-texto-mudo);
  margin: 1rem 0 0;
}

.lj-return-card {
  text-align: center;
}

.lj-return-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.8rem;
}

.lj-return-icon.is-success {
  color: var(--lj-sucesso);
}

.lj-return-icon.is-warning {
  color: var(--lj-aviso);
}

.lj-return-icon.is-danger {
  color: var(--lj-perigo);
}

.lj-return-card h1 {
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.lj-return-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.3rem;
}

.lj-closed {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.lj-closed-hours {
  text-align: left;
  background: var(--lj-fundo-claro);
  padding: 0.9rem 1.1rem;
  border-radius: var(--lj-radius-sm);
  margin: 1rem 0;
}

.lj-closed-hours h2 {
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
}

.lj-closed-hours ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--lj-texto-secundario);
}

.lj-account-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.lj-account-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.lj-panel {
  background: var(--lj-superficie);
  border-radius: var(--lj-radius);
  padding: 1.2rem;
  box-shadow: var(--lj-sombra);
  min-width: 0;
}

.lj-panel-title {
  margin: 0 0 0.9rem;
  font-size: 1.02rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lj-profile-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lj-profile-head h2 {
  margin: 0;
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}

.lj-profile-info {
  flex: 1;
  min-width: 0;
}

.lj-profile-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.35rem;
}

.lj-profile-meta .lj-muted {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lj-profile-meta .lj-link-danger {
  flex-shrink: 0;
}

.lj-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.lj-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.lj-avatar[hidden] {
  display: none;
}

.lj-avatar-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lj-fundo-escuro);
  color: var(--lj-texto-mudo);
  font-size: 1.6rem;
}

.lj-avatar-edit {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--lj-primaria);
  color: var(--lj-texto-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  border: 2px solid var(--lj-superficie);
}

.lj-link-danger {
  color: var(--lj-perigo);
  font-size: 0.8rem;
  font-weight: 700;
}

.lj-credit-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: var(--lj-radius-sm);
  background: linear-gradient(135deg, var(--lj-primaria) 0%, var(--lj-primaria-dark) 100%);
  color: var(--lj-texto-claro);
}

.lj-credit-box span {
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.lj-credit-box strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.lj-credit-pay {
  margin-top: 0.8rem;
  padding: 0.85rem;
  border: 1px solid var(--lj-fundo-escuro);
  border-radius: var(--lj-radius-sm);
  background: var(--lj-fundo-claro);
}

.lj-credit-pay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.lj-credit-pay-head span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--lj-texto-secundario);
}

.lj-credit-pay-head strong {
  color: var(--lj-primaria-dark);
  font-size: 1.05rem;
}

.lj-credit-pay-form .lj-form-group {
  margin-bottom: 0.75rem;
}

.lj-form-help {
  color: var(--lj-texto-mudo);
  font-size: 0.74rem;
}

.lj-details {
  margin-top: 1rem;
  border-top: 1px dashed var(--lj-fundo-escuro);
  padding-top: 0.8rem;
}

.lj-details summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--lj-primaria-dark);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  list-style: none;
}

.lj-details summary::-webkit-details-marker {
  display: none;
}

.lj-profile-form {
  margin-top: 1rem;
}

.lj-order-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lj-order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid var(--lj-fundo-claro);
  color: var(--lj-texto);
}

.lj-order-item:hover {
  background: var(--lj-fundo-claro);
  border-radius: var(--lj-radius-sm);
}

.lj-order-item-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lj-order-item-side {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.lj-order-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.lj-order-row > div {
  display: flex;
  flex-direction: column;
}

.lj-order-meta {
  align-items: flex-end;
}

.lj-current-order .lj-order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) auto;
  align-items: center;
}

.lj-current-order .lj-order-row > div:first-child {
  min-width: 0;
}

.lj-current-order .lj-order-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 0.7rem;
}

.lj-current-order .lj-order-meta strong,
.lj-order-item-side > strong {
  white-space: nowrap;
}

.lj-order-page {
  margin-top: 0.5rem;
}

.lj-order-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.lj-order-head .lj-page-title {
  margin: 0;
}

.lj-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.lj-order-table {
  table-layout: fixed;
}

.lj-order-table-quantity {
  width: 4.5rem;
}

.lj-order-table-price {
  width: 6.5rem;
}

.lj-order-table-subtotal {
  width: 7rem;
}

.lj-order-table td:first-child {
  overflow-wrap: anywhere;
}

.lj-table-scroll {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.lj-table th {
  text-align: left;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lj-texto-mudo);
  padding: 0.5rem 0.4rem;
  border-bottom: 1px solid var(--lj-fundo-escuro);
}

.lj-table th.lj-text-right,
.lj-table td.lj-text-right {
  text-align: right;
}

.lj-table th.lj-text-center,
.lj-table td.lj-text-center {
  text-align: center;
}

.lj-table td {
  padding: 0.6rem 0.4rem;
  border-bottom: 1px solid var(--lj-fundo-claro);
}

.lj-table tfoot td {
  border-bottom: none;
  padding-top: 0.8rem;
  font-weight: 700;
}

.lj-order-total {
  font-size: 1.15rem;
  color: var(--lj-primaria-dark);
}

.lj-order-obs {
  margin-top: 0.8rem;
}

.lj-pay-box {
  margin-top: 1.4rem;
  border-top: 1px dashed var(--lj-fundo-escuro);
  padding-top: 1.1rem;
}

.lj-pay-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.lj-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--lj-texto-secundario);
}

.lj-empty i {
  font-size: 2.4rem;
  color: var(--lj-texto-mudo);
  margin-bottom: 0.8rem;
}

.lj-empty h2 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  color: var(--lj-texto);
}

.lj-empty .lj-btn {
  margin-top: 1rem;
}

.lj-empty-sm {
  padding: 1.6rem 1rem;
}

.lj-footer {
  background: var(--lj-fundo-escuro);
  margin-top: auto;
}

.lj-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  padding: 2rem 1rem;
}

.lj-footer-about {
  max-width: none;
}

.lj-footer-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.lj-footer-col h4 {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lj-footer-col p,
.lj-footer-col li {
  font-size: 0.82rem;
  color: var(--lj-texto-secundario);
  margin: 0 0 0.3rem;
}

.lj-footer-col a,
.lj-footer-col p {
  overflow-wrap: anywhere;
}

.lj-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lj-footer-col li {
  padding: 0.15rem 0;
}

.lj-footer-note {
  font-style: italic;
}

.lj-footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0.9rem 0;
  font-size: 0.75rem;
  color: var(--lj-texto-mudo);
  text-align: center;
}

@media (max-width: 759px) {
  .lj-order-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .lj-order-item-side {
    justify-content: flex-start;
    width: 100%;
  }

  .lj-current-order .lj-order-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .lj-current-order .lj-order-meta {
    justify-content: flex-start;
  }

  .lj-current-order .lj-btn {
    width: 100%;
  }
}

@media (min-width: 760px) {
  .lj-footer-details {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
  }
}

.lj-whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 500;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--lj-sombra-hover);
  transition: transform 0.15s;
}

.lj-whatsapp-fab:hover {
  transform: scale(1.06);
}

@media (max-width: 639px) {
  .lj-header-inner {
    gap: 0.4rem;
  }

  .lj-brand {
    gap: 0.45rem;
  }

  .lj-brand-logo,
  .lj-brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .lj-nav {
    gap: 0;
  }

  .lj-nav-link {
    padding: 0.4rem 0.45rem;
  }

  .lj-hero {
    padding: 1.8rem 0;
  }

  .lj-hero.has-banner {
    padding: 2.5rem 0;
  }

  .lj-product-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .lj-product-actions .lj-stepper {
    justify-self: center;
  }

  .lj-product-actions > .lj-btn {
    width: 100%;
  }

  .lj-cart-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
  }

  .lj-cart-item-info h3 {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .lj-cart-item-side {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 0.65rem;
    border-top: 1px solid var(--lj-fundo-claro);
  }

  .lj-form-row {
    flex-direction: column;
    gap: 0;
  }

  .lj-form-row .lj-form-group {
    flex: 1 1 auto !important;
    width: 100%;
  }

  .lj-panel,
  .lj-auth-card,
  .lj-cart-summary {
    padding: 1rem;
  }

  .lj-profile-head {
    align-items: flex-start;
    gap: 0.75rem;
  }

  .lj-avatar {
    width: 64px;
    height: 64px;
  }

  .lj-profile-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .lj-profile-meta .lj-muted {
    max-width: 100%;
  }

  .lj-credit-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .lj-credit-pay-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .lj-order-head {
    align-items: flex-start;
  }

  .lj-table-scroll .lj-table {
    min-width: 520px;
  }

  .lj-pay-actions .lj-btn,
  .lj-return-actions .lj-btn {
    width: 100%;
  }

  .lj-auth {
    padding-top: 1rem;
  }

  .lj-whatsapp-fab {
    right: 0.75rem;
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  .lj-toast-container {
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 359px) {
  .lj-brand-copy {
    display: none;
  }

  .lj-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 640px) {
  .lj-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .lj-toolbar {
    flex-direction: row;
    align-items: center;
  }

  .lj-search {
    max-width: 320px;
  }

  .lj-nav-link {
    flex-direction: row;
    gap: 0.45rem;
    font-size: 0.82rem;
    padding: 0.55rem 0.9rem;
  }

  .lj-cart-badge {
    top: -3px;
    right: -3px;
  }

  .lj-hero h1 {
    font-size: 2rem;
  }
}

@media (min-width: 900px) {
  .lj-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lj-product {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
  }

  .lj-product-photo {
    height: 400px;
    aspect-ratio: auto;
  }

  .lj-cart-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: start;
  }

  .lj-account-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    align-items: start;
  }

  .lj-profile-panel {
    position: sticky;
    top: 80px;
  }

  .lj-pay-actions {
    flex-direction: row;
  }

  .lj-return-actions {
    flex-direction: row;
    justify-content: center;
  }
}

body.lj-editor-enabled .lj-header {
  position: relative;
  top: auto;
}

.lj-editor-bar,
.lj-editor-disabled-notice,
.lj-editor-context-btn,
.lj-editor-card-actions,
.lj-editor-card-state,
.lj-editor-no-purchase,
.lj-editor-empty-category,
.lj-editor-purchase-blocked,
.lj-editor-product-notice,
.lj-editor-overlay,
.lj-editor-dialog-overlay {
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.lj-editor-drawer-open {
  overflow: hidden;
}

.lj-editor-bar {
  position: sticky;
  top: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.55rem 0.8rem;
  color: #f8fafc;
  background: #172033;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.lj-editor-bar-main,
.lj-editor-bar-actions,
.lj-editor-mode,
.lj-editor-bar-btn {
  display: flex;
  align-items: center;
}

.lj-editor-bar-main {
  gap: 0.65rem;
  min-width: 0;
}

.lj-editor-mode {
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.lj-editor-save-state {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  white-space: nowrap;
}

.lj-editor-save-state.is-dirty {
  color: #422006;
  background: #fde68a;
}

.lj-editor-bar-actions {
  justify-content: flex-end;
  gap: 0.35rem;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.lj-editor-bar-actions::-webkit-scrollbar {
  display: none;
}

.lj-editor-bar-btn {
  flex: 0 0 auto;
  justify-content: center;
  gap: 0.35rem;
  min-height: 36px;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9px;
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.lj-editor-bar-btn:hover,
.lj-editor-bar-btn[aria-pressed="true"] {
  background: rgba(255, 255, 255, 0.18);
}

.lj-editor-bar-btn.is-preview {
  border-color: #93c5fd;
}

.lj-editor-disabled-notice {
  color: #7c2d12;
  background: #ffedd5;
  border-bottom: 1px solid #fdba74;
}

.lj-editor-disabled-notice .lj-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.lj-editor-disabled-notice .lj-btn {
  flex: 0 0 auto;
  padding: 0.45rem 0.8rem;
}

.lj-brand-wrap,
.lj-product-media,
.lj-product-info,
.lj-customizer,
.lj-footer,
.lj-hero {
  position: relative;
}

.lj-brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.lj-editor-context-btn {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 50%;
  color: #0f172a;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
  cursor: pointer;
}

.lj-brand-wrap > .lj-editor-context-btn {
  position: static;
  flex: 0 0 34px;
}

.lj-editor-context-btn.is-on-dark {
  top: 0.75rem;
  right: 0.75rem;
}

.lj-editor-context-btn.is-static {
  position: static;
  flex: 0 0 34px;
}

.lj-editor-context-btn.is-product-media {
  top: 0.75rem;
  right: 0.75rem;
}

.lj-editor-context-btn.is-product-info {
  top: 0;
  right: 0;
}

.lj-editor-context-btn.is-customizer {
  top: 0.75rem;
  right: 0.75rem;
}

.lj-editor-context-btn.is-footer {
  top: 1rem;
  right: 1rem;
}

.lj-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.lj-section-heading > div {
  flex: 1;
  min-width: 0;
}

.lj-section-heading .lj-section-title {
  margin-bottom: 0.2rem;
}

.lj-section-description {
  margin: 0;
  color: var(--lj-texto-secundario);
  font-size: 0.82rem;
  white-space: pre-line;
}

.lj-card {
  position: relative;
}

.lj-card.is-editor-hidden,
.lj-card.is-editor-unavailable,
.lj-product.is-editor-disabled {
  opacity: 0.58;
}

.lj-card.is-editor-hidden:hover,
.lj-card.is-editor-unavailable:hover {
  transform: none;
}

.lj-editor-card-actions {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 10;
  display: flex;
  gap: 0.3rem;
}

.lj-editor-card-actions button,
.lj-editor-sort-actions button,
.lj-editor-gallery-actions button,
.lj-editor-close,
.lj-editor-drag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  color: #334155;
  background: #fff;
  cursor: pointer;
}

.lj-editor-card-state {
  position: absolute;
  right: 0.45rem;
  bottom: calc(100% - 0.25rem);
  z-index: 9;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  max-width: calc(100% - 0.9rem);
  transform: translateY(100%);
  pointer-events: none;
}

.lj-editor-card-state span {
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(15, 23, 42, 0.86);
  font-size: 0.58rem;
  font-weight: 800;
}

.lj-editor-no-purchase {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #991b1b;
  background: #fee2e2;
}

.lj-editor-empty-category,
.lj-editor-purchase-blocked,
.lj-editor-product-notice {
  border: 1px dashed #94a3b8;
  border-radius: var(--lj-radius-sm);
  color: #475569;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.lj-editor-empty-category {
  margin: 0 0 0.75rem;
  padding: 0.75rem;
}

.lj-editor-product-notice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.75rem 0.9rem;
  border-style: solid;
  border-color: #f59e0b;
  color: #78350f;
  background: #fffbeb;
}

.lj-editor-product-notice span {
  flex: 1;
}

.lj-editor-purchase-blocked {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.75rem;
}

.lj-customizer-option.is-editor-hidden-item {
  opacity: 0.55;
  border: 1px dashed #94a3b8;
}

.lj-menu-section.is-editor-category-hidden-preview {
  opacity: 0.55;
  outline: 2px dashed #f59e0b;
  outline-offset: 6px;
}

.lj-editor-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.lj-editor-overlay[hidden] {
  display: none;
}

.lj-editor-overlay.is-open {
  opacity: 1;
}

.lj-editor-drawer {
  display: flex;
  flex-direction: column;
  width: min(680px, 100vw);
  height: 100%;
  color: #1e293b;
  background: #f8fafc;
  box-shadow: -18px 0 45px rgba(15, 23, 42, 0.24);
  transform: translateX(100%);
  transition: transform 0.2s ease;
  outline: none;
}

.lj-editor-overlay.is-open .lj-editor-drawer {
  transform: translateX(0);
}

.lj-editor-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.lj-editor-drawer-eyebrow {
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lj-editor-drawer-header h2 {
  margin: 0.12rem 0 0;
  font-size: 1.15rem;
}

.lj-editor-close {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}

.lj-editor-drawer-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.lj-editor-panel {
  padding: 1rem 1.1rem calc(1.2rem + env(safe-area-inset-bottom));
}

.lj-editor-panel[hidden] {
  display: none;
}

.lj-editor-section-intro {
  margin-bottom: 1rem;
}

.lj-editor-section-intro h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.lj-editor-section-intro p {
  margin: 0;
  color: #64748b;
  font-size: 0.8rem;
}

.lj-editor-fieldset {
  margin: 1rem 0;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.lj-editor-fieldset legend {
  padding: 0 0.35rem;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
}

.lj-editor-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.lj-editor-switch-row span {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lj-editor-switch-row strong {
  font-size: 0.84rem;
}

.lj-editor-switch-row small {
  color: #64748b;
  font-size: 0.7rem;
}

.lj-editor-switch-row input,
.lj-editor-custom-toggles input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  accent-color: var(--lj-primaria);
}

.lj-editor-appearance-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.lj-editor-appearance-controls .lj-form-group {
  margin-bottom: 0;
}

.lj-editor-appearance-preview {
  display: grid;
  gap: 0.8rem;
  margin: 1rem 0;
  padding: 0.85rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.lj-editor-theme-preview {
  display: grid;
  gap: 0.4rem;
}

.lj-editor-preview-label {
  color: #334155;
  font-size: 0.72rem;
  font-weight: 800;
}

.lj-editor-theme-swatches {
  display: grid;
  grid-template-columns: repeat(11, minmax(14px, 1fr));
  min-height: 38px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  background: #f8fafc;
}

.lj-editor-theme-swatches > span {
  min-width: 0;
  background: var(--loja-appearance-swatch-color, transparent);
}

.lj-editor-font-preview {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 78px;
  padding: 0.8rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  color: #1e293b;
  background: #f8fafc;
  font-family: var(--loja-appearance-font-family, var(--lj-font-family));
}

.lj-editor-font-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 10px;
  color: #fff;
  background: #172033;
  font-size: 1.15rem;
  font-weight: 700;
}

.lj-editor-color-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.lj-editor-color-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid #e2e8f0;
  border-radius: 9px;
  font-size: 0.72rem;
  font-weight: 700;
}

.lj-editor-color-field input {
  width: 38px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.lj-editor-form-actions {
  position: sticky;
  bottom: -1.2rem;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  gap: 0.55rem;
  margin: 1.1rem -1.1rem -1.2rem;
  padding: 0.8rem 1.1rem calc(0.8rem + env(safe-area-inset-bottom));
  border-top: 1px solid #e2e8f0;
  background: rgba(248, 250, 252, 0.96);
  backdrop-filter: blur(8px);
}

.lj-editor-panel form.is-saving {
  opacity: 0.65;
  pointer-events: none;
}

.lj-editor-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.lj-editor-media-card {
  padding: 0.7rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
}

.lj-editor-media-card.is-removed {
  border-color: #fca5a5;
  background: #fef2f2;
}

.lj-editor-media-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 9px;
  color: #94a3b8;
  background: #f1f5f9;
  font-size: 1.6rem;
}

.lj-editor-media-preview.is-banner {
  aspect-ratio: 16 / 6;
}

.lj-editor-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lj-editor-media-copy {
  display: flex;
  flex-direction: column;
  margin: 0.55rem 0;
}

.lj-editor-media-copy strong {
  font-size: 0.8rem;
}

.lj-editor-media-copy small {
  color: #64748b;
  font-size: 0.66rem;
}

.lj-editor-media-actions,
.lj-editor-inline-actions {
  display: flex;
  gap: 0.4rem;
}

.lj-editor-media-actions .lj-btn {
  flex: 1;
  padding: 0.45rem 0.55rem;
  font-size: 0.72rem;
}

.lj-editor-media-actions .lj-btn.is-danger,
.lj-btn.is-danger,
.lj-editor-dialog .lj-btn.is-danger {
  flex: 0 0 auto;
  color: #991b1b;
  background: #fee2e2;
}

.lj-editor-sort-list {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lj-editor-sort-list > li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  background: #fff;
}

.lj-editor-sort-list > li.is-dragging {
  opacity: 0.4;
}

.lj-editor-drag {
  color: #64748b;
  cursor: grab;
  touch-action: none;
}

.lj-editor-sort-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lj-editor-sort-copy strong {
  overflow: hidden;
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lj-editor-sort-copy small {
  color: #64748b;
  font-size: 0.67rem;
}

.lj-editor-sort-copy input {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.55rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

.lj-editor-sort-actions {
  display: flex;
  gap: 0.22rem;
}

.lj-editor-sort-actions button {
  width: 30px;
  height: 30px;
}

.lj-editor-sort-list.is-customization {
  gap: 0;
  overflow: hidden;
  border: 1px solid #dbe3ec;
  border-radius: 12px;
  background: #fff;
}

.lj-editor-sort-list.is-customization > li {
  grid-template-columns: 34px minmax(0, 1fr) auto;
  min-height: 56px;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border: 0;
  border-bottom: 1px solid #e2e8f0;
  border-radius: 0;
  transition: background-color 0.15s ease;
}

.lj-editor-sort-list.is-customization > li:last-child {
  border-bottom: 0;
}

.lj-editor-sort-list.is-customization > li:hover {
  background: #f8fafc;
}

.lj-editor-sort-list.is-customization > li:focus-within {
  z-index: 1;
  outline: 2px solid rgba(192, 122, 53, 0.28);
  outline-offset: -2px;
}

.lj-editor-sort-list.is-customization > li[data-type="materia"] {
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
}

.lj-editor-sort-list.is-customization > li[data-type="titulo"] {
  box-shadow: inset 3px 0 var(--lj-primaria);
  background: #f8fafc;
}

.lj-editor-sort-list.is-customization > li[data-type="separador"] {
  background: #fbfdff;
}

.lj-editor-sort-list.is-customization > li[data-type="separador"] .lj-editor-sort-copy {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
}

.lj-editor-sort-list.is-customization .lj-editor-drag,
.lj-editor-sort-list.is-customization .lj-editor-sort-actions button {
  width: 34px;
  height: 34px;
}

.lj-editor-sort-list.is-customization .lj-editor-sort-actions {
  justify-self: end;
  flex-wrap: nowrap;
}

.lj-editor-sort-list.is-customization .lj-editor-sort-actions button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}

.lj-editor-custom-toggles {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #475569;
  font-size: 0.68rem;
}

.lj-editor-custom-toggles label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.45rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.lj-editor-custom-toggles label:has(input:checked) {
  border-color: var(--lj-primaria-light);
  color: #7c4a1f;
  background: #fff7ed;
}

.lj-editor-custom-toggles label:has(input:disabled) {
  opacity: 0.5;
  cursor: not-allowed;
}

.lj-editor-custom-toggles input {
  width: 16px;
  height: 16px;
  flex-basis: 16px;
}

.lj-editor-separator-preview {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 0.25rem;
  background: #cbd5e1;
}

.lj-editor-sort-list.is-customization .lj-editor-separator-preview {
  flex: 1;
  margin-top: 0;
}

.lj-editor-inline-actions {
  margin-bottom: 0.75rem;
}

.lj-editor-inline-actions .lj-btn {
  padding: 0.5rem 0.7rem;
  font-size: 0.72rem;
}

.lj-editor-gallery-primary {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.65rem;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #fff;
}

.lj-editor-gallery-primary[hidden] {
  display: none;
}

.lj-editor-gallery-primary img {
  width: 88px;
  height: 88px;
  border-radius: 9px;
  object-fit: cover;
  background: #e2e8f0;
}

.lj-editor-gallery-primary-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.2rem;
}

.lj-editor-gallery-primary-copy strong,
.lj-editor-gallery-heading strong {
  color: #0f172a;
  font-size: 0.82rem;
}

.lj-editor-gallery-primary-copy small,
.lj-editor-gallery-heading small {
  color: #64748b;
  font-size: 0.72rem;
  line-height: 1.35;
}

.lj-editor-gallery-primary-badge {
  padding: 0.28rem 0.48rem;
  border-radius: 999px;
  color: #475569;
  background: #f1f5f9;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.lj-editor-gallery-heading {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.55rem;
}

.lj-editor-gallery-empty {
  margin: 0 0 0.65rem;
  padding: 0.7rem;
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  color: #64748b;
  background: #f8fafc;
  font-size: 0.75rem;
  text-align: center;
}

.lj-editor-gallery-empty[hidden] {
  display: none;
}

.lj-editor-gallery,
.lj-editor-gallery-new {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.lj-editor-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 10px;
  background: #e2e8f0;
}

.lj-editor-gallery-item.is-removed {
  border-color: #ef4444;
  opacity: 0.35;
}

.lj-editor-gallery-item img,
.lj-editor-gallery-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lj-editor-gallery-actions {
  position: absolute;
  right: 0.3rem;
  bottom: 0.3rem;
  left: 0.3rem;
  display: flex;
  justify-content: center;
  gap: 0.2rem;
}

.lj-editor-gallery-actions button {
  width: 28px;
  height: 28px;
}

.lj-editor-gallery-upload {
  margin-top: 0.75rem;
  cursor: pointer;
}

.lj-editor-gallery-new {
  margin-top: 0.55rem;
}

.lj-editor-gallery-new img {
  aspect-ratio: 1;
  border: 2px dashed #60a5fa;
  border-radius: 10px;
}

@media (max-width: 600px) {
  .lj-editor-gallery-primary {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .lj-editor-gallery-primary img {
    width: 72px;
    height: 72px;
  }

  .lj-editor-gallery-primary-badge {
    grid-column: 2;
    justify-self: start;
  }
}

.lj-editor-dialog-overlay {
  position: fixed;
  inset: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.lj-editor-dialog-overlay[hidden] {
  display: none;
}

.lj-editor-dialog-overlay.is-open {
  opacity: 1;
}

.lj-editor-dialog {
  width: min(420px, 100%);
  padding: 0;
  border-radius: 16px;
  color: #1e293b;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.34);
  text-align: center;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.18s ease;
}

.lj-editor-dialog .modal-header {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1.25rem 1.25rem 0.4rem;
}

.lj-editor-dialog .modal-body {
  padding: 0 1.25rem;
}

.lj-editor-dialog-overlay.is-open .lj-editor-dialog {
  transform: translateY(0) scale(1);
}

.lj-editor-dialog-icon {
  color: #d97706;
  font-size: 1.8rem;
}

.lj-editor-dialog h3 {
  margin: 0.45rem 0 0.25rem;
  font-size: 1.05rem;
}

.lj-editor-dialog p {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
}

.lj-editor-dialog-actions {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0 1.25rem 1.25rem;
}

body.lj-editor-preview .lj-editor-context-btn,
body.lj-editor-preview .lj-editor-card-actions,
body.lj-editor-preview .lj-editor-card-state,
body.lj-editor-preview .lj-editor-product-notice,
body.lj-editor-preview .lj-editor-empty-category,
body.lj-editor-preview .lj-editor-purchase-blocked,
body.lj-editor-preview .lj-editor-disabled-notice,
body.lj-editor-preview [data-editor-public-hidden] {
  display: none !important;
}

body.lj-editor-preview .lj-card,
body.lj-editor-preview .lj-product,
body.lj-editor-preview .lj-menu-section {
  opacity: 1;
  outline: none;
}

body.lj-editor-preview .lj-editor-bar-btn:not(.is-preview),
body.lj-editor-preview .lj-editor-bar-main {
  display: none;
}

body.lj-editor-preview .lj-editor-bar {
  justify-content: flex-end;
}

body.lj-editor-store-disabled [data-add-cart],
body.lj-editor-store-disabled .lj-add-btn,
body.lj-editor-store-disabled [data-editor-product-purchase] {
  display: none !important;
}

@media (max-width: 700px) {
  .lj-editor-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .lj-editor-bar-main,
  .lj-editor-bar-actions {
    width: 100%;
  }

  .lj-editor-bar-actions {
    justify-content: flex-start;
  }

  .lj-editor-disabled-notice .lj-container,
  .lj-editor-product-notice {
    align-items: flex-start;
    flex-direction: column;
  }

  .lj-editor-media-grid,
  .lj-editor-color-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .lj-editor-appearance-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .lj-editor-theme-swatches {
    min-height: 32px;
  }

  .lj-editor-font-preview {
    align-items: flex-start;
  }

  .lj-editor-sort-list > li {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .lj-editor-sort-actions,
  .lj-editor-custom-toggles {
    grid-column: 2;
  }

  .lj-editor-sort-actions {
    flex-wrap: wrap;
  }

  .lj-editor-sort-list.is-customization > li,
  .lj-editor-sort-list.is-customization > li[data-type="materia"] {
    grid-template-columns: 32px minmax(0, 1fr) auto;
  }

  .lj-editor-sort-list.is-customization .lj-editor-sort-actions {
    grid-column: 3;
    grid-row: 1;
    flex-wrap: nowrap;
  }

  .lj-editor-sort-list.is-customization .lj-editor-custom-toggles {
    grid-column: 2 / -1;
    grid-row: 2;
    justify-content: flex-start;
  }

  .lj-editor-gallery,
  .lj-editor-gallery-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lj-editor-form-actions .lj-btn {
    flex: 1;
  }
}
