/* Products Hero */
.products-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("images/factory.webp") no-repeat center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.products-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: var(--primary-color);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  border-radius: 2px;
}

/* Product Navigation */
.product-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.product-nav-item {
  padding: 12px 25px;
  background: var(--light-color);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
  border: none;
}

.product-nav-item.active,
.product-nav-item:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* Product Display */
.product-display {
  display: none;
  max-width: 900px;
  margin: 0 auto 60px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.product-display.active {
  display: flex;
  flex-direction: column;
}

.product-image {
  height: 400px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-content {
  padding: 30px;
  text-align: center;
}

.product-content h2 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
  text-align: left;
}

.spec-item {
  background: var(--light-color);
  padding: 15px;
  border-radius: var(--border-radius);
}

.spec-item h4 {
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.btn-contact {
  display: inline-block;
  padding: 12px 30px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  margin-top: 20px;
}

.btn-contact:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
  .product-display {
    flex-direction: column;
  }

  .product-image {
    height: 300px;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }
}

.breadcrumb {
  padding: 15px 0;
  background-color: var(--light-color);
}

.breadcrumb a {
  color: var(--primary-color);
}

.breadcrumb span {
  color: var(--secondary-color);
}
