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;
  appearance: textfield;
}

/* Esconder scrollbar mantendo funcionalidade */
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* Suavizar scroll horizontal */
.testimonial-carousel,
.scrollbar-hide {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Otimização de imagens */
img {
  image-rendering: auto;
}

/* Classe para conteúdo acessível apenas para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Otimização de espaçamentos - Stats, Hero e Categorias */
.stats-section-wrapper {
  padding-top: 0.5rem !important;
  padding-bottom: 0.25rem !important;
}

@media (min-width: 768px) {
  .stats-section-wrapper {
    padding-top: 0.75rem !important;
    padding-bottom: 0.5rem !important;
  }
}

/* Reduzir espaçamento do Hero */
section#about-section {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

@media (min-width: 768px) {
  section#about-section {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

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


#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;
      transform: scale(0.5);
  }
  to {
      opacity: 1;
      transform: scale(1);
  }
}

@keyframes dialog-out {
  from {
      opacity: 1;
      transform: scale(1);
  }
  to {
      opacity: 0;
      transform: scale(0.5);
  }
}

.reveal-fade-up.visible,
.reveal-fade-up.reveal-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 */
.custom-scrollbar::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: hsl(var(--primary));
  border-radius: 0.25rem;
}

.cat-dropdown {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: top;
}

.cat-dropdown:not(.hidden) {
  animation: slideDown 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

#mobile-categories-dropdown:not(.hidden) {
  animation: slideInMobile 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInMobile {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-subcategories:not(.hidden) {
  animation: slideInSub 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInSub {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* Sidebar categories */

/* Footer Animations */



/* Footer Background */
.footer-bg {
  height: 300px;
  background: linear-gradient(180deg, transparent 0%, rgba(239, 68, 68, 0.05) 50%, transparent 100%);
  filter: blur(40px);
}

/* Footer Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--primary), 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(var(--primary), 0);
  }
}

.footer-benefit-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.footer-benefit-icon {
  animation: float 3s ease-in-out infinite;
}

.footer-benefit-card:hover .footer-benefit-icon {
  animation-duration: 1s;
}

.footer-social-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.footer-social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s;
}

.footer-social-link:hover::before {
  left: 100%;
}

.footer-trustpilot-card {
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(10px);
}

.footer-trustpilot-card:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.footer-stats-number {
  background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--secondary)));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.footer-seal {
  transition: all 0.3s ease;
  filter: grayscale(0.3);
}

.footer-seal:hover {
  filter: grayscale(0);
  /* keep scale normal to avoid unexpected layout shifts */
  transform: none;
}

/* Footer Action Buttons */
.footer-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-action-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.footer-action-btn:hover::before {
  transform: translateX(100%);
}

.footer-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.footer-action-btn:active {
  transform: translateY(0);
}

.footer-action-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.footer-action-text {
  font-weight: 600;
  white-space: nowrap;
}

/* Botão Entrar / Conta */
.footer-action-btn-account {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.footer-action-btn-account .footer-action-icon {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.footer-action-btn-account:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

.footer-action-btn-account:hover .footer-action-icon {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
}

/* Botão Secundário (Pedidos, Afiliados) */
.footer-action-btn-secondary {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08));
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: white;
}

.footer-action-btn-secondary .footer-action-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.footer-action-btn-secondary:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(239, 68, 68, 0.15));
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.footer-action-btn-secondary:hover .footer-action-icon {
  background: rgba(239, 68, 68, 0.3);
  transform: scale(1.1) rotate(5deg);
}

/* Botão Carrinho */
.footer-action-btn-cart {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: 1px solid rgba(37, 211, 102, 0.3);
  color: white;
  position: relative;
}

.footer-action-btn-cart .footer-action-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.footer-action-btn-cart:hover {
  background: linear-gradient(135deg, #128C7E, #0d6b5f);
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.footer-action-btn-cart:hover .footer-action-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(-5deg);
}

.footer-cart-badge {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  min-width: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(239, 68, 68, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-action-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
  
  .footer-action-text {
    font-size: 0.875rem;
  }
}

/* Product cards styling - Premium rounded design */
.category-product-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 1rem;
}

.category-product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.4), rgba(239, 68, 68, 0.15), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.category-product-card:hover::before {
  opacity: 1;
}

.category-product-card img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-product-card:hover .relative.overflow-hidden {
  position: relative;
}

.category-product-card:hover .relative.overflow-hidden::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.25) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: rippleEffect 1s ease-out;
  pointer-events: none;
  z-index: 2;
}

