/** Shopify CDN: Minification failed

Line 946:5 Expected "}" to go with "{"

**/
/* Influencer Video Carousel Styles */
/* File: assets/influencer-carousel.css */

.influencer-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.carousel-heading {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.influencer-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 15px;
}

.carousel-item {
  flex: 0 0 calc(25% - 11.25px); /* 4 items on desktop */
  position: relative;
  aspect-ratio: 9/16; /* Vertical video aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.influencer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-pause-btn {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-pause-btn:hover {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 15px 15px;
  color: white;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.2;
  color: white;
}

.product-info .price {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #fff;
}

.shop-now-btn {
  display: inline-block;
  background: #000;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.modal-shop-now-btn{
    display: inline-block;
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.shop-now-btn:hover {
  background: #333;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}
.modal-shop-now-btn:hover{

  text-decoration: none;
  transform: translateY(-1px);
}

.shop-now-btn:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.text-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

/* Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 40px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 400px;
  max-height: 90vh;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-video-container {
  position: relative;
}

.modal-video-container video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}

.modal-product-info {
  padding: 20px;
  background: #000;
  color: white;
}
.inner-shop-btn{
  background: white
}

.modal-product-info .product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: white;
}

.modal-product-info .product-price {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #fff;
}

.modal-shop-now {
  display: inline-block;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.modal-shop-now:hover {
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  transform: translateY(-1px);
}

.modal-shop-now:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .carousel-item {
    flex: 0 0 calc(50% - 7.5px); /* 2 items on mobile */
  }
  
  .carousel-heading h2 {
    font-size: 1.5rem;
  }
  
  .influencer-carousel-wrapper {
    padding: 15px;
  }
  
  .carousel-track {
    gap: 10px;
  }
  
  .product-info h3 {
    font-size: 12px;
  }
  
  .product-info .price {
    font-size: 14px;
  }
  
  .shop-now-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .play-pause-btn {
    width: 50px;
    height: 50px;
  }
  
  .carousel-nav {
    width: 35px;
    height: 35px;
  }
  
  .prev-btn {
    left: -17px;
  }
  
  .next-btn {
    right: -17px;
  }
  
  .modal-content {
    max-width: 350px;
    width: 95%;
  }
  
  .modal-product-info .product-title {
    font-size: 16px;
  }
  
  .modal-product-info .product-price {
    font-size: 18px;
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .influencer-carousel-wrapper {
    padding: 10px;
  }
  
  .carousel-heading {
    margin-bottom: 20px;
  }
  
  .carousel-heading h2 {
    font-size: 1.3rem;
  }
  
  .carousel-nav {
    display: none; /* Hide nav arrows on very small screens */
  }
  
  .modal-content {
    width: 98%;
    max-width: 320px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 10px); /* 3 items on tablet */
  }
}

/* Loading state */
.influencer-video[src=""] {
  background: #f0f0f0;
  position: relative;
}

.influencer-video[src=""]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #ddd;
  border-top-color: #999;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Smooth scrolling for carousel */
.carousel-track {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.shop-now-btn:focus,
.modal-shop-now:focus,
.carousel-nav:focus,
.modal-close:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Hover effects */
.carousel-item:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.carousel-item:hover .influencer-video {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .button-group {
      flex-direction: row;
      backdrop-filter: blur(2px) !important;
    }/* Influencer Video Carousel Styles */
/* File: assets/influencer-carousel.css */

.influencer-carousel-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  position: relative;
}

.carousel-heading {
  text-align: center;
  margin-bottom: 30px;
}

.carousel-heading h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

.influencer-carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 15px;
}

.carousel-item {
  flex: 0 0 calc(25% - 11.25px); /* 4 items on desktop */
  position: relative;
  aspect-ratio: 9/16; /* Vertical video aspect ratio */
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.influencer-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.video-container:hover .video-overlay {
  opacity: 1;
}

.play-pause-btn {
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.play-pause-btn:hover {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 15px 15px;
  color: white;
}

.product-info h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 5px 0;
  line-height: 1.2;
  color: white;
}

.product-info .price {
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 10px 0;
  color: #fff;
}

.shop-now-btn {
  display: inline-block;
  background: #000;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.modal-shop-now-btn{
    display: inline-block;
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.shop-now-btn:hover {
  background: #333;
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}
.modal-shop-now-btn:hover{

  text-decoration: none;
  transform: translateY(-1px);
}

.shop-now-btn:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.text-overlay {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
}

/* Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 40px;
  border-radius: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -20px;
}

.next-btn {
  right: -20px;
}

/* Video Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  max-width: 400px;
  max-height: 90vh;
  width: 90%;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  color: white;
  background: rgba(0, 0, 0, 0.7);
  border: none;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.9);
}

.modal-video-container {
  position: relative;
}

.modal-video-container video {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
}

.modal-product-info {
  padding: 20px;
  background: #000;
  color: white;
}
.inner-shop-btn{
  background: white
}

.modal-product-info .product-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: white;
}

.modal-product-info .product-price {
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 15px 0;
  color: #fff;
}

.modal-shop-now {
  display: inline-block;
  background: #fff;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.modal-shop-now:hover {
  background: #f0f0f0;
  color: #000;
  text-decoration: none;
  transform: translateY(-1px);
}

.modal-shop-now:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Mobile Styles */
@media (max-width: 767px) {
  .carousel-item {
    flex: 0 0 calc(50% - 7.5px); /* 2 items on mobile */
  }
  
  .carousel-heading h2 {
    font-size: 1.5rem;
  }
  
  .influencer-carousel-wrapper {
    padding: 15px;
  }
  
  .carousel-track {
    gap: 10px;
  }
  
  .product-info h3 {
    font-size: 12px;
  }
  
  .product-info .price {
    font-size: 14px;
  }
  
  .shop-now-btn {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .play-pause-btn {
    width: 50px;
    height: 50px;
  }
  
  .carousel-nav {
    width: 35px;
    height: 35px;
  }
  
  .prev-btn {
    left: -17px;
  }
  
  .next-btn {
    right: -17px;
  }
  
  .modal-content {
    max-width: 350px;
    width: 95%;
  }
  
  .modal-product-info .product-title {
    font-size: 16px;
  }
  
  .modal-product-info .product-price {
    font-size: 18px;
  }
}

/* Very small mobile */
@media (max-width: 480px) {
  .influencer-carousel-wrapper {
    padding: 10px;
  }
  
  .carousel-heading {
    margin-bottom: 20px;
  }
  
  .carousel-heading h2 {
    font-size: 1.3rem;
  }
  
  .carousel-nav {
    display: none; /* Hide nav arrows on very small screens */
  }
  
  .modal-content {
    width: 98%;
    max-width: 320px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  .carousel-item {
    flex: 0 0 calc(33.333% - 10px); /* 3 items on tablet */
  }
}

/* Loading state */
.influencer-video[src=""] {
  background: #f0f0f0;
  position: relative;
}

.influencer-video[src=""]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #ddd;
  border-top-color: #999;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Smooth scrolling for carousel */
.carousel-track {
  scroll-behavior: smooth;
}

/* Focus states for accessibility */
.shop-now-btn:focus,
.modal-shop-now:focus,
.carousel-nav:focus,
.modal-close:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Hover effects */
.carousel-item:hover {
  transform: translateY(-2px);
  transition: transform 0.3s ease;
}

.carousel-item:hover .influencer-video {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
    .button-group {
      flex-direction: row;
      backdrop-filter: blur(2px) !important;
    }