input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.42);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.42);
  }
  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);
  }
}

@keyframes cart-drop-fly {
  0% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(0.72) rotate(-10deg);
  }
  16% {
    opacity: 1;
    transform: translate3d(-50%, calc(-50% - 26px), 0) scale(1) rotate(8deg);
  }
  72% {
    opacity: 1;
    transform: translate3d(calc(var(--cart-drop-x) - 50%), calc(var(--cart-drop-y) - 50% - 12px), 0) scale(0.82) rotate(16deg);
  }
  100% {
    opacity: 0;
    transform: translate3d(calc(var(--cart-drop-x) - 50%), calc(var(--cart-drop-y) - 50%), 0) scale(0.38) rotate(28deg);
  }
}

@keyframes cart-hotbar-pop {
  0% {
    transform: translateX(-50%) scale(1);
  }

  26% {
    transform: translateX(-50%) translateY(-8px) scale(1.075);
  }

  52% {
    transform: translateX(-50%) translateY(2px) scale(0.985);
  }

  76% {
    transform: translateX(-50%) translateY(-2px) scale(1.02);
  }

  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes cart-navbar-enter {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: translateX(-50%) translateY(22px) scale(0.82);
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) translateY(-4px) scale(1.045);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes best-value-card-shine {
  0% {
    background-position: 180% 0;
  }

  58%,
  100% {
    background-position: -80% 0;
  }
}


#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

body.cart-open,
body.dialog-open {
  overflow: hidden;
}

.coxinha-template,
.coxinha-template * {
  overflow-anchor: none;
}

#cart-drawer {
  position: fixed !important;
  inset: 0 !important;
  z-index: 11000 !important;
  width: 100vw !important;
  height: 100dvh !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  overflow: hidden !important;
}

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

.cart-drop {
  position: fixed;
  z-index: 12050;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background:
    radial-gradient(circle at 35% 26%, rgba(255, 232, 137, 0.95), transparent 22%),
    linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  background-position: center;
  background-size: cover;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.16),
    0 10px 20px rgba(0, 0, 0, 0.36),
    0 0 22px rgba(255, 159, 22, 0.32);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  animation: cart-drop-fly 760ms cubic-bezier(0.2, 0.9, 0.18, 1) forwards;
  will-change: transform, opacity;
}

@keyframes slide-in-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slide-out-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

#mobile-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#mobile-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#mobile-drawer[data-state="open"] > div {
  animation: slide-in-left 0.4s forwards;
}

#mobile-drawer[data-state="closed"] > div {
  animation: slide-out-left 0.4s forwards;
}

.dialog[data-state="open"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.15s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.15s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      transform: translateY(-24px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-24px);
  }
}

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

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

.nav-link-hover {
  position: relative;
}
.nav-link-hover::after {
  content: '';
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0;
  height: 3px;
  background: hsl(var(--primary));
  border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-link-hover:hover::after {
  width: 100%;
}


@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes scene-drift {
  0% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.12) translate3d(-1.5%, -1.2%, 0);
  }
  100% {
    transform: scale(1.08) translate3d(0, 0, 0);
  }
}

@keyframes leaf-fall {
  0% {
    transform: translate3d(0, -14vh, 0) rotate(0deg) scale(var(--leaf-scale, 1));
    opacity: 0;
  }
  8% {
    opacity: var(--leaf-opacity, 0.85);
  }
  100% {
    transform: translate3d(var(--leaf-drift, 90px), 116vh, 0) rotate(var(--leaf-rotate, 540deg)) scale(var(--leaf-scale, 1));
    opacity: 0;
  }
}

@keyframes leaf-sway {
  0%,
  100% {
    margin-left: 0;
  }
  50% {
    margin-left: var(--leaf-sway, 22px);
  }
}


.gradient-text {
  background: linear-gradient(
    45deg,
    hsl(var(--primary)),
    hsl(var(--primary) / 0.8),
    hsl(var(--primary) / 0.6),
    hsl(var(--primary) / 0.9),
    hsl(var(--primary)),
    hsl(var(--primary) / 0.7),
    hsl(var(--primary) / 0.5),
    hsl(var(--primary) / 0.8)
  );
  background-size: 400% 400%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 3s ease-in-out infinite;
}

.goal-bar {
  background-color: #181A28;

  margin-top: 8px;
  width: 100%;
  height: 18px;
  border-radius: 99px;

  position: relative;

  overflow: hidden;

  span {
    position: absolute;
    z-index: 1;
    right: 0;
    font-size: 14px;
    font-weight: 600;
    padding-right: 5px;
    top: 50%;
    transform: translateY(-50%);
  }

  &::after {
    content: "";
  
    position: absolute;
  
    width: var(--goal_percent);
    height: 18px;
  
    background-color: hsl(var(--primary));
  
    background-image: linear-gradient(
      -45deg, 
      rgba(255, 255, 255, .1) 25%, 
      transparent 25%, 
      transparent 50%, 
      rgba(255, 255, 255, .1) 50%, 
      rgba(255, 255, 255, .1) 75%, 
      transparent 75%, 
      transparent
    );
  }
}

@keyframes logo-anim {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(5px);
  }
}

.logo-anim {
  animation: logo-anim 3s infinite;
  will-change: transform;
  transition: all 0.1s;
}

.logo-anim:hover {
  filter: brightness(90%);
}

.coxinha-template {
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 159, 22, 0.08), transparent 28%),
    #101010;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: geometricPrecision;
}

.coxinha-template > :not(.coxinha-scene) {
  position: relative;
  z-index: 1;
}

.coxinha-template > .coxinha-nav {
  z-index: 12000 !important;
}

.coxinha-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.coxinha-scene__image,
.coxinha-scene__overlay,
.coxinha-scene__particles {
  position: absolute;
  inset: 0;
}

.coxinha-scene__image {
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 195, 58, 0.24), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(255, 159, 22, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.28), rgba(16, 16, 16, 0.72)),
    var(--scene-image) center/cover no-repeat;
  filter: saturate(1.02) brightness(0.48) blur(1.5px);
  opacity: 0.58;
  transform-origin: center;
  animation: scene-drift 24s ease-in-out infinite;
}

