/*
 * ═══════════════════════════════════════════════
 *   MINIMALIST PREMIUM — Theme by Monly
 *   Clean, Modern, Slate/Black Aesthetic
 *   Inspired by modern developer-first SaaS UI
 * ═══════════════════════════════════════════════
 */

:root {
  --theme-bg: #0B080F;
  --theme-card: #120F17;
  --theme-card-hover: #16121D;
  --theme-border: rgba(255, 255, 255, 0.05);
  --theme-border-hover: rgba(255, 255, 255, 0.1);
  --theme-accent: #D81159; /* Brand magenta */
}

/* ─────────────────────────────────────────────
   1. GLOBAL STYLES & BACKGROUND
   ───────────────────────────────────────────── */
body {
  background-color: var(--theme-bg) !important;
  color: #F4F4F5 !important;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "SF Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  overflow-x: hidden;
}

/* Subtle, static top-ambient gradient glow instead of moving orbs */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(circle 800px at top, rgba(216, 17, 89, 0.035), transparent);
  pointer-events: none;
  z-index: 0;
}

/* Disable existing animated orbs */
.orb {
  display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--theme-bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--theme-accent);
}

/* Selection Color */
::selection {
  background: rgba(216, 17, 89, 0.2);
  color: #ffffff;
}

/* ─────────────────────────────────────────────
   2. TYPOGRAPHY & HEADERS (White-to-Silver Gradient)
   ───────────────────────────────────────────── */
