.sg-collage {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin: 0 auto 36px;
  max-width: 820px;
}

.sg-collage img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  cursor: pointer;

  filter: sepia(0.6) contrast(0.8) brightness(0.75) saturate(0.6);
  opacity: 0.65;

  border: 1px solid rgba(209,173,103,0.25);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);

  transition: all 0.35s ease;
}

/* “ojämn” layout för mer liv */
.sg-collage img:nth-child(1),
.sg-collage img:nth-child(6) {
  height: 85px;
  opacity: 0.45;
}

.sg-collage img:nth-child(2),
.sg-collage img:nth-child(5) {
  height: 95px;
  transform: translateY(12px);
}

.sg-collage img:nth-child(3),
.sg-collage img:nth-child(4) {
  height: 120px;
  opacity: 0.75;
}

/* hover */
.sg-collage img:hover {
  filter: sepia(0.3) contrast(1) brightness(0.9);
  opacity: 1;
  transform: scale(1.05);
}

/* LIGHTBOX */
.sg-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.sg-lightbox img {
  max-width: 90%;
  max-height: 85%;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

.sg-lightbox.active {
  display: flex;
}

/* MOBILE */
@media (max-width: 768px) {
  .sg-collage {
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
    gap: 10px;
  }

  .sg-collage img {
    height: 95px !important;
    transform: none !important;
  }
}

@media (max-width: 480px) {
  .sg-collage {
    grid-template-columns: repeat(2, 1fr);
    max-width: 340px;
  }

  .sg-collage img {
    height: 90px !important;
  }
}
html,
body {
  height: auto !important;
  min-height: 100% !important;
  overflow-y: auto !important;
}

body.coming-soon-mode {
  display: block !important;
  align-items: unset !important;
  justify-content: unset !important;
  overflow-y: auto !important;
}

.coming-soon-content,
.container,
.row,
.col-lg-8 {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
  display: block !important;
}

.sg-coming {
  min-height: auto !important;
  display: block !important;
  padding-top: 28px !important;
  padding-bottom: 60px !important;
}

.sg-inner {
  margin: 0 auto !important;
}

/* Gör matbilderna mindre på mobil */
@media (max-width: 480px) {
  .sg-food-images img {
    height: 145px !important;
  }

  .sg-box {
    padding: 22px 14px !important;
  }

  .sg-features h3 {
    font-size: 34px !important;
  }

  .sg-feature p {
    font-size: 22px !important;
    line-height: 1.35 !important;
  }
}