@keyframes rippleEffect {
  0% {
    width: 0;
    height: 0;
    opacity: 0.8;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.category-product-card {
  transform-origin: center;
}

.category-product-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px -8px rgba(239, 68, 68, 0.3),
              0 0 0 1px rgba(239, 68, 68, 0.15);
}

.category-product-card .absolute.top-2.left-2 {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-product-card:hover .absolute.top-2.left-2 {
  transform: scale(1.05);
}

.category-product-card:hover .text-primary {
  animation: pricePulse 2s ease-in-out infinite;
}

@keyframes pricePulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.85;
  }
}

/* Package card premium styling */
.package {
  border-radius: 1rem !important;
  background: rgba(12, 12, 12, 0.8) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 16px -4px rgba(0, 0, 0, 0.4) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
}

.package:hover {
  border-color: rgba(220, 38, 38, 0.35) !important;
  box-shadow: 0 8px 32px -8px rgba(220, 38, 38, 0.25),
              0 4px 16px -4px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-4px) scale(1.015) !important;
}

/* Package card image sizing */
.package-list img,
.package img,
#featured-products-desktop .group img,
.categories-grid img {
  width: 100%;
  object-fit: cover;
}

/* ============================================
   HAMBURGER MENU STYLES — Premium Design
   ============================================ */

/* Hamburger Button */
.hamburger-button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
  -webkit-tap-highlight-color: transparent;
}

.hamburger-button:hover {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.15);
}

.hamburger-icon {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #ef4444;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
              opacity 0.3s ease,
              width 0.3s ease;
  transform-origin: center;
}

.hamburger-line:nth-child(2) {
  width: 65%;
}

.hamburger-button:hover .hamburger-line:nth-child(2) {
  width: 100%;
}

.hamburger-button.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-button.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-button.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hamburger Menu Container */
.hamburger-menu {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.hamburger-menu[data-state="open"] {
  pointer-events: all;
  visibility: visible;
}

.hamburger-menu[data-state="closed"].was-open {
  pointer-events: none;
  visibility: visible;
}

/* Overlay */
.hamburger-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              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);
}

.hamburger-menu[data-state="open"] .hamburger-overlay {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Sidebar — glassmorphism */
.hamburger-sidebar {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 380px;
  height: 100%;
  background: rgba(12, 12, 14, 0.92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-left: 1px solid rgba(239, 68, 68, 0.12);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5),
              -1px 0 0 rgba(239, 68, 68, 0.08);
  transform: translateX(102%);
  transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hamburger-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.06) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hamburger-sidebar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hamburger-menu[data-state="open"] .hamburger-sidebar {
  transform: translateX(0);
}

/* Header */
.hamburger-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hamburger-close-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.hamburger-close-btn:hover {
  background: rgba(239, 68, 68, 0.12);
  border-color: rgba(239, 68, 68, 0.3);
  color: #ef4444;
  transform: rotate(90deg);
}

/* Content */
.hamburger-content {
  position: relative;
  z-index: 1;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.hamburger-content::-webkit-scrollbar {
  width: 3px;
}

.hamburger-content::-webkit-scrollbar-track {
  background: transparent;
}

.hamburger-content::-webkit-scrollbar-thumb {
  background: rgba(239, 68, 68, 0.3);
  border-radius: 3px;
}

/* Navigation */
.hamburger-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
  transition: background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease,
              color 0.3s ease;
}

.hamburger-menu[data-state="open"] .hamburger-nav-item {
  animation: hmItemSlideIn 0.45s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  animation-delay: var(--item-delay, 0s);
}

.hamburger-menu[data-state="closed"] .hamburger-nav-item {
  animation: hmItemSlideOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes hmItemSlideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.hamburger-nav-item:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #fff;
  box-shadow: 0 4px 20px rgba(239, 68, 68, 0.12),
              inset 0 0 0 1px rgba(239, 68, 68, 0.06);
}

.hamburger-nav-item:active {
  transform: scale(0.98);
}

.hamburger-nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.12);
  color: #ef4444;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.hamburger-nav-item:hover .hamburger-nav-icon {
  background: rgba(239, 68, 68, 0.18);
  transform: scale(1.05);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.15);
}

.hamburger-nav-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.hamburger-nav-item:hover .hamburger-nav-arrow {
  color: rgba(239, 68, 68, 0.6);
  transform: translateX(3px);
}

