.product-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0;
}

.section-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: #7df9ff;
  font-size: 1rem;
  padding: 0.5rem 0.25rem;
  border-left: 3px solid #7df9ff;
  line-height: 1;
  width: 2rem;              /* Reserve space */
  flex-shrink: 0;           /* Prevent collapsing */
  box-sizing: content-box;
  text-align: center;
}


.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-grow: 1;
  overflow: hidden;
}

.product-carousel {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 2rem;
  scroll-padding-left: 2rem;
  box-sizing: border-box;
  cursor: grab;
}

.product-carousel.scrolling {
  cursor: grabbing;
}


.product-item {
  flex: 0 0 220px;
  max-width: 220px;
  background: #12121a;
  border: 1px solid #2a2a3a;
  transition: transform 0.3s ease;
  padding: 1rem;
  text-align: center;
  color: #f2f2f2;
  text-decoration: none;
}

.product-item:hover {
  transform: translateY(-4px);
  background: #1b1b2b;
}

.product-item img {
  width: 100%;
  border-radius: 4px;
}

.product-item h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1rem;
  color: #7df9ff;
}

.product-item p {
  margin: 0;
  font-size: 0.9rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a2a;
  color: #7df9ff;
  border: none;
  font-size: 1.5rem;
  padding: 0.25rem 0.75rem;
  cursor: pointer;
  z-index: 2;
  user-select: none;
}

#carousel-left {
  left: 0;
}

#carousel-right {
  right: 0;
}

.carousel-nav:hover {
  background: #2a2a3a;
  color: #d96efb;
}
