/* Página de Produto */
.product-detail {
  padding: 4rem 0;
  min-height: 100vh;
}

.breadcrumb {
  margin-bottom: 2rem;
  color: hsl(215, 20%, 65%);
  font-size: 0.875rem;
}

.breadcrumb a {
  color: #EA4B71;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.product-image-section {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #EA4B71;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  z-index: 10;
}

.product-main-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 1rem;
  margin: 0 auto;
  display: block;
}

.product-trust-badges {
  display: flex;
  justify-content: space-around;
  margin-top: 2rem;
  gap: 1rem;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsl(210, 40%, 98%);
}

.trust-badge i {
  font-size: 2rem;
  color: #EA4B71;
}

.trust-badge span {
  font-size: 0.875rem;
  text-align: center;
}

.product-info-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(210, 40%, 98%);
  margin: 0;
}

.product-price-section {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-price {
  font-size: 3rem;
  font-weight: 700;
  color: #EA4B71;
}

.product-period {
  font-size: 1.25rem;
  color: hsl(215, 20%, 65%);
}

.product-discount {
  background-color: rgba(234, 75, 113, 0.2);
  color: #EA4B71;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
}

.product-description {
  font-size: 1.125rem;
  color: hsl(215, 20%, 65%);
  line-height: 1.6;
}

.product-features h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(210, 40%, 98%);
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: hsl(215, 20%, 65%);
}

.features-list li::before {
  content: "✓";
  color: #EA4B71;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.product-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.btn-add-cart,
.btn-buy-now {
  flex: 1;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-add-cart {
  background-color: hsl(217, 33%, 17%);
  color: hsl(210, 40%, 98%);
  border: 2px solid #EA4B71;
}

.btn-add-cart:hover {
  background-color: rgba(234, 75, 113, 0.1);
  transform: translateY(-2px);
}

.btn-buy-now {
  background-color: #EA4B71;
  color: white;
}

.btn-buy-now:hover {
  background-color: #d43d5f;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(234, 75, 113, 0.3);
}

.product-guarantee {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background-color: rgba(234, 75, 113, 0.1);
  border-radius: 0.5rem;
  border-left: 4px solid #EA4B71;
}

.product-guarantee i {
  font-size: 2rem;
  color: #EA4B71;
}

.product-guarantee strong {
  color: hsl(210, 40%, 98%);
  display: block;
  margin-bottom: 0.25rem;
}

.product-guarantee p {
  color: hsl(215, 20%, 65%);
  margin: 0;
  font-size: 0.875rem;
}

/* Informações Detalhadas */
.product-detailed-info {
  margin-bottom: 4rem;
}

.product-detailed-info h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: hsl(210, 40%, 98%);
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.info-card {
  background-color: hsl(217, 33%, 17%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.info-card i {
  font-size: 2.5rem;
  color: #EA4B71;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(210, 40%, 98%);
}

.info-card p {
  color: hsl(215, 20%, 65%);
  line-height: 1.6;
}

/* FAQ */
.product-faq {
  margin-bottom: 4rem;
}

.product-faq h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: hsl(210, 40%, 98%);
  text-align: center;
}

.faq-item {
  background-color: hsl(217, 33%, 17%);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: hsl(210, 40%, 98%);
}

.faq-item p {
  color: hsl(215, 20%, 65%);
  line-height: 1.6;
  margin: 0;
}

/* Cart Count Badge */
.cart-count {
  background-color: #EA4B71;
  color: white;
  border-radius: 50%;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.25rem;
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-price {
    font-size: 2.5rem;
  }

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

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