.coxinha-scene__overlay {
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 178, 56, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(9, 9, 9, 0.42) 0%, rgba(10, 10, 10, 0.18) 22%, rgba(16, 16, 16, 0.78) 100%);
}

.coxinha-scene__particles {
  overflow: hidden;
}

.leaf {
  --leaf-size: 18px;
  --leaf-scale: 1;
  --leaf-opacity: 0.82;
  --leaf-drift: 90px;
  --leaf-rotate: 540deg;
  --leaf-sway: 22px;
  position: absolute;
  top: -18vh;
  left: 0;
  width: var(--leaf-size);
  height: calc(var(--leaf-size) * 0.72);
  border-radius: 90% 0 90% 0;
  background:
    linear-gradient(135deg, rgba(255, 221, 144, 0.96) 0%, rgba(248, 164, 31, 0.96) 52%, rgba(133, 74, 7, 0.92) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 229, 0.54),
    0 0 10px rgba(255, 174, 45, 0.14);
  opacity: 0;
  transform-origin: center;
  filter: blur(0.2px);
  animation:
    leaf-fall var(--leaf-duration, 13s) linear infinite,
    leaf-sway var(--leaf-sway-duration, 3.8s) ease-in-out infinite;
}

.leaf::after {
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 46%;
  width: 1px;
  background: rgba(116, 60, 5, 0.72);
  content: "";
  transform: rotate(22deg);
}

.leaf-1 {
  --leaf-size: 12px;
  --leaf-scale: 0.8;
  --leaf-drift: 120px;
  --leaf-duration: 12s;
  --leaf-sway-duration: 4.2s;
  left: 8%;
  animation-delay: -2.6s;
}

.leaf-2 {
  --leaf-size: 16px;
  --leaf-drift: 90px;
  --leaf-duration: 15s;
  left: 18%;
  animation-delay: -8.1s;
}

.leaf-3 {
  --leaf-size: 20px;
  --leaf-scale: 1.05;
  --leaf-drift: 130px;
  --leaf-duration: 16.5s;
  left: 31%;
  animation-delay: -5.4s;
}

.leaf-4 {
  --leaf-size: 14px;
  --leaf-opacity: 0.72;
  --leaf-drift: 84px;
  --leaf-duration: 11.8s;
  left: 43%;
  animation-delay: -9.8s;
}

.leaf-5 {
  --leaf-size: 24px;
  --leaf-scale: 1.08;
  --leaf-drift: 150px;
  --leaf-rotate: 720deg;
  --leaf-duration: 18s;
  left: 56%;
  animation-delay: -1.4s;
}

.leaf-6 {
  --leaf-size: 15px;
  --leaf-drift: 96px;
  --leaf-duration: 14.5s;
  left: 64%;
  animation-delay: -7.7s;
}

.leaf-7 {
  --leaf-size: 19px;
  --leaf-opacity: 0.76;
  --leaf-drift: 110px;
  --leaf-duration: 15.8s;
  left: 72%;
  animation-delay: -10.9s;
}

.leaf-8 {
  --leaf-size: 13px;
  --leaf-scale: 0.88;
  --leaf-drift: 72px;
  --leaf-duration: 10.8s;
  left: 81%;
  animation-delay: -4.8s;
}

.leaf-9 {
  --leaf-size: 17px;
  --leaf-drift: 142px;
  --leaf-rotate: 660deg;
  --leaf-duration: 17.2s;
  left: 89%;
  animation-delay: -12.2s;
}

.leaf-10 {
  --leaf-size: 11px;
  --leaf-scale: 0.7;
  --leaf-opacity: 0.64;
  --leaf-drift: 65px;
  --leaf-duration: 9.8s;
  left: 95%;
  animation-delay: -6.3s;
}

.coxinha-template *,
.coxinha-template *::before,
.coxinha-template *::after {
  box-sizing: border-box;
}

.coxinha-template a {
  color: inherit;
  text-decoration: none;
}

.coxinha-template button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.coxinha-template .store-stage {
  display: grid;
  width: min(100%, 1180px);
  min-height: 0;
  gap: 22px;
  margin: 0 auto;
  padding: 16px 18px 112px;
}

.coxinha-template main.flex-1 {
  width: 100%;
}

html.page-motion-prep .rank-banner,
html.page-motion-prep .rank-brand-logo,
html.page-motion-prep .brand-pill,
html.page-motion-prep .mobile-store-header,
html.page-motion-prep .category-sidebar,
html.page-motion-prep .category-section-heading,
html.page-motion-prep .product-card,
html.page-motion-prep .faq-item,
html.page-motion-prep .coxinha-content-panel,
html.page-motion-prep .coxinha-empty-state,
html.page-motion-prep .coxinha-footer-stage > * {
  opacity: 0;
  filter: blur(10px);
  transform: scale(var(--enter-start-scale, 0.82));
  transform-origin: center;
}

html.page-motion-prep .rank-render img {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px) rotate(7deg) scale(var(--enter-start-scale, 0.88));
  transform-origin: 52% 58%;
}

.page-enter {
  animation: coxinha-pop-in 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--enter-delay, 0ms);
  backface-visibility: hidden;
  transform-origin: center;
  will-change: opacity, transform, filter;
}

.page-enter[data-enter-style="art"] {
  animation-name: coxinha-render-pop-in;
  transform-origin: 50% 54%;
}

.page-enter[data-enter-style="rank-art"] {
  animation-name: coxinha-rank-image-pop-in;
  transform-origin: 52% 58%;
}

@keyframes coxinha-pop-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: scale(var(--enter-start-scale, 0.82));
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.018);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes coxinha-render-pop-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-50%) rotate(7deg) scale(var(--enter-start-scale, 0.78));
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%) rotate(7deg) scale(1.018);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%) rotate(7deg) scale(1);
  }
}

