input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Efeitos Neon Profissionais */
.neon-glow {
  box-shadow: 
    0 0 5px rgba(59, 130, 246, 0.5),
    0 0 10px rgba(59, 130, 246, 0.4),
    0 0 15px rgba(59, 130, 246, 0.3),
    0 0 20px rgba(59, 130, 246, 0.2);
}

.neon-glow-strong {
  box-shadow: 
    0 0 10px rgba(59, 130, 246, 0.8),
    0 0 20px rgba(59, 130, 246, 0.6),
    0 0 30px rgba(59, 130, 246, 0.4),
    0 0 40px rgba(59, 130, 246, 0.2);
}

.neon-border {
  border: 1px solid rgba(59, 130, 246, 0.5);
  box-shadow: 
    0 0 5px rgba(59, 130, 246, 0.3),
    inset 0 0 5px rgba(59, 130, 246, 0.1);
}

.neon-text {
  text-shadow: 
    0 0 5px rgba(59, 130, 246, 0.5),
    0 0 10px rgba(59, 130, 246, 0.3),
    0 0 15px rgba(59, 130, 246, 0.2);
}

.neon-text-strong {
  text-shadow: 
    0 0 10px rgba(59, 130, 246, 0.8),
    0 0 20px rgba(59, 130, 246, 0.6),
    0 0 30px rgba(59, 130, 246, 0.4);
}

/* Animações Neon */
@keyframes neon-pulse {
  0%, 100% {
    box-shadow: 
      0 0 5px rgba(59, 130, 246, 0.5),
      0 0 10px rgba(59, 130, 246, 0.4),
      0 0 15px rgba(59, 130, 246, 0.3);
    opacity: 1;
  }
  50% {
    box-shadow: 
      0 0 10px rgba(59, 130, 246, 0.8),
      0 0 20px rgba(59, 130, 246, 0.6),
      0 0 30px rgba(59, 130, 246, 0.4);
    opacity: 0.9;
  }
}

@keyframes neon-flicker {
  0%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
  41.99% {
    opacity: 1;
    filter: brightness(1);
  }
  42% {
    opacity: 0.8;
    filter: brightness(0.8);
  }
  43% {
    opacity: 1;
    filter: brightness(1);
  }
  45% {
    opacity: 0.9;
    filter: brightness(0.9);
  }
  46% {
    opacity: 1;
    filter: brightness(1);
  }
}

@keyframes neon-text-glow {
  0%, 100% {
    text-shadow: 
      0 0 5px rgba(59, 130, 246, 0.5),
      0 0 10px rgba(59, 130, 246, 0.3);
  }
  50% {
    text-shadow: 
      0 0 10px rgba(59, 130, 246, 0.8),
      0 0 20px rgba(59, 130, 246, 0.6),
      0 0 30px rgba(59, 130, 246, 0.4);
  }
}

/* Animação para botões neon */
@keyframes button-neon-pulse {
  0%, 100% {
    box-shadow: 
      0 0 8px rgba(59, 130, 246, 0.5),
      0 0 16px rgba(59, 130, 246, 0.3),
      0 0 24px rgba(59, 130, 246, 0.2),
      0 4px 12px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 
      0 0 12px rgba(59, 130, 246, 0.7),
      0 0 24px rgba(59, 130, 246, 0.5),
      0 0 36px rgba(59, 130, 246, 0.3),
      0 4px 16px rgba(0, 0, 0, 0.3);
  }
}

/* Efeito de brilho nos ícones dos botões - Melhorado e Profissional */
.btn-primary i,
.btn-primary svg,
.btn-primary [data-lucide],
.btn-primary .lucide {
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9)) 
          drop-shadow(0 0 8px rgba(255, 255, 255, 0.6))
          drop-shadow(0 0 12px rgba(147, 197, 253, 0.4))
          brightness(1.3) 
          contrast(1.1);
  transition: all 0.3s ease;
  color: white !important;
  stroke: white !important;
  fill: none !important;
  opacity: 1 !important;
}

.btn-primary:hover i,
.btn-primary:hover svg,
.btn-primary:hover [data-lucide],
.btn-primary:hover .lucide {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1)) 
          drop-shadow(0 0 12px rgba(255, 255, 255, 0.8))
          drop-shadow(0 0 18px rgba(147, 197, 253, 0.7))
          drop-shadow(0 0 24px rgba(96, 165, 250, 0.5))
          brightness(1.5) 
          contrast(1.2);
  transform: scale(1.1);
  color: white !important;
  stroke: white !important;
}

