font-size: 48px;
  }
  
  body.luxe-beauty-active .categories__header {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  body.luxe-beauty-active .categories__nav {
    display: none;
  }
  
  body.luxe-beauty-active .products__filter-btn {
    padding: 10px 16px;
    font-size: 10px;
  }
  
  body.luxe-beauty-active .banner__container {
    padding: 0 16px;
  }
  
  body.luxe-beauty-active .newsletter__container {
    padding: 0 16px;
  }
  
  body.luxe-beauty-active .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  body.luxe-beauty-active .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}


body.luxe-beauty-active .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

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


body.luxe-beauty-active ::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

body.luxe-beauty-active ::-webkit-scrollbar-track {
  background: var(--color-gray-100);
}

body.luxe-beauty-active ::-webkit-scrollbar-thumb {
  background: var(--color-gray-400);
  border-radius: 4px;
}

body.luxe-beauty-active ::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-500);
}


body.luxe-beauty-active .hidden {
  display: none !important;
}


@keyframes unfadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heartBeat {
  0% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
  75% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

body.luxe-beauty-active .heart-beat {
  animation: heartBeat 0.5s ease;
}

body.luxe-beauty-active .badge-pop {
  animation: badgePop 0.3s ease;
}

@keyframes badgePop {
  0% { transform: scale(0); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}


body.luxe-beauty-active .loading {
  opacity: 0.7;
  pointer-events: none;
}


@media (max-width: 640px) {
  body.luxe-beauty-active .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
  
  body.luxe-beauty-active .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  body.luxe-beauty-active .banner__container {
    padding: 0 16px;
  }
  
  body.luxe-beauty-active .newsletter__container {
    padding: 0 16px;
  }
}