.shimmer-text,
.text-gradient {
  background: linear-gradient(180deg, #FFFFFF 0%, #A1A1AA 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  color: transparent !important;
  animation: none !important; /* Remove rainbow text shimmer */
  display: inline-block;
  letter-spacing: -0.02em;
}

/* ─────────────────────────────────────────────
   3. CLEAN MINIMAL CARDS (No hover movement)
   ───────────────────────────────────────────── */
.bg-card,
[class*="bg-card/"],
#vouchesContainer .vouches-card,
.builder .component > div > div.bg-card {
  background: var(--theme-card) !important;
  border: 1px solid var(--theme-border) !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
  transition: border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1), 
              background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

/* Subtly highlight card hover states without any float/translation */
.bg-card:hover,
[class*="bg-card/"]:hover,
#vouchesContainer .vouches-card:hover {
  background: var(--theme-card-hover) !important;
  border-color: var(--theme-border-hover) !important;
  transform: none !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

/* Prevent any card reflections/stripes */
.bg-card::before,
[class*="bg-card/"]::before {
  display: none !important;
}

/* Force override any inherited hover translate styles */
nav .bg-card,
nav .bg-card:hover,
nav [class*="bg-card/"],
nav [class*="bg-card/"]:hover,
footer.bg-card,
footer [class*="bg-card/"],
footer.bg-card:hover,
footer [class*="bg-card/"]:hover,
.component[data-component-id="product-page"] .bg-card:hover,
.component[data-component-id="product-page"] [class*="bg-card/"]:hover,
.component[data-component-id="terms-page"] .bg-card:hover {
  transform: none !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
  border-color: var(--theme-border) !important;
}

/* ─────────────────────────────────────────────
   4. BUTTONS
   ───────────────────────────────────────────── */
button,
.button,
a.button,
a[class*="bg-accent-500"],
button[class*="bg-accent-500"],
a.bg-white,
button.bg-white,
a[class*="border-white/10"] {
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

/* Primary buttons */
.bg-accent-500 {
  background: var(--theme-accent) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.bg-accent-500:hover {
  opacity: 0.9 !important;
  transform: none !important;
  box-shadow: none !important;
}

/* Secondary/Outline Buttons */
a[class*="border-white/10"],
button[class*="border-white/10"] {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: transparent !important;
  color: #ffffff !important;
}

a[class*="border-white/10"]:hover,
button[class*="border-white/10"]:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  transform: none !important;
}

/* View Details Button (on product cards) */
.view-details-btn {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.8) !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

.group:hover .view-details-btn {
  background: var(--theme-accent) !important;
  border-color: var(--theme-accent) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  transform: none !important;
}

/* ─────────────────────────────────────────────
   5. NAVBAR DOCK
   ───────────────────────────────────────────── */
nav[data-component-id="navbar"] {
  position: fixed !important;
  top: 1rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999 !important;
  width: auto !important;
  max-width: 95vw !important;
}

.dock-outer {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dock-panel {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  width: fit-content !important;
  gap: 0.75rem !important;
  border-radius: 1.75rem !important;
  background: rgba(18, 15, 23, 0.9) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 0.5rem 1rem !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
  height: 90px !important;
  overflow: visible !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* GlassSurface Wrapper - default state (at top) */
.glass-surface {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 1.75rem !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-surface__content {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: inherit !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Scrolled state for the Dock panel: transparent since wrapper applies the glass surface */
nav[data-component-id="navbar"].scrolled .dock-panel {
  height: 70px !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0.35rem 0.75rem !important;
}

/* Scrolled state for the GlassSurface wrapper */
nav[data-component-id="navbar"].scrolled .glass-surface {
  border-radius: 1.25rem !important;
}

/* Scrolled state with GlassSurface SVG Filter enabled */
nav[data-component-id="navbar"].scrolled .glass-surface.glass-surface--svg {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%), rgba(18, 15, 23, var(--glass-frost, 0.05)) !important;
  backdrop-filter: var(--filter-id) saturate(var(--glass-saturation, 1.3)) !important;
  -webkit-backdrop-filter: var(--filter-id) saturate(var(--glass-saturation, 1.3)) !important;
  box-shadow:
    0 1px 0px 0px rgba(255, 255, 255, 0.25) inset,  /* Top edge bright light reflection */
    0 0 0px 1px rgba(255, 255, 255, 0.12) inset,    /* Subtle inner white contour */
    0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;       /* Deep smooth shadow */
  border: 1px solid rgba(255, 255, 255, 0.08) !important; /* Extremely thin soft white border */
}

/* Scrolled state fallback (when SVG filter is not supported) */
nav[data-component-id="navbar"].scrolled .glass-surface.glass-surface--fallback {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 100%), rgba(18, 15, 23, 0.55) !important;
  backdrop-filter: blur(14px) saturate(1.8) brightness(1.2) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.8) brightness(1.2) !important;
  box-shadow:
    0 1px 0px 0px rgba(255, 255, 255, 0.25) inset,  /* Top edge bright light reflection */
    0 0 0px 1px rgba(255, 255, 255, 0.12) inset,    /* Subtle inner white contour */
    0 8px 32px 0 rgba(0, 0, 0, 0.5) !important;       /* Deep smooth shadow */
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.dock-item {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 68px !important;
  height: 68px !important;
  border-radius: 16px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  outline: none !important;
  transition: color 0.2s ease,
              width 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              border-radius 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Scrolled state for the Dock items */
nav[data-component-id="navbar"].scrolled .dock-item {
  width: 54px !important;
  height: 54px !important;
  border-radius: 12px !important;
}

.dock-item:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--theme-accent) !important; /* Glows to brand pink/magenta on hover */
}

/* Item Spécial Logo : Pas de fond, pas de bordure, pas d'ombre */
.dock-logo-item {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.dock-logo-item:hover {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.dock-logo-item .dock-icon {
  width: 100% !important;
  height: 100% !important;
}

.dock-logo-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.dock-item-active {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--theme-accent) !important;
}

.dock-item-active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: var(--theme-accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--theme-accent);
}

.dock-divider {
  width: 1px !important;
  height: 40px !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  margin: 0 0.5rem !important;
}

.dock-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Tooltips showing at bottom on hover */
.dock-label {
  position: absolute !important;
  bottom: -2.5rem !important;
  top: auto !important;
  left: 50% !important;
  width: fit-content !important;
  white-space: pre !important;
  border-radius: 0.375rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background-color: #120F17 !important;
  padding: 0.25rem 0.5rem !important;
  font-size: 0.7rem !important;
  color: #ffffff !important;
  transform: translateX(-50%) translateY(-4px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.15s ease, transform 0.15s ease !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3) !important;
  z-index: 100000 !important;
}

.dock-item:hover .dock-label {
  opacity: 1 !important;
  transform: translateX(-50%) translateY(0) !important;
}

/* Choices Selector Overrides inside Dock */
.currency-selector {
  overflow: visible !important;
}

.currency-selector select {
  opacity: 0 !important;
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer !important;
}

.currency-selector .choices {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  position: static !important;
}

.currency-selector .choices__inner {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  min-height: 100% !important;
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

.currency-selector .choices__list--dropdown {
  position: absolute !important;
  top: 100% !important;
  right: 50% !important;
  transform: translateX(50%) !important;
  left: auto !important;
  width: 90px !important;
  background-color: #120F17 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px !important;
  z-index: 99999 !important;
  margin-top: 8px !important;
  overflow: hidden !important;
}

.currency-selector .choices__item {
  padding: 6px 10px !important;
  font-size: 0.75rem !important;
  color: #ffffff !important;
  cursor: pointer !important;
  text-align: center !important;
}

.currency-selector .choices__item--selectable.is-highlighted {
  background: var(--theme-accent) !important;
}

/* ─────────────────────────────────────────────
   6. HERO SECTION (Bento Grid & MagicBento)
   ───────────────────────────────────────────── */
.hero-spotlight {
  display: none !important;
}

.card-grid {
  display: grid;
  gap: 0.75rem;
  padding: 0.75rem;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.magic-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  aspect-ratio: 4/3;
  min-height: 200px;
  width: 100%;
  max-width: 100%;
  padding: 2rem !important; /* Increased padding */
  border-radius: 20px;
  border: 1px solid var(--theme-border) !important;
  background: #120F17 !important;
  font-weight: 300;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;

  --glow-x: 50%;
  --glow-y: 50%;
  --glow-intensity: 0;
  --glow-radius: 300px;
  --glow-color: 216, 17, 89; /* Monly's magenta RGB */
}

/* Base item shadow/glow properties */
.magic-bento-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 30px rgba(0, 0, 0, 0.5), 
    0 0 20px rgba(216, 17, 89, 0.05) !important;
  border-color: rgba(216, 17, 89, 0.25) !important;
}

.magic-bento-card__header,
.magic-bento-card__content {
  display: flex;
  position: relative;
  z-index: 5;
}

.magic-bento-card__header {
  gap: 0.75rem;
  justify-content: space-between;
  width: 100%;
}

.magic-bento-card__content {
  flex-direction: column;
  width: 100%;
}

.magic-bento-card__label {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: #B0ACBB !important; /* Soft premium lavender-gray for legibility */
}

.magic-bento-card__title {
  font-weight: 500;
  margin: 0 0 0.25rem;
  color: #ffffff !important;
}

.magic-bento-card__description {
  line-height: 1.5;
  color: #C4C0CE !important; /* Clearer contrast color for dark mode legibility */
  font-size: 13.5px !important; /* Increased font-size for better readability */
}

/* Specific properties for double card (Card 3) */
.bento-double-card {
  aspect-ratio: auto !important;
  min-height: 420px;
}

/* Border glow effect via mask */
.magic-bento-card--border-glow::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  background: radial-gradient(
    var(--glow-radius) circle at var(--glow-x) var(--glow-y),
    rgba(216, 17, 89, calc(var(--glow-intensity) * 0.8)) 0%,
    rgba(216, 17, 89, calc(var(--glow-intensity) * 0.3)) 30%,
    transparent 60%
  );
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 10;
}

/* Particle Container & Particles */
.particle-container {
  position: relative;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(216, 17, 89, 1);
  box-shadow: 0 0 6px rgba(216, 17, 89, 0.6);
  pointer-events: none;
  z-index: 3;
}

/* Click ripple effect */
.bento-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  transform: translate(-50%, -50%);
}

/* Delivery flow visual styles & animations */
.bento-delivery-visual {
  width: 100%;
  overflow: visible;
  height: 90px;
}

@keyframes delivery-dash {
  to {
    stroke-dashoffset: -24;
  }
}

.delivery-flow-dash {
  animation: delivery-dash 1.8s linear infinite;
}

.delivery-laser {
  filter: drop-shadow(0 0 8px var(--theme-accent));
}

/* Global spotlight styles */
.global-spotlight {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(216, 17, 89, 0.15) 0%,
    rgba(216, 17, 89, 0.08) 15%,
    rgba(216, 17, 89, 0.04) 25%,
    rgba(216, 17, 89, 0.02) 40%,
    rgba(216, 17, 89, 0.01) 65%,
    transparent 70%
  );
  z-index: 200 !important;
  opacity: 0;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

/* Fine Filiar Lucide Icons styling */
.lucide,
[data-lucide] {
  stroke-width: 1.5px !important;
  width: 20px !important;
  height: 20px !important;
}

.bento-section {
  position: relative;
  user-select: none;
  margin-top: 6.5rem !important; /* Increased margin spacing under fixed Dock navbar */
}

/* Responsive grid layout */
@media (max-width: 599px) {
  .card-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    padding: 0.5rem;
  }

  .magic-bento-card {
    aspect-ratio: auto !important;
    min-height: 160px;
  }
}