@keyframes coxinha-rank-image-pop-in {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(18px) rotate(7deg) scale(var(--enter-start-scale, 0.88));
  }

  62% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-4px) rotate(7deg) scale(1.025);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) rotate(7deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html.page-motion-prep .rank-banner,
  html.page-motion-prep .rank-brand-logo,
  html.page-motion-prep .brand-pill,
  html.page-motion-prep .mobile-store-header,
  html.page-motion-prep .category-sidebar,
  html.page-motion-prep .category-section-heading,
  html.page-motion-prep .product-card,
  html.page-motion-prep .faq-item,
  html.page-motion-prep .coxinha-content-panel,
  html.page-motion-prep .coxinha-empty-state,
  html.page-motion-prep .coxinha-footer-stage > *,
  html.page-motion-prep .rank-render,
  html.page-motion-prep .rank-render img,
  .page-enter,
  .page-enter[data-enter-style="art"],
  .page-enter[data-enter-style="rank-art"] {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  html.page-motion-prep .rank-render img,
  .rank-render img {
    transform: rotate(7deg);
  }

  .coxinha-nav-actions.cart-navbar.cart-enter {
    opacity: 1;
    filter: none;
    transform: translateX(-50%);
    animation: none;
  }
}

.coxinha-header-stage,
.coxinha-nav-stage,
.coxinha-category-stage,
.coxinha-footer-stage,
.coxinha-home-stage {
  padding-top: clamp(10px, 2vw, 18px) !important;
}

.rank-banner {
  position: relative;
  display: grid;
  isolation: isolate;
  min-height: 0;
  height: clamp(250px, 26vw, 310px);
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: start;
  overflow: visible;
  border-radius: 17px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 226, 137, 0.42), transparent 32%),
    linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 48%, var(--accent-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -7px 0 rgba(0, 0, 0, 0.08),
    0 18px 40px rgba(0, 0, 0, 0.34);
}

.rank-copy {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(56%, 540px);
  align-items: center;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 5vw, 58px);
  text-align: center;
}

.rank-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.rank-brand-logo {
  display: grid;
  width: clamp(152px, 14vw, 184px);
  height: clamp(152px, 14vw, 184px);
  place-items: center;
  overflow: hidden;
  border: 5px solid #060606;
  border-radius: 50%;
  background: #f7a116;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.18),
    0 10px 0 rgba(0, 0, 0, 0.28),
    0 18px 32px rgba(0, 0, 0, 0.32);
}

.rank-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-brand-logo span,
.mobile-store-logo span,
.mobile-drawer-logo-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #4d2105;
  font-size: 2rem;
  font-weight: 900;
}

.mobile-drawer-logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #f7a116;
  font-size: 0.9rem;
}

.brand-pill {
  display: inline-flex;
  width: fit-content;
  max-width: min(100%, 318px);
  min-width: min(100%, 236px);
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 4px;
  background: linear-gradient(180deg, #232323 0%, #151515 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 0 #050505,
    0 8px 14px rgba(0, 0, 0, 0.3);
  color: #fff;
  font-family: var(--minecraft-font) !important;
  font-style: normal !important;
  font-synthesis: none;
  font-size: clamp(1rem, 1.48vw, 1.22rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 9px 16px 10px;
  text-align: center;
  text-shadow: 2px 2px 0 #050505;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-pill span {
  color: var(--accent-bright);
  font-family: inherit !important;
  font-style: normal !important;
}

.server-ip-trigger:active {
  transform: translateY(1px);
}

.rank-render {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: -82px;
  left: clamp(330px, 34vw, 430px);
  z-index: 1;
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: inset(-120px -280px -140px -150px);
  pointer-events: none;
  filter: drop-shadow(24px 24px 0 rgba(0, 0, 0, 0.18)) drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
  transform: none;
  transform-origin: 50% 54%;
  transition:
    filter 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, filter;
}

@media (min-width: 701px) {
  .rank-render {
    display: block;
  }
}

.rank-render img {
  display: block;
  position: absolute;
  right: calc(clamp(-168px, -10vw, -86px) + 135px);
  bottom: 16px;
  width: auto;
  max-width: none;
  height: clamp(296px, 32vw, 405px);
  transform: rotate(7deg);
  transform-origin: 52% 58%;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) and (min-width: 701px) {
  .rank-banner:hover .rank-render {
    filter: drop-shadow(28px 28px 0 rgba(0, 0, 0, 0.16)) drop-shadow(0 30px 42px rgba(0, 0, 0, 0.34));
    transform: none;
  }

  .rank-banner:hover .rank-render img {
    transform: translateY(-10px) rotate(4deg) scale(1.045);
  }
}

.mobile-store-header {
  display: none;
}

.category-sidebar {
  display: none;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background: #1b1b1b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 5px 0 #050505,
    0 18px 38px rgba(0, 0, 0, 0.34);
  padding: 10px;
}

.coxinha-nav-stage {
  width: 100%;
  height: 0;
  min-height: 0;
  overflow: visible;
  padding: 0 !important;
}

.coxinha-nav-stage .category-sidebar {
  grid-column: 1;
}

.coxinha-nav-stage .cart-navbar {
  grid-column: 2;
}

.category-link {
  display: grid;
  width: 100%;
  min-height: 56px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #0a0a0a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: #fff;
  padding: 10px 12px;
}

.category-link:hover,
.category-link:focus-visible {
  background: #151515;
}

.category-link.active {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 100%);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.42);
}

.category-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: #202020;
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.category-link.active .category-mark {
  border-color: rgba(0, 0, 0, 0.26);
  background: #151515;
}

