input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

/* Fundo preto + azul com blur (sem grade) */
.ambient-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -15%, rgba(37, 99, 235, 0.22), transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 35%, rgba(56, 189, 248, 0.14), transparent 52%),
    radial-gradient(ellipse 50% 40% at 5% 75%, rgba(29, 78, 216, 0.12), transparent 48%),
    radial-gradient(ellipse 40% 35% at 50% 100%, rgba(37, 99, 235, 0.08), transparent 50%),
    #030508;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
  will-change: transform, opacity;
}

.ambient-orb--1 {
  width: 22rem;
  height: 22rem;
  top: -6rem;
  right: 8%;
  background: rgba(59, 130, 246, 0.38);
  animation: ambientDrift1 14s ease-in-out infinite;
}

.ambient-orb--2 {
  width: 18rem;
  height: 18rem;
  bottom: 10%;
  left: -4rem;
  background: rgba(37, 99, 235, 0.28);
  animation: ambientDrift2 18s ease-in-out infinite;
}

.ambient-orb--3 {
  width: 14rem;
  height: 14rem;
  top: 42%;
  right: -3rem;
  background: rgba(56, 189, 248, 0.22);
  animation: ambientDrift3 16s ease-in-out infinite;
}

@keyframes ambientDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.55; }
  50% { transform: translate(-24px, 18px) scale(1.08); opacity: 0.75; }
}

@keyframes ambientDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  50% { transform: translate(20px, -22px) scale(1.06); opacity: 0.65; }
}

@keyframes ambientDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(-16px, 12px) scale(1.1); opacity: 0.6; }
}

.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%;
  }
}

/* Site header (glass bar) */
.site-header,
.site-header-inner,
.site-header-bar,
.site-header-actions {
  overflow: visible;
}

.site-header-search-input {
  appearance: none;
  background: rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  height: 2.5rem !important;
  box-shadow: none;
}

.site-header-search-input:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 0 0 2px hsl(var(--primary) / 0.25) !important;
}

.site-header-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.site-header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Header action buttons — glass Entrar + green Carrinho */
@keyframes headerBtnFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes headerBtnGlowGreen {
  0%, 100% {
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.35);
  }
  50% {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.55);
  }
}

@keyframes headerBtnGlassPulse {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.14);
  }
  50% {
    border-color: rgba(255, 255, 255, 0.28);
  }
}

.site-header-actions .header-btn {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 5.5rem;
  height: 2.625rem !important;
  padding: 0 1.35rem !important;
  flex-shrink: 0;
  border-radius: 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  animation: headerBtnFadeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    filter 0.35s ease;
}

.site-header-actions .header-btn--entrar {
  background: rgba(20, 28, 26, 0.65) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation-name: headerBtnFadeIn, headerBtnGlassPulse;
  animation-duration: 0.55s, 3s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-delay: 0s, 0.55s;
}

.site-header-actions .header-btn--entrar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.12) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-header-actions .header-btn--entrar:hover {
  transform: translateY(-2px) scale(1.04);
  background: rgba(30, 40, 38, 0.85) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-header-actions .header-btn--entrar:hover::after {
  transform: translateX(120%);
}

.site-header-actions .header-btn--entrar:active {
  transform: translateY(0) scale(0.98);
}

.site-header-actions .header-btn--entrar-profile {
  min-width: auto;
  max-width: 9.5rem;
  padding-left: 1rem !important;
  padding-right: 0.85rem !important;
}

.site-header-actions .header-btn--carrinho {
  border: none !important;
  background: linear-gradient(
    90deg,
    #3ee06f 0%,
    #22c55e 42%,
    #16a34a 100%
  ) !important;
  animation-name: headerBtnFadeIn, headerBtnGlowGreen;
  animation-duration: 0.55s, 2.5s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1), ease-in-out;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.1s, 0.65s;
}

.site-header-actions .header-btn--carrinho::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-130%);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.site-header-actions .header-btn--carrinho:hover {
  transform: translateY(-2px) scale(1.05);
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55);
}

.site-header-actions .header-btn--carrinho:hover::before {
  transform: translateX(130%);
}

.site-header-actions .header-btn--carrinho:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 10px rgba(34, 197, 94, 0.4);
}

