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);
}

/* Xbloxx Navbar */
.xbloxx-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(192, 38, 211, 0.22);
  background: linear-gradient(
    180deg,
    rgba(12, 6, 22, 0.92) 0%,
    rgba(18, 8, 32, 0.88) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 32px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(124, 58, 237, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.xbloxx-nav__container {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.xbloxx-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  min-height: 3.25rem;
}

.xbloxx-nav__start {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  z-index: 2;
}

.xbloxx-nav__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.xbloxx-nav__brand-img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.65rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.45));
}

.xbloxx-nav__logo {
  font-family: 'Kanit', 'Geist', sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f0abfc 0%, #c026d3 42%, #6b21a8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 2px 8px rgba(192, 38, 211, 0.35));
  transition: filter 0.25s ease, transform 0.25s ease;
}

.xbloxx-nav__brand:hover .xbloxx-nav__logo {
  filter: drop-shadow(0 0 16px rgba(232, 121, 249, 0.75));
  transform: translateY(-1px);
}

.xbloxx-nav__search-wrap {
  position: relative;
  flex: 1;
  max-width: 28rem;
  margin-left: 1rem;
}

.xbloxx-nav__search-wrap--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  max-width: min(28rem, 42vw);
}

.xbloxx-nav__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  pointer-events: none;
  color: #d8b4fe;
  filter: drop-shadow(0 0 6px rgba(192, 38, 211, 0.65));
}

.xbloxx-nav__search-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke-width: 2.25px;
}

.xbloxx-nav__search-input {
  width: 100%;
  height: 2.65rem;
  padding: 0 1rem 0 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(192, 38, 211, 0.4);
  background: rgba(8, 4, 16, 0.75);
  color: #faf5ff;
  font-size: 0.875rem;
  outline: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.xbloxx-nav__search-input::placeholder {
  color: rgba(216, 180, 254, 0.55);
}

.xbloxx-nav__search-input:hover {
  border-color: rgba(232, 121, 249, 0.55);
  background: rgba(12, 6, 22, 0.9);
}

.xbloxx-nav__search-input:focus {
  border-color: #e879f9;
  background: rgba(14, 6, 26, 0.95);
  box-shadow:
    0 0 0 3px rgba(192, 38, 211, 0.25),
    0 0 24px rgba(192, 38, 211, 0.45),
    0 0 48px rgba(124, 58, 237, 0.2);
}

.xbloxx-nav__search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  width: 100%;
  max-width: 28rem;
  z-index: 60;
  max-height: 24rem;
  overflow: auto;
  border-radius: 0.85rem;
  border: 1px solid rgba(192, 38, 211, 0.35);
  background: rgba(12, 6, 22, 0.98);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(124, 58, 237, 0.2);
}

.xbloxx-nav__search-results:not(.hidden) {
  display: block;
}

.xbloxx-nav__search-results.hidden {
  display: none;
}

.xbloxx-nav__search-mobile {
  position: relative;
  margin-top: 0.65rem;
  padding-bottom: 0.15rem;
}

.xbloxx-nav__donators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  gap: 0.85rem;
  padding: 0 1rem;
  height: 2.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(192, 38, 211, 0.25);
  font-size: 0.8125rem;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.15);
}

.xbloxx-nav__donator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #ede9fe;
}

.xbloxx-nav__donator span {
  max-width: 5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.xbloxx-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  z-index: 2;
}

.xbloxx-nav__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 2.5rem;
  min-width: 2.5rem;
  padding: 0 0.85rem;
  border-radius: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.xbloxx-nav__btn:active {
  transform: scale(0.97);
}

.xbloxx-nav__btn--icon {
  padding: 0;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(192, 38, 211, 0.35);
  color: #e9d5ff;
}

.xbloxx-nav__btn--icon:hover {
  background: rgba(192, 38, 211, 0.28);
  border-color: rgba(232, 121, 249, 0.55);
  box-shadow: 0 0 16px rgba(192, 38, 211, 0.4);
  color: #fff;
}

.xbloxx-nav__btn--login {
  background: transparent;
  border: 1px solid rgba(192, 38, 211, 0.5);
  color: #f5d0fe;
}

