.produtos-grid-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  position: relative;
}

.produtos-grid-prev,
.produtos-grid-next {
  background: #333;
  color: #fff;
  border: none;
  padding: 0.5em 0.8em;
  cursor: pointer;
  font-size: 1.5em;
  height: auto;
  transition: background 0.2s ease;
}

.produtos-grid-prev:hover,
.produtos-grid-next:hover {
  background: #555;
}

.produtos-grid-container {
  display: flex;
  flex-wrap: nowrap; /* NÃO quebra linha */
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* garante apenas 1 linha */
}

.produto-card {
  flex: 0 0 calc(33.33% - 10px); /* desktop: 3 produtos por linha */
  box-sizing: border-box;
  border: 1px solid #eee;
  padding: 10px;
  text-align: center;
  position: relative;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.produto-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.produto-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.produto-card h3 {
  font-size: 1rem;
  margin: 0.5em 0;
  color: #222;
  line-height: 1.3;
  min-height: 42px;
}

.produto-desconto {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #d32f2f;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.85em;
  font-weight: bold;
  border-radius: 4px;
}

.produto-card p {
  margin: 0;
  font-size: 1rem;
}

.produto-preco-antigo {
  text-decoration: line-through;
  color: #999;
  margin-right: 5px;
  font-size: 0.9rem;
}

.produto-preco {
  font-weight: bold;
  color: #111;
  font-size: 1.1rem;
}

/* MOBILE: 2 produtos por linha */
@media (max-width: 768px) {
  .produto-card {
    flex: 0 0 calc(50% - 10px);
  }

  .produtos-grid-prev,
  .produtos-grid-next {
    font-size: 1.2em;
    padding: 0.4em 0.6em;
  }
}
