input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@keyframes fade-in {
  from {
      background-color: rgba(0, 0, 0, 0);
  }
  to {
      background-color: rgba(0, 0, 0, 0.8);
  }
}

@keyframes fade-out {
  from {
      background-color: rgba(0, 0, 0, 0.8);
  }
  to {
      background-color: rgba(0, 0, 0, 0);
  }
}

@keyframes slide-in {
  from {
      transform: translateX(500px);
  }
  to {
      transform: translateX(0px);
  }
}

@keyframes slide-out {
  from {
      transform: translateX(0px);
  }
  to {
      transform: translateX(500px);
  }
}

body.cart-open {
  overflow: hidden;
  padding-right: var(--scrollbar-width, 0px);
}

#cart-drawer[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

#cart-drawer[data-state="open"] > div {
  animation: slide-in 0.4s forwards;
}

#cart-drawer[data-state="closed"] > div {
  animation: slide-out 0.4s forwards;
}

.dialog[data-state="open"] {
  animation: fade-in 0.4s forwards;
}

.dialog[data-state="closed"] {
  animation: fade-out 0.4s forwards;
}

.dialog[data-state="open"] > div {
  animation: dialog-in 0.2s forwards;
}

.dialog[data-state="closed"] > div {
  animation: dialog-out 0.2s forwards;
}

@keyframes dialog-in {
  from {
      opacity: 0;
      scale: 50%;
  }
  to {
      opacity: 1;
      scale: 100%;
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      scale: 100%;
  }
  to {
      opacity: 0;
      scale: 50%;
  }
}

.reveal-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.centralcart-content iframe {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.grid-background {
  background-image: linear-gradient(to right,hsla(0,0%,100%,.03) 1px,transparent 1px),linear-gradient(to bottom,hsla(0,0%,100%,.03) 1px,transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 85% at 40% 30%, #000 0%, #fff0 110%)
}

.custom-bg-mask {
	mask-image: linear-gradient(hsl(var(--background)), rgba(0, 0, 0, 0.3), rgb(0, 0, 0, 0));
}

@keyframes loading {
  0% {
      left: -50%;
  }

  to {
      left: 100%;
  }
}

.detail-dash {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1) 50%, hsl(var(--foreground) / 0) 0%);
  background-position: center bottom;
  background-size: 16px;
  background-repeat: repeat-x;
  width: 100%;
  height: 1px;
}

/* Sidebar categories */

/* Subcategory dividers (desktop dropdown + mobile list) */
.sidebar-categories-menu .cat-dropdown a + a {
  border-top: 1px solid rgb(var(--border));
}

.sidebar-categories-menu .mobile-subcategories a + a {
  border-top: 1px solid rgb(var(--border));
}

.sidebar-cat-item {
  position: relative;
  transition: background-color 120ms ease, color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
  border: 1px solid transparent;
  min-height: 2.7rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.03), rgb(255 255 255 / 0.015));
  backdrop-filter: blur(8px);
  overflow: hidden;
  cursor: pointer;
}

.sidebar-cat-item:hover {
  transform: translateY(-1px);
  box-shadow:
    inset 0 0 0 1px hsl(var(--primary) / 0.38),
    0 10px 20px rgb(0 0 0 / 0.35),
    0 0 18px hsl(var(--primary) / 0.2);
  background: linear-gradient(180deg, hsl(var(--primary) / 0.17), hsl(var(--primary) / 0.1));
}

.sidebar-cat-item::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 50%;
  width: 2px;
  height: 0;
  border-radius: 9999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #60a5fa, #0ea5e9);
  opacity: 0;
  transition: height 0.2s ease-in-out, opacity 0.2s ease-in-out;
}

.sidebar-cat-item:hover::before {
  height: 58%;
  opacity: 1;
}

.sidebar-cat-item:hover .lucide {
  color: #7dd3fc;
  transform: translateX(1px);
}