/* Forçar cor branca nos SVGs dos botões primários */
.btn-primary svg path,
.btn-primary svg line,
.btn-primary svg circle,
.btn-primary svg rect,
.btn-primary svg polyline,
.btn-primary svg polygon {
  stroke: white !important;
  fill: none !important;
  stroke-width: 2.5;
}

.btn-secondary i,
.btn-secondary svg,
.btn-secondary [data-lucide] {
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.6)) 
          drop-shadow(0 0 6px rgba(59, 130, 246, 0.4))
          brightness(1.1);
  transition: all 0.3s ease;
  color: rgb(var(--foreground)) !important;
  stroke: rgb(var(--foreground)) !important;
}

.btn-secondary:hover i,
.btn-secondary:hover svg,
.btn-secondary:hover [data-lucide] {
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.8)) 
          drop-shadow(0 0 10px rgba(59, 130, 246, 0.6))
          drop-shadow(0 0 15px rgba(59, 130, 246, 0.4))
          brightness(1.3);
  transform: scale(1.1);
  color: rgba(59, 130, 246, 1) !important;
  stroke: rgba(59, 130, 246, 1) !important;
}

.btn-outline i,
.btn-outline svg,
.btn-outline [data-lucide] {
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.5)) 
          drop-shadow(0 0 6px rgba(59, 130, 246, 0.3))
          brightness(1.1);
  transition: all 0.3s ease;
  color: rgb(var(--foreground)) !important;
  stroke: rgb(var(--foreground)) !important;
}

.btn-outline:hover i,
.btn-outline:hover svg,
.btn-outline:hover [data-lucide] {
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.7)) 
          drop-shadow(0 0 10px rgba(59, 130, 246, 0.5))
          drop-shadow(0 0 15px rgba(59, 130, 246, 0.3))
          brightness(1.3);
  transform: scale(1.1);
  color: rgba(59, 130, 246, 1) !important;
  stroke: rgba(59, 130, 246, 1) !important;
}

.btn-ghost i,
.btn-ghost svg,
.btn-ghost [data-lucide] {
  filter: drop-shadow(0 0 2px rgba(59, 130, 246, 0.4)) 
          brightness(1.05);
  transition: all 0.3s ease;
  color: rgb(var(--foreground)) !important;
  stroke: rgb(var(--foreground)) !important;
}

.btn-ghost:hover i,
.btn-ghost:hover svg,
.btn-ghost:hover [data-lucide] {
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6)) 
          drop-shadow(0 0 8px rgba(59, 130, 246, 0.4))
          brightness(1.2);
  transform: scale(1.1);
  color: rgba(59, 130, 246, 0.9) !important;
  stroke: rgba(59, 130, 246, 0.9) !important;
}

/* Estilo específico para SVGs Lucide dentro de botões */
.btn-primary svg,
.btn-secondary svg,
.btn-outline svg,
.btn-ghost svg {
  stroke-width: 2.5;
}

.btn-primary:hover svg,
.btn-secondary:hover svg,
.btn-outline:hover svg,
.btn-ghost:hover svg {
  stroke-width: 2.8;
}

/* Estilos específicos para elementos com data-lucide (ícones Lucide) */
.btn-primary [data-lucide] svg,
.btn-primary i[data-lucide] svg {
  stroke: white !important;
  color: white !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9)) 
          drop-shadow(0 0 8px rgba(255, 255, 255, 0.6))
          brightness(1.3) !important;
}

.btn-primary:hover [data-lucide] svg,
.btn-primary:hover i[data-lucide] svg {
  stroke: white !important;
  color: white !important;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 1)) 
          drop-shadow(0 0 12px rgba(255, 255, 255, 0.8))
          drop-shadow(0 0 18px rgba(147, 197, 253, 0.7))
          brightness(1.5) !important;
  stroke-width: 2.8 !important;
}

.btn-secondary [data-lucide] svg,
.btn-secondary i[data-lucide] svg {
  stroke: rgb(var(--foreground)) !important;
  color: rgb(var(--foreground)) !important;
  fill: none !important;
  stroke-width: 2.5 !important;
  filter: drop-shadow(0 0 3px rgba(59, 130, 246, 0.6)) 
          drop-shadow(0 0 6px rgba(59, 130, 246, 0.4))
          brightness(1.1) !important;
}