.category-label {
  display: block;
  overflow: hidden;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.coxinha-nav-actions {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-height: 50px;
  border-radius: 12px;
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 5px 0 #050505;
  padding: 8px;
}

.coxinha-nav-link,
.coxinha-action-btn,
.coxinha-icon-btn {
  display: inline-flex;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 7px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.coxinha-nav-link {
  background: #0d0d0d;
  color: #d7d7d7;
  padding: 0 13px;
}

.coxinha-nav-link:hover,
.coxinha-nav-link:focus-visible {
  color: var(--accent-bright);
}

.coxinha-action-btn,
.coxinha-icon-btn,
.coxinha-template .btn-primary {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 rgba(94, 42, 0, 0.85),
    0 10px 18px rgba(0, 0, 0, 0.22);
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.coxinha-action-btn {
  padding: 0 14px;
}

.coxinha-icon-btn {
  width: 38px;
  padding: 0;
}

.cart-nav-trigger.cart-empty,
.cart-navbar.cart-empty {
  display: none;
}

.cart-nav-trigger.cart-has-items {
  display: inline-flex;
}

.cart-navbar.cart-has-items {
  display: flex;
}

.cart-navbar-label {
  display: inline;
}

.cart-navbar .cart-nav-trigger.cart-has-items {
  width: auto;
  min-width: 152px;
  height: 48px;
  gap: 10px;
  border-radius: 999px;
  padding: 0 18px;
}

.coxinha-nav {
  position: fixed;
  inset: auto 0 0;
  z-index: 10020;
  height: 0;
  pointer-events: none;
}

.coxinha-nav-actions.cart-navbar {
  position: fixed;
  left: 50%;
  bottom: max(10px, env(safe-area-inset-bottom, 0px) + 6px);
  z-index: 9999;
  display: none;
  min-height: 0;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 28px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px;
  pointer-events: auto;
  transform: translateX(-50%);
}

.coxinha-nav-actions.cart-navbar.cart-has-items {
  display: flex;
}

.coxinha-nav-actions.cart-navbar.cart-enter {
  animation: cart-navbar-enter 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.coxinha-nav-actions.cart-navbar.cart-pulse {
  animation: cart-hotbar-pop 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-navbar .cart-badge {
  top: -4px;
  right: -2px;
}

.coxinha-action-btn:hover,
.coxinha-icon-btn:hover,
.coxinha-template .btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.coxinha-search,
.coxinha-mobile-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  background: #0a0a0a;
  color: #8b8b8b;
  padding: 0 10px;
}

.coxinha-search {
  width: min(100%, 280px);
  height: 38px;
}

.coxinha-mobile-search {
  height: 44px;
}

.coxinha-search input,
.coxinha-mobile-search input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  outline: 0;
  padding: 0;
}

.coxinha-search input::placeholder,
.coxinha-mobile-search input::placeholder {
  color: #8b8b8b;
}

.coxinha-search-result {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 60;
  width: min(500px, calc(100vw - 32px));
  max-height: 400px;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #141414;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
}

.category-product-section {
  scroll-margin-top: 22px;
}

.home-category-block + .home-category-block {
  margin-top: clamp(38px, 6vw, 64px);
}

.category-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
}

.category-section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 3px 0 #000;
}

.category-section-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.category-section-heading > span,
.category-section-actions .category-count {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 0 #050505;
  color: #d7d7d7;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 11px;
}

.category-section-link {
  display: inline-flex;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 #050505;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  padding: 0 12px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
}

.category-section-link:hover,
.category-section-link:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.category-section-description {
  max-width: 720px;
  margin: 10px 0 0;
  color: #a8a8a8;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.55;
}

.product-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: center;
  gap: 18px 14px;
}

.category-products {
  margin-top: 28px;
}

.product-card {
  --product-glow-rgb: 238, 58, 72;
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto auto auto auto;
  align-content: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  background:
    radial-gradient(circle at 50% 29%, rgba(238, 58, 72, 0.2), transparent 25%),
    #17181d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 9px 0 rgba(0, 0, 0, 0.92),
    0 18px 26px rgba(0, 0, 0, 0.32);
  padding: 0 20px 20px;
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card.package-card-fill-row {
  grid-column: 1 / -1;
}

.product-card.package-card-best-value {
  isolation: isolate;
  border: 1px solid rgba(255, 195, 58, 0.18);
  background:
    radial-gradient(circle at 50% 29%, rgba(255, 69, 72, 0.22), transparent 25%),
    #17181d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 7px 0 #6d2c03,
    0 0 0 1px rgba(255, 195, 58, 0.14),
    0 18px 34px rgba(255, 149, 20, 0.16);
}

.product-card.package-card-best-value::before,
.product-card.package-card-best-value::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.product-card.package-card-best-value::before {
  z-index: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 78% 4%, rgba(255, 195, 58, 0.22), transparent 28%);
}

.product-card.package-card-best-value::after {
  z-index: 1;
  background:
    linear-gradient(112deg, transparent 0%, transparent 36%, rgba(255, 255, 255, 0.18) 48%, transparent 60%, transparent 100%);
  background-size: 220% 100%;
  mix-blend-mode: screen;
  animation: best-value-card-shine 3.4s ease-in-out infinite;
}

.product-card.package-card-best-value > * {
  z-index: 2;
}

.product-card.package-card-best-value .product-image-frame {
  filter: none;
}

.product-card.package-card-best-value .product-image-frame img {
  filter: none;
}

.product-card.package-card-best-value .price {
  color: #fff;
}

.product-card.package-card-best-value .price-monthly {
  color: #ffd86a;
}

.product-image-frame {
  position: relative;
  top: auto;
  left: auto;
  display: block;
  width: 100%;
  height: auto;
  margin: 8px auto 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  isolation: isolate;
  transform: none;
  transition:
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.product-image-frame::before {
  position: absolute;
  inset: 11% 4% 6%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(var(--product-glow-rgb), 0.48) 0%, rgba(var(--product-glow-rgb), 0.22) 34%, rgba(var(--product-glow-rgb), 0) 70%);
  content: "";
  filter: blur(16px);
  opacity: 0.58;
  pointer-events: none;
  transform: translateZ(0) scale(0.94);
  transition:
    opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.product-image-frame img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  filter: none;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-image-frame img.is-disabled {
  opacity: 0.35;
  filter: grayscale(0.8) blur(1px);
}

.product-image-tooltip {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  max-width: calc(100% - 28px);
  height: 30px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  padding: 0 10px;
  pointer-events: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.48);
  transform: translate3d(-50%, 6px, 0);
  transition:
    opacity 240ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  will-change: opacity, transform;
}

.product-image-tooltip-icon {
  display: block;
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  stroke-width: 3;
}

.product-image-tooltip span {
  display: block;
  line-height: 1;
  text-align: center;
}

