/* ========================================================
   BARBEARIA BRUNO MENDES — LUXURY STEALTH ART DIRECTION
   Paleta: Obsidian Black (#060807), Grafite (#0c100e),
   Verde Esmeralda Elétrico (#00f59b), Verde Floresta (#183827) & Linhas Prateadas
   ZERO DOURADO, ZERO AMARELO, ZERO MOLDURAS ARTIFICIAIS
   BOTÕES PREMIUM ESTILO LOS MANOS (CONTORNO FINO, GLOW ELETRICO & SHINY SWEEP VERDE)
   PARTÍCULAS FLUTUANTES SUTIS & ESTEIRA 100% AUTOMÁTICA EM LOOP INFINITO
   ======================================================== */

:root {
  /* Tipografia */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-text: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Superfícies & Fundo (Obsidian & Grafite) */
  --bg-base: #060807;
  --bg-card: #0c100e;
  --bg-card-hover: #121815;
  --bg-surface: rgba(255, 255, 255, 0.035);
  --bg-surface-hover: rgba(255, 255, 255, 0.065);

  /* Acento Verde Esmeralda Elétrico da Referência */
  --neon-emerald: #00f59b;
  --neon-emerald-glow: rgba(0, 245, 155, 0.42);
  --emerald-active: #00f59b;

  /* Linhas & Bordas Translúcidas Prata */
  --line-subtle: rgba(255, 255, 255, 0.08);
  --line-hover: rgba(255, 255, 255, 0.2);

  /* Textos & Hierarquia */
  --text-pure: #ffffff;
  --text-smoke: #9ba49f;
  --text-muted: #67726d;

  /* Avaliações: Prata Limpa (Zero Amarelo) */
  --star-rating-color: #d1d5db;

  /* Dimensões & Raios */
  --card-max-width: 470px;
  --radius-outer: 24px;
  --radius-card: 20px;
  --radius-sm: 14px;
  --touch-min: 62px;
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 16px;
  background-color: var(--bg-base);
  overflow-x: hidden !important;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-pure);
  font-family: var(--font-text);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

/* Textura de Fundo Micro-Sutil de Alto Padrão */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  z-index: -2;
  pointer-events: none;
}

/* Camada de Iluminação Ambiente Sutil */
.ambient-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
}

.glow-emerald {
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 245, 155, 0.18) 0%, rgba(6, 8, 7, 0) 70%);
  opacity: 0.8;
}

/* Camada de Partículas Flutuantes Sutis (Estilo Los Manos) */
.bg-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Container Mobile-First Centrado */
.site-container {
  width: 100%;
  max-width: var(--card-max-width);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 16px 12px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.profile-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-outer);
  box-shadow: 0 24px 56px -12px rgba(0, 0, 0, 0.95);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 20px 26px;
}

/* ========================================================
   1. HEADER EDITORIAL (LOGO TRANSPARENTE, SEM MOLDURA)
   ======================================================== */
.header-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.header-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  margin-bottom: 14px;
}

.header-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.75));
}

.shop-title {
  font-family: var(--font-heading);
  font-size: 1.48rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-pure);
  line-height: 1.25;
}

.shop-subtitle {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-smoke);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Faixa de Informações Meta: Avaliação Google + Status */
.meta-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-smoke);
}

.google-rating-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-smoke);
  text-decoration: none;
  transition: color 0.2s ease;
}

.google-rating-link:hover,
.google-rating-link:focus-visible {
  color: var(--text-pure);
}

.star-icon {
  color: var(--star-rating-color);
  flex-shrink: 0;
}

.score-val {
  color: var(--text-pure);
  font-weight: 700;
}

.score-count {
  color: var(--text-smoke);
  font-weight: 500;
}

.meta-separator {
  color: var(--text-muted);
  opacity: 0.5;
}

.live-status-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-smoke);
  font-weight: 500;
}

.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--text-muted);
  flex-shrink: 0;
  transition: background-color 0.3s ease;
}

.status-indicator.is-open {
  background-color: var(--neon-emerald);
  box-shadow: 0 0 10px rgba(0, 245, 155, 0.8);
}

.status-indicator.is-check {
  background-color: var(--text-smoke);
  box-shadow: 0 0 6px rgba(155, 164, 159, 0.4);
}

.status-label {
  font-size: 0.76rem;
}

/* ========================================================
   2. BOTÕES PREMIUM ESTILO LOS MANOS (GLOW & SHINY SWEEP VERDE)
   ======================================================== */
.links-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Base de Todos os Botões com Inspiração Los Manos */
.action-link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--touch-min);
  padding: 13px 18px;
  border-radius: var(--radius-card);
  text-decoration: none;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), 
              border-color 0.25s ease, 
              box-shadow 0.25s ease,
              background 0.25s ease;
}

.action-link-btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.action-link-btn:active {
  transform: scale(0.985);
}

