@charset "UTF-8";

.front-title,
.section-title {
  padding-top: 10rem;
  color: var(--white);
}
.back-title {
  color: #606960;
  z-index: 0;
}
.gallery {
  background: var(--gray2);
}
.grid {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.grid-item {
  height: 240px;
  object-fit: cover;
  filter: grayscale(100%);
}
.lum-lightbox.lum-open {
  z-index: 4;
}
.lum-lightbox-inner img {
  max-width: 120vw;
  max-height: 80vh;
}
.js-btn-more,
.js-btn-close {
  position: absolute;
  color: var(--white);
  bottom: -5rem;
  right: 0;
  left: 0;
  cursor: pointer;
}
.more-btn {
  color: var(--white);
}
.more-btn::after {
  background: var(--white);
  z-index: 1;
}
.back-btn {
  color: var(--white);
  margin: 12rem auto 4rem;
}
.back-btn::after {
  background: var(--white);
  z-index: 1;
}
.shop-info {
  padding-top: 7rem;
}
@media (min-width: 600px) {
  .grid-item {
    transition: 0.3s;
  }
  .grid-item:hover {
    position: relative;
    z-index: 3;
    filter: grayscale(0);
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
  }
}