.product-discount-strip {
  display: grid;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  margin: 0 -20px;
  background: #f13f48;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.popular-badge,
.product-stock-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 999px;
  background: #ff7420;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 900;
  line-height: 1;
  padding: 5px 8px;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-stock-badge {
  background: #2d2d2d;
  color: #ffb3b3;
}

.product-card-title {
  display: -webkit-box;
  min-height: 3.1em;
  overflow: hidden;
  margin: 0 -20px;
  padding: 22px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.12;
  text-shadow: none;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-price-block {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 16px 0 14px;
  text-align: center;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: #f5f5f5;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none;
}

.price span {
  font-size: 1em;
}

.card-duration-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: -2px 0 14px;
}

.card-duration-option {
  min-width: 0;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: #d8d8d8;
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 0 #000;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.card-duration-option:hover {
  border-color: rgba(255, 170, 32, 0.5);
  background: rgba(255, 170, 32, 0.12);
  color: #fff;
}

.card-duration-option[data-selected="true"] {
  border-color: rgba(255, 183, 48, 0.9);
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%);
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 3px 0 rgba(92, 39, 0, 0.86);
}

.price-monthly {
  margin: -1px 0 0;
  color: var(--accent-bright);
  font-family: var(--minecraft-font);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.15;
  text-shadow: 0 2px 0 #000;
}

.dialog-monthly-price {
  margin-top: 4px;
  line-height: 1.2;
}

.dialog-monthly-price {
  color: var(--accent-bright);
  font-family: var(--minecraft-font);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 400;
  text-shadow: 0 2px 0 #000;
}

.price-compare {
  margin: 0;
  color: #777;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
}

.price-compare span {
  text-decoration: line-through;
}

.price-compare.hidden {
  display: none;
}

.promo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 207, 63, 0.98) 0%, rgba(255, 139, 11, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 8px 18px rgba(255, 126, 10, 0.24),
    0 2px 0 rgba(87, 31, 0, 0.44);
  color: #fff;
  font-family: var(--minecraft-font);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  padding: 9px 11px 8px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.38);
  transform: rotate(-5deg);
}

.best-value-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  max-width: min(214px, calc(100% - 24px));
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 228, 93, 0.98) 0%, rgba(255, 154, 20, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 8px 18px rgba(255, 154, 20, 0.24),
    0 2px 0 rgba(91, 32, 0, 0.52);
  color: #fff;
  font-family: var(--minecraft-font);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
  padding: 9px 11px 8px;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.38);
  transform: rotate(4deg);
}

.price-compare-promo {
  color: #76777e;
  font-family: inherit;
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  text-shadow: none;
}

.card-action-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: auto;
}

.cart-button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #ff910e 0%, #ff7a00 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: none;
  text-transform: uppercase;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 4px 0 rgba(94, 42, 0, 0.85),
    0 10px 18px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.cart-button [data-button-label] {
  display: inline-block;
  min-width: 84px;
  text-align: center;
}

.cart-button:disabled {
  cursor: not-allowed;
  filter: grayscale(0.7) brightness(0.72);
}

.cart-button[data-state="active"] {
  background: linear-gradient(180deg, #ffb436 0%, #ee8717 92%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 0 rgba(94, 42, 0, 0.9),
    0 10px 18px rgba(0, 0, 0, 0.22);
  color: #ffffff;
}

.product-info-button {
  display: none;
  width: 42px;
  height: 40px;
  place-items: center;
  border-radius: 5px;
  background: #080808;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 4px 0 #020202,
    0 10px 18px rgba(0, 0, 0, 0.24);
  color: var(--accent-bright);
  font-size: 1rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cart-mark {
  position: relative;
  flex: 0 0 auto;
  display: inline-block !important;
  width: 16px;
  height: 15px;
  margin-top: -1px;
  border: 0;
  background:
    linear-gradient(25deg, transparent 0 43%, #fff 44% 57%, transparent 58%) 0 1px / 8px 8px no-repeat;
}

.cart-mark::before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 10px;
  height: 7px;
  border: 2px solid #fff;
  border-top: 0;
  border-radius: 1px;
  background: transparent;
  content: "";
  transform: skewX(-10deg);
  transform-origin: left top;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 14px 28px rgba(0, 0, 0, 0.28),
      0 7px 0 #040404;
  }

  .product-card:hover .product-image-frame {
    transform: none;
    box-shadow: none;
  }

  .product-card:hover .product-image-frame::before,
  .product-image-frame:focus-visible::before {
    opacity: 0.92;
    transform: translateZ(0) scale(1.03);
  }

  .product-card:hover .product-image-frame img,
  .product-image-frame:focus-visible img {
    transform: translate3d(0, -4px, 0) scale(1.025);
  }

  .product-card:hover .product-image-tooltip,
  .product-image-frame:focus-visible .product-image-tooltip {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
  }

  .product-card:hover .popular-badge,
  .product-card:hover .product-stock-badge {
    transform: scale(1.03);
    box-shadow: 0 8px 16px rgba(255, 159, 22, 0.2);
  }

  .cart-button:hover,
  .cart-button:focus-visible {
    transform: none;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      0 10px 22px rgba(255, 159, 22, 0.28);
    filter: saturate(1.06) brightness(1.04);
  }

  .cart-button[data-state="active"]:hover,
  .cart-button[data-state="active"]:focus-visible {
    background: linear-gradient(180deg, #ffc14a 0%, #f0901c 92%);
    color: #ffffff;
    filter: saturate(1.03) brightness(1.02);
  }

  .product-info-button:hover,
  .product-info-button:focus-visible {
    transform: rotate(-4deg);
    background: #141414;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 10px 18px rgba(0, 0, 0, 0.24);
  }
}

.cart-button {
  gap: 6px;
}

.cart-mark::after {
  position: absolute;
  bottom: 1px;
  left: 6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 7px 0 0 #fff;
  content: "";
}

.coxinha-empty-state,
.coxinha-content-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 7px 0 #040404;
  color: #d7d7d7;
}

.coxinha-empty-state {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-weight: 900;
  padding: 22px;
}

.coxinha-empty-state i {
  color: var(--accent-bright);
}

.coxinha-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.coxinha-pagination a,
.coxinha-pagination span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: #171717;
  box-shadow: 0 4px 0 #050505;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
}

