/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first
Line 38:0 All "@import" rules must come first

**/
.product-gallery {
  display: flex;
  flex-wrap: wrap;
}

.product-gallery ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.product-gallery__item {
  flex: 0 0 50%;
  padding: 5px;
  box-sizing: border-box;
}

quick-add-modal .product-gallery__item {
  flex: 0 0 100%;
}

.product-gallery__image {
  width: 100%;
  height: auto;
  cursor: pointer;
}


@import url('https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.3/photoswipe.min.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/photoswipe/4.1.3/default-skin/default-skin.min.css');

/* Hintergrundfarbe */
.pswp,
.pswp__bg,
.pswp__scroll-wrap,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__ui {
  background-color: #FAF3EC !important;
}

/* Hintergrund erzwingen */
.pswp--supports-fs .pswp__bg {
  opacity: 1 !important;
}


.custom-controls {
  position: absolute;
  bottom: 100px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  z-index: 1500;
}

.custom-button {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); 
  width: 55px;
  height: 55px;
}

.custom-button svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.2;
  stroke: black;
}

.custom-prev {
  left: 0;
}

.custom-next {
  right: 0;
}

.custom-close {
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 65px;
}


.pswp__top-bar,
.pswp__caption {
  display: none !important;
}

/* Shopify-Standard-Lightbox entfernen */
.product-media-modal {
  display: none !important;
}

/* Responsive Verhalten in Galerie */
@media (max-width: 768px) {
  .product-gallery {
    display: none;
  }
}

@media (min-width: 769px) {
  .mobile-only {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .grid--peek .grid__item {
      min-width: 92% !important;
  }

  .product__media-icon {
    display: none !important;
  }
}

/* Übergang - Animation */
  .pswp__container {
    transition: transform 0.7s cubic-bezier(0.645, 0.045, 0.355, 1);
  }


/* Entfernen der Standard-Shopify-Lightbox */
.product-media-modal {
  display: none !important;
}