/* Pseudo-Elemento de Shiny Sweep VERDE Refinado (Suave e Elegante) */
.action-link-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -140%;
  width: 75%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 245, 155, 0.04) 20%,
    rgba(0, 245, 155, 0.24) 50%,
    rgba(0, 245, 155, 0.04) 80%,
    transparent 100%
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
}

/* Resposta no Hover Desktop (Suave e Desacelerado: 2.4s) */
@media (hover: hover) and (pointer: fine) {
  .action-link-btn:hover::after {
    animation: greenLuxurySweep 2.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

/* Resposta Tátil no Mobile */
.action-link-btn:active::after {
  animation: greenLuxurySweep 1.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* --- BOTÃO 1: AGENDAR HORÁRIO (AÇÃO PRINCIPAL - ESTILO GRUPO VIP LOS MANOS) --- */
.primary-booking-btn {
  background: #070b09;
  border: 1.5px solid var(--neon-emerald) !important;
  box-shadow: 0 0 24px 2px var(--neon-emerald-glow), 
              inset 0 0 2px 1px rgba(0, 245, 155, 0.35),
              0 12px 28px -4px rgba(0, 0, 0, 0.85) !important;
}

.primary-booking-btn:hover,
.primary-booking-btn:focus-visible {
  border-color: var(--neon-emerald) !important;
  box-shadow: 0 0 32px 4px rgba(0, 245, 155, 0.65), 
              inset 0 0 3px 1px rgba(0, 245, 155, 0.5),
              0 16px 36px -4px rgba(0, 0, 0, 0.95) !important;
}

/* Sweep Periódico Verde no Botão Principal (A cada 9s com 2.8s de varredura) */
.primary-booking-btn::after {
  animation: autoGreenLuxurySweep 9s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

/* Ícone de Destaque com Gradiente Luminoso Preenchido */
.primary-booking-btn .btn-icon-box {
  background: linear-gradient(135deg, #00f59b 0%, #00b060 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 4px 16px rgba(0, 245, 155, 0.45) !important;
}

.primary-booking-btn .btn-icon-box svg {
  stroke: #041209 !important;
  color: #041209 !important;
}

/* --- BOTÃO 2: WHATSAPP (AÇÃO SECUNDÁRIA FORTE) --- */
.secondary-action-card {
  background: #080c0a;
  border: 1px solid var(--line-subtle);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.secondary-action-card:hover,
.secondary-action-card:focus-visible {
  background: var(--bg-card-hover);
  border-color: var(--line-hover);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7);
}

/* Ícone do WhatsApp */
.glyph-whatsapp {
  color: #25d366;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(37, 211, 102, 0.28);
}

.action-link-btn:hover .glyph-whatsapp {
  border-color: rgba(37, 211, 102, 0.5);
  box-shadow: 0 0 12px rgba(37, 211, 102, 0.25);
}

/* --- BOTÃO 3: COMO CHEGAR (DESTINO FÍSICO) --- */
.glyph-location {
  color: #d1d5db;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.action-link-btn:hover .glyph-location {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.12);
}

/* Conteúdo Interno dos Botões */
.btn-left-content {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.btn-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-link-btn:hover .btn-icon-box {
  transform: scale(1.06);
}

.btn-text-block {
  display: flex;
  flex-direction: column;
  text-align: left;
  min-width: 0;
}

.btn-main-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.btn-sub-caption {
  font-size: 0.74rem;
  color: var(--text-smoke);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-location .btn-sub-caption {
  white-space: normal;
}

.btn-right-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  opacity: 0.8;
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.action-link-btn:hover .btn-right-arrow {
  transform: translateX(4px);
  color: #ffffff;
}

.route-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-subtle);
  color: var(--text-pure);
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-left: 8px;
  transition: all 0.2s ease;
}

.card-location:hover .route-tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Animações de Shiny Sweep VERDE */
@keyframes greenLuxurySweep {
  0% {
    left: -140%;
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    left: 210%;
    opacity: 0;
  }
}

@keyframes autoGreenLuxurySweep {
  0%, 70% {
    left: -140%;
    opacity: 0;
  }
  75% {
    opacity: 0.95;
  }
  90% {
    opacity: 0.95;
  }
  98%, 100% {
    left: 210%;
    opacity: 0;
  }
}

/* ========================================================
   3. ESTEIRA AUTOMÁTICA DOS BARBEIROS (LOOP INFINITO CONTÍNUO)
   ======================================================== */
.team-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.section-title-wrap {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-pure);
  letter-spacing: -0.01em;
}

/* Viewport com Ocultação Absoluta de Barra de Rolagem */
.conveyor-viewport {
  position: relative;
  width: 100%;
  overflow: hidden !important;
  user-select: none;
  -webkit-user-select: none;
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  padding: 4px 0 6px;
}

.conveyor-viewport::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Máscaras Laterais Gradientes para Entrada e Saída Suaves */
.conveyor-mask {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 24px;
  z-index: 3;
  pointer-events: none;
}

.mask-left {
  left: 0;
  background: linear-gradient(to right, var(--bg-card) 0%, transparent 100%);
}

.mask-right {
  right: 0;
  background: linear-gradient(to left, var(--bg-card) 0%, transparent 100%);
}

/* Trilho com Loop Automático Contínuo Sem Saltos */
.conveyor-rail {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  will-change: transform;
  -webkit-animation-name: conveyorAutoRun !important;
  animation-name: conveyorAutoRun !important;
  -webkit-animation-duration: 26s !important;
  animation-duration: 26s !important;
  -webkit-animation-timing-function: linear !important;
  animation-timing-function: linear !important;
  -webkit-animation-iteration-count: infinite !important;
  animation-iteration-count: infinite !important;
  -webkit-animation-play-state: running !important;
  animation-play-state: running !important;
}

@-webkit-keyframes conveyorAutoRun {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes conveyorAutoRun {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

/* No desktop: pausa sutil ao passar o cursor se desejar inspecionar */
@media (hover: hover) and (pointer: fine) {
  .conveyor-rail:hover {
    -webkit-animation-play-state: paused !important;
    animation-play-state: paused !important;
  }
}

/* Grupos Idênticos sem Encolhimento */
.conveyor-group {
  display: flex !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  gap: 12px;
  padding-right: 12px;
}

/* Card Individual de Barbeiro */
.barber-card {
  flex: 0 0 140px !important;
  width: 140px !important;
  height: 198px;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  background: #090e0b;
  border: 1px solid var(--line-subtle);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.barber-card:hover,
.barber-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
}

.barber-img-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.barber-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}

.barber-card:hover .barber-img {
  transform: scale(1.04);
}

.barber-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, 
              rgba(6, 8, 7, 0.96) 0%, 
              rgba(6, 8, 7, 0.35) 45%, 
              transparent 75%);
  z-index: 1;
}

.barber-name {
  position: relative;
  z-index: 2;
  padding: 10px 8px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Card Limpo e Honesto para Vitor VHS (Monograma VV) */
.barber-card-placeholder .placeholder-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0e1511;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
  margin-bottom: 22px;
}

.placeholder-monogram {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line-subtle);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 1px;
}

.placeholder-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ========================================================
   4. HORÁRIOS OFICIAIS DE ATENDIMENTO (SEM DOURADO/AMARELO)
   ======================================================== */
.schedule-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.schedule-card {
  background: var(--bg-surface);
  border: 1px solid var(--line-subtle);
  border-radius: var(--radius-card);
  padding: 14px 18px;
}

.schedule-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.row-day {
  color: var(--text-smoke);
  font-weight: 500;
}

.row-time {
  color: var(--text-pure);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Destaque Sutil do Dia Corrente (Verde Esmeralda Elétrico) */
.schedule-row.is-today {
  border-left: 2px solid var(--neon-emerald);
  padding-left: 8px;
}

.schedule-row.is-today .row-day {
  color: var(--text-pure);
  font-weight: 700;
}

.schedule-row.is-today .row-time {
  color: #ffffff;
  font-weight: 700;
}

/* Segunda-feira (Tom Neutro Esfumaçado, Zero Amarelo) */
.time-consult {
  color: var(--text-smoke);
  font-weight: 500;
}

/* Domingo Fechado */
.time-closed {
  color: var(--text-muted);
  font-weight: 500;
}

/* ========================================================
   5. RODAPÉ INSTITUCIONAL
   ======================================================== */
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 4px;
  gap: 3px;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--line-subtle);
  margin-bottom: 8px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-pure);
  letter-spacing: 0.02em;
}

