*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #39ff14;
  --green-dark: #1a8c00;
  --green-dim: #0d4700;
  --green-glow: rgba(57, 255, 20, 0.18);
  --bg: #060a06;
  --bg-card: #0c110c;
  --bg-input: #101510;
  --bg-modal: #0e140e;
  --border: rgba(57, 255, 20, 0.18);
  --border-hover: rgba(57, 255, 20, 0.5);
  --text: #c8e6c8;
  --text-soft: #e2f7e2;
  --text-muted: rgba(200, 230, 200, 0.48);
  --red: #ff4444;
  --red-soft: #ff8f8f;
  --yellow: #ffbb33;
  --yellow-soft: #ffd27a;
  --shadow-card: 0 0 0 1px rgba(57, 255, 20, 0.04), 0 18px 48px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 18px rgba(57, 255, 20, 0.12);
  --radius-sm: 4px;
  --radius-md: 6px;
  --font-display: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  padding-bottom: 6rem;
}

button,
input,
select,
textarea {
  font: inherit;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(57, 255, 20, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 10, 6, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo-real {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.45));
  flex: 0 0 auto;
}

.logo-name {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  letter-spacing: 0.12em;
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.logo-tag {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #555;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.status-dot.aberto {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink-dot 2s ease infinite;
}

.status-dot.fechado {
  background: var(--red);
}

@keyframes blink-dot {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.45;
  }
}

.hero {
  position: relative;
  z-index: 1;
  padding: 3rem 1.2rem 1.5rem;
  text-align: center;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.05em;
  color: var(--text-soft);
}

.hero-title .highlight {
  color: var(--green);
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.45);
}

.hero-sub {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.loja-fechada-banner {
  position: relative;
  z-index: 1;
  padding: 0.75rem 1rem;
  text-align: center;
  background: rgba(255, 68, 68, 0.08);
  border-top: 1px solid rgba(255, 68, 68, 0.28);
  border-bottom: 1px solid rgba(255, 68, 68, 0.28);
  color: var(--red-soft);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.destaques-section {
  position: relative;
  z-index: 1;
  padding: 1.2rem 0 0.8rem;
}

.section-headline {
  margin-bottom: 1rem;
}

.section-headline h2 {
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: 0.08em;
}

.categorias-section {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0 0.5rem;
}

.categoria-tabs,
.marcas-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.marcas-section {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(57, 255, 20, 0.03);
  border: 1px solid rgba(57, 255, 20, 0.08);
  border-radius: var(--radius-sm);
}

.marcas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.marcas-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--green);
  opacity: 0.8;
  text-transform: uppercase;
}

.btn-limpar-marca {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-limpar-marca:hover {
  border-color: var(--green);
  color: var(--green);
}

.tab-btn,
.marca-btn {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 0.48rem 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover,
.marca-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.tab-btn.active,
.marca-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #060a06;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.32);
}

.produtos-section {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
}

.busca-box {
  margin-bottom: 1rem;
}

.busca-box input {
  width: 100%;
  background: #0b120b;
  border: 1px solid rgba(57, 255, 20, 0.25);
  border-radius: 6px;
  color: #c8e6c8;
  padding: 0.9rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  outline: none;
  transition: all 0.2s ease;
}

.busca-box input::placeholder {
  color: rgba(200, 230, 200, 0.38);
}

.busca-box input:focus {
  border-color: #39ff14;
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.12);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.loading-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 0;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.spinner {
  width: 36px;
  height: 36px;
  margin: 0 auto 1rem;
  border: 2px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.produto-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  animation: card-in 0.35s ease both;
}

@keyframes card-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.produto-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(57, 255, 20, 0.08);
}

.produto-card.destaque-card {
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.08), 0 0 18px rgba(57, 255, 20, 0.08);
}

.produto-imagem {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #0a100a;
  display: block;
}

.produto-imagem-placeholder {
  width: 100%;
  height: 160px;
  background: #0a100a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  opacity: 0.3;
}

.produto-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.produto-destaque-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.55rem;
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(57, 255, 20, 0.25);
  background: rgba(57, 255, 20, 0.06);
  color: var(--green);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.produto-nome {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-soft);
  word-break: break-word;
}

