/** Shopify CDN: Minification failed

Line 53:8 Expected identifier but found whitespace
Line 53:10 Unexpected "{"
Line 53:19 Expected ":"
Line 54:12 Expected identifier but found whitespace
Line 54:14 Unexpected "{"
Line 54:23 Expected ":"
Line 54:50 Expected ":"
Line 62:8 Expected identifier but found whitespace
Line 62:10 Unexpected "{"
Line 62:19 Expected ":"
... and 4 more hidden warnings

**/


/* CSS from section stylesheet tags */
.fullwidth-img-section {
  width: 100%;
  text-align: center;
}
.fullwidth-img-section .inner-container {
  margin: 0 auto;
}
.fullwidth-img-section img {
  width: 100%;
  height: auto;
  display: block;
}
.image-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
}
.image-video-grid .media-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.image-video-grid img,
.image-video-grid video,
.image-video-grid iframe {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.grid-gallery-section h2 {
  color: {{ section.settings.heading_color }};
  font-size: {{ section.settings.heading_size }}px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.grid-gallery-section p {
  color: {{ section.settings.subheading_color }};
  font-size: {{ section.settings.subheading_size }}px;
  margin-bottom: 30px;
}

.grid-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1; /* Equal width & height */
}

.grid-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill box, uniform grid */
  display: block;
  transition: transform 0.3s ease;
}

/* Hover Zoom Effect */
.grid-gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-overlay .close-lightbox {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-gallery-grid {
    grid-template-columns: 1fr;
  }
}
.grid-gallery-section {
    max-width: 1260px;
    margin: 0 auto;
    text-align: center;
    padding-left: 20px !important;
}