.site-header-dropdown {
  background: linear-gradient(165deg, rgba(20, 28, 48, 0.98), rgba(8, 10, 18, 0.98));
  border: 1px solid rgba(59, 130, 246, 0.28);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.55), 0 0 32px rgba(59, 130, 246, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header-bar--animated {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header-brand {
  overflow: visible;
}

.site-header-brand__logo {
  height: 2rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-header-brand__logo {
    height: 2.25rem;
    max-width: 11rem;
  }
}

.brand-title,
.site-footer__title {
  font-family: 'Kanit', sans-serif;
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.03em;
  line-height: 1.3;
  padding: 0.06em 0 0.12em;
  overflow: visible;
  display: inline-block;
  background: linear-gradient(105deg, #38bdf8 0%, #3b82f6 42%, #ffffff 48%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-title {
  font-size: 1rem;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .brand-title {
    font-size: 1.125rem;
  }
}

.site-header-brand--animated {
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.35s ease;
}
.site-header-icon-btn--animated {
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.site-header-search-input {
  transition: border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.profile-dropdown {
  position: relative;
  z-index: 60;
}
.profile-dropdown > summary {
  list-style: none;
  cursor: pointer;
}
.profile-dropdown > summary::-webkit-details-marker {
  display: none;
}
.profile-dropdown[open] .profile-trigger__chevron {
  transform: rotate(180deg);
}

.profile-menu__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.profile-menu__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.profile-menu__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  border: 1px solid rgba(251, 146, 60, 0.5);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.profile-menu__name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9375rem;
}
.profile-menu__email {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}
.profile-menu__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.profile-menu__link,
.profile-menu__logout {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}
.profile-menu__link {
  color: #e2e8f0;
  background: transparent;
}
.profile-menu__link::before,
.profile-menu__logout::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
  transform: translateX(-120%) skewX(-14deg);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.profile-menu__logout {
  color: #f87171;
  background: rgba(239, 68, 68, 0.06);
  border-color: rgba(239, 68, 68, 0.12);
}
.profile-menu__link i,
.profile-menu__logout i {
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.cart-drawer {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.35s ease;
}
.cart-drawer__panel {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, rgba(12, 16, 28, 1), rgba(3, 5, 8, 1)) !important;
}
.cart-drawer[data-state="open"] .cart-drawer__panel {
  transform: translateX(0);
}
.cart-drawer__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  cursor: pointer;
  transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}
.cart-drawer__total {
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.cart-drawer__checkout {
  width: 100%;
  min-height: 2.5rem;
  text-decoration: none;
}
.cart-drawer-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: #38bdf8;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  animation: affiliateJoinIconFloat 4s ease-in-out infinite;
}
.cart-drawer-empty__title {
  margin: 0 0 0.5rem;
}
.cart-drawer-empty__desc {
  margin: 0;
  line-height: 1.5;
}

/* 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;
}

/* Category section headings — neon beam + HUD badge */
.category-section-heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 1.1rem 0;
  text-align: center;
  border: none;
  background: transparent;
  isolation: isolate;
}

.category-section-heading::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 229, 255, 0.2) 12%,
    #00e5ff 50%,
    rgba(0, 229, 255, 0.2) 88%,
    transparent 100%
  );
  box-shadow:
    0 0 6px rgba(0, 229, 255, 0.75),
    0 0 18px rgba(0, 229, 255, 0.35);
  z-index: 0;
}

.category-section-heading__text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.45rem 1.35rem;
  background: linear-gradient(180deg, #161a22 0%, #0a0c10 100%);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 3px;
  box-shadow:
    0 0 14px rgba(0, 229, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00e5ff;
  text-shadow:
    0 0 8px rgba(0, 229, 255, 0.7),
    0 0 18px rgba(0, 229, 255, 0.35);
}

.category-section-heading__text::before,
.category-section-heading__text::after {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  border-color: #00e5ff;
  opacity: 0.85;
  box-shadow: 0 0 6px rgba(0, 229, 255, 0.5);
}

.category-section-heading__text::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.category-section-heading__text::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 2px solid;
  border-right: 2px solid;
}

.category-section-heading--page .category-section-heading__text {
  font-size: 0.95rem;
  padding: 0.55rem 1.5rem;
}

@media (min-width: 640px) {
  .category-section-heading__text {
    font-size: 0.9rem;
    padding: 0.5rem 1.6rem;
  }

  .category-section-heading--page .category-section-heading__text {
    font-size: 1.15rem;
    padding: 0.6rem 1.75rem;
  }
}

