/* Osmo Essential CSS - Extracted from osmo-v2.shared.min.css */
/* Only includes styles actually used in the project */

/* Base Reset */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; 
}

body {
  margin: 0;
}

main, section {
  display: block;
}

/* Global Container */
.global {
  position: relative;
}

.w-embed {
  position: relative;
}

.embed-css {
  display: block;
}

.embed-js {
  display: block;
}

.w-script {
  display: block;
}

/* Main */
.main {
  position: relative;
}

/* Inline Block */
.w-inline-block {
  display: inline-block;
}

/* Button Base */
button {
  overflow: visible;
  text-transform: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

button:focus {
  outline: none;
}

/* Links */
a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

a:active, a:hover {
  outline: 0;
}

/* Images */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

/* SVG */
svg:not(:root) {
  overflow: hidden;
}

/* SVG Image */
.svg-img {
  display: block;
}

/* Body class */
.body {
  position: relative;
}
 

/* Cursor Base Styles */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999; 
  will-change: transform;
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  color: #fff;
  transition: transform 0.1s ease-out, opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
  .cursor {
    display: none;
  }
}

/* Hide default cursor only when custom cursor is active */
@media (hover: hover) and (pointer: fine) {
  .cursor.is--active ~ *,
  body:has(.cursor.is--active) * {
    cursor: none !important;
  }
}

.cursor__drag-dots {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.cursor__drag-dot {
  width: 0.5em;
  height: 0.5em;
  border-radius: 50%;
  background-color: #1c2539;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.cursor__drag-dot:first-child {
  left: 0; /* 在 bubble 左边 */
}

.cursor__drag-dot:last-child {
  right: 0; /* 在 bubble 右边 */
}

.cursor-bubble {
  background-color: #1c2539; 
  color: #fff;
  justify-content: center;
  align-items: center;
  width: 4em;
  height: 4em;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.875em;
  line-height: 1;
}

.cursor-bubble__arrow {
  position: absolute;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
}

.cursor-bubble__arrow-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cursor-bubble__drag {
  position: relative; 
}

.cursor-bubble__drag-span {
  display: block;
  white-space: nowrap;
}

/* Product Slider Base Styles */
.product-slider {
  position: relative;
  width: 100%;
}

.product-slider__inner {
  position: relative;
  width: 100%;
}

.product-slider__nav { 
  flex-wrap: wrap;
  justify-content: center; 
}

.product-slider__fade {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none; 
  z-index: 10;
}

/* GSAP Slider Base Styles */
.gsap-slider { 
  flex-flow: column;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.gsap-slider__collection {
  position: relative;
  width: 100%; 
  cursor: grab;
}

.gsap-slider__collection:active {
  cursor: grabbing;
}

.gsap-slider__list {
  display: flex; 
  will-change: transform;
  user-select: none;
  touch-action: pan-y;
  backface-visibility: hidden; 
  z-index: 31;
}

.gsap-slider__item {
  flex: 0 0 auto;
  position: relative;
  width: calc(((100% - 1px) - (var(--slider-spv) - 1) * var(--slider-gap)) / var(--slider-spv));
  margin-right: var(--slider-gap);
  flex: none;
  z-index: 99;
}

@media screen and (max-width: 991px) {
  
}

@media screen and (max-width: 767px) {
   
}

/* Product Card Base Styles */
.product-card {
  position: relative;
  display: block; 
  border-radius: 1.5em;
  overflow: hidden; 
}

 

.product-card__before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Product Card Variants */
 
 
.product-card.is--disabled {
  opacity: 1;
  pointer-events: none;
}

/* SVG Image Modifier */
.svg-img.is--product-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

/* GSAP Slider Collection Modifier */
.gsap-slider__collection.is--products {
  min-height: 500px; /* Ensure container has height when items are absolutely positioned */
  height: auto;
}

@media screen and (max-width: 767px) {
  .gsap-slider__collection.is--products {
    min-height: 400px;
  }
}

/* Transition Element (for Barba.js page transitions) */
.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}