@media (min-width: 600px) and (max-width: 1023px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .magic-bento-card:nth-child(3) {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .magic-bento-card:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .magic-bento-card:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 2 / span 2;
  }

  .magic-bento-card:nth-child(6) {
    grid-column: 4;
    grid-row: 3;
  }
}

/* New Shop badge indicator */
.border-accent-500\/20 {
  border-color: rgba(216, 17, 89, 0.15) !important;
  background: rgba(216, 17, 89, 0.04) !important;
}

/* Remove side image float anims if any exists */
.float-animation {
  animation: none !important;
}

/* ─────────────────────────────────────────────
   7. FEATURES SECTION
   ───────────────────────────────────────────── */
.feature-icon-glow {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: none !important;
  border-radius: 12px !important;
  width: 48px !important;
  height: 48px !important;
}

.feature-icon-glow:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
  box-shadow: none !important;
}

.feature-icon-glow i {
  color: var(--theme-accent) !important;
}

/* ─────────────────────────────────────────────
   8. INPUTS & FORMS
   ───────────────────────────────────────────── */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="search"],
.choices__inner,
.choices__list--dropdown {
  background-color: #121215 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border-radius: 8px !important;
}

input:focus,
.choices__inner:focus {
  border-color: var(--theme-accent) !important;
  box-shadow: 0 0 0 2px rgba(216, 17, 89, 0.15) !important;
}