.xbloxx-nav__btn--login:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: #e879f9;
  box-shadow:
    0 0 20px rgba(192, 38, 211, 0.45),
    inset 0 0 20px rgba(168, 85, 247, 0.08);
  color: #fff;
}

.xbloxx-nav__btn--cart {
  position: relative;
  background: linear-gradient(135deg, #c026d3 0%, #7c3aed 55%, #6b21a8 100%);
  border: 1px solid rgba(240, 171, 252, 0.35);
  color: #fff;
  box-shadow:
    0 4px 20px rgba(124, 58, 237, 0.45),
    0 0 24px rgba(192, 38, 211, 0.25);
}

.xbloxx-nav__btn--cart:hover {
  background: linear-gradient(135deg, #e879f9 0%, #a855f7 50%, #7c3aed 100%);
  box-shadow:
    0 6px 28px rgba(192, 38, 211, 0.55),
    0 0 36px rgba(168, 85, 247, 0.4);
  transform: translateY(-1px);
}

.xbloxx-nav__cart-badge,
.open-cart .cart-badge {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  border-radius: 999px;
  background: linear-gradient(135deg, #f0abfc, #c026d3);
  color: #1a0a2e;
  border: 2px solid rgba(12, 6, 22, 0.95);
  box-shadow:
    0 0 12px rgba(232, 121, 249, 0.9),
    0 0 24px rgba(192, 38, 211, 0.5);
}

.xbloxx-nav__support #support-button {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 0.65rem;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(192, 38, 211, 0.35);
  color: #e9d5ff;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.xbloxx-nav__support #support-button:hover {
  background: rgba(192, 38, 211, 0.25);
  border-color: rgba(232, 121, 249, 0.5);
  box-shadow: 0 0 16px rgba(192, 38, 211, 0.35);
}

.xbloxx-nav__support #support-menu {
  top: calc(100% + 0.65rem);
  left: auto;
  right: 0;
}

.xbloxx-nav__profile #profile-button {
  color: #ede9fe;
}

.xbloxx-nav__profile #profile-menu {
  top: calc(100% + 0.65rem);
}

@media (max-width: 1023px) {
  .xbloxx-nav__search-wrap--center {
    display: none;
  }
}

@media (max-width: 767px) {
  .xbloxx-nav__inner {
    gap: 0.5rem;
  }

  .xbloxx-nav__logo {
    font-size: 1.2rem;
  }

  .xbloxx-nav__brand-img {
    width: 2.35rem;
    height: 2.35rem;
  }
}
/* Xbloxx Navbar */

#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%;
  }
}

/* Top donators shine */
.top-donators-pill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
  transition: left 0.5s ease-in;
}

.top-donators-pill:hover::after {
  left: 120%;
  transition: left 0.6s ease-out;
}

.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;
}

/* Categories carousel (Keen-Slider) */
.categories-carousel-section {
  --carousel-nav-size: 2.75rem;
  width: 100%;
}

.categories-carousel-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.categories-carousel-viewport {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

#categories-carousel.keen-slider {
  width: 100%;
  overflow: hidden;
}

#categories-carousel .keen-slider__slide {
  min-height: auto;
  overflow: visible;
}

.category-carousel-card {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 120px;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(var(--primary) / 0.25);
  background: rgb(var(--muted-solid));
  cursor: pointer;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.category-carousel-card__fallback {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(var(--primary) / 0.2), rgb(var(--muted-solid)));
}

.category-carousel-card:hover {
  border-color: hsl(var(--primary) / 0.55);
  box-shadow: 0 0 24px hsl(var(--primary) / 0.15);
  transform: translateY(-2px);
}

.category-carousel-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.category-carousel-card:hover .category-carousel-card__image {
  transform: scale(1.04);
}

