/* Custom Theme Modifications by DTH */

/* Collection List & Main List Collections Section */
.section-collection-list,
.section-main-list-collections {
  .collection-grid {
    --column-gap: var(--grid-gap-mobile, 4px);
    row-gap: var(--grid-gap-mobile, 15px);

    @media only screen and (min-width: 768px) {
      --column-gap: var(--grid-gap-desktop, 15px);
      row-gap: var(--grid-gap-desktop, 20px);
    }
    @media only screen and (min-width: 1068px) {
      --column-gap: var(--grid-gap-desktop, 20px);
      row-gap: var(--grid-gap-desktop, 20px);
    }
  }

  .collection-card--link {
    overflow: hidden;
    position: relative;
  }

  .collection-card--image {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--dth-index, 0) * 0.22s);
    will-change: transform, opacity;
  }

  .collection-card.dth-in-view .collection-card--image {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .collection-card--content {
    opacity: 0;
    transform: translate3d(0, 15px, 0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--dth-index, 0) * 0.22s + 0.35s);
  }

  .collection-card.dth-in-view .collection-card--content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  /* Style 3: Button over image */
  .collection-card.style3 {
    &:hover .collection-card--image {
      transform: scale(1.05);
    }

    .collection-card--content {
      --content-gap: 15px;
      position: absolute;
      bottom: var(--content-gap);
      left: var(--content-gap);
      right: var(--content-gap);
      z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;

      @media only screen and (min-width: 768px) {
        --content-gap: 20px;
      }
    }

    .collection-card--text-link {
      --tss: transform 0.35s cubic-bezier(0.61, 0.22, 0.23, 1), opacity 0.35s cubic-bezier(0.61, 0.22, 0.23, 1);
      position: relative;
      overflow: hidden;
      isolation: isolate;
      pointer-events: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: transparent;
      color: #ffffff;
      border: 1px solid #ffffff;
      padding: 12px 24px;
      text-align: center;
      font-size: 0.8125rem;
      font-weight: var(--font-body-bold-weight);
      letter-spacing: var(--button-letter-spacing);
      text-transform: uppercase;
      border-radius: var(--button-border-radius);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
      transition: var(--tss), background-color 0.35s cubic-bezier(0.61, 0.22, 0.23, 1), color 0.35s cubic-bezier(0.61, 0.22, 0.23, 1), border-color 0.35s cubic-bezier(0.61, 0.22, 0.23, 1);

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #ffffff;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: bottom center;
        transition: var(--tss);
      }

      &:hover {
        color: #000000;
        border-color: #ffffff;

        &::before {
          transform: scaleY(1);
        }
      }
    }

    &:hover .collection-card--text-link {
      color: #000000;
      border-color: #ffffff;

      &::before {
        transform: scaleY(1);
      }
    }
  }

  .collection-grid.text-left .collection-card.style3 .collection-card--content {
    justify-content: flex-start;
  }
  .collection-grid.text-right .collection-card.style3 .collection-card--content {
    justify-content: flex-end;
  }

  /* Style 4: Hover Overlay with SHOP NOW & Description */
  .collection-card.style4 {
    .collection-card--wrapper {
      position: relative;
      overflow: hidden;
    }

    .collection-card--link {
      position: relative;
      display: block;
      width: 100%;
    }

    .collection-card--image {
      transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }

    &:hover .collection-card--image {
      transform: scale(1.06);
    }

    .collection-card--hover-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 10;
      background: rgba(0, 0, 0, 0.32);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      padding: 30px 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      pointer-events: none;
    }

    &:hover .collection-card--hover-overlay {
      opacity: 1;
      visibility: visible;
    }

    .collection-card--hover-btn {
      margin: auto 0;
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      position: relative;
      display: inline-block;
      padding-bottom: 4px;
      transform: translateY(12px);
      transition: transform 0.35s ease;

      &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #ffffff;
      }
    }

    &:hover .collection-card--hover-btn {
      transform: translateY(0);
    }

    .collection-card--hover-info {
      width: 100%;
      text-align: left;
      color: #ffffff;
      transform: translateY(12px);
      transition: transform 0.35s ease;
    }

    &:hover .collection-card--hover-info {
      transform: translateY(0);
    }

    .collection-card--hover-title,
    .collection-card--hover-description {
      font-size: 15px;
      font-weight: 400;
      line-height: 1.35;
      color: #ffffff;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;

      .typewriter-char {
        display: inline-block;
        opacity: 0;
        transform: translateY(4px);
        transition: opacity 0.15s ease, transform 0.15s ease;
        transition-delay: 0s;
        white-space: pre-wrap;
      }
    }

    .collection-card--hover-title {
      font-size: 20px;
      font-weight: 500;
      line-height: 1.25;
      margin-bottom: 4px;
      letter-spacing: -0.01em;
    }

    &:hover {
      .collection-card--hover-title,
      .collection-card--hover-description {
        .typewriter-char {
          opacity: 1;
          transform: translateY(0);
          transition-delay: calc(var(--i, 0) * 0.02s + 0.12s);
        }
      }
    }
  }

  /* Mobile enhancements for Style 4 & Collection List Carousel */
  @media only screen and (max-width: 767px) {
    .collection-card.style4 {
      .collection-card--hover-overlay {
        opacity: 1;
        visibility: visible;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
        padding: 20px 16px;
      }

      .collection-card--hover-btn {
        display: none;
      }

      .collection-card--hover-info {
        transform: translateY(0);

        .collection-card--hover-title,
        .collection-card--hover-description {
          .typewriter-char {
            opacity: 1;
            transform: translateY(0);
          }
        }
      }
    }

    .list-collections,
    .collection-grid--container {
      position: relative;

      .theme-scroll-nav {
        position: static;

        .flickity-nav {
          display: flex !important;
          position: absolute;
          top: 50% !important;
          transform: translateY(-50%) !important;
          bottom: auto !important;
          margin-top: 0 !important;
          width: 30px !important;
          height: 30px !important;
          border-radius: 50%;
          background: rgba(255, 255, 255, 0.85) !important;
          backdrop-filter: blur(4px);
          border: 1px solid rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
          z-index: 30;
          cursor: pointer;

          svg {
            width: 10px;
            height: 10px;
            stroke: #1c1c1c;
          }

          &.flickity-prev {
            left: 30px !important;
          }

          &.flickity-next {
            right: 30px !important;
          }

          &[disabled] {
            opacity: 0.35 !important;
            cursor: not-allowed;
            pointer-events: none;
          }
        }
      }
    }
  }

  /* Hide black horizontal scrollbar and remove bottom margin for collection list */
  .section-collection-list,
  .list-collections,
  .collection-grid--container {
    .os-scrollbar-horizontal {
      display: none !important;
    }

    .theme-scroll--inner {
      scrollbar-width: none !important;
      -ms-overflow-style: none !important;

      &::-webkit-scrollbar {
        display: none !important;
        width: 0 !important;
        height: 0 !important;
      }

      &[data-overlayscrollbars-viewport*=overflowXScroll] {
        margin-bottom: 0px !important;
      }
    }
  }
}

