/** Shopify CDN: Minification failed

Line 329:0 Unexpected "}"

**/
.watch-and-buy-section {
  margin: 20px 0;
}

.crew-heading {
  text-align: center;
  margin-top: 40px !important;
  margin-bottom: 20px !important;
  font-weight: bold;
}

.crew-carousel {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 450px;
  position: relative;
  perspective: 1000px;
}

.crew-track {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
}

.crew-card {
  position: absolute;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.8s ease;
  cursor: pointer;
}

.crew-card video,
.crew-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-card.center {
  z-index: 10;
  transform: scale(1.2);
}

.crew-card.left-1 {
  transform: translateX(-340px) scale(1.1);
  opacity: 0.8;
}

.crew-card.left-2 {
  transform: translateX(-650px) scale(1);
  opacity: 0.8;
}

.crew-card.right-1 {
  transform: translateX(340px) scale(1.1);
  opacity: 0.8;
}

.crew-card.right-2 {
  transform: translateX(650px) scale(1);
  opacity: 0.8;
}

.crew-card.hidden {
  opacity: 0;
  pointer-events: none;
}

.crew-info {
  text-align: center;
  margin: auto;
  padding-top: 30px;
  max-width: 350px;
}

.info-prod {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  padding: 10px;
  border-radius: 50px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 20px;
}

.product-img {
  width: 60px;
  height: auto;
}

.product-name {
  margin: 0;
  font-weight: 600;
}

.product-price {
  font-weight: 700;
}

.crew-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.crew-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #C0C0C0;
  cursor: pointer;
}

.crew-dot.active {
  background: #000000;
}

.crew-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f3f3f3;
  color: #000000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crew-left {
  left: 20px;
}

.crew-right {
  right: 20px;
}

/* Modal base */
.crew-modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.crew-modal.active {
  display: grid;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* Modal content */
.crew-modal-content {
  position: relative;
  /* background: #fff; */
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  width: 95%;
  /* responsive width */
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 20px; */
  animation: scaleIn 0.25s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9)
  }

  to {
    transform: scale(1)
  }
}

/* Media (video/img) */
.crew-modal-media {
  position: relative;
  width: 100%;
  height: 100%;
  /* background: #000; */
  overflow: hidden;
}

.crew-modal-video,
.crew-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  /* border-radius: 8px; */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.crew-modal-video {
  display: block;
}

/* Info */
.crew-modal-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: white;
}

.crew-modal-title {
  font-weight: 600;
}

.crew-modal-price {
  margin-bottom: 20px;
}

.crew-modal-buy {
  background: #111;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: background 0.2s;
}

/* Close */
.crew-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  z-index: 100;
}

/* Prev/Next */
.crew-modal-prev,
.crew-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}

.crew-modal-prev:hover,
.crew-modal-next:hover {
  background: rgba(0, 0, 0, 0.9);
}

.crew-modal-prev {
  left: 5px;
}

.crew-modal-next {
  right: -50px;
}

.crew-modal-product-img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: block;
  margin: 15px auto;
}

/* .crew-modal-content {
  overflow: visible;
  /* allow arrows outside */
} */

.crew-modal-prev {
  left: 5px;
}

.crew-modal-next {
  right: 5px;
}


@media (max-width: 768px) {
  .crew-modal-product-img {
    display: none;
    /* hide on mobile */
  }
  .crew-heading {
    font-size: 25px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .crew-modal-content {
    grid-template-columns: 1fr;
    max-width: 75%;
    height: 70%;
  }

  .crew-modal-prev {
    left: 10px;
  }

  .crew-modal-next {
    right: 10px;
  }
}