.image-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.image-link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 transparent;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  width: 140px;
  height: 140px;
}

.image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* 공통 글루 효과 */
.image-link:hover {
  transform: scale(1.08);
}

/* 글루 색상 클래스 */
.glow-pink:hover {
  box-shadow: 0 0 15px 8px rgba(255, 152, 205, 0.8);
}

.glow-yellow:hover {
  box-shadow: 0 0 15px 8px rgba(255, 236, 142, 0.8);
}

.glow-blue:hover {
  box-shadow: 0 0 15px 8px rgba(140, 199, 255, 0.8);
}

.glow-purple:hover {
  box-shadow: 0 0 15px 8px rgba(211, 180, 255, 0.8);
}

.glow-red:hover {
  box-shadow: 0 0 15px 8px rgba(255, 66, 66, 0.8);
}

.ogq-section, .goods-section {
    text-align: center;
    padding-top: 150px;
}

.goods-img {
  background-color: white;
}