.produto-marca {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-muted);
}

.produto-desc {
  flex: 1;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.produto-preco {
  margin-top: 0.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.25);
}

.qty-control {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.qty-control button {
  width: 28px;
  height: 28px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--green);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.qty-control button:hover {
  background: var(--green-dim);
  border-color: var(--green);
}

.qty-control button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.qty-control span {
  min-width: 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--text);
}

.btn-add {
  width: 100%;
  margin-top: 0.6rem;
  background: transparent;
  border: 1px solid var(--green);
  border-radius: 2px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.48rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-add:hover {
  background: var(--green);
  color: #060a06;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.3);
}

.btn-add:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--border);
  color: var(--text-muted);
  box-shadow: none;
}

.btn-add.esgotado {
  background: #111;
  color: var(--red);
  border-color: var(--red);
  opacity: 0.75;
}

.carrinho-fab {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 200;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: #060a06;
  padding: 0.78rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.45);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: fab-in 0.3s ease both;
}

@keyframes fab-in {
  from {
    opacity: 0;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.carrinho-fab:hover {
  transform: scale(1.04);
  box-shadow: 0 0 32px rgba(57, 255, 20, 0.58);
}

.carrinho-fab-count {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #060a06;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-family: var(--font-mono);
}

.carrinho-fab-label {
  letter-spacing: 0.12em;
}

.carrinho-fab-total {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.modal-box {
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 1.2rem;
  background: var(--bg-modal);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), var(--shadow-glow);
  animation: modal-in 0.22s ease both;
}

.modal-success {
  max-width: 420px;
  text-align: center;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.modal-header h2 {
  color: var(--green);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.modal-close {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  border-color: var(--red);
  color: var(--red-soft);
}

.carrinho-itens {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.carrinho-item {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  background: rgba(57, 255, 20, 0.03);
  border: 1px solid rgba(57, 255, 20, 0.08);
  border-radius: var(--radius-sm);
}

.item-nome {
  font-size: 0.85rem;
  color: var(--text);
  word-break: break-word;
}

.item-qty,
.item-sub {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.item-remove {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 68, 68, 0.2);
  border-radius: 3px;
  background: transparent;
  color: var(--red-soft);
  cursor: pointer;
  transition: all 0.2s ease;
}

.item-remove:hover {
  border-color: var(--red);
  background: rgba(255, 68, 68, 0.08);
  color: var(--red);
}

.subtotal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 1rem 0 0.8rem;
  padding: 0.85rem 0;
  border-top: 1px solid rgba(57, 255, 20, 0.08);
  border-bottom: 1px solid rgba(57, 255, 20, 0.08);
  font-family: var(--font-mono);
}

.subtotal-row span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.subtotal-row strong {
  color: var(--green);
  font-size: 1.15rem;
}
.form-section {
  margin-top: 1rem;
}

.form-pedido {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-group label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--green);
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.field-group input,
.field-group select {
  width: 100%;
  background: #0b120b;
  border: 1px solid rgba(57, 255, 20, 0.18);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  padding: 0.9rem 0.95rem;
  outline: none;
  transition: all 0.2s ease;
}

.field-group input::placeholder {
  color: rgba(200, 230, 200, 0.38);
}

.field-group input:focus,
.field-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.12);
}

.recebimento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.radio-pill {
  display: block;
  cursor: pointer;
}

.radio-pill input {
  display: none;
}

.radio-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(57, 255, 20, 0.16);
  border-radius: 4px;
  background: #0b120b;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
}

.radio-pill input:checked + span {
  background: rgba(57, 255, 20, 0.12);
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 14px rgba(57, 255, 20, 0.16);
}

.error-msg {
  background: rgba(255, 68, 68, 0.08);
  border: 1px solid rgba(255, 68, 68, 0.28);
  border-radius: 4px;
  color: var(--red-soft);
  padding: 0.75rem 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.modal-actions {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.modal-actions-pedido {
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.btn-continuar,
.btn-enviar-pedido,
.btn-fechar-sucesso {
  width: 100%;
  min-height: 52px;
  border-radius: 4px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-continuar {
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.18);
  color: var(--text);
}

.btn-continuar:hover {
  border-color: var(--green);
  color: var(--green);
}

.btn-enviar-pedido {
  background: linear-gradient(135deg, #39ff14, #24c700);
  border: none;
  color: #041004;
  box-shadow: 0 0 22px rgba(57, 255, 20, 0.28);
}

.btn-enviar-pedido:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(57, 255, 20, 0.42);
}

.btn-enviar-pedido:disabled,
.btn-continuar:disabled,
.btn-fechar-sucesso:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.success-box {
  text-align: center;
}

.success-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.2);
}

.success-box h2 {
  color: var(--green);
  margin-bottom: 0.5rem;
}

.success-box p {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.btn-fechar-sucesso {
  margin-top: 1rem;
  padding: 0.9rem;
  background: transparent;
  border: 1px solid rgba(57, 255, 20, 0.25);
  color: var(--text);
}

.btn-fechar-sucesso:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.2);
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
  }

  .logo-real {
    width: 38px;
    height: 38px;
  }

  .logo-name {
    font-size: 0.85rem;
    line-height: 1.05;
  }

  .logo-tag {
    font-size: 0.52rem;
    letter-spacing: 0.14em;
  }

  .header-status {
    font-size: 0.6rem;
    justify-content: flex-end;
    text-align: right;
  }

  .modal-actions {
    flex-direction: column;
  }

  .modal-actions button {
    width: 100%;
  }

  .carrinho-item {
    grid-template-columns: 1fr auto;
  }

  .item-sub {
    grid-column: 1 / 2;
  }

  .item-remove {
    justify-self: end;
  }
}

