.mainContentInner {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  width: 100%;
}

/* WIDGET WRAPPER */
.spotlightWidget {
  width: 100%;
  max-width: 450px;
  max-height: 500px;
  overflow-y: auto;
  overflow-x: hidden;
}
.spotlightWidget::-webkit-scrollbar {
  width: var(--space-sm);
  height: var(--space-sm);
    border-radius: var(--radius-sm);

}
.spotlightWidget::-webkit-scrollbar-track {
  background: var(--surface-secondary);
  border-radius: var(--radius-sm);
}

.spotlightWidget::-webkit-scrollbar-thumb:hover {
  background: #555; /* slightly brighter primary */
}
/* MAIN CONTAINER */
.infoContainer {
  position: sticky;
  top: 24px;

  display: flex;
  flex-direction: column;
  gap: var(--space-sm);

  width: 100%;

  padding: var(--space-md);

  border-radius: 20px;

  background: linear-gradient(
    180deg,
    rgba(20, 20, 20, 0.98),
    rgba(12, 12, 12, 0.98)
  );

  border: 1px solid rgba(255, 255, 255, 0.06);

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);

  isolation: isolate;
}

/* glow */
.infoContainer::before {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  top: -120px;
  right: -100px;

  background: var(--primary);

  opacity: 0.15;

  filter: blur(80px);

  z-index: -1;
}

/* ANIMATION */
.slide-out {
  animation: slideOut 0.35s ease forwards;
}

.slide-in {
  animation: slideIn 0.35s ease forwards;
}

@keyframes slideOut {
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* PRODUCT CARD */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;

  width: 100%;

  padding: 20px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.product-card:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.05);
}

.tag {
  background: rgba(0, 153, 255, 0.12);
  backdrop-filter: blur(6px);
  padding: var(--space-xs);
  font-weight: 700;
  font-size: 0.7rem;
  width: fit-content;
  color: #00eaff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 153, 255, 0.25);
  letter-spacing: 0.3px;
}

/* TOP */
.productLogo {
  width: 52px;
  height: 52px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: black;

  font-size: 1.1rem;
  font-weight: 800;

  box-shadow: 0 10px 20px rgba(0, 191, 99, 0.2);
}

#productName {
  font-size: 1.4rem;
  font-weight: 700;

  color: white;

  line-height: 1.2;
}

#productTitle {
  font-size: 1rem;
  line-height: 1.5;

  color: var(--text-primary);

  margin-top: -6px;
}

#productDesc {
  color: var(--muted);

  font-size: 0.92rem;
  line-height: 1.7;
}

/* FEATURES */
.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--text-secondary);

  font-size: 0.88rem;
  line-height: 1.5;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 10px;

  margin-top: 6px;
}

.productCtaBtn {
  flex: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 16px;

  border-radius: var(--radius-md);

  text-decoration: none;

  font-size: var(--text-sm);
  font-weight: 700;

  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background 0.2s ease;
}

.productCtaBtn:hover {
  transform: translateY(-1px);
}

.primary {
  background: #000000;
  
  color: var(--text-primary);
  box-shadow: 0 0 5px #000000;
}
.primary:hover {
  background: #00000093;
}
.secondary {
  background: rgba(255, 255, 255, 0.05);

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* MOBILE */
@media (max-width: 1200px) {
  .mainContentInner {
    flex-direction: column;
  }

  .spotlightWidget {
    width: 100%;
  }

  .infoContainer {
    position: relative;
    top: unset;
  }
}
