.section-title {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 42px !important;
}

.section-title h2 {
  color: #FFFFFF !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
}

.section-subtitle {
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.section-subtitle p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #1a1a1a #000000;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.9),
    rgba(20, 20, 20, 0.9)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem !important;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  animation: popDownContent 1.2s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}


/* =========================================================
   SELLAUTH VISUAL EDITOR FIX
   Only affects the Visual Builder
   ========================================================= */

html.builder .hero-badge {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

/*
   Scroll/reveal animations can remain invisible inside
   the SellAuth Visual Editor. Force them visible only there.
*/
html.builder .scroll-reveal,
html.builder .scroll-reveal.revealed,
html.builder .reveal,
html.builder .fade-in,
html.builder .fade-up {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

/*
   Product cards / product wrappers
*/
html.builder .product,
html.builder .product-card,
html.builder .product-item,
html.builder .products,
html.builder .products-wrapper,
html.builder .products-container,
html.builder .product-grid,
html.builder .products-grid,
html.builder [class*="product-card"],
html.builder [class*="product-item"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

/*
   Do NOT force display:block here because it could destroy
   your existing grid/flex layout. Only restore visibility.
*/
html.builder .product-grid,
html.builder .products-grid,
html.builder .products-wrapper,
html.builder .products-container {
  opacity: 1 !important;
  visibility: visible !important;
}

/*
   Alpine.js sometimes keeps x-cloak elements hidden
   inside embedded builders.
*/
html.builder [x-cloak] {
  display: revert !important;
}

/*
   Common hidden animation states
*/
html.builder [style*="opacity: 0"],
html.builder [style*="opacity:0"] {
  opacity: 1 !important;
}

/*
   Prevent common reveal classes from staying hidden
*/
html.builder .hidden-before-reveal,
html.builder .animate-on-scroll {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}