/* Product Hero */
.product-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(to bottom, rgba(231, 76, 60, 0.12), transparent);
}

.product-hero-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.product-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(24, 188, 156, 0.15);
  color: #18bc9c;
  border: 1px solid rgba(24, 188, 156, 0.4);
}

.product-short-desc {
  max-width: 560px;
  color: #cfcfcf;
  font-size: 17px;
  margin-top: 12px;
}

.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Product Sections */
.product-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 24px;
}

.product-block {
  margin-bottom: 64px;
}

.product-block h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

/* Features */
.feature-list {
  list-style: none;
  padding-left: 0;
}

.feature-list li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  color: #cfcfcf;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-accent);
  font-weight: 700;
}

/* Carousel */
.product-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}

.product-carousel img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #262626;
}

/* Product links */
.product-links {
  list-style: none;
  padding-left: 0;
}

.product-links li {
  margin-bottom: 10px;
}

.product-links a {
  color: #bdbdbd;
  text-decoration: none;
  font-weight: 500;
}

.product-links a:hover {
  color: var(--red-primary);
}

/* Responsive */
@media (max-width: 768px) {
  .product-hero-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