.sidebar-cat-item:active {
  transform: translateX(2px) scale(0.985);
  background-color: hsl(var(--primary) / 0.2);
  box-shadow:
    inset 0 0 0 1px hsl(var(--primary) / 0.45),
    0 12px 24px hsl(var(--primary) / 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
}

.sidebar-cat-subitem {
  transition: background-color 120ms ease, transform 120ms ease;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.025), rgb(255 255 255 / 0.01));
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.sidebar-cat-subitem:hover {
  transform: translateX(2px);
  background: linear-gradient(180deg, hsl(var(--primary) / 0.16), hsl(var(--primary) / 0.09));
  color: #7dd3fc;
  box-shadow: inset 0 0 0 1px hsl(var(--primary) / 0.35);
}

.sidebar-cat-subitem:active {
  transform: translateX(3px);
  -webkit-backdrop-filter: blur(12px) saturate(1.35);
  backdrop-filter: blur(12px) saturate(1.35);
  background-color: hsl(var(--primary) / 0.18);
}

.sidebar-categories-menu {
  background:
    radial-gradient(circle at 10% 0%, hsl(var(--primary) / 0.24), transparent 42%),
    linear-gradient(180deg, rgb(7 11 20 / 90%), rgb(4 7 14 / 92%));
  border-color: rgb(255 255 255 / 0.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  backdrop-filter: blur(16px) saturate(1.35);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.04),
    0 14px 32px rgb(0 0 0 / 0.45),
    0 0 30px hsl(var(--primary) / 0.16);
}

.sidebar-categories-menu .cat-dropdown > div {
  background: rgb(11 15 25 / 82%);
  border-color: rgb(255 255 255 / 0.08);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.sidebar-cat-item::after,
.sidebar-cat-subitem::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -150%;
  width: 58%;
  height: 320%;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.16), transparent);
  opacity: 0;
  pointer-events: none;
}

.sidebar-cat-item:hover::after,
.sidebar-cat-subitem:hover::after {
  opacity: 1;
  animation: sidebar-item-shimmer 0.9s ease-in-out;
}

@keyframes sidebar-item-shimmer {
  from {
    left: -150%;
    opacity: 0;
  }
  30% {
    opacity: 0.5;
  }
  to {
    left: 180%;
    opacity: 0;
  }
}

/* Sidebar look like reference (clean, modern, compact) */
.sidebar-categories-menu {
  gap: 0.45rem !important;
  border-radius: 16px !important;
  padding: 0.6rem !important;
  background: linear-gradient(180deg, rgb(8 12 20 / 92%), rgb(6 10 18 / 92%)) !important;
  border: 1px solid rgb(255 255 255 / 0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.03),
    0 14px 34px rgb(0 0 0 / 0.42) !important;
}

.sidebar-categories-menu .sidebar-cat-item,
.sidebar-categories-menu .sidebar-cat-subitem {
  min-height: 2.5rem !important;
  border-radius: 11px !important;
  border: 1px solid rgb(255 255 255 / 0.06) !important;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.045), rgb(255 255 255 / 0.015)) !important;
  box-shadow: none !important;
  transform: none !important;
}

.sidebar-categories-menu .sidebar-cat-item::before,
.sidebar-categories-menu .sidebar-cat-item::after,
.sidebar-categories-menu .sidebar-cat-subitem::after {
  content: none !important;
}

.sidebar-categories-menu .sidebar-cat-item:hover,
.sidebar-categories-menu .sidebar-cat-subitem:hover {
  border-color: rgb(34 171 255 / 0.45) !important;
  background: linear-gradient(180deg, rgb(7 36 62 / 0.65), rgb(8 25 42 / 0.55)) !important;
  color: rgb(232 246 255) !important;
  box-shadow:
    inset 0 0 0 1px rgb(34 171 255 / 0.35),
    0 0 18px rgb(20 120 200 / 0.2) !important;
  transform: none !important;
}

.sidebar-categories-menu .sidebar-cat-item[data-state="open"] {
  border-color: rgb(34 171 255 / 0.6) !important;
  box-shadow:
    inset 0 0 0 1px rgb(34 171 255 / 0.42),
    0 0 20px rgb(20 120 200 / 0.25) !important;
}