/* Sidebar categories */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- Affiliate area (loaded via core.css for CentralCart reliability) --- */
@keyframes affiliateJoinCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes affiliateJoinIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes affiliateJoinRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 0.2; }
}
@keyframes affiliateJoinOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.08); }
}
@keyframes affiliateJoinCtaGlow {
  0%, 100% { box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45), 0 0 24px rgba(59, 130, 246, 0.25); }
  50% { box-shadow: 0 8px 28px rgba(37, 99, 235, 0.6), 0 0 36px rgba(56, 189, 248, 0.45); }
}
@keyframes affiliateJoinCtaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes affiliateJoinShine {
  0% { transform: translateX(-150%) skewX(-18deg); }
  100% { transform: translateX(250%) skewX(-18deg); }
}
@keyframes affiliatePanelIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes becomeAffiliateDialogIn {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes becomeAffiliateFormIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.affiliate-join-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.28);
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.16) 0%, transparent 48%), rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  animation: affiliateJoinCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.affiliate-join-card__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.35), transparent 68%);
  pointer-events: none;
}
.affiliate-join-card__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}
.affiliate-join-card__orb--1 {
  width: 140px; height: 140px; top: -30px; right: 8%;
  background: rgba(59, 130, 246, 0.35);
  animation: affiliateJoinOrbDrift 8s ease-in-out infinite;
}
.affiliate-join-card__orb--2 {
  width: 100px; height: 100px; bottom: 10%; left: 6%;
  background: rgba(56, 189, 248, 0.22);
  animation: affiliateJoinOrbDrift 10s ease-in-out 1s infinite reverse;
}
.affiliate-join-card__content { position: relative; z-index: 1; }
.affiliate-join-card__icon-wrap {
  position: relative;
  width: 5rem; height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  animation: affiliateJoinIconFloat 4s ease-in-out infinite;
}
.affiliate-join-card__icon-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.45);
  animation: affiliateJoinRingPulse 2.4s ease-in-out infinite;
}
.affiliate-join-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.28), rgba(37, 99, 235, 0.12));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #38bdf8;
}
.affiliate-join-card__badges {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.affiliate-join-card__badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.35rem 0.75rem; font-size: 0.75rem; font-weight: 600;
  color: #93c5fd; border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(37, 99, 235, 0.12);
}
.affiliate-join-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  background: linear-gradient(270deg, #38bdf8, #3b82f6, #2563eb, #1d4ed8, #38bdf8);
  background-size: 300% 100%;
  animation: affiliateJoinCtaGradient 4s ease infinite, affiliateJoinCtaGlow 2.2s ease-in-out 0.8s infinite;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.35s ease;
}
.affiliate-join-card__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-150%) skewX(-18deg);
  animation: affiliateJoinShine 3.2s ease-in-out 1s infinite;
  pointer-events: none;
}

.affiliate-panel {
  position: relative;
  overflow: hidden;
  animation: affiliatePanelIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.affiliate-panel--summary { animation-delay: 0.05s; }
.affiliate-panel--link { animation-delay: 0.12s; }
.affiliate-panel--transactions { animation-delay: 0.18s; }

.affiliate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease, background 0.35s ease;
}
.affiliate-stat {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.affiliate-stat__value--balance { color: #4ade80 !important; }
.affiliate-stat__value--pct { color: #38bdf8 !important; }

.affiliate-link-box__input-wrap { position: relative; }
.affiliate-link-box__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #64748b;
  pointer-events: none;
}
.affiliate-link-box__input {
  background: rgba(3, 5, 8, 0.55) !important;
  border: 1px dashed rgba(59, 130, 246, 0.4) !important;
}

.affiliate-transactions-empty__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #64748b;
}

.become-affiliate-form,
.withdraw-settings-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.become-affiliate-form__input,
.withdraw-settings-form__input,
.withdraw-settings-form__select {
  width: 100%;
  height: 2.75rem;
  color: #fff;
  background: rgba(3, 5, 8, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: calc(var(--radius) - 2px);
  outline: none;
}
.become-affiliate-form__input-wrap,
.withdraw-settings-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.become-affiliate-form__input-icon,
.withdraw-settings-form__input-icon {
  position: absolute;
  left: 0.875rem;
  pointer-events: none;
  color: #64748b;
}
.become-affiliate-form__input,
.withdraw-settings-form__input { padding: 0 0.875rem 0 2.5rem; }
.become-affiliate-form__cancel,
.withdraw-settings-form .become-affiliate-form__cancel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0 1.125rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, background 0.35s ease;
}
.become-affiliate-form__actions,
.withdraw-settings-form__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#dialog-become-affiliate > div,
#dialog-withdraw-settings > div,
#dialog-withdraw > div {
  border: 1px solid rgba(59, 130, 246, 0.35) !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 48px rgba(59, 130, 246, 0.12) !important;
}
#dialog-become-affiliate[data-state="open"] > div,
#dialog-withdraw-settings[data-state="open"] > div,
#dialog-withdraw[data-state="open"] > div {
  animation: becomeAffiliateDialogIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