/* Featured Collection Custom Layout & Spacing */
.section-featured-collection {
  .products {
    --column-gap: var(--grid-gap-mobile, 4px);
    row-gap: var(--grid-gap-mobile, 20px);

    @media only screen and (min-width: 768px) {
      --column-gap: var(--grid-gap-desktop, var(--product-card-spacing, 20px));
      row-gap: var(--grid-gap-desktop, 20px);
    }
  }
}

/* Hero Image Section */
dth-hero-image {
  display: block;
  width: 100%;
}

.section-hero-image {
  .hero-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;

    .hero-image--inner {
      position: relative;
      width: 100%;
      height: 100%;
      min-height: inherit;
      display: flex;
      flex: 1;
    }

    .hero-image--media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;

      img, svg {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      }
    }

    @media only screen and (max-width: 767px) {
      .hero-image--media-desktop-only {
        display: none !important;
      }
    }
    @media only screen and (min-width: 768px) {
      .hero-image--media-mobile-only {
        display: none !important;
      }
    }

    /* Heights Desktop */
    @media only screen and (min-width: 768px) {
      &.desktop-height-450 { height: 450px; min-height: 450px; }
      &.desktop-height-550 { height: 550px; min-height: 550px; }
      &.desktop-height-650 { height: 650px; min-height: 650px; }
      &.desktop-height-750 { height: 750px; min-height: 750px; }
      &.desktop-height-full { height: 100vh; min-height: 100vh; min-height: 100dvh; }
      &.adapt { height: auto; }
    }

    /* Heights Mobile */
    @media only screen and (max-width: 767px) {
      &.mobile-height-350 { height: 350px; min-height: 350px; }
      &.mobile-height-450 { height: 450px; min-height: 450px; }
      &.mobile-height-550 { height: 550px; min-height: 550px; }
      &.mobile-height-full { height: 100vh; min-height: 100vh; min-height: 100dvh; }
      &.adapt { height: auto; }

      .hero-image--media img,
      .hero-image--media svg {
        object-fit: var(--mobile-object-fit, cover) !important;
        object-position: var(--mobile-object-position, center) !important;
      }
    }

    /* Parallax (Enhanced Movement Range) */
    &.parallax--true {
      .hero-image--media {
        height: 140%;
        top: -20%;
      }

      .thb-parallax-image {
        height: 140% !important;
        top: -20% !important;
        position: absolute;
        left: 0;
        width: 100%;
        will-change: transform;
      }
    }

    /* Overlay */
    .hero-image--overlay {
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
    }

    /* Content */
    .hero-image--content {
      position: relative;
      z-index: 3;
      width: 100%;
      height: 100%;
      min-height: inherit;
      display: flex;
      flex: 1;
      padding: 40px 20px;

      @media only screen and (min-width: 768px) {
        padding: 60px 40px;
      }

      &.content-position--top-left { justify-content: flex-start; align-items: flex-start; }
      &.content-position--top-center { justify-content: center; align-items: flex-start; }
      &.content-position--top-right { justify-content: flex-end; align-items: flex-start; }

      &.content-position--middle-left { justify-content: flex-start; align-items: center; }
      &.content-position--middle-center { justify-content: center; align-items: center; }
      &.content-position--middle-right { justify-content: flex-end; align-items: center; }

      &.content-position--bottom-left { justify-content: flex-start; align-items: flex-end; }
      &.content-position--bottom-center { justify-content: center; align-items: flex-end; }
      &.content-position--bottom-right { justify-content: flex-end; align-items: flex-end; }
    }

    .hero-image--content-container {
      max-width: 650px;
      width: 100%;
      color: #ffffff;
    }

    .hero-image--subheading {
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-size: 0.875rem;
      margin-bottom: 12px;
      color: inherit;
    }

    .hero-image--heading {
      color: inherit;
      margin-bottom: 16px;
      line-height: 1.15;
    }

    .hero-image--description {
      color: inherit;
      margin-bottom: 24px;
      font-size: 1rem;
      opacity: 0.9;
    }

    .hero-image--button-wrapper {
      margin-top: 16px;
      display: inline-block;

      .button.outline,
      .button.button-secondary,
      .button-secondary {
        background: transparent;
        border: 1px solid #ffffff;
        color: #ffffff;
        transition: background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;

        &:hover {
          background: #ffffff !important;
          border-color: #ffffff !important;
          color: #000000 !important;
        }
      }
    }
  }
}

