/* Container for alignment */
.container-stick {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Sticky Menu Styles */
.product-tabs {
  background-color: #333333; /* Dark grey background from image */
  padding: 15px 0;
  position: -webkit-sticky; /* Support for older Safari */
  position: sticky;
  top: 0; /* Sticks to the very top */
  z-index: 999; /* Ensures it stays on top of other elements */
  border-bottom: 1px solid #444;
}

.product-tabs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  text-align: center;
  gap: 40px; /* Space between links */
}

.product-tabs ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700; /* Bold text as seen in screenshot */
  transition: color 0.3s ease;
}

.product-tabs ul li a:hover {
  color: #cc0000; /* Red hover effect to match brand */
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .product-tabs ul {
    gap: 20px;
    font-size: 14px;
    overflow-x: auto; /* Allows scrolling on mobile if too wide */
    justify-content: flex-start;
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .product-tabs ul li a {
    font-size: 12px;
    font-weight: 500;
  }
}