@media (max-width: 600px) {
  .produtos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .produto-card {
    border-radius: 4px;
  }

  .produto-imagem,
  .produto-imagem-placeholder {
    height: 110px;
  }

  .produto-body {
    padding: 0.6rem;
    gap: 0.25rem;
  }

  .produto-destaque-badge {
    margin-bottom: 0.35rem;
    font-size: 0.52rem;
    padding: 0.22rem 0.4rem;
    letter-spacing: 0.08em;
  }

  .produto-nome {
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .produto-marca {
    font-size: 0.6rem;
  }

  .produto-desc {
    display: none;
  }

  .produto-preco {
    font-size: 0.95rem;
  }

  .btn-add {
    font-size: 0.68rem;
    padding: 0.35rem;
    letter-spacing: 0.08em;
    margin-top: 0.45rem;
  }

  .qty-control {
    margin-top: 0.45rem;
    gap: 0.3rem;
  }

  .qty-control button {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .qty-control span {
    font-size: 0.75rem;
    min-width: 16px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 2.1rem 1rem 1.1rem;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.1;
  }

  .hero-sub {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .loja-fechada-banner {
    font-size: 0.7rem;
    line-height: 1.5;
    padding: 0.7rem 0.9rem;
  }

  .container {
    padding: 0 0.85rem;
  }

  .busca-box {
    margin-bottom: 0.85rem;
  }

  .busca-box input {
    padding: 0.8rem 0.9rem;
    font-size: 0.78rem;
  }

  .tab-btn,
  .marca-btn {
    font-size: 0.72rem;
    padding: 0.42rem 0.75rem;
  }

  .marcas-section {
    padding: 0.75rem 0.8rem;
  }

  .modal-box {
    padding: 1rem;
  }

  .recebimento-grid {
    grid-template-columns: 1fr;
  }

  .btn-continuar,
  .btn-enviar-pedido,
  .btn-fechar-sucesso {
    min-height: 50px;
    font-size: 0.88rem;
  }

  .carrinho-fab {
    right: 1rem;
    left: 1rem;
    bottom: 1rem;
    justify-content: center;
    font-size: 0.8rem;
    padding: 0.78rem 0.9rem;
  }

  .carrinho-fab-total {
    display: none;
  }

  .carrinho-fab-label {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 390px) {
  .produtos-grid {
    grid-template-columns: 1fr;
  }

  .produto-imagem,
  .produto-imagem-placeholder {
    height: 140px;
  }
}