/* Final sidebar skin (match reference) */
.sidebar-categories-menu {
  gap: 0.42rem !important;
  padding: 0.62rem !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgb(8 12 20 / 0.56), rgb(7 11 18 / 0.58)) !important;
  border: 1px solid rgb(255 255 255 / 0.07) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.08) !important;
  backdrop-filter: blur(12px) saturate(1.08) !important;
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.03),
    0 14px 30px rgb(0 0 0 / 0.26) !important;
}

.sidebar-categories-menu .sidebar-cat-item,
.sidebar-categories-menu .sidebar-cat-subitem {
  min-height: 2.48rem !important;
  border-radius: 10px !important;
  border: 1px solid rgb(255 255 255 / 0.045) !important;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.02), rgb(255 255 255 / 0.008)) !important;
  color: rgb(232 237 245) !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease !important;
  transform: none !important;
}

.sidebar-categories-menu .sidebar-cat-item::before,
.sidebar-categories-menu .sidebar-cat-item::after,
.sidebar-categories-menu .sidebar-cat-subitem::after {
  content: none !important;
}

.sidebar-categories-menu .sidebar-cat-item:hover,
.sidebar-categories-menu .sidebar-cat-subitem:hover {
  border-color: rgb(39 175 255 / 0.58) !important;
  background: linear-gradient(180deg, rgb(11 44 74 / 0.72), rgb(8 28 47 / 0.7)) !important;
  color: rgb(244 251 255) !important;
  box-shadow:
    inset 0 0 0 1px rgb(39 175 255 / 0.44),
    0 0 16px rgb(22 126 209 / 0.24) !important;
}

.sidebar-categories-menu .sidebar-cat-item:hover .lucide,
.sidebar-categories-menu .sidebar-cat-subitem:hover .lucide {
  color: rgb(125 214 252) !important;
  transform: none !important;
}

.sidebar-arrow-pill {
  width: 1.24rem;
  height: 1.24rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgb(239 246 255);
  background: linear-gradient(180deg, #4f69d9, #3b57c8);
  box-shadow:
    inset 0 0 0 0.9px rgb(255 255 255 / 0.16),
    0 2px 5px rgb(59 87 200 / 0.3);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    background 0.22s ease;
}

.sidebar-arrow-pill svg {
  width: 0.56rem;
  height: 0.56rem;
}

.destaque-badge-loop {
  animation: destaque-badge-pulse 1.8s ease-in-out infinite !important;
  transform-origin: center;
  will-change: transform, filter;
  animation-play-state: running !important;
}

@keyframes destaque-badge-pulse {
  0%, 100% {
    transform: scale(1);
    filter: blur(0px) brightness(1);
  }
  50% {
    transform: scale(1.12);
    filter: blur(0.8px) brightness(1.2);
  }
}

.sidebar-cat-item:hover .sidebar-arrow-pill,
.mobile-category-group > button:hover .sidebar-arrow-pill,
#mobile-category-toggle:hover .sidebar-arrow-pill {
  transform: translateY(-1px) scale(1.05);
  background: linear-gradient(180deg, #5d78ea, #4563d9);
  box-shadow:
    inset 0 0 0 1px rgb(255 255 255 / 0.2),
    0 4px 10px rgb(69 99 217 / 0.45),
    0 0 14px rgb(69 99 217 / 0.32);
  filter: saturate(1.08);
}
.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);
  }
}

/* Home — barra de categorias + destaques */
.categories-pills-bar {
  -webkit-overflow-scrolling: touch;
  background-color: hsl(var(--primary) / 0.14);
  border-color: hsl(var(--primary) / 0.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.25);
  backdrop-filter: blur(14px) saturate(1.25);
  transition:
    backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    -webkit-backdrop-filter 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}

.categories-pills-bar:hover {
  background-color: hsl(var(--primary) / 0.24);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  backdrop-filter: blur(28px) saturate(1.4);
  box-shadow:
    0 12px 40px hsl(var(--primary) / 0.2),
    inset 0 0 0 1px hsl(var(--primary) / 0.18);
  border-color: hsl(var(--primary) / 0.35);
}

