:root {
  --text-color: #333;
  --bg-color: #f8f9fa;
  --accent-mauve: #9a8c98;
  --accent-pink: #eebbc3;
  --card-bg: #ffffff;
  --card-shadow: rgba(0, 0, 0, 0.1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  height: 48vh;
  background-image: url('/img/logo/logo_heroimage.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}

.hero-text {
  position: relative; /* Para ficar acima do overlay */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: bold;
}

/* --- Product List --- */
.product-list-item {
  display: flex;
  flex-direction: row;
  background-color: var(--card-bg);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px var(--card-shadow);
  margin-bottom: 2rem;
  overflow: hidden;
}

.product-image-container {
  flex-shrink: 0;
  width: 300px;
}

.product-details-container {
  padding: 1.5rem;
  flex-grow: 1;
}

.product-colors .badge {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  background-color: var(--accent-mauve);
  color: white;
  font-weight: 500;
}

.product-colors .badge-customizable {
  background-color: var(--accent-pink);
  color: var(--text-color);
}

.product-price {
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--text-color);
  text-align: right;
}

.product-price .btn-primary {
  border-color: var(--accent-mauve);
  background-color: var(--accent-pink);
  color: var(--text-color);
}

.carousel-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.carousel-indicators [data-bs-target] {
  background-color: var(--accent-pink);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .product-list-item {
    flex-direction: column;
  }

  .product-image-container {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .product-details-container {
    padding: 1rem;
  }
}