@media (hover: hover) and (pointer: fine) {
  .affiliate-join-card__cta:hover,
  .affiliate-btn-copy:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.08); }
  .affiliate-stat:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.15); }
  .become-affiliate-form__cancel:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); }
}

/* Orders page — empty state + list */
@keyframes ordersEmptyCardIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes ordersEmptyIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes ordersEmptyRingPulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 0.2; }
}
@keyframes ordersEmptyOrbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -10px) scale(1.08); }
}
@keyframes ordersEmptyCtaGlow {
  0%, 100% { box-shadow: 0 4px 18px rgba(34, 197, 94, 0.4), 0 0 24px rgba(34, 197, 94, 0.2); }
  50% { box-shadow: 0 8px 28px rgba(34, 197, 94, 0.55), 0 0 36px rgba(74, 222, 128, 0.4); }
}
@keyframes ordersEmptyCtaGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes ordersEmptyShine {
  0% { transform: translateX(-150%) skewX(-18deg); }
  100% { transform: translateX(250%) skewX(-18deg); }
}
@keyframes ordersEmptyBadgeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.orders-empty-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--radius);
  border: 1px solid rgba(59, 130, 246, 0.28);
  background:
    linear-gradient(155deg, rgba(37, 99, 235, 0.14) 0%, transparent 48%),
    linear-gradient(220deg, rgba(34, 197, 94, 0.1) 0%, transparent 42%),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: ordersEmptyCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s ease, box-shadow 0.45s ease;
}
.orders-empty-card__glow {
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 70%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.3), transparent 68%);
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.45s ease;
}
.orders-empty-card__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
  transition: transform 0.35s ease-out;
  will-change: transform;
}
.orders-empty-card__orb--1 {
  width: 140px; height: 140px; top: -30px; right: 8%;
  background: rgba(59, 130, 246, 0.32);
  animation: ordersEmptyOrbDrift 8s ease-in-out infinite;
}
.orders-empty-card__orb--2 {
  width: 100px; height: 100px; bottom: 10%; left: 6%;
  background: rgba(34, 197, 94, 0.22);
  animation: ordersEmptyOrbDrift 10s ease-in-out 1s infinite reverse;
}
.orders-empty-card__content { position: relative; z-index: 1; }
.orders-empty-card__icon-wrap {
  position: relative;
  width: 5rem; height: 5rem;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  animation: ordersEmptyIconFloat 4s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.orders-empty-card__icon-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(59, 130, 246, 0.45);
  animation: ordersEmptyRingPulse 2.4s ease-in-out infinite;
  transition: border-color 0.35s ease, transform 0.35s ease;
}
.orders-empty-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: 50%;
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.26), rgba(34, 197, 94, 0.1));
  border: 1px solid rgba(59, 130, 246, 0.4);
  color: #38bdf8;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.orders-empty-card__title {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
  animation: ordersEmptyCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s backwards;
}
.orders-empty-card__desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgb(171 171 171);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  animation: ordersEmptyCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.18s backwards;
}
.orders-empty-card__desc strong { color: #4ade80; font-weight: 700; }
.orders-empty-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.orders-empty-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #93c5fd;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.35);
  background: rgba(37, 99, 235, 0.12);
  animation: ordersEmptyBadgeIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.orders-empty-card__badge:nth-child(1) { animation-delay: 0.28s; }
.orders-empty-card__badge:nth-child(2) { animation-delay: 0.36s; }
.orders-empty-card__badge:nth-child(3) { animation-delay: 0.44s; }
.orders-empty-card__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none !important;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(270deg, #4ade80, #22c55e, #16a34a, #15803d, #4ade80) !important;
  background-size: 300% 100% !important;
  animation:
    ordersEmptyCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s backwards,
    ordersEmptyCtaGradient 4s ease infinite,
    ordersEmptyCtaGlow 2.2s ease-in-out 0.8s infinite;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), filter 0.35s ease;
}
.orders-empty-card__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
  transform: translateX(-150%) skewX(-18deg);
  animation: ordersEmptyShine 3.2s ease-in-out 1s infinite;
  pointer-events: none;
}
.orders-empty-card__cta > * { position: relative; z-index: 1; transition: transform 0.35s ease; }
.order-list-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}
.order-list-card .order-list-card__action {
  transition: transform 0.35s ease, filter 0.35s ease, box-shadow 0.35s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site-header-bar--animated:hover {
    border-color: rgba(96, 165, 250, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(59, 130, 246, 0.12);
  }
  .site-header-brand--animated:hover {
    transform: scale(1.02);
  }
  .site-header-icon-btn--animated:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.2);
  }
  .site-header-search-input:hover {
    border-color: rgba(255, 255, 255, 0.16) !important;
  }
  .site-header-search-input:focus-visible {
    border-color: rgba(59, 130, 246, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
    background: rgba(8, 12, 24, 0.85) !important;
  }

  .profile-menu__link:hover {
    transform: translateX(4px);
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
  }
  .profile-menu__link:hover::before {
    transform: translateX(120%) skewX(-14deg);
  }
  .profile-menu__link:hover i {
    transform: scale(1.12);
  }
  .profile-menu__logout:hover {
    transform: translateX(4px);
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.35);
  }
  .profile-menu__logout:hover i {
    transform: translateX(2px) scale(1.1);
  }

  .cart-drawer__close:hover {
    transform: rotate(90deg) scale(1.08);
    color: #fff;
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.35);
  }
  .cart-drawer__checkout:hover {
    transform: translateY(-3px) scale(1.02);
  }
  .cart-drawer__total:hover {
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
  }

  .orders-empty-card:hover {
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 40px rgba(59, 130, 246, 0.12);
  }
  .orders-empty-card:hover .orders-empty-card__glow { opacity: 1; }
  .orders-empty-card:hover .orders-empty-card__icon-wrap {
    transform: scale(1.08) rotate(3deg);
  }
  .orders-empty-card:hover .orders-empty-card__icon-ring {
    border-color: rgba(147, 197, 253, 0.7);
    transform: scale(1.06);
  }
  .orders-empty-card__cta:hover {
    transform: translateY(-4px) scale(1.06);
    filter: brightness(1.08);
  }
  .orders-empty-card__cta:hover .orders-empty-card__cta-icon {
    transform: translateX(3px) scale(1.15);
  }
  .orders-empty-card__badge:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 197, 253, 0.55);
    background: rgba(37, 99, 235, 0.22);
  }
  .order-list-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }
  .order-list-card:hover .order-list-card__action {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .orders-empty-card,
  .orders-empty-card__title,
  .orders-empty-card__desc,
  .orders-empty-card__badge,
  .orders-empty-card__cta,
  .orders-empty-card__icon-wrap,
  .orders-empty-card__icon-ring,
  .orders-empty-card__orb {
    animation: none !important;
    transition: none !important;
  }
  .orders-empty-card__cta::before { animation: none !important; opacity: 0; }
}

