/* Container geral */
.pw-produtos-wrapper {
  width: 100%;
}

.pw-produtos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-items: center;
  padding: 10px;
}

/* Card do produto */
.pw-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 280px;
  text-align: center;
  transition: all 0.3s ease;
}

.pw-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Imagem do produto */
.pw-card img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid #f0f0f0;
}

/* Título */
.pw-card h3 {
  font-size: 1.2em;
  margin: 10px 0 5px 0;
  color: #222;
  font-weight: 700;
}

/* Preço */
.pw-preco {
  color: #2e8b57;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1em;
}

/* Descrição */
.pw-card p {
  color: #666;
  font-size: 0.95em;
  padding: 0 10px;
  line-height: 1.4;
}

/* Botão WhatsApp */
.pw-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 25px;
  padding: 10px 20px;
  margin: 12px auto 15px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.pw-btn:hover {
  background: #1ebe5a;
  transform: scale(1.05);
}

/* Paginação */
.pw-pagination {
  text-align: center;
  margin: 40px 0 20px;
  width: 100%;
}

.pw-load-more-btn {
  background: #25d366;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1em;
}

.pw-load-more-btn:hover {
  background: #1ebe5a;
  transform: scale(1.05);
}

.pw-load-more-btn:disabled {
  background: #cccccc;
  cursor: not-allowed;
  transform: none;
}

.pw-loading {
  color: #666;
  font-style: italic;
  margin-top: 10px;
}

.pw-no-products {
  text-align: center;
  color: #666;
  font-style: italic;
  grid-column: 1 / -1;
  padding: 40px;
}

/* Mobile ajustes */
@media (max-width: 480px) {
  .pw-card {
    max-width: 90%;
  }
  
  .pw-produtos-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .pw-load-more-btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}