.footer-address {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

/* ========================================================
   6. RESPONSIVIDADE MOBILE-FIRST RIGOROSA
   320px, 360px, 390px, 414px
   ======================================================== */

/* 320px a 359px */
@media (max-width: 359px) {
  .site-container {
    padding: 10px 8px 24px;
  }

  .profile-card {
    padding: 20px 12px 18px;
    gap: 18px;
  }

  .shop-title {
    font-size: 1.3rem;
  }

  .action-link-btn {
    padding: 11px 14px;
    min-height: 56px;
  }

  .btn-main-title {
    font-size: 1rem;
  }

  .btn-icon-box {
    width: 42px;
    height: 42px;
  }

  .barber-card {
    flex: 0 0 130px !important;
    width: 130px !important;
    height: 186px;
  }
}

/* 360px a 414px */
@media (min-width: 360px) and (max-width: 414px) {
  .site-container {
    padding: 12px 10px 28px;
  }

  .profile-card {
    padding: 24px 14px 20px;
  }
}

/* ========================================================
   7. ACESSIBILIDADE E PERFORMANCE: PREFERS-REDUCED-MOTION
   ======================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .conveyor-rail {
    animation: none !important;
    transform: none !important;
  }

  .conveyor-viewport {
    overflow-x: auto !important;
  }

  .bg-particles {
    display: none !important;
  }
}