/* Checkout */
.checkout-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
  animation: affiliatePanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.checkout-panel--payment { animation-delay: 0.05s; }
.checkout-panel--summary { animation-delay: 0.1s; }
.checkout-panel__header {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1), transparent);
}
.checkout-payment-btn {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(3, 5, 8, 0.45) !important;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}
.checkout-payment-btn[data-selected="true"] {
  border-color: rgba(59, 130, 246, 0.65) !important;
  background: rgba(37, 99, 235, 0.15) !important;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.35), 0 8px 24px rgba(37, 99, 235, 0.2);
}
.checkout-payment-empty {
  border: 1px dashed rgba(59, 130, 246, 0.3);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(3, 5, 8, 0.35);
}
.checkout-input {
  background: rgba(3, 5, 8, 0.55) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: calc(var(--radius) - 2px) !important;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.checkout-input:focus-visible {
  border-color: rgba(59, 130, 246, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2) !important;
  outline: none;
}
.checkout-pay-btn {
  width: 100%;
  min-height: 3.5rem;
}
.checkout-secure-badge {
  animation: affiliateJoinRingPulse 3s ease-in-out infinite;
}
.checkout-coupon-btn {
  transition: transform 0.35s ease;
}

.checkout-special-offer {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid rgba(59, 130, 246, 0.45);
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.14) 0%, rgba(3, 5, 8, 0.55) 55%);
  animation: affiliatePanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  animation-delay: 0.15s;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.checkout-special-offer__glow {
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.28), transparent 70%);
  pointer-events: none;
}
.checkout-special-offer__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.checkout-special-offer__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: calc(var(--radius) - 4px);
  color: #38bdf8;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.4);
  animation: affiliateJoinIconFloat 4s ease-in-out infinite;
}
.checkout-special-offer__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.01em;
}
.checkout-special-offer__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.checkout-special-offer__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 5, 8, 0.45);
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}
.checkout-special-offer__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: calc(var(--radius) - 4px);
  border: 1px solid rgba(59, 130, 246, 0.25);
  background: rgba(3, 5, 8, 0.6);
  overflow: hidden;
}
.checkout-special-offer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-special-offer__name {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
  color: #f4f4f5;
}
.checkout-special-offer__desc {
  margin-top: 0.125rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: rgb(var(--muted-foreground));
}
.checkout-special-offer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.375rem;
}
.checkout-special-offer__price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #38bdf8;
  white-space: nowrap;
}
.checkout-special-offer__add {
  min-height: 2rem;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  gap: 0.25rem;
}
.checkout-special-offer__add[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Package page */
.package-hero {
  border: 1px solid rgba(59, 130, 246, 0.25) !important;
  animation: affiliatePanelIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.package-actions {
  background: rgba(3, 5, 8, 0.35);
}
.package-buy-btn {
  width: 100%;
  min-height: 2.5rem;
}
.package-cart-btn {
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}
.package-info-card {
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  animation: affiliatePanelIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}
.package-info-card:nth-child(1) { animation-delay: 0.08s; }
.package-info-card:nth-child(2) { animation-delay: 0.14s; }
.package-info-card:nth-child(3) { animation-delay: 0.2s; }
.package-info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: calc(var(--radius) - 4px);
  background: rgba(59, 130, 246, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #38bdf8;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

/* Product card (listing) */
.product-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(59, 130, 246, 0.2) !important;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.4, 0.64, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}
.product-card__image {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card__price {
  color: #fff;
}
.product-card__cta {
  width: 100%;
  min-height: 2rem;
  pointer-events: none;
}
.product-card:hover {
  border-color: rgba(96, 165, 250, 0.5) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), 0 0 32px rgba(59, 130, 246, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .checkout-panel:hover {
    border-color: rgba(96, 165, 250, 0.35) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  }
  .checkout-payment-btn:hover {
    transform: translateX(4px);
    border-color: rgba(59, 130, 246, 0.4) !important;
  }
  .checkout-coupon-btn:hover {
    transform: scale(1.04);
  }
  .checkout-pay-btn:hover {
    transform: translateY(-3px) scale(1.02);
  }
  .checkout-special-offer:hover {
    border-color: rgba(96, 165, 250, 0.55) !important;
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.18);
  }
  .checkout-special-offer__item:hover {
    transform: translateX(3px);
    border-color: rgba(59, 130, 246, 0.35);
  }
  .checkout-special-offer__add:hover:not([disabled]) {
    transform: scale(1.05);
  }

  .package-hero:hover {
    border-color: rgba(96, 165, 250, 0.45) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  }
  .package-cart-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 197, 253, 0.45) !important;
    background: rgba(59, 130, 246, 0.1) !important;
  }
  .package-info-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.45) !important;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.15);
  }
  .package-info-card:hover .package-info-card__icon {
    transform: scale(1.1) rotate(-6deg);
  }

  .product-card:hover .product-card__image {
    transform: scale(1.06);
  }
  .product-card:hover .product-card__cta {
    transform: translateY(-2px) scale(1.03);
    filter: brightness(1.08);
  }
}
