/** Shopify CDN: Minification failed

Line 176:6 Expected identifier but found whitespace
Line 176:8 Unexpected "{"
Line 176:17 Expected ":"
Line 176:45 Expected identifier but found "%"

**/
.main-class-reels {
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
}

.main-class-reels .product-info {
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  text-align: left;
  width: 100%;
}

.main-class-reels .product-info h3 {
  font-size: 15px;
  margin-bottom: 10px;
}

.main-class-reels .custom-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-class-reels .slider-wrapper {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.main-class-reels .slider-slide {
  min-width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.main-class-reels .slider-slide.active {
  display: block;
}

.main-class-reels .custom-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.main-class-reels .custom-prev, .custom-next {
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
}

.main-class-reels .reel-popup {
  /* Your existing popup styles */
}


.main-class-reels .product-info p {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

.main-class-reels .product-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #e60000;
  margin-bottom: 15px;
}

.main-class-reels .product-link {
  padding: 5px 15px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  border: 1px solid black;
}

.main-class-reels .product-link:hover {
  background-color: white;
  color: black;
}

.main-class-reels .custom-reels-section {
  margin: 20px auto;
  width: 90%;
  max-width: 1500px;
  transition: all 0.5s ease;
}

.main-class-reels .popup-add-to-cart {
  background-color: #000;
  color: white;
  padding: 10px;
  border: 1px solid #000;
  border-radius: 0 0 10px 10px;
  margin-top: 10px;
  cursor: pointer;
  margin-top: 0;
  transition: 0.3s;
  width: 100%;
}

.main-class-reels .product_main-details p#popupProductPrice {
  margin-bottom: 0;
  font-weight: 700;
}

.main-class-reels .popup-add-to-cart:hover {
  background-color: #fff;
  color: #000;
}

.main-class-reels .swiper-container {
  position: relative;
  overflow: hidden;
}

.main-class-reels .swiper-wrapper {
  display: flex;
}

.main-class-reels .swiper-slide {
  flex-shrink: 0;
  width: calc(100% / 5);
  display: flex;
  justify-content: center;
  align-items: stretch;
  transition: transform 0.5s ease;
}

.main-class-reels .reel-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100%;
  position: relative;
  flex-direction: column;

  a.button.custom {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.main-class-reels .reel-wrapper video {
  width: 100rem;
  height: 44rem;
  object-fit: cover;
  cursor: pointer;
}

.main-class-reels .hidden {
  display: none;
}

.main-class-reels .swiper-button-next,
.main-class-reels .swiper-button-prev {
  position: absolute;
  top: {{ section.settings.arrows_position }}%;
  transform: translate(0%, -{{ section.settings.arrows_position }}%);
  background-color: rgba(6, 5, 5, 0.7);
  color: white;
  width: 50px;
  height: 50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.main-class-reels .swiper-button-next:hover, .swiper-button-prev:hover {
  background-color: rgb(255 255 255 / 90%);
  color: black;
  box-shadow: 0px 1px 25px rgb(21 21 21 / 60%);
  transform: translate(0%, -{{ section.settings.arrows_position }}%) scale(1.1);
}

.main-class-reels .swiper-button-next {
  right: 15px;
}

.main-class-reels .swiper-button-prev {
  left: 15px;
}

@media (max-width: 1024px) {
  .main-class-reels .swiper-slide {
    width: calc(100% / 3);
  }
}

@media (max-width: 768px) {
  .main-class-reels .swiper-slide {
    width: calc(100% / 2);
  }

  .main-class-reels .popup-content.video-bottom-right {
    height: 290px !important;
  }

  .main-class-reels .popup-content.video-bottom-right .popup-controls button {
    font-size: 20px !important;
  }

  .main-class-reels .popup-content.video-bottom-right .popup-logo {
    top: 10px;
    left: 10px;
    max-width: 70px;
  }

  .main-class-reels .reel-wrapper {
    a.button.custom {
      padding: 10px 15px;
      font-size: 14px;
    }
  }
}

.main-class-reels .reel-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.main-class-reels .reel-popup.active {
  display: flex;
  animation: fadeIn 0.5s ease forwards;
}

.main-class-reels .popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80%;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* This ensures the content is spaced properly */
  transition: all 0.5s ease;
  animation: popUpAnimation 0.5s ease;
}

@keyframes popUpAnimation {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.main-class-reels .popup-product-info {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 15px;
  border-radius: 8px;
  width: 80%;
  text-align: center;
}

.main-class-reels .popup-product-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.main-class-reels .popup-product-price {
  font-size: 16px;
  margin-bottom: 10px;
}

.main-class-reels .popup-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 10px;
}

.main-class-reels .popup-prev,
.main-class-reels .popup-next {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.main-class-reels .popup-prev:hover,
.main-class-reels .popup-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.main-class-reels .popup-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.main-class-reels .popup-controls button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-class-reels .popup-controls button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  transform: scale(1.15);
  box-shadow: 0px 0px 25px white;
}

.main-class-reels .popup-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 100px;
  z-index: 3;
  object-fit: contain;
  animation: logoFadeIn 0.5s ease forwards;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-class-reels .reel-popup.bottom_rightwidth {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 300px;
  height: 200px;
  z-index: 9999;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.main-class-reels .popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  height: 80%;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
  animation: popUpAnimation 0.5s ease;
}

@keyframes popUpAnimation {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.main-class-reels .popup-content.video-bottom-right {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: fit-content !important;
  height: 425px;
  z-index: 9999;
  filter: drop-shadow(2px 4px 6px black);
}

.main-class-reels .popup-product-details {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -15%);
  border-radius: 10px;
  text-align: center;
  width: 220px;
  box-shadow: 5px 3px 10px rgb(0 0 0 / 0.6);
  transition: transform 0.3s;
}

.main-class-reels .popup-product-details:hover {
  transform: translate(-50%, -15%) scale(1.10);
}

.main-class-reels .popup-product-details .product_main-details {
  padding: 10px;
  background: rgba(255, 255, 255, 0.667);
  border-radius: 10px 10px 0 0;
}

.main-class-reels .product_main-details h3#popupProductTitle {
  margin-bottom: 10px;
  line-height: 17px;
}

@media screen and (max-width: 768px) {
  .main-class-reels .popup-product-details {
    bottom: 70px !important;
    right: 15px !important;
    transform: none !important;
    left: unset;
  }
}

.main-class-reels .reel-popup.bottom_rightwidth .popup-product-details {
  display: none !important;
}

.main-class-reels .popup-content.video-bottom-right .popup-controls {
  bottom: 10px;
  left: 10px;
}

.main-class-reels .popup-content video {
  width: 100%;
  height: 100%;
}

.main-class-reels .close-popup {
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.3s ease;
}

.main-class-reels .close-popup:hover {
  transform: rotate(90deg);
}

.main-class-reels .popup-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 2;
  padding: 0 10px;
}

.main-class-reels .popup-prev,
.main-class-reels .popup-next {
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  border: none;
  padding: 12px;
  border-radius: 25%;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.main-class-reels .popup-prev:hover,
.main-class-reels .popup-next:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}

.main-class-reels .popup-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 2;
}

.main-class-reels .popup-controls button {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-class-reels .popup-controls button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
  transform: scale(1.15);
}

.main-class-reels .popup-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 100px;
  z-index: 3;
  object-fit: contain;
  animation: logoFadeIn 0.5s ease forwards;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.main-class-reels .bottom_rightwidth {
  width: fit-content !important;
}

.main-class-reels .swiper-button-next:after, .swiper-button-prev:after {
   content: none;
}

.main-class-reels .reel-popup.bottom_rightwidth button.popup-fullscreen.fas.fa-expand,
.main-class-reels .reel-popup.bottom_rightwidth button.popup-share.fas.fa-share {
    display: none;
}

.main-class-reels .swiper-button-disabled {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .main-class-reels .reel-wrapper video {
    width: 100rem;
    height: 35rem;
  }
}