/* Footer */
.hamburger-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hamburger-footer-decoration {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.4), transparent);
}

/* Quick Actions (backward compat) */
.hamburger-quick-actions {
  animation: slideInRight 0.5s ease 0.3s both;
}

.notification-dropdown {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.notification-dropdown[data-state="open"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

#notifications-indicator[data-state="hidden"] {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

#notifications-indicator[data-state="visible"] {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#notifications-indicator .ping {
  animation: pingIndicator 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingIndicator {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  75% {
    transform: scale(2);
    opacity: 0;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.notification-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.notification-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(239, 68, 68, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.notification-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.45);
}

.notification-item:hover::before {
  opacity: 1;
}

.notification-item i {
  transition: transform 0.3s ease;
}

.notification-item:hover i {
  transform: rotate(-6deg) scale(1.05);
}

.notification-item span,
.notification-item p {
  pointer-events: none;
}

/* Backward compat: quick actions */
.hamburger-quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

.hamburger-quick-action:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.25);
  transform: translateY(-2px);
}

/* Animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile Enhancements */
@media (max-width: 480px) {
  .hamburger-sidebar {
    width: 92%;
  }
  
  .hamburger-header {
    padding: 16px;
  }
  
  .hamburger-content {
    padding: 16px;
  }
  
  .hamburger-nav-item {
    padding: 12px 14px;
  }
}

/* Touch devices */
@media (hover: none) and (pointer: coarse) {
  .hamburger-nav-item:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.04);
    box-shadow: none;
  }
  
  .hamburger-nav-item:active {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.2);
    transform: scale(0.97);
  }
  
  .hamburger-nav-item:active .hamburger-nav-icon {
    background: rgba(239, 68, 68, 0.2);
  }
}

/* Search Bar Styles */
#search-bar,
#search-bar-mobile {
  transition: all 0.2s ease;
}

#search-bar:focus,
#search-bar-mobile:focus {
  background: rgba(var(--background), 0.8);
  border-color: rgba(239, 68, 68, 0.5);
}

#search-result,
#search-result-mobile {
  scrollbar-width: thin;
  scrollbar-color: rgba(239, 68, 68, 0.3) transparent;
}

#search-result::-webkit-scrollbar,
#search-result-mobile::-webkit-scrollbar {
  width: 6px;
}

#search-result::-webkit-scrollbar-track,
#search-result-mobile::-webkit-scrollbar-track {
  background: transparent;
}

#search-result::-webkit-scrollbar-thumb,
#search-result-mobile::-webkit-scrollbar-thumb {
  background: rgba(239, 68, 68, 0.3);
  border-radius: 3px;
}

#search-result::-webkit-scrollbar-thumb:hover,
#search-result-mobile::-webkit-scrollbar-thumb:hover {
  background: rgba(239, 68, 68, 0.5);
}

/* Mobile Search Container Animation */
#mobile-search-container {
  animation: searchSlideDown 0.3s ease-out;
}

#mobile-search-container.hidden {
  animation: searchSlideUp 0.3s ease-out;
}

@keyframes searchSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes searchSlideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* User Profile Dropdown */
#user-menu-button {
  cursor: pointer;
}

#user-dropdown {
  backdrop-filter: blur(10px);
  background: rgb(var(--background) / 0.95);
}

#user-dropdown.opacity-100 {
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
}

#user-dropdown a,
#user-dropdown button {
  color: rgb(var(--foreground));
}

#user-dropdown a:hover,
#user-dropdown button:hover {
  background: rgba(var(--muted), 0.5);
}

#logout-button:hover {
  background: rgba(239, 68, 68, 0.1) !important;
}

/* Support Section Styles */
.support-section {
  width: 100%;
  max-width: 1536px;
  margin: 0 auto;
}

.support-card {
  position: relative;
  min-height: 200px;
  transition: all 0.3s ease;
}

.support-card:hover {
  box-shadow: 0 20px 40px -12px rgba(var(--primary), 0.2);
}

.support-card-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 400px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .support-card .lg\:pr-\[450px\] {
    padding-right: 0 !important;
  }
}

/* Green Glow Effect */
.green-glow-effect {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}

.green-glow-left {
  bottom: -50px;
  left: -50px;
}

.green-glow-right {
  top: -50px;
  right: -50px;
}

.green-glow-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Reviews Section Styles */
.reviews-container {
  position: relative;
  width: 100%;
  max-width: 100vw;
  margin: 0 auto;
}

