/** Shopify CDN: Minification failed

Line 398:9 Expected ":"
Line 398:11 Expected identifier but found "2"

**/
@media screen and (min-width: 1024px) {
  .video-product-info .buy-now-btn {
    margin-bottom: -15%;
  }
}
.video-carousel-wrapper {
  position: relative;
  margin-bottom: 20px;
  padding: 0;
}

.video-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 12px;
  overflow: visible;
  cursor: default;
}

.video-carousel::-webkit-scrollbar {
  display: none;
}

.video-carousel.dragging {
  cursor: default;
  user-select: auto;
}

.video-item {
  border-radius: 16px;
  overflow: hidden;
  background: #f2f2f2;
  aspect-ratio: 9/16;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 100%;
}

.video-item:hover {
  transform: scale(1.05);
}

.video-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: white;
  border-radius: 50%;
  padding: 12px;
  pointer-events: none;
  transition: opacity 0.3s ease;
  background: transparent !important;
}

.video-item:hover .video-play-icon {
  opacity: 0.8;
}

.video-title {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: white;
  font-size: 12px;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  line-height: 1.2;
}

/* Ocultar elementos del carrusel */
.carousel-arrow {
  display: none !important;
}

.carousel-dots {
  display: none !important;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  height: 80vh;
  max-height: 700px;
  backdrop-filter: blur(5px);
  background: rgba(0,0,0,.3);
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.video-product-info {
  position: absolute;
  bottom: 0px; 
  left: 0;
  width: 100%;
  padding: 12px;
  background: rgba(230, 229, 231, 1);
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-product-info img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #fff;
}

.video-product-info .product-details {
  display: flex;
  flex-direction: column;
  color: black;
  flex: 1;
}

.product-details .product-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.product-details .product-price {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

.video-product-info .buy-now-btn {
  background: #ED7EA4;
  color: white;
  border: none;
  padding: 8px 14px !important;
  border-radius: 0px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.video-product-info .buy-now-btn:hover {
  background: #d16a91;
}

.video-product-info select#variantSelect {
  width: 100%;
  margin-top: 6px;
  padding: 8px 12px;
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 1);
  border-radius: 0px;
  font-size: 13px;
  appearance: none;
  font-weight: 500;
  cursor: pointer;
}

.video-product-info select#variantSelect:focus {
  outline: none;
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.4);
}

.video-product-info select#variantSelect option {
  background-color: #fff;
  color: #000;
}

/* Dots para productos múltiples */
.product-dots {
  opacity:0;
  width:0px;
  height:0px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1002;
}

.product-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-dot.active {
  background: #ED7EA4;
  transform: scale(1.2);
}

.product-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.modal-nav {
  position: absolute;
  top: 35%;
  left: 80%;
  gap: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 30;
  pointer-events: none;
  flex-direction: column;
}

.nav-btn {
  color: black;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
  background: transparent !important;
}

.nav-btn:active {
  background: none;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999999999999999999999999999999999999999999999999;
  backdrop-filter: blur(5px);
}

.video-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent !important;
  color: #ED7EA4;
  border: none;
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease;
}

.modal-video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#modalVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.play-pause-btn {
  background: transparent !important;
  color: #ED7EA4;
  border: none;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  border-radius: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-pause-btn.hidden {
  opacity: 0;
}
.arrows-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.arrow-prev, .arrow-next {
  color: #ED7EA4;
  display:inline-flex;
  align-items:center;
  height: 40px;
  background: none;
  font-size: 20px;
  border: 0px;
  width: 5px;
  font-size: 30px!important;
  position: relative;
  top:-30px;
  right:6px;
  transition: all 0.3s ease-in-out;
}
.arrow-prev:hover, .arrow-next:hover{
  cursor: pointer;
}

.arrow-prev.disabled, .arrow-next.disabled {
  opacity: 0.2;
  pointer-events: none;
}


.sr-only{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/* Responsive Design */
@media (max-width: 768px) {
  .arrows-container{
    gap:10px;
  }
  .arrows-mobile-display{
    display:flex;
    flex-direction:row;
    justify-content:center;
    align-items:center;
    margin-bottom:1px;
    gap:10px;
  }
  .buy-now-btn{
    order:-1;
  }
  .arrow-next{
    position: none;
    top:0;
    right:0;
    font-size: 40px!important;
    order:3;
  }
  .arrow-prev{
    position: none;
    top:0;
    right:0;
    font-size: 40px!important;
    order; 2;
  }
  .arrows-container{
    flex-direction: row;
  }
  .arrow-prev, .arrow-next {
    margin-bottom: 0px ;
  }
  .video-product-info select#variantSelect {
    width: 89dvw;
  }
  
  .video-carousel-wrapper {
    padding: 0;
  }

  .video-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 15px 8px;
  }

  .video-item {
    border-radius: 12px;
  }

  .modal-content {
    width: 95%;
    height: 90vh;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,.3);
  }

  .modal-nav {
    display: none;
  }

  .modal-close {
    top: 15px;
    right: 15px;
  }

  .video-product-info {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px;
    gap: 8px;
    bottom: 0px; /* Ajuste para móvil */
  }

  .video-product-info img {
    width: 56px;
    height: 56px;
  }

  .video-product-info .buy-now-btn {
    width: 50dvw;
    text-align: center;
  }

  .product-dots {
    bottom: 5px;
  }

  .product-dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .video-carousel-wrapper {
    padding: 0;
  }
  
  .video-carousel {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 6px;
  }
  
  .video-item {
    border-radius: 10px;
  }
  
  .modal-content {
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(5px);
    background: rgba(0,0,0,.3);
  }

  .modal-video-container {
    border-radius: 0;
  }

  .video-product-info {
    bottom: 0px;
  }
}