.coxinha-pagination a.active,
.coxinha-pagination a:hover {
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%);
}

.coxinha-pagination a.disabled {
  pointer-events: none;
  opacity: 0.36;
}

.store-footer {
  width: 100%;
  margin-top: 4px;
  border-radius: 20px;
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 30px rgba(0, 0, 0, 0.22);
  color: #fff;
  padding: 20px 18px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand img {
  overflow: hidden;
  border: 1px solid #050505;
  border-radius: 50%;
  object-fit: cover;
}

.store-footer p {
  max-width: 720px;
  margin: 8px auto 0;
  color: #777;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.5;
}

.store-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: #9f8547;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.store-footer nav a:hover,
.store-footer nav button:hover,
.store-footer nav a:focus-visible,
.store-footer nav button:focus-visible {
  color: var(--accent-bright);
}

.store-footer nav button {
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.coxinha-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: clamp(18px, 3vw, 28px);
  align-items: start;
}

.coxinha-content-stack,
.coxinha-sidebar-stack {
  display: grid;
  gap: 18px;
}

.coxinha-content-panel {
  overflow: hidden;
  padding: clamp(16px, 3vw, 24px);
}

.coxinha-content-panel h1,
.coxinha-content-panel h2,
.coxinha-content-panel h3 {
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 0 #000;
}

.coxinha-content-panel a {
  color: var(--accent-bright);
  font-weight: 900;
}

.coxinha-content-panel p,
.coxinha-content-panel li {
  color: #cfcfcf;
  line-height: 1.55;
}

.coxinha-store-button {
  position: relative;
  display: grid;
  min-height: 108px;
  align-content: end;
  overflow: hidden;
  border-radius: 15px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 226, 137, 0.38), transparent 32%),
    linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 48%, var(--accent-deep) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 7px 0 #040404;
  color: #fff;
  padding: 18px;
}

.coxinha-store-button strong,
.coxinha-store-button span {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.45);
}

.coxinha-store-button strong {
  margin-top: 5px;
  font-size: 1.5rem;
}

.coxinha-store-button span {
  font-size: 0.75rem;
  text-transform: uppercase;
}

.checkout-player-box {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #141414;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 4px 0 #050505;
  padding: 14px;
}

.checkout-player-label {
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-player-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.checkout-player-option {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 8px;
  background: #080808 !important;
  color: #d7d7d7 !important;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.1;
  padding: 9px 10px;
  text-align: center;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.checkout-player-option:hover,
.checkout-player-option:focus-visible {
  border-color: rgba(255, 195, 58, 0.32) !important;
  color: #fff !important;
}

.checkout-player-option[data-selected="true"] {
  border-color: rgba(255, 195, 58, 0.6) !important;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 4px 0 rgba(0, 0, 0, 0.34);
  color: #fff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.35);
  transform: translateY(-1px);
}

.checkout-player-nick {
  display: grid;
  gap: 6px;
}

.checkout-player-nick.hidden {
  display: none;
}

.checkout-player-hint {
  margin: 0;
  color: #9a9a9a;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.35;
}

.checkout-player-notice {
  display: grid;
  gap: 4px;
  border-radius: 9px;
  background: #0b0b0b;
  color: #bcbcbc;
  padding: 10px 11px;
}

.checkout-player-notice strong {
  color: var(--accent-bright);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.checkout-player-notice span {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.checkout-player-notice b {
  color: #fff;
  font-weight: 900;
}

.coxinha-template .btn-secondary,
.coxinha-template .btn-outline,
.coxinha-template .btn-ghost {
  border-color: rgba(255, 255, 255, 0.08);
  background: #111;
  color: #fff;
}

.coxinha-template .btn-secondary:hover,
.coxinha-template .btn-outline:hover,
.coxinha-template .btn-ghost:hover {
  background: #1d1d1d;
  color: var(--accent-bright);
}

.coxinha-template input,
.coxinha-template select,
.coxinha-template textarea {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0d0d0d;
  color: #fff;
}

.coxinha-template input:focus-visible,
.coxinha-template select:focus-visible,
.coxinha-template textarea:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 195, 58, 0.38);
}

#cart-drawer > div {
  width: min(450px, 100vw);
  max-width: 450px;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background: #141414;
  box-shadow: -18px 0 42px rgba(0, 0, 0, 0.34);
}

#cart-drawer-wrapper {
  min-height: 0;
  flex: 1 1 auto;
  overflow-y: auto;
}

.cart-open .coxinha-nav-actions.cart-navbar {
  display: none !important;
}

.checkout-page .coxinha-nav,
.checkout-page #cart-drawer {
  display: none !important;
}

#cart-pricing {
  background: #0d0d0d;
}

.dialog > div {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #171717;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.46);
}

.dialog > div > div:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dialog > div > div:last-child {
  background: #101010;
}

.dialog button[aria-label="Fechar"] {
  top: 18px;
  background: #080808;
  color: var(--accent-bright);
  transform: none;
}

.dialog button[aria-label="Fechar"] i {
  color: var(--accent-bright);
}

.dialog h2 {
  color: #fff;
  font-weight: 900;
}

.mobile-drawer-link {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 10px;
  background: #171717;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: #fff;
  font-weight: 900;
  padding: 14px;
  text-align: left;
}

.mobile-drawer-link i {
  color: var(--accent-bright);
}

.server-ip-modal-open {
  overscroll-behavior: auto;
}

.server-ip-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483000 !important;
  display: flex;
  align-items: center !important;
  justify-content: center !important;
  width: 100vw !important;
  height: 100dvh !important;
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(8px);
  padding: clamp(18px, 5vw, 52px);
  overflow: auto;
  overscroll-behavior: contain;
}

.server-ip-overlay[data-state="open"] {
  animation: server-ip-overlay-in 220ms ease-out both;
}

