body {
  font-family: 'Inter', system-ui, sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-card {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-blue {
  box-shadow: 0 0 60px rgba(14, 165, 233, 0.4);
}

.glow-purple {
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.4);
}

.smooth-transition {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
}

.cart-badge {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.brand-icon-gold {
  background-image: linear-gradient(100deg, #0ea5e9 0%, #6366f1 52%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 12px rgba(14, 165, 233, 0.22));
}

.brand-text-gold {
  background-image: linear-gradient(100deg, #0ea5e9 0%, #6366f1 52%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 20px rgba(236, 72, 153, 0.16);
}

.dark .brand-icon-gold {
  background-image: linear-gradient(100deg, #38bdf8 0%, #818cf8 50%, #f472b6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 6px 16px rgba(244, 114, 182, 0.26));
}

.dark .brand-text-gold {
  background-image: linear-gradient(100deg, #38bdf8 0%, #818cf8 50%, #f472b6 100%);
}

/* Product image slider */
.product-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-slide.active {
  opacity: 1;
}

.product-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
  z-index: 10;
}

.product-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(30, 30, 40, 0.45);
  border: 1.5px solid rgba(30, 30, 40, 0.75);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-dot.active {
  background: #1e1e28;
  transform: scale(1.35);
}

/* Edge-tap navigation arrows */
.product-edge {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 28%;
  z-index: 9;
  display: flex;
  align-items: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.product-edge-left  { left:  0; justify-content: flex-start; padding-left:  8px; }
.product-edge-right { right: 0; justify-content: flex-end;   padding-right: 8px; }

.product-slider-wrap:hover .product-edge { opacity: 1; }

.product-edge-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(20, 20, 30, 0.55);
  border: 1.5px solid rgba(255,255,255,0.3);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.7rem;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