.categories-carousel-nav {
  flex-shrink: 0;
  width: var(--carousel-nav-size);
  height: var(--carousel-nav-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid hsl(var(--primary) / 0.45);
  background: rgb(var(--background));
  color: hsl(var(--primary));
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  z-index: 2;
}

.categories-carousel-nav:hover {
  background: hsl(var(--primary) / 0.12);
  border-color: hsl(var(--primary));
}

.categories-carousel-nav:active {
  transform: scale(0.92);
}

.categories-carousel-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Mobile: peeking sem setas */
@media (max-width: 768px) {
  .categories-carousel-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .categories-carousel-nav {
    display: none !important;
  }

  .categories-carousel-section {
    padding-inline: 0.5rem;
  }

  .categories-carousel-viewport {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  #categories-carousel.keen-slider {
    touch-action: pan-y pinch-zoom;
  }

  .category-carousel-card {
    border-radius: 0.875rem;
    min-height: 100px;
  }
}

@media (max-width: 640px) {
  .categories-carousel-section {
    padding-inline: 0.25rem;
  }
}

/* ─── Home: barra Ver Mais Jogos + busca (neon) ─── */
.home-actions__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  padding: 0.875rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    145deg,
    rgba(12, 8, 22, 0.95) 0%,
    rgba(18, 10, 32, 0.92) 50%,
    rgba(10, 8, 18, 0.98) 100%
  );
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow:
    0 0 0 1px rgba(139, 0, 255, 0.08) inset,
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(124, 58, 237, 0.18),
    0 0 80px rgba(139, 0, 255, 0.08);
}

.home-actions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 20rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(196, 132, 255, 0.45);
  background: linear-gradient(180deg, #9d4eff 0%, #7c3aed 42%, #6d28d9 100%);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  isolation: isolate;
  box-shadow:
    0 0 24px rgba(124, 58, 237, 0.65),
    0 0 48px rgba(139, 0, 255, 0.35),
    0 4px 16px rgba(0, 0, 0, 0.35);
  animation: home-actions-btn-pulse 2.4s ease-in-out infinite;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.home-actions__btn::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: radial-gradient(ellipse at center, rgba(157, 78, 255, 0.5) 0%, transparent 72%);
  z-index: -1;
  pointer-events: none;
  animation: home-actions-btn-pulse 2.4s ease-in-out infinite;
}

.home-actions__btn:hover {
  transform: scale(1.04);
  filter: brightness(1.12);
  box-shadow:
    0 0 36px rgba(157, 78, 255, 0.9),
    0 0 64px rgba(139, 0, 255, 0.5),
    0 6px 20px rgba(0, 0, 0, 0.4);
}

.home-actions__btn:active {
  transform: scale(0.98);
}

.home-actions__btn:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 4px;
}

@keyframes home-actions-btn-pulse {
  0%,
  100% {
    box-shadow:
      0 0 20px rgba(124, 58, 237, 0.55),
      0 0 40px rgba(139, 0, 255, 0.28),
      0 4px 14px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow:
      0 0 36px rgba(157, 78, 255, 0.95),
      0 0 72px rgba(139, 0, 255, 0.55),
      0 0 100px rgba(124, 58, 237, 0.25),
      0 4px 18px rgba(0, 0, 0, 0.4);
  }
}

.home-actions__search-wrap {
  position: relative;
  width: 100%;
  flex: 1;
  min-width: 0;
}

.home-actions__search-icon {
  position: absolute;
  left: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(167, 139, 250, 0.85);
  pointer-events: none;
  z-index: 2;
}

