body {
  background: #121212;
  color: #E0E0E0;
  font-family: 'Inter', sans-serif;
}

.product-view {
  margin-top: 3rem;
  gap: 2rem;
}

.product-slider {
  flex: 0 0 48%;
  position: sticky;
  top: 80px;
  align-self: flex-start;
}
.product-slider.sticky-top {
  top: 100px;
  padding-top: 0.5rem;
  background: #121212;
  z-index: 10;
}

.product-info-block {
  flex: 1;
  background: #1E1E1E;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255,214,0,0.2);
}

h1 {
  color: #FFD600;
  font-size: 2rem;
  font-weight: 800;
}

.price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFD600;
  margin: 1rem 0;
}

.meta {
  font-size: 0.95rem;
  color: #A3A3A3;
  margin-bottom: 1rem;
}

.specs h5 {
  color: #FFD600;
  margin-top: 1.5rem;
}
.carousel-item img,
.img-fluid {
  cursor: zoom-in;
}

.carousel-item img {
  max-height: 500px;
  object-fit: contain;
  width: 100%;
  background: #1E1E1E;
  padding: 1rem;
}

@media (max-width: 768px) {
  .product-view {
    flex-direction: column;
  }

  .product-slider, .product-info-block {
    flex: 100%;
    position: static;
  }
}