/* Banner with Product Section Styles */
.section-banner-with-product {
  banner-with-product,
  .banner-with-product {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;

    &.section-spacing--disable-top {
      margin-top: 0 !important;
    }
    &.section-spacing--disable-bottom {
      margin-bottom: 0 !important;
    }
  }

  .banner-with-product--wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
  }

  @media (min-width: 768px) {
    .banner-with-product--wrapper {
      grid-template-columns: 1fr 1fr;
      gap: 50px;
    }
    .banner-with-product--wrapper.desktop-layout--text_first .banner-with-product--banner-container {
      order: 2;
    }
    .banner-with-product--wrapper.desktop-layout--text_first .banner-with-product--content-container {
      order: 1;
    }
  }

  /* Banner Container */
  .banner-with-product--banner-container {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
  }

  .banner-with-product--banner-carousel {
    width: 100%;
  }

  .banner-with-product--banner-slide {
    width: 100%;
    position: relative;
  }

  .banner-with-product--banner-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-body-darker, #f5f5f5);

    &.desktop-height-image,
    &.desktop-height-auto { height: auto; }
    &.desktop-height-450 { height: 450px; }
    &.desktop-height-550 { height: 550px; }
    &.desktop-height-650 { height: 650px; }
    &.desktop-height-750 { height: 750px; }
    &.desktop-height-full { height: 100vh; height: 100dvh; }

    @media (max-width: 767px) {
      &.mobile-height-image,
      &.mobile-height-auto { height: auto; }
      &.mobile-height-350 { height: 350px; }
      &.mobile-height-400 { height: 400px; }
      &.mobile-height-450 { height: 450px; }
      &.mobile-height-500 { height: 500px; }
      &.mobile-height-550 { height: 550px; }
      &.mobile-height-full { height: 100vh; height: 100dvh; }
    }

    img, svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
  }

  /* Hotspot Dots */
  .banner-with-product--hotspot {
    position: absolute;
    z-index: 3;
    transform: translate(-50%, -50%);
    cursor: pointer;

    .banner-with-product--hotspot-dot {
      width: 16px;
      height: 16px;
      background: #ffffff;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.4), 0 2px 8px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, background-color 0.2s ease;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        top: -6px;
        left: -6px;
        right: -6px;
        bottom: -6px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.8);
        animation: hotspot-pulse 2s infinite;
      }
    }

    &:hover .banner-with-product--hotspot-dot {
      transform: scale(1.2);
      background: #000000;
    }

    .banner-with-product--hotspot-popup {
      position: absolute;
      bottom: calc(100% + 12px);
      left: 50%;
      transform: translateX(-50%) translateY(8px) scale(0.95);
      width: 220px;
      background: #ffffff;
      padding: 12px;
      border-radius: 8px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
      z-index: 10;

      &::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 6px;
        border-style: solid;
        border-color: #ffffff transparent transparent transparent;
      }

      .banner-with-product--hotspot-popup-content {
        display: flex;
        gap: 12px;
        align-items: center;
      }

      .banner-with-product--hotspot-popup-img {
        width: 50px;
        height: 65px;
        object-fit: cover;
        border-radius: 4px;
        flex-shrink: 0;
      }

      .banner-with-product--hotspot-popup-info {
        flex-grow: 1;
        min-width: 0;
      }

      .banner-with-product--hotspot-popup-title {
        font-size: 13px;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        color: var(--color-body, #1c1c1c);
      }
    }

    &:hover .banner-with-product--hotspot-popup {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0) scale(1);
    }
  }

  .banner-with-product--content-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 0;
  }

  .banner-with-product--product-carousel {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .banner-with-product--product-slide {
    width: 100%;
    padding: 0 10px;
  }

  .banner-with-product--product-card {
    width: 100%;
  }

  .banner-with-product--nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;

    .banner-with-product--nav-btn {
      background: transparent;
      border: none;
      padding: 8px 12px;
      cursor: pointer;
      color: var(--color-body, #121212);
      transition: opacity 0.2s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
      justify-content: center;

      &:hover {
        opacity: 0.6;
        transform: scale(1.1);
      }

      svg {
        width: 32px;
        height: 16px;
        stroke: currentColor;
      }
    }
  }

  .banner-with-product--footer-link {
    margin-top: 35px;
    text-align: center;
  }

  .banner-with-product--link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-body, #121212);
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: opacity 0.2s ease;

    &:hover {
      opacity: 0.7;
    }
  }
}

.scrolling-text--inner.direction-scroll > div {
  animation: none !important;
  will-change: transform;
}

.section-scrolling-gallery {
  dth-scrolling-text,
  .scrolling-gallery {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg, transparent);

    &.section-spacing--disable-top {
      margin-top: 0 !important;
    }
    &.section-spacing--disable-bottom {
      margin-bottom: 0 !important;
    }
  }

  .scrolling-gallery--inner {
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0;

    &.direction-left > div {
      animation: marquee-left var(--marquee-speed, 20s) linear infinite;
    }
    &.direction-right > div {
      animation: marquee-right var(--marquee-speed, 20s) linear infinite;
    }
    &.direction-scroll > div {
      animation: none !important;
      will-change: transform;
    }

    > div {
      display: flex;
      align-items: center;
      flex-shrink: 0;
      gap: var(--gap-mobile, 15px);
      padding-right: var(--gap-mobile, 15px);

      @media (min-width: 768px) {
        gap: var(--gap-desktop, 30px);
        padding-right: var(--gap-desktop, 30px);
      }
    }
  }

  .scrolling-gallery--item {
    flex-shrink: 0;
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .scrolling-gallery--link {
    display: block;
    text-decoration: none;
    color: inherit;
  }

  .scrolling-gallery--media {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    background-color: #f7f7f7;
    width: 180px;

    @media (min-width: 768px) {
      width: 240px;
    }

    &.desktop-height-auto { height: auto; }
    &.desktop-height-150 { height: 150px; }
    &.desktop-height-200 { height: 200px; }
    &.desktop-height-250 { height: 250px; }
    &.desktop-height-300 { height: 300px; }

    @media (max-width: 767px) {
      &.mobile-height-auto { height: auto; }
      &.mobile-height-100 { height: 100px; }
      &.mobile-height-150 { height: 150px; }
      &.mobile-height-200 { height: 200px; }
    }

    img, svg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
  }

  .scrolling-gallery--item:hover .scrolling-gallery--media img {
    transform: scale(1.05);
  }

  .scrolling-gallery--caption {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    margin-top: 10px;
    color: var(--color-body, #1c1c1c);
  }
}

.section-background-video {
  .background-video--parallax .background-video__fallback-img,
  .background-video--parallax .background-video__iframe {
    height: 140%;
    top: -20%;
    will-change: transform;
  }
}

.section-image-with-text-slideshow {
  .image-with-text-slideshow {
    gap: var(--grid-gap-mobile, 20px);

    @media only screen and (min-width: 768px) {
      gap: var(--grid-gap-desktop, 20px);
    }
  }
}

.product-card {
  .product-card--image-inner {
    position: relative;
    overflow: hidden;

    .product-primary-image,
    .product-secondary-image,
    .aspect-ratio img {
      transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
      will-change: transform, opacity;
    }

    > figure:nth-child(2) {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 2;
      transition: opacity 0.5s ease, visibility 0.5s ease;

      .product-secondary-image,
      img {
        transform: scale(1);
      }
    }
  }

  &:hover {
    .product-card--image-inner {
      > figure:nth-child(2) {
        opacity: 1;
        visibility: visible;

        .product-secondary-image,
        img {
          transform: scale(1.08);
        }
      }

      > figure:first-child:last-child {
        .product-primary-image,
        img {
          transform: scale(1.08);
        }
      }
    }
  }
}

.image-hotspots--pin-button svg {
  transition: all 0.25s cubic-bezier(0.104, 0.204, 0.492, 1);
}


.image-hotspots {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

@media only screen and (min-width: 1068px) {
  .image-hotspots {
    gap: 60px;
  }
}

.image-hotspots--container {
  width: 100%;
  display: block;
  position: relative;
}

.image-hotspots--pin {
  position: absolute;
  display: block;
  top: var(--mobile-top, 0px);
  left: var(--mobile-left, 0px);
}

@media only screen and (min-width: 768px) {
  .image-hotspots--pin {
    top: var(--desktop-top, 0px);
    left: var(--desktop-left, 0px);
  }
}

.image-hotspots--pin-button {
  width: 36px;
  height: 36px;
  background: var(--bg-body, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}

.image-hotspots--pin-button.hotspot--pinned:after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: var(--bg-body, #fff);
  border-radius: 50%;
  opacity: 0.4;
  animation: hotspot-wave 2s ease infinite alternate;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.image-hotspots--pin-button svg {
  display: block;
  transform-origin: center;
}

@keyframes hotspot-wave {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.45);
  }
}

.image-hotspots--pin-bubble {
  position: absolute;
  padding: 15px;
  border-radius: 3px;
  background: rgba(var(--bg-body-rgb), 0.6);
  backdrop-filter: blur(10px);
  top: calc(100% + 12px);
  left: 50%;
  z-index: 2;
  transform: translate(calc(-50% + var(--content-offset, 0px)));
  color: var(--color-body);
  visibility: hidden;
  opacity: 0;
  min-width: 315px;
  font-size: 0.8125rem;
  transition: visibility 0s 0.25s, opacity 0.25s;
}

@media only screen and (min-width: 768px) {
  .image-hotspots--pin-bubble {
    padding: 26px 30px;
  }
}

.image-hotspots--pin-bubble p {
  font-size: inherit;
}

.image-hotspots--pin-bubble p.h6 {
  font-size: 1.0625rem;
  margin-bottom: 5px;
}

.image-hotspots--pin-bubble p:last-child {
  margin-bottom: 0;
}

.image-hotspots--pin.bottom-dot .image-hotspots--pin-bubble {
  top: auto;
  bottom: calc(100% + 12px);
}

.image-hotspots--pin.active svg {
  transform: rotateZ(315deg);
}

.image-hotspots--pin.active .image-hotspots--pin-bubble {
  opacity: 1;
  visibility: visible;
  transition: visibility 0s, opacity 0.25s;
  z-index: 4;
}

.image-hotspots--image {
  overflow: hidden;
}

.image-hotspots--mobile {
  display: block;
}

@media only screen and (min-width: 768px) {
  .image-hotspots--mobile {
    display: none;
  }
}

.image-hotspots--desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .image-hotspots--desktop {
    display: block;
  }
}

.hotspots--product {
  .image-hotspots--pin-bubble {
    padding: 8px;
  }

  .product-card-small {
    margin: 0;
  }
}