.choices__list--dropdown {
  background-color: #16161A !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.choices__item--selectable.is-highlighted {
  background: var(--theme-accent) !important;
  color: #ffffff !important;
}

/* ─────────────────────────────────────────────
   9. FOOTER
   ───────────────────────────────────────────── */
/* Clean faded line for footer separator */
footer .h-px {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent) !important;
  margin-bottom: 2rem !important;
}

footer .bg-card\/90 {
  background: rgba(18, 18, 21, 0.4) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  border-radius: 16px !important;
}

/* Social icons */
footer a[target="blank"] {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

footer a[target="blank"]:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
  transform: none !important;
}

/* ─────────────────────────────────────────────
   10. SCROLL REVEAL & STYLING
   ───────────────────────────────────────────── */
/* Disable zoom image to keep it clean */
.zoom-img {
  transition: none !important;
}
.group:hover .zoom-img {
  transform: none !important;
}

/* Keep scroll reveal smooth */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-cascade {
  transition-delay: 0s !important; /* Faster and cleaner loading */
}

/* Remove animated border badge style properties */
.animated-border {
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 0.375rem 1rem !important;
  box-shadow: none !important;
}
.animated-border::before,
.animated-border::after {
  display: none !important;
}

/* ─────────────────────────────────────────────
   11. CUSTOM CURRENCY MODAL
   ───────────────────────────────────────────── */
.currency-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  z-index: 999998 !important;
}

.currency-modal-wrapper {
  position: fixed !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999999 !important;
  pointer-events: none !important;
}

.currency-modal-box {
  pointer-events: auto !important;
  background: #120F17 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 16px !important;
  width: 90% !important;
  max-width: 400px !important;
  max-height: 50vh !important;
  padding: 1.5rem !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
}

.currency-modal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 1rem !important;
}

.currency-modal-title {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.currency-modal-close {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.4) !important;
  cursor: pointer !important;
  font-size: 1.2rem !important;
  transition: color 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.currency-modal-close:hover {
  color: var(--theme-accent) !important;
}

.currency-modal-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 0.75rem !important;
  overflow-y: auto !important;
  padding-right: 0.25rem !important;
  max-height: calc(50vh - 6rem) !important;
}

/* Custom Scrollbar for Currency Grid */
.currency-modal-grid::-webkit-scrollbar {
  width: 4px !important;
}
.currency-modal-grid::-webkit-scrollbar-track {
  background: transparent !important;
}
.currency-modal-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
}
.currency-modal-grid::-webkit-scrollbar-thumb:hover {
  background: var(--theme-accent) !important;
}

.currency-modal-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.75rem 1rem !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-weight: 500 !important;
}

.currency-modal-btn:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

.currency-modal-btn.active {
  border-color: var(--theme-accent) !important;
  background: rgba(216, 17, 89, 0.08) !important;
  color: #ffffff !important;
  box-shadow: 0 0 15px rgba(216, 17, 89, 0.15) !important;
}

.currency-modal-radio {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.currency-modal-btn.active .currency-modal-radio {
  border-color: var(--theme-accent) !important;
}

.currency-modal-radio-inner {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--theme-accent) !important;
}

.non-shop-page-wrapper {
  padding-top: 6.5rem !important;
}

@media (max-width: 768px) {
  .non-shop-page-wrapper {
    padding-top: 5.5rem !important;
  }
}

/* Shift product grid down to avoid overlapping or crowding the bento grid on load */
.component[data-component-id="products"] {
  margin-top: 6rem !important;
}

@media (min-width: 768px) {
  .component[data-component-id="products"] {
    margin-top: 9rem !important;
  }
}

@media (min-width: 1024px) {
  .component[data-component-id="products"] {
    margin-top: 12rem !important;
  }
}

/* Immersive Light Rays Background */
.light-rays-container {
  position: fixed !important;
  inset: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  pointer-events: none !important;
  z-index: 1 !important;
  overflow: hidden !important;
}

/* Ensure app content is placed above the LightRays background to remain clickable */
#app {
  position: relative !important;
  z-index: 2 !important;
}
