.omega-stacked-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 12px;
  color: #000;
  text-align: center;
}

.omega-stacked-subtitle {
  text-align: center;
  padding-bottom: 15px;
}

.omega-stacked-btn-follow-us-top,
.omega-stacked-btn-follow-us-bottom {
  display: none;
  background-color: white;
  border: 1px solid black;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.2s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 25px;
}

.omega-stacked-btn-follow-us-bottom {
  margin-top: 25px;
}

.omega-stacked-btn-follow-us-top:hover,
.omega-stacked-btn-follow-us-bottom:hover {
  box-shadow: 0 0 0 1px black;
}

.omega-stacked-prev,
.omega-stacked-next {
  width: 35px;
  height: 35px;
  transform: translateY(-50%);
  background: transparent;
  top: 50%;
  border: none;
  justify-self: center;
  outline: none;
  z-index: 5;
  cursor: pointer;
  background-repeat: no-repeat;
}

.omega-stacked-prev {
  left: 10px;
  background-image: url("https://cdn.shopify.com/s/files/1/0931/0466/8987/files/carousel_button_prev.png?v=1751610316");
}

.omega-stacked-next {
  right: 10px;
  background-image: url("https://cdn.shopify.com/s/files/1/0931/0466/8987/files/carousel_button_next.png?v=1751610306");
}

.omega-stacked-container {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0;
}

.omega-widget-empty {
  display: none;
  padding: 20px;
  text-align: center;
  border: 2px dashed #ccc;
  border-radius: 8px;
  background-color: #f9f9f9;
  margin: 20px;
}

.omega-widget-empty_text {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin: 0 0 10px;
}

.omega-widget-empty p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.omega-stacked-carousel-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.omega-stacked-carousel-container {
  max-width: 1200px;
  width: 100%;
}

.omega-stacked-carousel-container-mobile {
  width: 204px;
}

.omega-stacked-carousel-viewport {
  position: relative;
  height: 500px;
  width: 100%;
  perspective: 1500px;
  overflow: visible;
}

.omega-stacked-card {
  position: absolute;
  left: 50%;
  top: 50%;
  cursor: pointer;
  transform-style: preserve-3d;
  transition:
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.7s ease;
  will-change: transform, opacity;
}

.omega-stacked-card-inner {
  position: relative;
  width: 275px;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.omega-stacked-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  user-select: none;
}

.omega-media-carousel-play-button-default {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.omega-media-carousel-play-button-default::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid white;
  margin-left: 5px;
}

.omega-stacked-carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.omega-stacked-control-button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #1f2937;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: #1f2937;
}

.omega-stacked-control-button:hover {
  background-color: #1f2937;
  color: white;
}

.omega-stacked-control-button:active {
  transform: scale(0.95);
}

.omega-stacked-control-button svg {
  transition: transform 0.2s ease;
}

.omega-stacked-carousel-wrapper.mobile .omega-stacked-carousel-viewport {
  height: 238px;
}

.omega-stacked-card.mobile .omega-stacked-card-inner {
  width: 120px;
  height: 210px;
}

.omega-modal-stacked {
  display: none;
  position: fixed;
  z-index: 99990;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 1.4s;
}

@media (max-width: 1024px) {
  .omega-stacked-card-inner {
    width: 235px;
    height: 380px;
  }
}

@media (max-width: 768px) {
  .omega-stacked-carousel-viewport {
    height: 350px;
    perspective: 1000px;
  }

  .omega-stacked-card-inner {
    width: 190px;
    height: 300px;
    border-radius: 12px;
  }

  .omega-stacked-control-button {
    width: 44px;
    height: 44px;
  }

  .omega-stacked-control-button svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .omega-stacked-carousel-viewport {
    height: 260px;
  }

  .omega-stacked-card-inner {
    width: 180px;
    height: 240px;
    border-radius: 12px;
  }

  .omega-stacked-control-button {
    width: 40px;
    height: 40px;
  }
}
