/** Shopify CDN: Minification failed

Line 162:3 Unexpected "/"

**/
/* =========================================================
   XO PRODUCT DOCK — FINAL CLEAN CSS (PRODUCTION)
   - No useful feature removed
   - Desktop: arrows + edge fade blur
   - Mobile: arrows off, label off, snap preserved
   ========================================================= */

/* =========================
   ROOT
========================= */
.xo-product-dock {
  --icon-size: 132px;
  --icon-size-mobile: 96px;
  --icon-gap: 20px;

  position: relative;
  z-index: 50;
}

/* =========================
   RAIL WRAPPER (contains arrows + fades)
========================= */
.xo-product-dock__rail {
  position: relative;
  overflow-x: hidden;
  overflow-y: visible; /* allow hover pop-out */
}

/* =========================
   TRACK (scroll container)
========================= */
.xo-product-dock__icons {
  display: flex;
  align-items: flex-end;
  /* justify-content: space-between; */
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: var(--icon-gap);

  overflow-x: auto;
  overflow-y: visible;
  white-space: nowrap;

  padding: 48px 12px 28px; /* top space for hover growth */

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none;

  /* nice depth */
  perspective: 800px;
  transform-style: preserve-3d;
}

.xo-product-dock__icons::-webkit-scrollbar {
  display: none;
}

/* keep center padding trick */
/* .xo-product-dock__icons {
  padding-left: clamp(16px, calc(50% - (var(--icon-size) / 2)), 240px);
  padding-right: clamp(16px, calc(50% - (var(--icon-size) / 2)), 240px);
} */

.xo-product-dock__icons {
  padding-left: clamp(
    32px,
    calc(50% - (var(--icon-size) / 2) + 24px),
    650px
  );
  padding-right: clamp(
    32px,
    calc(50% - (var(--icon-size) / 2) + 24px),
    650px
  );
}

/* =========================
   EDGE FADE + BLUR (stable, no mask)
   Works on any background without “blob”
========================= */
/* .xo-product-dock__rail::before,
.xo-product-dock__rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 30;
  pointer-events: none;

  
  filter: blur(10px);
  opacity: 1;
} */
/* 
@media (min-width: 768px) {
  .xo-product-dock__rail::before,
  .xo-product-dock__rail::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 160px;
    z-index: 30;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.85;
  }

  .xo-product-dock__rail::before {
    left: -20px;
    background: linear-gradient(
      to right,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.30) 38%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.00) 100%
    );
  }

  .xo-product-dock__rail::after {
    right: -20px;
    background: linear-gradient(
      to left,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.30) 38%,
      rgba(0,0,0,0.10) 65%,
      rgba(0,0,0,0.00) 100%
    );
  }
}

/* LEFT */
.xo-product-dock__rail::before {
  left: -20px;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 38%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.00) 100%
  );
}

/* RIGHT */
.xo-product-dock__rail::after {
  right: -20px;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.30) 38%,
    rgba(0,0,0,0.10) 65%,
    rgba(0,0,0,0.00) 100%
  );
} */

/* If your section background is bright, reduce darkness */
@media (min-width: 768px) {
  .xo-product-dock__rail::before,
  .xo-product-dock__rail::after {
    opacity: 0.85;
  }
}

/* =========================
   ICON BASE
========================= */
.dock-icon {
  flex: 0 0 auto;
  width: var(--icon-size);
  height: var(--icon-size);

  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;

  position: relative;

  transform: scale(0.88);
  transform-origin: center bottom;

  transition: transform 340ms cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

/* XO/Basser image fill */
.dock-icon .product-image,
.dock-icon .product-image__inner,
.dock-icon .product-image__media,
.dock-icon img {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.dock-icon img {
  object-fit: contain;
  display: block;
}

/* =========================
   ACTIVE GLASS EFFECT
========================= */
.dock-icon.is-active {
  transform: translateY(-16px) translateZ(30px) scale(1);
  z-index: 3;
}

/* glass body */
.dock-icon.is-active::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 40%,
    rgba(255,255,255,0.08) 60%,
    rgba(255,255,255,0.35) 100%
  );

  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.6),
    inset 0 -1px 2px rgba(0,0,0,0.15),
    inset 0 0 0 1px rgba(255,255,255,0.35);

  pointer-events: none;
  z-index: -1;
}

/* highlight sheen */
.dock-icon.is-active::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 18px;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.15) 40%,
    transparent 60%
  );

  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