.home-actions__search-input {
  width: 100%;
  height: 3.25rem;
  padding: 0 1.25rem 0 3rem;
  border-radius: 9999px;
  border: 1px solid rgba(99, 102, 241, 0.45);
  background: rgba(8, 6, 16, 0.85);
  color: #f4f4f5;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.25;
  box-shadow:
    0 0 0 1px rgba(139, 0, 255, 0.06) inset,
    0 0 24px rgba(99, 102, 241, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.home-actions__search-input::placeholder {
  color: rgba(161, 161, 170, 0.75);
}

.home-actions__search-input:hover {
  border-color: rgba(124, 58, 237, 0.55);
  box-shadow:
    0 0 0 1px rgba(139, 0, 255, 0.1) inset,
    0 0 32px rgba(124, 58, 237, 0.2),
    0 4px 20px rgba(0, 0, 0, 0.4);
}

.home-actions__search-input:focus {
  outline: none;
  border-color: rgba(167, 139, 250, 0.7);
  background: rgba(12, 8, 20, 0.95);
  box-shadow:
    0 0 0 1px rgba(196, 132, 255, 0.15) inset,
    0 0 0 3px rgba(124, 58, 237, 0.25),
    0 0 40px rgba(124, 58, 237, 0.28);
}

.home-actions__typewriter-caret {
  position: absolute;
  left: 3rem;
  top: 50%;
  width: 2px;
  height: 1.125rem;
  margin-top: -0.5625rem;
  background: rgba(167, 139, 250, 0.9);
  border-radius: 1px;
  pointer-events: none;
  opacity: 0;
  z-index: 3;
  transition: left 0.05s linear;
}

.home-actions__search-wrap.is-typing .home-actions__typewriter-caret {
  opacity: 1;
  animation: home-actions-typewriter-caret 0.85s step-end infinite;
}

.home-actions__search-wrap.is-paused .home-actions__typewriter-caret,
.home-actions__search-input:focus ~ .home-actions__typewriter-caret {
  opacity: 0;
  animation: none;
}

@keyframes home-actions-typewriter-caret {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.home-actions__search-results {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 0;
  width: 100%;
  max-height: 400px;
  z-index: 50;
  overflow: auto;
  border-radius: 1rem;
  border: 1px solid rgba(124, 58, 237, 0.25);
  background: rgb(var(--background));
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.5),
    0 0 32px rgba(124, 58, 237, 0.12);
}

.home-actions__search-results.hidden {
  display: none;
}

/* Desktop: botão ~1/3 + busca restante, mesma linha */
@media (min-width: 769px) {
  .home-actions__bar {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.125rem;
    border-radius: 1.5rem;
  }

  .home-actions__btn {
    width: calc((100% - 1rem) / 3);
    max-width: none;
    min-height: 3.75rem;
    font-size: 0.875rem;
    padding: 0.875rem 1.5rem;
  }

  .home-actions__search-input {
    height: 3.75rem;
    font-size: 1.0625rem;
    padding-left: 3.25rem;
  }

  .home-actions__search-icon {
    left: 1.25rem;
    width: 1.375rem;
    height: 1.375rem;
  }

  .home-actions__typewriter-caret {
    left: 3.35rem;
    height: 1.25rem;
    margin-top: -0.625rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── MAIS DESEJADOS ─── */
.mdesired {
  width: 100%;
  padding: 3rem 0 2rem;
}

.mdesired__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}

.mdesired__line {
  flex: 1;
  max-width: 10rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c026d3, #a855f7, transparent);
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.7);
}

.mdesired__title {
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(1.875rem, 5.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.05;
  text-transform: uppercase;
  color: #f5d0fe;
  text-shadow:
    0 0 20px rgba(192, 38, 211, 0.9),
    0 0 48px rgba(168, 85, 247, 0.55),
    0 0 80px rgba(147, 51, 234, 0.35);
}

.mdesired__carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.mdesired__track {
  position: relative;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

#mais-desejados-slider.keen-slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

#mais-desejados-slider .keen-slider__slide {
  display: flex;
  min-width: 0;
  overflow: visible;
}

.mdesired__nav {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 181, 253, 0.45);
  border-radius: 9999px;
  background: rgba(10, 8, 18, 0.95);
  color: #e9d5ff;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.mdesired__nav svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mdesired__nav:hover {
  transform: scale(1.1);
  border-color: #e9d5ff;
  background: rgba(124, 58, 237, 0.4);
  box-shadow:
    0 0 32px rgba(168, 85, 247, 0.85),
    0 0 56px rgba(192, 38, 211, 0.4);
}

.mdesired__nav:active {
  transform: scale(0.95);
}

.mdesired__nav:focus-visible {
  outline: 2px solid #f5d0fe;
  outline-offset: 3px;
}

.mdesired__nav:disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* Card */
.mdesired-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  border-radius: 0.85rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.mdesired-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(168, 85, 247, 0.4),
    0 0 72px rgba(192, 38, 211, 0.2);
}

.mdesired-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mdesired-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.mdesired-card__img.is-out {
  filter: blur(3px);
  opacity: 0.75;
}

.mdesired-card:hover .mdesired-card__img {
  transform: scale(1.06);
}

.mdesired-card__badge-sold {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  padding: 0.4rem 0.75rem;
  border-radius: 0.4rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  background: rgba(0, 0, 0, 0.85);
}

.mdesired-card__badge-off {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #c026d3, #9333ea);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(192, 38, 211, 0.5);
}

.mdesired-card__badge-off svg {
  width: 0.75rem;
  height: 0.75rem;
}

.mdesired-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
  padding: 0.85rem 1rem 1rem;
}