.reviews-row {
  display: flex;
  overflow: hidden;
  margin-bottom: 1rem;
}

.reviews-content {
  display: flex;
  gap: 1rem;
  animation: scroll-left 60s linear infinite;
}

.reviews-content-reverse {
  animation: scroll-right 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.reviews-row:hover .reviews-content {
  animation-play-state: paused;
}

.review-card-link {
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.review-card {
  min-width: 350px;
  max-width: 350px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
  border-color: hsl(var(--primary) / 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.review-avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid hsl(var(--border));
}

.review-info {
  flex: 1;
  min-width: 0;
}

.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
  margin-bottom: 0.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-stars {
  display: flex;
  gap: 0.125rem;
  align-items: center;
}

.review-star {
  width: 14px;
  height: 14px;
  color: #facc15;
  flex-shrink: 0;
}

.review-stars-trustpilot {
  height: 16px;
  width: auto;
}

.review-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

@media (max-width: 640px) {
  .review-card {
    min-width: 300px;
    max-width: 300px;
    padding: 1rem;
  }

  .review-avatar-img {
    width: 36px;
    height: 36px;
  }

  .review-name {
    font-size: 0.875rem;
  }

  .review-star {
    width: 12px;
    height: 12px;
  }

  .review-text {
    font-size: 0.8125rem;
  }
}

/* ============================================
   Account Orders Page
   ============================================ */

.orders-page-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.orders-page-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.orders-page-subtitle {
  font-size: 0.9375rem;
  color: rgb(var(--muted-foreground));
  max-width: 32rem;
}

.orders-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fca5a5;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-card {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.88), rgba(12, 12, 12, 0.62));
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  animation: ordersCardFadeIn 0.45s ease both;
  animation-delay: var(--order-delay, 0s);
}

.order-card:hover {
  border-color: rgba(239, 68, 68, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(239, 68, 68, 0.06);
  transform: translateY(-2px);
}

.order-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.order-card-id {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.order-card-id-label {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgb(var(--muted-foreground));
}

.order-card-id-number {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.order-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.2;
  border: 1px solid transparent;
}

.order-status-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.order-status-badge--pending {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.22);
}

.order-status-badge--approved {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.22);
}

.order-status-badge--rejected,
.order-status-badge--canceled {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.22);
}

.order-status-badge--refunded {
  color: #fcd34d;
  background: rgba(252, 211, 77, 0.1);
  border-color: rgba(252, 211, 77, 0.22);
}

.order-status-badge--chargedback {
  color: #c4b5fd;
  background: rgba(196, 181, 253, 0.1);
  border-color: rgba(196, 181, 253, 0.22);
}

.order-card-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .order-card-main {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
  }
}

.order-card-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-shrink: 0;
}

.order-card-price {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.order-card-date {
  font-size: 0.8125rem;
  color: rgb(var(--muted-foreground));
}

.order-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.order-card-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  min-width: 0;
}

.order-card-meta-icon {
  width: 0.9375rem;
  height: 0.9375rem;
  color: rgb(var(--muted-foreground));
  flex-shrink: 0;
}

.order-card-meta-label {
  color: rgb(var(--muted-foreground));
}

.order-card-meta-value {
  font-weight: 500;
  white-space: nowrap;
}

.order-card-meta-value--muted {
  font-weight: 400;
  color: rgb(var(--muted-foreground));
}

.order-coupon-badge {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.12);
  border: 1px solid hsl(var(--primary) / 0.2);
}

.order-card-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.order-card-btn {
  width: 100%;
}

@media (min-width: 640px) {
  .order-card-btn {
    width: auto;
  }
}

.orders-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, rgba(12, 12, 12, 0.85), rgba(12, 12, 12, 0.55));
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  animation: ordersCardFadeIn 0.5s ease both;
}

.orders-empty-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.orders-empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.orders-empty-text {
  font-size: 0.9375rem;
  color: rgb(var(--muted-foreground));
  max-width: 26rem;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}

.orders-empty-btn {
  display: inline-flex;
  margin: 0 auto;
}

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

@media (max-width: 640px) {
  .orders-page-title {
    font-size: 1.5rem;
  }

  .order-card {
    padding: 1rem 1.125rem;
  }

  .order-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-card-price {
    font-size: 1.25rem;
  }

  .order-card-meta {
    flex-direction: column;
    gap: 0.625rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-card,
  .orders-empty {
    animation: none;
  }

  .order-card {
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .order-card:hover {
    transform: none;
  }
}