/* NPS Store - Luxury Pink & Velvet Adult E-Commerce Theme */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --color-bg: #0d030c;
  --color-surface: #170716;
  --color-surface-card: #220b20;
  --color-surface-hover: #2e0f2b;
  --color-pink-50: #fff0f5;
  --color-pink-100: #ffd6e5;
  --color-pink-300: #ff85b8;
  --color-pink-500: #ff2a85;
  --color-pink-600: #e60067;
  --color-pink-gradient: linear-gradient(135deg, #ff2a85 0%, #ff649c 50%, #f43f5e 100%);
  --color-velvet-gradient: linear-gradient(135deg, #1f071c 0%, #300a2b 100%);
  --color-gold: #f59e0b;
  --color-gold-gradient: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
  --color-text-main: #fcf6fa;
  --color-text-muted: #bda2b6;
  --color-border: rgba(255, 42, 133, 0.18);
  --color-border-glow: rgba(255, 42, 133, 0.45);
  --glass-bg: rgba(26, 8, 24, 0.78);
  --glass-border: rgba(255, 42, 133, 0.22);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(255, 42, 133, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 85% 70%, rgba(157, 78, 221, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(244, 63, 94, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography Accents */
.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

.text-gradient-pink {
  background: var(--color-pink-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
}

.glass-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-glow);
  box-shadow: 0 12px 30px -10px rgba(255, 42, 133, 0.35);
}

/* Buttons */
.btn-pink {
  background: var(--color-pink-gradient);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255, 42, 133, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 42, 133, 0.55);
  filter: brightness(1.08);
}

.btn-pink-outline {
  background: transparent;
  color: #ff85b8;
  border: 1.5px solid var(--color-pink-500);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-pink-outline:hover {
  background: rgba(255, 42, 133, 0.15);
  color: #ffffff;
  border-color: #ff649c;
}

/* Badges */
.badge-pink {
  background: rgba(255, 42, 133, 0.18);
  color: #ff85b8;
  border: 1px solid rgba(255, 42, 133, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.badge-discreet {
  background: rgba(217, 119, 6, 0.18);
  color: #fcd34d;
  border: 1px solid rgba(217, 119, 6, 0.35);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Discreet Mode Activated Styling */
body.discreet-mode {
  --color-pink-500: #64748b;
  --color-pink-gradient: linear-gradient(135deg, #475569 0%, #64748b 100%);
}

body.discreet-mode .product-image img,
body.discreet-mode .product-card-img {
  filter: blur(12px) grayscale(80%);
  transition: filter 0.2s ease;
}

body.discreet-mode .product-image:hover img,
body.discreet-mode .product-card-img:hover {
  filter: blur(0px) grayscale(0%);
}

body.discreet-mode .explicit-badge {
  display: none !important;
}

/* Product Main Image Display (Aspect Ratio Preservation) */
.product-main-display {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: radial-gradient(circle at center, #240821 0%, #0f030e 100%);
  position: relative;
  overflow: hidden;
}

.product-main-display img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

.gallery-thumb-btn img {
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Age Verification Modal */
#ageModal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(7, 2, 6, 0.94);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

#ageModal.hidden {
  display: none !important;
}

/* Slide-in Cart Drawer */
#cartDrawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 440px;
  background: #180717;
  border-left: 1px solid var(--color-border);
  box-shadow: -15px 0 40px rgba(0, 0, 0, 0.75);
  z-index: 100000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

#cartDrawer.open {
  transform: translateX(0);
}

#cartDrawerOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cartDrawerOverlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #120410;
}

::-webkit-scrollbar-thumb {
  background: #3d1437;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff2a85;
}

/* Form Controls */
.form-input {
  width: 100%;
  background: rgba(22, 7, 21, 0.85);
  border: 1px solid rgba(255, 42, 133, 0.25);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: #ff2a85;
  box-shadow: 0 0 0 3px rgba(255, 42, 133, 0.25);
  background: rgba(28, 9, 27, 0.95);
}

/* Influencer Sub-Store Banner Styling */
.influencer-banner-bg {
  background: linear-gradient(135deg, rgba(255, 42, 133, 0.2) 0%, rgba(157, 78, 221, 0.25) 100%), #1f071c;
  border-bottom: 1px solid var(--color-border);
}

/* Continuous Marquee Ticker */
.ticker-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 1.5rem;
  animation: tickerScroll 30s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  background: rgba(36, 10, 33, 0.85);
  border: 1px solid rgba(255, 42, 133, 0.3);
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffc2df;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.ticker-pill:hover {
  border-color: #ff2a85;
  background: rgba(255, 42, 133, 0.15);
  color: #ffffff;
}

/* Video Player Styling */
.video-card-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #0f030e;
  border: 1.5px solid rgba(255, 42, 133, 0.35);
  box-shadow: 0 10px 30px -8px rgba(255, 42, 133, 0.3);
}

.video-card-container video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}