.mdesired-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.35;
  color: #fafafa;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mdesired-card:hover .mdesired-card__title {
  color: #f5d0fe;
}

.mdesired-card__price-block {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
}

.mdesired-card__old {
  display: block;
  font-size: 0.8125rem;
  color: #a1a1aa;
  text-decoration: line-through;
  margin-bottom: 0.15rem;
}

.mdesired-card__price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: hsl(var(--primary));
  line-height: 1.1;
}

.mdesired-card__pix {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.7rem;
  color: #a1a1aa;
}

.mdesired-card__pix-box {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.3rem;
  border-radius: 0.45rem;
  background: rgba(50, 188, 173, 0.12);
  border: 1px solid rgba(50, 188, 173, 0.35);
}

.mdesired-card__pix-box img {
  width: 100%;
  height: 100%;
}

.mdesired-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.75rem;
  margin-top: 0.25rem;
  border-radius: 0.55rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: hsl(var(--primary));
  box-shadow: 0 4px 18px hsl(var(--primary) / 0.45);
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.mdesired-card__btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

.mdesired-card:hover .mdesired-card__btn {
  box-shadow: 0 0 28px hsl(var(--primary) / 0.65);
  filter: brightness(1.1);
}

@media (max-width: 768px) {
  .mdesired {
    padding-top: 2.25rem;
    overflow: hidden; /* Evita que o overflow do slider cause scrollbar horizontal na página */
  }

  .mdesired__head {
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .mdesired__line {
    max-width: 3rem;
  }

  .mdesired__title {
    letter-spacing: 0.1em;
  }

  .mdesired__carousel {
    display: block; /* Desativa o grid com setas no mobile */
    margin-left: -1rem; /* Estende o slider até o limite da tela */
    margin-right: -1rem;
  }

  .mdesired__track {
    overflow: visible; /* Torna o overflow dos cards adjacentes visível */
    padding-left: 1rem; /* Alinha o primeiro produto com o restante do conteúdo */
    padding-right: 1rem;
  }

  #mais-desejados-slider.keen-slider {
    overflow: visible; /* Mantém o efeito de peeking do slider */
  }

  .mdesired__nav {
    display: none !important; /* Oculta as setas de navegação no mobile */
  }
}

