.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.gallery-item {
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transform: translateZ(0);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .10), transparent 55%);
  opacity: .28;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms var(--ease-2), filter 700ms var(--ease-2);
  filter: saturate(1.06) contrast(1.04);
}

.gallery-loader-wrapper {
  grid-column: 1 / -1;
  text-align: center;
  display: block;
  margin: 4rem auto;
  min-height: 100vh;
}

.spinner {
  width: 34px;
  height: 34px;
  border: 2.5px solid rgba(201, 168, 76, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 1.5rem auto;

}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (hover: hover) and (pointer:fine) {
  .dish-gallery img:hover {
    transform: translateY(-6px) scale(1.01);
    filter: saturate(1.12) contrast(1.06);
    box-shadow: var(--shadow-xl);
  }

  .gallery-item {
    transition: transform 700ms var(--ease-2), box-shadow 700ms var(--ease-2);
  }

  .gallery-item:hover {
    box-shadow: var(--shadow-xl);
  }

  .gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.15) contrast(1.08);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .20);
  }
}