.categories-pills-bar::-webkit-scrollbar {
  height: 4px;
}

.categories-pills-bar::-webkit-scrollbar-track {
  background: transparent;
}

.categories-pills-bar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary) / 0.35);
  border-radius: 9999px;
}

.categories-pills-bar .category-pill {
  transition:
    transform 0.18s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.18s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
  will-change: transform;
}

.categories-pills-bar .category-pill:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 14px hsl(var(--primary) / 0.35);
}

.categories-pills-bar .category-pill:active {
  transform: translateY(2px) scale(0.94);
  box-shadow:
    inset 0 3px 10px rgb(0 0 0 / 0.25),
    0 1px 2px rgb(0 0 0 / 0.15);
}

.home-destaques {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: none;
  padding: 1.25rem 1.25rem 1.5rem;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}


@media (min-width: 640px) {
  .home-destaques {
    padding: 1.5rem 1.75rem 1.75rem;
  }
}

.home-destaques__glow {
  display: none;
}

.home-destaques__cta:hover .lucide {
  filter: brightness(1.1);
}




.package-card--highlight:hover {
  box-shadow:
    0 0 0 1px rgb(250 204 21 / 0.72),
    0 20px 40px rgb(0 0 0 / 0.4),
    0 0 28px rgb(250 204 21 / 0.32);
}

.package-card--highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.95;
  background:
    linear-gradient(#fde68a 0 0) top left / 0% 2px no-repeat,
    linear-gradient(#facc15 0 0) top right / 2px 0% no-repeat,
    linear-gradient(#fde68a 0 0) bottom right / 0% 2px no-repeat,
    linear-gradient(#facc15 0 0) bottom left / 2px 0% no-repeat;
  animation: highlight-border-loop 2.1s linear infinite;
}

@keyframes highlight-border-loop {
  0% {
    background-size:
      0% 2px,
      2px 0%,
      0% 2px,
      2px 0%;
  }
  25% {
    background-size:
      100% 2px,
      2px 0%,
      0% 2px,
      2px 0%;
  }
  50% {
    background-size:
      100% 2px,
      2px 100%,
      0% 2px,
      2px 0%;
  }
  75% {
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 0%;
  }
  100% {
    background-size:
      100% 2px,
      2px 100%,
      100% 2px,
      2px 100%;
  }
}

/* Sidebar categories */

/* Modern package cards */
.package-modern-card {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, rgb(7 26 44 / 0.96), rgb(4 16 30 / 0.96));
  border-color: rgb(18 59 95 / 0.5);
  box-shadow:
    0 10px 24px rgb(0 0 0 / 0.35),
    inset 0 0 0 1px rgb(255 255 255 / 0.03);
  transition:
    transform 0.28s ease-in-out,
    border-color 0.28s ease-in-out,
    box-shadow 0.28s ease-in-out,
    filter 0.28s ease-in-out;
  will-change: transform;
  transform: perspective(900px) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg));
  transform-style: preserve-3d;
  cursor: pointer;
}

.package-modern-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(
      180px circle at var(--mx, 50%) var(--my, 50%),
      rgb(18 59 95 / 0.18),
      transparent 60%
    );
  opacity: 0;
  transition: opacity 0.24s ease-in-out;
}

.package-modern-card::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -140%;
  width: 70%;
  height: 260%;
  pointer-events: none;
  transform: rotate(20deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255 255 255 / 0.18),
    transparent
  );
  opacity: 0;
}

.package-modern-card:hover {
  transform:
    perspective(900px)
    rotateX(var(--card-rx, 0deg))
    rotateY(var(--card-ry, 0deg))
    translateY(-7px)
    scale(1.02);
  border-color: #123b5f;
  box-shadow:
    0 18px 44px rgb(0 0 0 / 0.52),
    0 0 0 1px rgb(12 44 74 / 0.78),
    0 0 24px rgb(18 59 95 / 0.5);
  filter: saturate(1.05);
}

