/* ===== Hero ===== */
.hero {
  color: var(--text);
  background: radial-gradient(120% 120% at 100% 0%, var(--panel-grad-start) 0%, var(--panel-grad-end) 100%);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
  margin: 18px;
}

.hero__inner {
  max-width: none;
  margin: 0;
  padding: 30px 18px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  align-items: center;
}

.hero__kicker {
  opacity: 0.8;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero__title {
  margin: 6px 0 8px;
  font-size: 36px;
  line-height: 1.15;
}

.hero__desc {
  margin: 0 0 16px;
  opacity: 0.85;
}

.hero__cta {
  display: flex;
  gap: 12px;
}

.hero__art {
  height: 180px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), transparent 60%), rgba(0, 0, 0, 0.22);
}

/* ===== Product Grid (Front Page) ===== */
.prodGrid {
  max-width: none;
  margin: 0 0 24px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.prodCard {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 360ms ease, background 180ms ease, box-shadow 180ms ease;
}

/* Hover effects disabled on front-page product cards */

.prodCard__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.22);
}

.prodCard__img--placeholder {
  width: 100%;
  height: 180px;
  display: block;
}

.prodCard__body {
  padding: 12px;
}

.prodCard__name {
  font-weight: 900;
  margin-bottom: 6px;
}

.prodCard__price {
  color: var(--text);
  opacity: 0.92;
}

/* Removed width-based layout changes for hero and grid */