.btn-secondary:hover [data-lucide] svg,
.btn-secondary:hover i[data-lucide] svg {
  stroke: rgba(59, 130, 246, 1) !important;
  color: rgba(59, 130, 246, 1) !important;
  filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.8)) 
          drop-shadow(0 0 10px rgba(59, 130, 246, 0.6))
          brightness(1.3) !important;
  stroke-width: 2.8 !important;
}

/* Efeitos hover neon */
.neon-hover {
  transition: all 0.3s ease;
}

.neon-hover:hover {
  box-shadow: 
    0 0 10px rgba(59, 130, 246, 0.6),
    0 0 20px rgba(59, 130, 246, 0.4),
    0 0 30px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.8);
}

/* Animações modernas para tema azul Roblox */
@keyframes pulse-blue {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  }
  50% {
    opacity: 0.8;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8));
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Efeitos de hover modernos */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

/* Gradiente animado para botões */
.btn-gradient {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 50%, #1d4ed8 100%);
  background-size: 200% 200%;
  animation: gradient-shift 3s ease infinite;
  position: relative;
  overflow: hidden;
}

.btn-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-gradient:hover::before {
  left: 100%;
}

/* Efeito de brilho para cards */
.card-glow {
  position: relative;
  overflow: hidden;
}

.card-glow::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s;
}

.card-glow:hover::before {
  opacity: 1;
}

/* Grid background azul */
.grid-background-blue {
  background-image: 
    linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%);
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right, rgba(59, 130, 246, 0.08) 1px, transparent 1px), linear-gradient(to bottom, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%);
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Efeito de neve caindo */
.snow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.snowflake {
  position: absolute;
  pointer-events: none;
  animation: snowfall linear infinite;
  opacity: 0.9;
}

@keyframes snowfall {
  0% {
    transform: translateY(-10vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.9;
  }
  95% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(110vh) translateX(var(--drift, 0px)) rotate(var(--rotation, 360deg));
    opacity: 0;
  }
}

/* Flocos de neve pequenos - círculos azuis */
.snowflake-small {
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: radial-gradient(circle, 
    rgba(147, 197, 253, 1) 0%, 
    rgba(96, 165, 250, 0.9) 50%, 
    rgba(59, 130, 246, 0.7) 100%);
  box-shadow: 
    0 0 4px rgba(96, 165, 250, 0.8),
    0 0 8px rgba(59, 130, 246, 0.5);
  animation-duration: var(--duration, 8s);
  opacity: 0.7;
}

/* Flocos de neve médios - estrela azul */
.snowflake-medium {
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, 
    rgba(96, 165, 250, 1) 0%, 
    rgba(59, 130, 246, 0.9) 50%, 
    rgba(37, 99, 235, 0.7) 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 
    0 0 5px rgba(96, 165, 250, 0.9),
    0 0 10px rgba(59, 130, 246, 0.6);
  animation-duration: var(--duration, 10s);
  opacity: 0.8;
}

/* Flocos de neve grandes - estrela azul */
.snowflake-large {
  width: 5px;
  height: 5px;
  background: radial-gradient(circle, 
    rgba(59, 130, 246, 1) 0%, 
    rgba(37, 99, 235, 0.9) 50%, 
    rgba(29, 78, 216, 0.7) 100%);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  box-shadow: 
    0 0 6px rgba(59, 130, 246, 1),
    0 0 12px rgba(37, 99, 235, 0.7),
    0 0 18px rgba(29, 78, 216, 0.4);
  animation-duration: var(--duration, 12s);
  opacity: 0.9;
}

/* Flocos de neve extra grandes - estrela azul */
.snowflake-xlarge {
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, 
    rgba(37, 99, 235, 1) 0%, 
    rgba(29, 78, 216, 0.9) 50%, 
    rgba(30, 64, 175, 0.7) 100%);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  box-shadow: 
    0 0 7px rgba(37, 99, 235, 1),
    0 0 14px rgba(29, 78, 216, 0.8),
    0 0 21px rgba(30, 64, 175, 0.5);
  animation-duration: var(--duration, 15s);
  opacity: 1;
}

/* Efeito de brilho azul no centro dos flocos */
.snowflake::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  background: rgba(147, 197, 253, 1);
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(147, 197, 253, 1);
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 0.25rem;
  transition: background 0.3s;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */
