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;
}

@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,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 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;
}

.product-glow-card,
.category-glow-card {
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 51, 0, 0.28) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 51, 0, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)) !important;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(255, 51, 0, 0.14) !important;
}

.product-glow-card::before,
.category-glow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 0%, rgba(255, 51, 0, 0.26) 38%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 51, 0, 0.18) 62%, transparent 100%);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity 0.3s ease, transform 0.55s ease;
}

.product-glow-card::after,
.category-glow-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgba(255, 51, 0, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.product-glow-card > *,
.category-glow-card > * {
  position: relative;
  z-index: 3;
}

.product-glow-card:hover,
.category-glow-card:hover {
  border-color: rgba(255, 51, 0, 0.82) !important;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.56),
    0 0 34px rgba(255, 51, 0, 0.42),
    0 0 90px rgba(255, 51, 0, 0.14) !important;
}

.product-glow-card:hover::before,
.category-glow-card:hover::before {
  opacity: 1;
  transform: translateX(35%);
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.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 */

.payment-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;

  flex-shrink: 0; /* 🔴 ISSO RESOLVE */

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.08);
}



.payment-card {
  width: 100%;
  padding: 24px 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;

  border-radius: 12px;
  background: #1B1E27;
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

.payment-left {
  display: flex;
  align-items: flex-start;
  gap: 18px;

  flex: 1;
  min-width: 0;
}

.payment-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;

  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,.08);
}

.payment-icon svg {
  width: 32px;
  height: 32px;
  fill: #f0b90b;
}

.payment-text {
  min-width: 0;
}

.payment-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.payment-text p {
  font-size: 14px;
  color: #b5b5b5;
  line-height: 1.5;
}

.discord-button {
  background: #ff4c20;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

/* ========================= */
/* MOBILE FIX REAL */
/* ========================= */

@media (max-width: 768px) {

  .payment-card {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
  }

  .payment-left {
    width: 100%;
  }

  .discord-button {
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

}



/* SCROLLBAR (Chrome, Edge, Safari) */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1B1E27; /* fundo da barra */
}

::-webkit-scrollbar-thumb {
  background: #ff4c20; /* cor da barra */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff4c20;
}

html {
  scrollbar-color: #ff4c20 #1B1E27;
  scrollbar-width: thin;
}

outline-none focus:ring-0



.cosmo-bg {
  background: linear-gradient(
    135deg,
    #0a0c17 0%,
    #0e1122 40%,
    #151933 100%
  );
}



.floating-sidebar {
  position: fixed;
  right: 24px; /* nunca cola */
  top: 50%;
  transform: translateY(-50%) translateX(65%);
  
 

  
  padding: 4px;
  border-radius: 8px;
 
  display: flex;
  flex-direction: column;
  gap: 12px;

 
  transition: transform .35s ease;
  z-index: 999;
}

.floating-sidebar:hover {
  transform: translateY(-50%) translateX(0);
}

.floating-sidebar .icon {
  width: 46px;
  height: 46px;
  background:  #1B1E27;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-sidebar svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform .2s ease, fill .2s ease;
}

.floating-sidebar .icon:hover svg {
  transform: scale(1.15);
  fill: #ff4c20;
}


.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: red;
}



.hero-section {
  min-height: 550px;
}

.hero-image {
  position: relative;
  top: 200px; /* ajusta até chegar na divisão */
}


