.lookbook-image-item {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.lookbook-image-item:hover {
  transform: scale(1.05);
}
.lookbook-hidden {
  display: none;
}
.lookbook-view-more-container {
  margin-top: 30px;
}
.lookbook-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  align-items: start;
  justify-items: center;
}
.lookbook-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.lookbook-modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  /* max-width: 600px; */
  background: transparent;
  border-radius: 0px;
  overflow: hidden;
  z-index: 10000;
}
.lookbook-modal-close {
  position: absolute;
  /* top: 15px; */
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lookbook-modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}
.lookbook-carousel {
  max-width: 900px;
  /* width: auto; */
  /* height: 100dvh;/ */
  height: 100%;
}

/* Zoom-compatible slide styles */
.lookbook-carousel .swiper-slide {
  overflow: hidden;
}
.lookbook-modal-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 100%;
  min-height: 400px;
}
.lookbook-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  height: auto !important;
}
.m-lookimages-items{
    gap:6px;
}
.m-lookimages-items .lookbook-image-wrapper {
  height: 210px;
}
.m-lookimages-items .lookbook-thumbnail {
  object-position: top;
}
.lookbook-carousel-next,
.lookbook-carousel-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.lookbook-carousel-next:hover,
.lookbook-carousel-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}
.lookbook-carousel-pagination {
  flex-wrap: nowrap;
  justify-content: start;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  max-width: 80%;
  padding: 0 20px;
}
.lookbook-carousel-pagination::-webkit-scrollbar {
  display: none;
}
.lookbook-carousel-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #fff;
  opacity: 0.7;
  margin: 0 5px;
  flex-shrink: 0;
  display: inline-block;
}
.lookbook-carousel-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.lookbook-modal-header {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #000; 
  width: 100%;
}
@media (max-width: 768px) {
  .lookbook-modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
  }
  .lookbook-modal {
    align-items: flex-start;
  }
  .lookbook-modal-close {
    font-size: 20px;
  }
  .m-lookimages-items{
    gap:3px;
  }
  .lookbook-modal-content .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lookbook-image-item  .lookbook-image-wrapper {
    height: 140px;
  }
  .lookbook-carousel-next,
  .lookbook-carousel-prev {
    width: 40px;
    height: 40px;
  }
  .lookbook-carousel-pagination {
    max-width: 90%;
    padding: 0 10px;
  }
}
.swiper-slide {
  overflow: hidden;
}