.server-ip-overlay[data-state="closing"] {
  animation: server-ip-overlay-out 240ms ease-in both;
  pointer-events: none;
}

.server-ip-overlay.hidden {
  display: none !important;
}

.server-ip-modal {
  position: relative;
  display: grid;
  width: min(100%, 560px);
  max-height: calc(100dvh - 32px);
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 195, 58, 0.18), transparent 42%),
    #151515;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: clamp(24px, 5vw, 44px);
  overflow: auto;
  transform-origin: center;
}

.server-ip-overlay[data-state="open"] .server-ip-modal {
  animation: coxinha-pop-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  --enter-start-scale: 0.76;
}

.server-ip-overlay[data-state="closing"] .server-ip-modal {
  animation: server-ip-modal-out 220ms cubic-bezier(0.55, 0.06, 0.68, 0.19) both;
}

.server-ip-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: #080808;
  color: var(--accent-bright);
}

.server-ip-kicker {
  margin: 0 44px 8px 0;
  color: var(--accent-bright);
  font-family: var(--minecraft-font);
  font-size: 0.72rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.server-ip-title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 4.4vw, 2.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-shadow: 0 2px 0 #000;
}

.server-ip-options {
  display: grid;
  gap: 10px;
  margin-top: clamp(24px, 5vw, 42px);
}

.server-ip-copy-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 36px;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px;
  background: #0a0a0a !important;
  color: #fff;
  padding: 12px;
  text-align: left;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.server-ip-copy-option:hover,
.server-ip-copy-option:focus-visible,
.server-ip-copy-option[data-copied="true"] {
  border-color: rgba(255, 195, 58, 0.44) !important;
  background: #111 !important;
  transform: translateY(-1px);
}

.server-ip-copy-option strong,
.server-ip-copy-option small,
.server-ip-copy-option code {
  display: block;
}

.server-ip-copy-option strong {
  font-family: var(--minecraft-font);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
}

.server-ip-copy-option small {
  margin-top: 4px;
  color: #999;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.server-ip-copy-option code {
  max-width: 150px;
  overflow-wrap: anywhere;
  color: var(--accent-bright);
  font-family: var(--minecraft-font);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
}

.server-ip-copy-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--accent-bright) 0%, var(--accent) 92%);
  color: #fff;
}

.server-ip-toast {
  position: fixed !important;
  top: max(16px, calc(env(safe-area-inset-top, 0px) + 12px));
  right: max(16px, calc(env(safe-area-inset-right, 0px) + 12px));
  z-index: 2147483002 !important;
  max-width: min(360px, calc(100vw - 28px));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 199, 61, 0.96) 0%, rgba(255, 143, 13, 0.96) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 14px 34px rgba(0, 0, 0, 0.34);
  color: #fff;
  font-family: var(--minecraft-font);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 14px 16px;
  pointer-events: none;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.36);
  transform-origin: top right;
  will-change: opacity, transform, filter;
}

.server-ip-toast.hidden {
  display: none !important;
}

.server-ip-toast[data-state="open"] {
  animation: server-ip-toast-in 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.server-ip-toast[data-state="closing"] {
  animation: server-ip-toast-out 220ms ease-in both;
}

@keyframes server-ip-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes server-ip-overlay-out {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes server-ip-modal-out {
  from {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }

  to {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.86);
  }
}

@keyframes server-ip-toast-in {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(18px, -8px, 0) scale(0.88);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes server-ip-toast-out {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(14px, -6px, 0) scale(0.92);
  }
}

@media (max-width: 700px) {
  .coxinha-header-stage,
  .coxinha-nav-stage,
  .coxinha-category-stage,
  .coxinha-footer-stage,
  .coxinha-home-stage {
    padding-top: 8px !important;
  }

  .rank-banner {
    grid-template-columns: 1fr;
    height: auto;
    min-height: clamp(250px, 64vw, 330px);
    overflow: hidden;
    border-radius: 14px;
  }

  .rank-copy {
    width: 100%;
    justify-content: center;
    padding: 28px 18px 30px;
  }

  .rank-brand-lockup {
    justify-items: center;
  }

  .rank-brand-logo {
    width: clamp(118px, 20vw, 148px);
    height: clamp(118px, 20vw, 148px);
    border-width: 4px;
  }

  .rank-render {
    display: none;
  }

  .mobile-store-header,
  .category-sidebar {
    display: none !important;
  }

  .cart-navbar.cart-has-items {
    display: flex;
  }

  .cart-navbar .cart-nav-trigger.cart-has-items {
    display: inline-flex;
    min-width: 152px;
    height: 48px;
    gap: 10px;
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.18),
      0 4px 0 rgba(94, 42, 0, 0.9),
      0 14px 22px rgba(0, 0, 0, 0.28);
    padding: 0 18px;
    pointer-events: auto;
    font-size: 0.84rem;
  }

  .cart-navbar-label {
    display: inline;
  }
}

@media (max-width: 900px) {
  .coxinha-template .store-stage {
    padding-bottom: 112px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 14px;
  }

  .product-card {
    min-height: 238px;
    border-radius: 14px;
    padding: 78px 12px 14px;
  }

  .product-card-title {
    min-height: 1.25em;
    line-height: 1.12;
  }

  .product-card-price-block {
    margin: 16px 0 12px;
  }

  .card-action-row {
    gap: 8px;
  }
}