/* =========================
   DESKTOP HOVER LIFT
========================= */
.dock-icon:not(.is-active).is-hovered {
  transform: translateY(-24px) translateZ(40px) scale(1.12);
  z-index: 4;
}

.dock-icon:not(.is-active).is-near {
  transform: translateY(-10px) translateZ(20px) scale(1.02);
  z-index: 3;
}

/* =========================
   LABEL (single system, no bug)
   - Shows on hover + active
========================= */
.dock-icon[data-title]::after {
  content: attr(data-title);
  position: absolute;
  left: 50%;
  bottom: -6px;
  top: auto;                 /* important: avoid “Mint at top” bug */
  transform: translateX(-50%);

  max-width: 160px;
  padding: 8px 14px;

  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  color: rgba(0,0,0,0.85);
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.65),
    rgba(255,255,255,0.25)
  );

  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-radius: 999px;

  box-shadow:
    0 10px 26px rgba(0,0,0,0.25),
    inset 0 1px 1px rgba(255,255,255,0.7);

  opacity: 0;
  pointer-events: none;

  transition: opacity 180ms ease, transform 220ms cubic-bezier(.22,.61,.36,1);
  z-index: 10;
}

/* hover shows */
.dock-icon:hover::after {
  opacity: 1;
}

/* active shows */
.dock-icon.is-active::after {
  opacity: 1;
}

/* IMPORTANT: remove your old conflicting “product-image::after” if exists */
.dock-icon.is-active .product-image::after {
  content: none !important;
}

/* =========================
   PRELOADER
========================= */
.xo-dock-loader {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none !important;
  transition: opacity 200ms ease;
  z-index: 200;
}

.xo-dock-loader.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.xo-dock-loader::after {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: xo-spin 0.8s linear infinite;
}

@keyframes xo-spin {
  to { transform: rotate(360deg); }
}

/* =========================
   ARROWS (DESKTOP ONLY)
   - Premium glass circle + disabled state
========================= */
.dock-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  pointer-events: auto;

  width: 46px;
  height: 46px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.28);

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.22),
    rgba(255,255,255,0.08)
  );

  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  box-shadow:
    0 12px 30px rgba(0,0,0,0.35),
    inset 0 1px 1px rgba(255,255,255,0.35);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  user-select: none;

  transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.dock-nav--prev { left: 18px; }
.dock-nav--next { right: 18px; }

.dock-nav span {
  font-size: 34px;
  line-height: 1;
  color: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}

.dock-nav:hover {
  filter: brightness(1.12);
  transform: translateY(-50%) scale(1.06);
}

/* disabled */
.dock-nav.is-disabled {
  opacity: 0.20;
  pointer-events: none;
  filter: grayscale(1);
  transform: translateY(-50%) scale(0.98);
}

/* =========================
   MOBILE
   - Arrows off
   - Label off
   - Keep your snap behavior
========================= */
@media (max-width: 767px) {

  .xo-product-dock {
    --icon-size: 80px;
    --icon-gap: 25px !important;
  }

  .xo-product-dock__rail::before,
  .xo-product-dock__rail::after {
    display: none !important;
  }

  .xo-product-dock__rail {
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .xo-product-dock__icons {
    width: max-content;
    padding: 46px 89px 20px;
    perspective: none;
  }

  .dock-icon {
    width: var(--icon-size);
    height: var(--icon-size);
    scroll-snap-align: center;
    transform: scale(1.10) !important;
    transition: transform 240ms ease, opacity 240ms ease;
    opacity: 1;
    z-index: 1;
  }

  .dock-icon.is-hovered,
  .dock-icon.is-near {
    transform: scale(1.10) !important;
  }

  .dock-icon.is-active {
    transform: scale(1.15) !important;
    opacity: 1;
    z-index: 3;
  }

  .dock-icon:not(.is-active) {
    opacity: 1;
  }

  .dock-icon.is-active::before,
  .dock-icon.is-active::after {
    inset: -6px;
    border-radius: 14px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: linear-gradient(
      135deg,
      rgba(255,255,255,0.25),
      rgba(255,255,255,0.08)
    );
    box-shadow:
      0 10px 22px rgba(0,0,0,0.25),
      inset 0 1px 1px rgba(255,255,255,0.4);
  }

  .dock-icon::after {
    display: none !important;
  }

  .dock-nav {
    display: none !important;
  }
}