/* Sidebar Layout */
.layout-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 32px;
  align-items: start;
}

.discovery-sidebar {
  position: sticky;
  top: 40px; /* "Freezes" sidebar 40px from the top */
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11, 18, 32,.05);
}

/* Premium Hero Title Style */
.hero-container {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #0b1b33 0%, #152744 100%);
  color: white;
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-title span {
  color: var(--accent-orange); /* Highlight "Electronic" in Orange */
}

/* Reset Button Style */
.btn-reset {
  width: 100%;
  padding: 12px;
  background: var(--accent-orange);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition:.2s;
}

.btn-reset:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Responsive Shift */
@media (max-width: 900px) {
 .layout-grid {
    grid-template-columns: 1fr;
  }
 .discovery-sidebar {
    position: relative;
    top: 0;
  }
}