/* Aprimoramento do título da seção */
.products-section-title {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #23272a !important;
  text-align: center !important;
  margin: 40px 0 30px !important;
  position: relative !important;
  padding-bottom: 15px !important;
}

.products-section-title:after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 80px !important;
  height: 3px !important;
  background-color: #0091dc !important;
  border-radius: 3px !important;
}

/* Aprimoramento dos cards de produto */
.product-miniature {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.product-miniature:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Melhorar a exibição do preço e do título */
.product-miniature .product-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  margin: 15px 0 10px !important;
  text-align: center !important;
}

.product-miniature .product-price-and-shipping {
  text-align: center !important;
  margin-top: 10px !important;
  margin-bottom: 15px !important;
}

.product-miniature .price {
  color: #0091dc !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* Ajustar cabeçalho e banner */
.carousel {
  margin-bottom: 40px !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Botão comprar no banner */
.carousel .btn {
  border-radius: 25px !important;
  padding: 10px 25px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  transition: all 0.3s !important;
}

/* Ajuste dos ícones de favoritos */
.product-miniature .wishlist {
  position: absolute !important;
  top: 10px !important;
  right: 10px !important;
  z-index: 10 !important;
}

/* Etiqueta NOVO */
.product-flag.new {
  top: 10px !important;
  left: 10px !important;
  background-color: #0091dc !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
}

/* Menu superior */
.top-menu a[data-depth="0"] {
  color: #23272a !important;
  font-weight: 600 !important;
  padding: 15px 20px !important;
  transition: color 0.3s !important;
}

.top-menu a[data-depth="0"]:hover {
  color: #0091dc !important;
}

/* Estilo para seção do rodapé */
.footer-container {
  background-color: #f8f9fa !important;
  padding: 40px 0 20px !important;
  margin-top: 60px !important;
  border-top: 1px solid #e9ecef !important;
}

.footer-container h3 {
  color: #23272a !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
}

.footer-container a {
  color: #6c757d !important;
  transition: color 0.3s !important;
}

.footer-container a:hover {
  color: #0091dc !important;
}