/* Avaliações de clientes */
.reviews {
  width: 100%;
  padding: 4.5rem 2rem;
  margin: 3rem auto;
  position: relative;
  background-color: rgba(10, 6, 22, 0.4);
  background-image: 
    linear-gradient(to right, rgba(168, 85, 247, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.02) 1px, transparent 1px),
    radial-gradient(ellipse 50% 40% at 50% -10%, rgba(168, 85, 247, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(192, 38, 211, 0.1), transparent 50%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.reviews__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.reviews__line {
  flex: 1;
  max-width: 8rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #c026d3, #a855f7, transparent);
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.8);
}

.reviews__title {
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: 'Kanit', 'Geist', sans-serif;
  color: #fdf4ff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.3),
    0 0 20px rgba(192, 38, 211, 0.85),
    0 0 40px rgba(168, 85, 247, 0.6),
    0 0 70px rgba(147, 51, 234, 0.4);
}

.reviews__carousel {
  position: relative;
  width: 100%;
}

.reviews__track {
  position: relative;
  min-width: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 1.25rem;
  padding: 1.5rem 0.5rem;
}

#reviews-slider.keen-slider {
  display: flex;
  width: 100%;
  overflow: visible;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

#reviews-slider .keen-slider__slide {
  display: flex;
  min-width: 0;
  height: auto;
  overflow: visible;
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  min-height: 250px;
  padding: 2.25rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(
    165deg,
    rgba(12, 6, 26, 0.98) 0%,
    rgba(22, 10, 46, 0.95) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.22);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 15px rgba(168, 85, 247, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.review-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(192, 38, 211, 0.85);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(192, 38, 211, 0.45),
    0 0 60px rgba(168, 85, 247, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.review-card__avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232, 121, 249, 0.75);
  box-shadow:
    0 0 0 2px rgba(12, 6, 26, 0.98),
    0 0 15px rgba(192, 38, 211, 0.5);
  margin-bottom: 1rem;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover .review-card__avatar {
  transform: scale(1.05);
  border-color: rgba(245, 208, 254, 0.95);
  box-shadow:
    0 0 0 3px rgba(12, 6, 26, 0.98),
    0 0 25px rgba(232, 121, 249, 0.8);
}

.review-card__name {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #faf5ff;
  letter-spacing: 0.03em;
  font-family: 'Kanit', 'Geist', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
  transition: color 0.3s ease;
}

.review-card:hover .review-card__name {
  color: #f5d0fe;
}

.review-card__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.review-card__star {
  width: 1.15rem;
  height: 1.15rem;
  color: #f59e0b;
  fill: #f59e0b;
  stroke: #f59e0b;
  filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.85))
          drop-shadow(0 0 12px rgba(192, 38, 211, 0.3));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.review-card:hover .review-card__star {
  transform: scale(1.1) rotate(4deg);
  filter: drop-shadow(0 0 8px rgba(245, 158, 11, 1))
          drop-shadow(0 0 18px rgba(192, 38, 211, 0.6));
}

.review-card__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(245, 243, 255, 0.92);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  word-wrap: break-word;
  word-break: break-word;
}

@media (max-width: 768px) {
  .reviews {
    padding: 3.5rem 1.25rem;
    margin: 2rem auto;
  }

  .reviews__head {
    margin-bottom: 2rem;
    gap: 1rem;
  }

  .reviews__line {
    max-width: 3rem;
  }

  .review-card {
    min-height: 220px;
    padding: 1.75rem 1.25rem;
  }

}

/* Xbloxx sidebar */
:root {
  --xbloxx-sidebar-width: 17.5rem;
}

.xbloxx-layout-offset {
  transition: margin-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 1024px) {
  .xbloxx-layout-offset {
    margin-left: var(--xbloxx-sidebar-width);
  }
}

body.sidebar-open {
  overflow: hidden;
}

.xbloxx-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: var(--xbloxx-sidebar-width);
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(
    180deg,
    #1a0a2e 0%,
    #2d0f4a 35%,
    #4c1d95 70%,
    #7c3aed 100%
  );
  border-right: 1px solid rgba(192, 38, 211, 0.35);
  box-shadow:
    4px 0 32px rgba(0, 0, 0, 0.45),
    inset -1px 0 0 rgba(255, 255, 255, 0.06);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  touch-action: pan-y;
}

.xbloxx-sidebar__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(192, 38, 211, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(124, 58, 237, 0.25), transparent 50%);
}

.xbloxx-sidebar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}

.xbloxx-sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem 0.5rem;
  flex-shrink: 0;
}

.xbloxx-sidebar__brand {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #faf5ff;
  text-shadow: 0 0 20px rgba(192, 38, 211, 0.6);
}

.xbloxx-sidebar__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: #e9d5ff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
}

.xbloxx-sidebar__close:hover {
  background: rgba(192, 38, 211, 0.35);
  box-shadow: 0 0 16px rgba(192, 38, 211, 0.5);
  color: #fff;
}

.xbloxx-sidebar__nav {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  padding: 0.75rem 0.65rem 1.25rem;
}

@media (min-width: 1024px) {
  .xbloxx-sidebar__nav {
    padding-top: 1.25rem;
  }
}

.xbloxx-sidebar__scroll {
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
  padding-right: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: #c026d3 transparent;
}

/* Scrollbar premium — só na sidebar */
.xbloxx-sidebar__scroll::-webkit-scrollbar {
  width: 4px;
}

.xbloxx-sidebar__scroll::-webkit-scrollbar-track {
  background: transparent;
  margin: 6px 0;
}

