.amazon-product-card {
  padding: 20px; /* Reduzido de 40px */
  max-width: 700px; /* Opcional: reduz largura máxima */
}

/* Amazon Product Card */
.amazon-product-card {
  background: linear-gradient(135deg, #e6f1f7 0%, #ffffff 100%);
  border-radius: 15px;
  padding: 25px;
  margin: 40px 0;
  color: rgb(0, 0, 0);
  position: relative;
  overflow: hidden;
}

.amazon-product-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.product-header h2 {
  color: rgb(14, 13, 13);
  border: none;
  padding: 0;
  margin-bottom: 10px;
}

.product-subtitle {
  opacity: 0.9;
  margin-bottom: 20px;
}

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #28a745;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: bold;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  background: white;
  padding: 1px;
}

.product-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  color: rgb(8, 8, 8);
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.stars {
  color: #f8d71c;
}

.rating-value {
  font-weight: bold;
}

.review-count {
  opacity: 0.8;
  font-size: 0.9em;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.product-features li {
  margin-bottom: 8px;
  padding-left: 0;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
}

.current-price {
  font-size: 1.5em;
  font-weight: bold;
}

.discount-badge {
  background: #dc3545;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 0.8em;
}

.original-price {
  text-decoration: line-through;
  opacity: 0.7;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-button {
  background: #28a745;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  display: inline-block;
}

.cta-button:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.product-header {
  margin-bottom: 10px;
  padding: 0 5px;
}

.product-header h2 {
  font-size: 22px; /* Menor */
  margin-bottom: 6px;
}

.product-subtitle {
  font-size: 14px;
}

.product-badge {
  margin-bottom: 8px;
  font-size: 11px;
  padding: 3px 8px;
}

.product-container {
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
}

.product-image {
  flex: 0 0 32%;
  padding: 5px;
}

.product-title {
  font-size: 17px;
  margin-bottom: 8px;
}

.product-rating {
  margin-bottom: 10px;
}

.product-features {
  margin-bottom: 12px;
}

.product-features li {
  margin-bottom: 7px;
  font-size: 13px;
}

.product-price {
  margin-top: 10px;
}

.current-price {
  font-size: 22px;
}

.original-price {
  font-size: 14px;
}

.discount-badge {
  font-size: 12px;
  padding: 2px 6px;
}

.product-footer {
  padding-top: 2px;
  gap: 10px;
}

.store-logo img {
  height: 22px;
}

.cta-button {
  padding: 8px 16px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .product-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
  }
  .product-image {
    order: -1; /* Move a imagem para o topo */
    width: 100%;
    max-width: 320px;
    margin: 18px auto 10px auto;
    padding: 0;
    display: block;
  }
}
.product-header h2 {
  font-size: 18px;
}
.product-title {
  font-size: 15px;
}
.product-features li {
  font-size: 12px;
}
.cta-button {
  font-size: 15px;
}
.product-footer {
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}
@media (max-width: 480px) {
  .amazon-product-card {
    padding: 10px;
    max-width: 100%;
  }
  .product-header h2 {
    font-size: 18px;
  }
  .product-subtitle {
    font-size: 12px;
  }
  .product-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
  .product-title {
    font-size: 13px;
    margin-bottom: 6px;
  }
  .product-features li {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .current-price {
    font-size: 17px;
  }
  .original-price {
    font-size: 12px;
  }
  .discount-badge {
    font-size: 11px;
    padding: 1px 4px;
  }
  .cta-button {
    font-size: 13px;
    padding: 8px 0;
  }
  .store-logo img {
    height: 18px;
  }
}