@media (max-width: 700px) {
  #cart-drawer {
    position: fixed !important;
    inset: 0 !important;
    z-index: 11000 !important;
    width: 100vw !important;
    height: 100dvh !important;
    align-items: stretch !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0;
  }

  #cart-drawer > div {
    display: flex !important;
    width: 100% !important;
    height: 100dvh !important;
    min-height: 100dvh !important;
    max-height: none;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.05),
      0 -18px 44px rgba(0, 0, 0, 0.5);
    padding: max(16px, env(safe-area-inset-top, 0px)) 16px max(16px, env(safe-area-inset-bottom, 0px)) !important;
  }

  #cart-drawer-wrapper {
    min-height: 0;
    flex: 1 1 auto;
    max-height: none;
    overflow-y: auto;
    padding-right: 2px;
  }

  #cart-pricing {
    min-height: 46px;
    border-radius: 10px;
  }

  #cart-drawer .btn-primary {
    height: 46px;
    border-radius: 10px;
  }

  .coxinha-scene__image {
    background-position: center top;
    opacity: 0.48;
  }

  .leaf:nth-child(n + 7) {
    display: none;
  }

  .coxinha-template .store-stage {
    width: 100%;
    gap: 18px;
    padding: 12px 14px 132px;
  }

  .brand-pill {
    width: fit-content;
    max-width: min(100%, 286px);
    min-width: min(100%, 226px);
    font-size: clamp(0.78rem, 4vw, 1rem);
    padding: 10px 12px 11px;
  }

  .rank-banner {
    min-height: clamp(226px, 70vw, 292px);
  }

  .rank-copy {
    width: 100%;
    padding: 24px 12px 26px;
  }

  .rank-brand-lockup {
    gap: 14px;
    width: min(100%, 210px);
  }

  .rank-brand-logo {
    width: clamp(96px, 30vw, 118px);
    height: clamp(96px, 30vw, 118px);
    box-shadow:
      0 0 0 2px rgba(255, 255, 255, 0.16),
      0 7px 0 rgba(0, 0, 0, 0.28),
      0 13px 24px rgba(0, 0, 0, 0.28);
  }

  .rank-render {
    display: none;
  }

  .cart-navbar .cart-nav-trigger.cart-has-items {
    min-width: 144px;
    height: 46px;
    padding: 0 16px;
  }

  .category-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .category-section-heading h2 {
    font-size: clamp(1.45rem, 9vw, 2.1rem);
    line-height: 0.98;
  }

  .category-section-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .category-section-link,
  .category-section-actions .category-count,
  .category-section-heading > span {
    height: 31px;
    font-size: 0.68rem;
    padding-inline: 10px;
  }

  .category-section-description {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .server-ip-overlay {
    align-items: center;
    padding: 14px;
  }

  .server-ip-modal {
    width: 100%;
    max-height: calc(100dvh - 28px);
    border-radius: 14px;
    padding: 56px 16px 18px;
  }

  .server-ip-title {
    font-size: clamp(1.55rem, 8.5vw, 2.45rem);
    line-height: 0.96;
  }

  .server-ip-options {
    gap: 9px;
    margin-top: 26px;
  }

  .server-ip-copy-option {
    grid-template-columns: minmax(0, 1fr) 34px;
    min-height: 76px;
    padding: 12px;
  }

  .server-ip-copy-option code {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
    text-align: left;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .product-card {
    min-height: 198px;
    border-radius: 14px;
    padding: 74px 11px 12px;
  }

  .product-image-frame {
    top: -24px;
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }

  .popular-badge,
  .product-stock-badge {
    top: 8px;
    right: 8px;
    font-size: 0.46rem;
    padding: 4px 6px;
  }

  .product-card-title {
    min-height: 2.55em;
    font-size: clamp(0.88rem, 4.2vw, 1.02rem);
    line-height: 1.12;
    text-shadow: 0 2px 0 #000;
  }

  .product-card-price-block {
    gap: 5px;
    margin: 8px 0 11px;
  }

  .price {
    font-size: 1.1rem;
  }

  .price span {
    font-size: 1em;
  }

  .price-compare {
    font-size: 0.66rem;
  }

  .promo-badge {
    top: 8px;
    left: 8px;
    font-size: 0.54rem;
    padding: 6px 7px 5px;
  }

  .best-value-badge {
    top: 8px;
    right: 8px;
    max-width: 132px;
    font-size: 0.52rem;
    padding: 6px 8px 5px;
  }

  .price-compare-promo {
    font-size: 0.66rem;
  }

  .card-action-row {
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 7px;
  }

  .cart-button {
    height: 38px;
    gap: 5px;
    font-size: 0.66rem;
    border-radius: 8px;
    padding-inline: 6px;
  }

  .product-info-button {
    width: 36px;
    height: 38px;
    border-radius: 8px;
  }

  .cart-mark {
    display: none;
  }

  .coxinha-home-grid {
    grid-template-columns: 1fr;
  }

  .checkout-player-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-card {
    min-height: 232px;
    border-radius: 14px;
    padding: 74px 12px 14px;
  }

  .product-image-frame {
    top: -24px;
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }

  .card-action-row {
    grid-template-columns: minmax(0, 1fr) 40px;
    gap: 7px;
  }

  .cart-button {
    height: 38px;
    font-size: 0.72rem;
    border-radius: 8px;
  }

  .product-info-button {
    width: 40px;
    height: 38px;
    border-radius: 8px;
  }

  .product-card-title {
    min-height: 1.25em;
    font-size: clamp(0.96rem, 4.8vw, 1.08rem);
  }

  .product-card-price-block {
    gap: 5px;
    margin: 16px 0 12px;
  }

  .card-duration-options {
    gap: 6px;
    margin-bottom: 11px;
  }

  .card-duration-option {
    height: 32px;
    font-size: 0.64rem;
  }
}

.product-card .cart-mark {
  display: inline-block !important;
}

@media (max-width: 900px) {
  .product-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
    border-radius: 3px;
    padding: 0 18px 18px;
  }

  .product-discount-strip {
    margin: 0 -18px;
  }

  .product-image-frame {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    margin-top: 16px;
    overflow: visible;
    border-radius: 0;
    transform: none;
  }

  .product-card-title {
    min-height: 3em;
    margin: 0 -18px;
    padding: 20px 16px 16px;
    text-shadow: none;
  }

  .card-action-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cart-button {
    height: 40px;
    border-radius: 2px;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-height: 0;
    grid-template-rows: auto auto auto auto auto;
    padding: 0 16px 16px;
  }

  .product-discount-strip,
  .product-card-title {
    margin-inline: -16px;
  }

  .product-image-frame {
    height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-card.package-card-best-value::after {
    animation: none;
  }

  .coxinha-scene__image,
  .leaf {
    animation: none !important;
  }

  .leaf {
    opacity: 0.22;
  }
}