.xbloxx-sidebar__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(217, 70, 239, 0.95) 0%,
    rgba(168, 85, 247, 0.9) 50%,
    rgba(124, 58, 237, 0.85) 100%
  );
  border-radius: 999px;
  min-height: 48px;
  box-shadow:
    0 0 6px rgba(192, 38, 211, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.xbloxx-sidebar__scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #f0abfc 0%,
    #e879f9 45%,
    #c026d3 100%
  );
  box-shadow:
    0 0 10px rgba(232, 121, 249, 0.8),
    0 0 20px rgba(192, 38, 211, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.xbloxx-sidebar__scroll::-webkit-scrollbar-thumb:active {
  background: linear-gradient(180deg, #fdf4ff 0%, #f0abfc 100%);
  box-shadow:
    0 0 14px rgba(244, 114, 182, 0.9),
    0 0 28px rgba(192, 38, 211, 0.55);
}

.xbloxx-sidebar__scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.xbloxx-sidebar__fixed {
  position: sticky;
  top: 0;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.35rem;
  background: linear-gradient(180deg, #1a0a2e 0%, #2d0f4a 85%, transparent 100%);
}

.xbloxx-sidebar__divider {
  flex-shrink: 0;
  height: 1px;
  margin: 0.85rem 0.5rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(192, 38, 211, 0.65),
    transparent
  );
}

.xbloxx-sidebar__categories {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 0.5rem;
}

.xbloxx-sidebar__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.65rem;
  text-decoration: none;
  color: #ede9fe;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease,
    color 0.2s ease;
}

.xbloxx-sidebar__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(192, 38, 211, 0.45);
  box-shadow:
    0 0 20px rgba(192, 38, 211, 0.35),
    inset 0 0 24px rgba(168, 85, 247, 0.12);
  color: #fff;
  transform: translateX(2px);
}

.xbloxx-sidebar__link--highlight {
  background: linear-gradient(
    135deg,
    rgba(192, 38, 211, 0.25) 0%,
    rgba(124, 58, 237, 0.2) 100%
  );
  border-color: rgba(244, 114, 182, 0.35);
}

.xbloxx-sidebar__link--highlight:hover {
  background: linear-gradient(
    135deg,
    rgba(192, 38, 211, 0.45) 0%,
    rgba(124, 58, 237, 0.35) 100%
  );
  box-shadow:
    0 0 24px rgba(192, 38, 211, 0.55),
    0 0 48px rgba(168, 85, 247, 0.25);
}

.xbloxx-sidebar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  color: #d8b4fe;
  filter: drop-shadow(0 0 6px rgba(192, 38, 211, 0.5));
}

.xbloxx-sidebar__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 2px;
}

.xbloxx-sidebar__link:hover .xbloxx-sidebar__icon {
  color: #f5d0fe;
  filter: drop-shadow(0 0 10px rgba(232, 121, 249, 0.9));
}

.xbloxx-sidebar__label {
  flex: 1;
  min-width: 0;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.xbloxx-sidebar__overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.xbloxx-sidebar__overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.xbloxx-sidebar.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .xbloxx-sidebar {
    transform: translateX(0);
    z-index: 40;
  }

  .xbloxx-sidebar__overlay {
    display: none !important;
  }
}

.xbloxx-sidebar-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  color: #e9d5ff;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(192, 38, 211, 0.4);
  box-shadow: 0 0 12px rgba(192, 38, 211, 0.2);
  transition:
    background 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.xbloxx-sidebar-toggle:hover {
  background: rgba(192, 38, 211, 0.35);
  border-color: rgba(232, 121, 249, 0.6);
  box-shadow: 0 0 20px rgba(192, 38, 211, 0.5);
}

.xbloxx-sidebar-toggle:active {
  transform: scale(0.96);
}

@media (min-width: 1024px) {
  .xbloxx-sidebar-toggle {
    display: none;
  }
}
/* Xbloxx sidebar */

/* Sidebar categories (legacy) */
.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 */


::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background:  var(--background);;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 100px;
}

/* Xbloxx Marquee */
.xbloxx-marquee-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
  position: relative;
  transition: filter 0.3s ease;
}

.xbloxx-marquee {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #090312 0%, #27064a 50%, #090312 100%);
  border-top: 1px solid rgba(192, 38, 211, 0.25);
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  user-select: none;
  transition: box-shadow 0.3s ease;
}

