.omega-modal-highlight {
  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;
}

.omega-highlight-header,
.omega-highlight-footer {
  text-align: center;
  margin-bottom: 16px;
}

.omega-highlight-footer {
  margin-top: 16px;
  margin-bottom: 0;
}

.omega-highlight-title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 12px;
  color: #000;
  text-align: center;
}

.omega-highlight-subtitle {
  text-align: center;
  padding-bottom: 15px;
}

.omega-highlight-btn-follow-us-top,
.omega-highlight-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-highlight-btn-follow-us-bottom {
  margin-top: 25px;
}

.omega-highlight-btn-follow-us-top:hover,
.omega-highlight-btn-follow-us-bottom:hover {
  box-shadow: 0 0 0 1px black;
}

.omega-highlight-layout-wrapper {
  width: 100%;
  margin: auto;
  display: flex;
  gap: 16px;
  align-items: stretch;
  flex-wrap: nowrap;
}

.omega-highlight-item-large {
  flex: 1.35;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f0f0f0;
  height: auto;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.omega-highlight-grid-small {
  flex: 2;
  display: grid;
  gap: 16px;
  align-content: start;
  justify-content: start;
  grid-auto-rows: 1fr;
}

.omega-highlight-item-small {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: #f0f0f0;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  cursor: pointer;
}

.omega-highlight-prev,
.omega-highlight-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-highlight-prev {
  left: 10px;
  background-image: url("https://cdn.shopify.com/s/files/1/0931/0466/8987/files/carousel_button_prev.png?v=1751610316");
}

.omega-highlight-next {
  right: 10px;
  background-image: url("https://cdn.shopify.com/s/files/1/0931/0466/8987/files/carousel_button_next.png?v=1751610306");
}

.omega-highlight-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.omega-highlight-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.omega-highlight-media-wrapper .omega-highlight-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.omega-highlight-media-wrapper:hover .omega-highlight-play-button {
  opacity: 0;
}

.omega-highlight-media-wrapper video ~ .omega-highlight-play-button {
  opacity: 1;
}

.omega-highlight-media-wrapper:hover
  video
  ~ .omega-highlight-play-button {
  opacity: 0;
}

.omega-highlight-item-large:hover video ~ .omega-highlight-play-button,
.omega-highlight-item-small:hover video ~ .omega-highlight-play-button {
  opacity: 0;
}

.omega-highlight-item-large video:paused ~ .omega-highlight-play-button,
.omega-highlight-item-small video:paused ~ .omega-highlight-play-button {
  opacity: 1;
}

.scale-05 {
  transform: translate(-50%, -50%) scale(0.5);
}

.omega-widget-empty {
  border: 1px dashed #ccc;
  padding: 20px;
  text-align: center;
  width: 100%;
  color: #666;
}
.omega-widget-empty_text {
  font-weight: bold;
  font-size: 16px;
  margin: 0 0 5px 0;
}

@media screen and (max-width: 768px) {
  .omega-highlight-layout-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .omega-highlight-item-large {
    flex: unset;
    width: 100%;
    border-radius: 12px;
  }

  .omega-highlight-grid-small {
    flex: unset;
    width: 100%;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .omega-highlight-item-small {
    border-radius: 8px;
  }

  .omega-highlight-header,
  .omega-highlight-footer {
    padding: 0 12px;
  }
}

@media screen and (max-width: 480px) {
  .omega-highlight-layout-wrapper {
    gap: 8px;
  }

  .omega-highlight-grid-small {
    gap: 8px;
  }
}

.omega-highlight-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background-image: url("https://cdn.shopify.com/s/files/1/0931/0466/8987/files/instafeed_play_button.png?v=1751614594");
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  z-index: 4;
  display: flex;
}

.omega-highlight-item-large:hover .omega-highlight-play-button {
  display: none;
}

.omega-highlight-item-small:hover .omega-highlight-play-button {
  display: none;
}