.package-modern-card:hover::before {
  opacity: 1;
}

.package-modern-card:hover::after {
  opacity: 1;
  animation: card-shimmer 0.85s ease-in-out;
}

.package-modern-card > div:first-child img {
  transition: transform 0.34s ease-in-out, filter 0.34s ease-in-out;
  will-change: transform;
}

.package-modern-card:hover > div:first-child img {
  transform: scale(1.055);
  filter: brightness(1.03) saturate(1.08);
}

@keyframes card-shimmer {
  from {
    left: -140%;
    opacity: 0;
  }
  25% {
    opacity: 0.55;
  }
  to {
    left: 170%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .package-modern-card,
  .package-modern-card > div:first-child img {
    transition: none;
  }
  .package-modern-card:hover {
    transform: none;
  }
  .package-modern-card:hover::after {
    animation: none;
  }
}

/* =============================================
   Fire border — cards da categoria Novidades
   ============================================= */

@keyframes fire-spin {
  to { transform: rotate(360deg); }
}

@keyframes fire-glow-pulse {
  0%, 100% {
    box-shadow:
      0 0 8px 2px rgba(0, 120, 255, 0.7),
      0 0 20px 6px rgba(0, 160, 255, 0.35);
  }
  50% {
    box-shadow:
      0 0 14px 4px rgba(0, 200, 255, 0.8),
      0 0 32px 10px rgba(100, 220, 255, 0.4);
  }
}

@keyframes fire-badge-flicker {
  0%, 100% { opacity: 1; filter: brightness(1); }
  45%       { opacity: 0.85; filter: brightness(1.2); }
  50%       { opacity: 1; filter: brightness(1.4); }
  55%       { opacity: 0.9; filter: brightness(1.1); }
}

/* Wrapper que envolve o card — a borda de fogo fica nos 2px de padding */
.fire-wrapper {
  position: relative;
  padding: 2px;
  border-radius: 15px;
  overflow: hidden;
  animation: fire-glow-pulse 2s ease-in-out infinite;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* O gradiente cônico gira atrás do card, visível só nos 2px de borda */
.fire-wrapper::before {
  content: '';
  position: absolute;
  inset: -100%;
  background: conic-gradient(
    #0044ff,
    #0088ff,
    #00ccff,
    #ffffff,
    #00ccff,
    #0088ff,
    #0044ff
  );
  animation: fire-spin 2s linear infinite;
  z-index: 0;
}

/* O card dentro do wrapper fica na frente do gradiente */
.fire-wrapper > a {
  position: relative;
  z-index: 1;
  border-radius: 13px !important;
  flex: 1;
}

.fire-novo-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #0055ff, #0099ff, #00ddff);
  box-shadow: 0 2px 8px rgba(0, 120, 255, 0.6);
  animation: fire-badge-flicker 1.6s ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}

/* ============================================= */

/* Hard fallback to guarantee visible hover effects */
.cc-card-fx {
  border-color: rgb(18 59 95 / 0.5) !important;
  box-shadow:
    0 10px 24px rgb(0 0 0 / 0.35),
    inset 0 0 0 1px rgb(255 255 255 / 0.03) !important;
}

.cc-card-fx:hover {
  transform: translateY(-7px) scale(1.02) !important;
  border-color: #123b5f !important;
  box-shadow:
    0 18px 44px rgb(0 0 0 / 0.52),
    0 0 0 1px rgb(12 44 74 / 0.85),
    0 0 26px rgb(18 59 95 / 0.55) !important;
}

.cc-card-fx .cc-card-shimmer {
  position: absolute;
  top: -120%;
  left: -140%;
  width: 70%;
  height: 260%;
  pointer-events: none;
  opacity: 0;
  transform: rotate(20deg);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.16), transparent);
  z-index: 2;
}

.cc-card-fx:hover .cc-card-shimmer {
  opacity: 1;
  animation: card-shimmer 0.85s ease-in-out;
}

.cc-card-fx:hover img {
  transform: scale(1.055) !important;
}