.xbloxx-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
}

.xbloxx-marquee__group {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-shrink: 0;
  min-width: 100%;
  animation: xbloxx-marquee-scroll 25s linear infinite;
  gap: 3rem;
  padding-right: 3rem;
}

.xbloxx-marquee__group span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Kanit', 'Geist', sans-serif;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 6px rgba(192, 38, 211, 0.8), 0 0 12px rgba(168, 85, 247, 0.4);
  white-space: nowrap;
  transition: text-shadow 0.3s ease, color 0.3s ease;
}

.xbloxx-marquee__separator {
  color: #f0abfc;
  font-size: 1.1rem;
  text-shadow: 0 0 8px rgba(192, 38, 211, 0.9);
}

.xbloxx-marquee-link:hover {
  filter: brightness(1.25);
}

.xbloxx-marquee-link:hover .xbloxx-marquee {
  box-shadow: inset 0 0 20px rgba(192, 38, 211, 0.45);
}

.xbloxx-marquee-link:hover .xbloxx-marquee__group span {
  text-shadow: 0 0 10px rgba(232, 121, 249, 1), 0 0 20px rgba(192, 38, 211, 0.75);
}

@keyframes xbloxx-marquee-scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ─── Influenciadores Parceiros (Keen Slider) ─── */
.influencers-section {
  position: relative;
  overflow: hidden;
  background-color: rgba(10, 6, 22, 0.4);
  background-image: 
    linear-gradient(to right, rgba(168, 85, 247, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(168, 85, 247, 0.02) 1px, transparent 1px),
    radial-gradient(ellipse 50% 40% at 50% -10%, rgba(168, 85, 247, 0.15), transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 110%, rgba(192, 38, 211, 0.1), transparent 50%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(168, 85, 247, 0.08);
  box-shadow: 
    0 24px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  padding: 4.5rem 2rem;
  margin: 3rem auto;
}

@media (max-width: 768px) {
  .influencers-section {
    padding: 3.5rem 1.25rem;
    margin: 2rem auto;
  }
}

/* Glassmorphism Influencer Card */
.influencer-card {
  position: relative;
  background: linear-gradient(
    165deg,
    rgba(12, 6, 26, 0.98) 0%,
    rgba(22, 10, 46, 0.95) 100%
  );
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 1.25rem;
  padding: 2.25rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Subtly animated gradient border highlight */
.influencer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.influencer-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(192, 38, 211, 0.85);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(192, 38, 211, 0.45),
    0 0 60px rgba(168, 85, 247, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.influencer-card:hover::before {
  background: linear-gradient(135deg, rgba(192, 38, 211, 0.6) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.influencer-avatar-container {
  position: relative;
  margin-bottom: 1.25rem;
}

.influencer-avatar {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232, 121, 249, 0.75);
  box-shadow:
    0 0 0 2px rgba(12, 6, 26, 0.98),
    0 0 15px rgba(192, 38, 211, 0.5);
  transition: border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.influencer-card:hover .influencer-avatar {
  border-color: rgba(245, 208, 254, 0.95);
  transform: scale(1.05);
  box-shadow:
    0 0 0 3px rgba(12, 6, 26, 0.98),
    0 0 25px rgba(232, 121, 249, 0.8);
}

.influencer-name {
  font-family: 'Kanit', 'Geist', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.influencer-followers-container {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.influencer-followers-icon {
  width: 0.875rem;
  height: 0.875rem;
  color: #d8b4fe;
  filter: drop-shadow(0 0 4px rgba(192, 38, 211, 0.6));
}

.influencer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.875rem;
  font-weight: 800;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.22);
  color: #f5d0fe;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.influencer-btn:hover {
  background: linear-gradient(135deg, rgba(192, 38, 211, 1) 0%, rgba(168, 85, 247, 0.8) 100%);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  box-shadow: 
    0 8px 24px rgba(192, 38, 211, 0.55),
    0 0 16px rgba(168, 85, 247, 0.3);
  transform: translateY(-2px);
}

.influencer-btn:active {
  transform: translateY(0) scale(0.98);
}