/* ============================================================
   SLIDE 8: Image Showcase
   ============================================================ */

.imgshow {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--slide-padding-x) 28px;
  box-sizing: border-box;
}

.imgshow__header {
  text-align: center;
  margin-bottom: 24px;
}

.imgshow__sub {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* Grid: hero on top, products below */
.imgshow__grid {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

/* Hero banner */
.imgshow__hero {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.imgshow__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.imgshow__hero-label {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.imgshow__res {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 100px;
}

/* Product cards */
.imgshow__products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.imgshow__card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.imgshow__card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.imgshow__card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 0;
}

.imgshow__card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.imgshow__card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.imgshow__card-name {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* Footer stats */
.imgshow__footer {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 20px;
  flex-shrink: 0;
}

.imgshow__stat {
  text-align: center;
}

.imgshow__stat-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 2px;
}

.imgshow__stat-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Responsive */
@media (max-width: 768px) {
  .imgshow__products {
    grid-template-columns: repeat(2, 1fr);
  }

  .imgshow__footer {
    gap: 24px;
  }
}
