/* ===== SASSY.WTF — FULL CUSTOM THEME ===== */

/* === UTILITIES === */
.text-accent { color: #fe28af !important; }
/* Hero load animations */
@keyframes ecFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ecFadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ecScaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.sassy-hero .eclipze-hero-badge {
  opacity: 0;
  animation: ecFadeIn 0.6s ease-out 0.2s forwards;
}
.sassy-hero .content h1 {
  opacity: 0;
  animation: ecFadeUp 0.7s ease-out 0.4s forwards;
}
.sassy-hero .content p {
  opacity: 0;
  animation: ecFadeUp 0.7s ease-out 0.6s forwards;
}
.sassy-hero .sassy-cta-row {
  opacity: 0;
  animation: ecFadeUp 0.7s ease-out 0.8s forwards;
}
.sassy-hero .sassy-trust-badges {
  opacity: 0;
  animation: ecFadeUp 0.7s ease-out 1s forwards;
}
.eclipze-menu-panel {
  opacity: 0;
  animation: ecScaleIn 0.8s ease-out 0.7s forwards;
}

/* Hero badge box — angled right edge, outline only */
.eclipze-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  background: rgba(254,40,175,0.04);
  border: 1px solid rgba(254,40,175,0.25);
  padding: 0.55rem 1.6rem 0.55rem 0.85rem;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fe28af;
  letter-spacing: 0.02em;
  line-height: 1.4;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 100%, 0 100%);
}
.eclipze-hero-badge svg {
  stroke: #fe28af;
  flex-shrink: 0;
}
.eclipze-hero-badge-icon {
  opacity: 1 !important;
  width: 14px !important;
  height: 14px !important;
}

/* =========================================
   NAVBAR — floating pill bar
   ========================================= */

/* Override SellAuth's sticky header wrapper */
header.sticky-top {
  position: static !important;
  z-index: auto !important;
}
/* Hide old Bootstrap navbar elements */
.eclipze-nav-line { display: none !important; }

/* Navbar container — fixed to top */
.navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Navbar bar — starts fully transparent */
.navbar-container .navbar {
  pointer-events: auto;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  width: 100%;
  max-width: 1920px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: none;
}

/* Scrolled state — angular notch style */
.navbar-container .navbar.scrolled {
  height: 56px;
  width: 1050px;
  max-width: 95%;
  padding: 0 32px;
  border: 1px solid rgba(254, 40, 175, 0.15);
  border-radius: 0;
  background-color: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Navbar inner layout */
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 32px;
  width: auto;
  object-fit: contain;
}
.navbar-logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: #e4e4ea;
  letter-spacing: -0.02em;
}

/* Desktop nav links */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: transparent;
  transition: background 0.2s ease;
}
.nav-link-item:hover {
  color: white;
  background: transparent;
}
.nav-link-item:hover svg {
  opacity: 1;
}
.nav-link-item:hover::after {
  background: rgba(254, 40, 175, 0.15);
}
.nav-link-item.active {
  color: #fff;
  background: transparent;
}
.nav-link-item.active::after {
  background: rgba(254, 40, 175, 0.15);
}
.nav-link-item.active svg {
  opacity: 1;
}

/* Right side actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Icon buttons (search, cart) */
.navbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: #888;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  padding: 0;
}
.navbar-icon-btn:hover {
  color: #fe28af;
  background: transparent;
}

/* Cart badge */
.navbar-cart-btn {
  position: relative;
}
.navbar-cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  background: #fe28af;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Hamburger button — hidden on desktop */
.navbar-hamburger {
  display: none;
}
.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
.hamburger-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: all 0.2s ease;
}

/* CTA button — angular notch with arrow */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 40px;
  background: #fff;
  color: #000;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.cta-btn:hover {
  background: #fe28af;
  color: #fff;
}
.cta-btn svg {
  width: 16px;
  height: 16px;
}

/* =========================================
   MOBILE MENU — full-screen overlay
   ========================================= */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px 24px;
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-header .navbar-icon-btn {
  color: #888;
}
.mobile-menu-header .navbar-icon-btn:hover {
  color: #fff;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 24px;
  flex: 1;
}
.mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 12px;
  color: #999;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.mobile-link svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.mobile-link:hover {
  color: #e4e4ea;
  background: rgba(255, 255, 255, 0.04);
}
.mobile-link.active {
  color: #fff;
  background: rgba(254, 40, 175, 0.1);
}
.mobile-link.active svg {
  opacity: 1;
  color: #fe28af;
}
.mobile-menu-footer {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-cta {
  width: 100%;
  padding: 14px 24px;
  font-size: 0.9rem;
  border-radius: 12px;
}

/* =========================================
   SEARCH MODAL
   ========================================= */
.search-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.search-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-modal-content {
  width: 100%;
  max-width: 580px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(-10px);
  transition: transform 0.25s ease;
}
.search-modal-overlay.open .search-modal-content {
  transform: translateY(0);
}

/* Search header */
.search-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 8px 4px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.search-input-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
}
.search-input-wrapper .search-icon {
  color: #555;
  flex-shrink: 0;
}
.search-input-wrapper input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #e4e4ea;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
}
.search-input-wrapper input::placeholder {
  color: #555;
}
.search-kbd {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: #555;
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.search-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: #555;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.search-close-btn:hover {
  color: #e4e4ea;
  background: rgba(255, 255, 255, 0.06);
}

/* Quick links */
.search-quick-links {
  padding: 16px;
}
.search-section-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #555;
  margin-bottom: 10px;
  padding: 0 8px;
}
.search-quick-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #999;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s ease;
}
.search-quick-link:hover {
  color: #e4e4ea;
  background: rgba(255, 255, 255, 0.04);
}
.search-quick-link svg {
  flex-shrink: 0;
  opacity: 0.5;
}
.search-link-arrow {
  margin-left: auto;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.search-quick-link:hover .search-link-arrow {
  opacity: 0.5;
}

/* Search results */
.search-results {
  padding: 16px;
  max-height: 400px;
  overflow-y: auto;
}
.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.15s ease;
}
.search-result-item:hover {
  background: rgba(255, 255, 255, 0.04);
}
.search-result-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  background: #1a1a1a;
  flex-shrink: 0;
}
.search-result-placeholder {
  border: 1px solid #222;
}
.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}
.search-result-name {
  color: #e4e4ea;
  font-size: 0.85rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-result-price {
  color: #888;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
.search-result-stock {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 9999px;
}
.search-result-stock.in-stock {
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
}
.search-result-stock.out-of-stock {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}
.search-no-results {
  text-align: center;
  color: #555;
  font-size: 0.85rem;
  padding: 24px 0;
}

/* =========================================
   NAVBAR RESPONSIVE — 1024px breakpoint
   ========================================= */
@media (max-width: 1024px) {
  .navbar-links {
    display: none;
  }
  .navbar-hamburger {
    display: flex;
  }
  .cta-btn {
    display: none;
  }
  .navbar-container {
    padding: 12px 16px;
  }
  .navbar-container .navbar {
    padding: 0 24px;
    height: 64px;
  }
  .navbar-container .navbar.scrolled {
    margin-top: 10px;
    height: 50px;
  }
  .search-modal-overlay {
    padding-top: 80px;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Spacer for fixed navbar */
.navbar-container + *,
header.sticky-top + * {
  /* Content flows naturally since header is now static */
}

/* =========================================
   HERO — full sassy.wtf rebuild
   ========================================= */
.sassy-hero {
  background: #080808 !important;
  background-image: none !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  position: relative !important;
  padding-top: 0 !important;
  margin-top: -96px;
}
.sassy-hero .bg-overlay {
  background: #080808 !important;
  opacity: 1 !important;
}

/* Full-page logo watermark */
.eclipze-page-watermark {
  position: fixed;
  top: 28vh;
  left: -55vw;
  width: 250vh;
  z-index: -1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.eclipze-page-watermark img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: contain;
  opacity: 0.037;
  filter: brightness(1.2);
  user-select: none;
  -webkit-user-drag: none;
}

/* Background container */
.eclipze-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Image-based grid pattern */
.eclipze-grid {
  position: absolute;
  inset: 0;
  background-image: url('https://i.postimg.cc/XNgz6d52/hero-grid.png');
  background-position: top center;
  background-repeat: repeat;
  opacity: 0.15;
  -webkit-mask-image: linear-gradient(180deg, white, rgba(255,255,255,0));
  mask-image: linear-gradient(180deg, white, rgba(255,255,255,0));
}

/* Accent glow orb */
.eclipze-glow {
  position: absolute;
  right: 2%;
  top: 15%;
  width: 900px;
  height: 700px;
  background: rgba(254, 40, 175, 0.05);
  border-radius: 50%;
  filter: blur(120px);
}


/* Particle canvas */
#heroParticleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
}

/* Hero container */
.sassy-hero .container {
  position: relative !important;
  z-index: 3 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 3rem !important;
  padding: 2rem 2rem 3rem !important;
  padding-top: 96px !important;
  min-height: 100vh !important;
}
.sassy-hero .content {
  max-width: 640px !important;
  text-align: left !important;
  margin: 0 !important;
}
.sassy-hero .content h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem) !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.04em !important;
  line-height: 0.88 !important;
  margin-bottom: 1.5rem !important;
  margin-top: 0 !important;
  -webkit-text-stroke: 1.5px currentColor;
}
.sassy-hero .content p {
  color: #a1a1ac !important;
  max-width: 32rem;
  margin: 0 0 2.5rem 0 !important;
  font-size: 1.05rem;
  line-height: 1.75;
}

/* Hide the default searchbar in hero */
.sassy-hero .fake-searchbar {
  display: none !important;
}

/* Hide the default stats wrapper */
.sassy-hero .stats-wrapper {
  display: none !important;
}

/* Hide the default CTA button (we have custom ones) */
.sassy-hero .content > a.btn {
  display: none !important;
}

/* CTA buttons row */
.sassy-cta-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.sassy-btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: #fe28af !important;
  color: #080808 !important;
  border: none !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  font-family: 'Inter', ui-monospace, monospace !important;
  padding: 1rem 2rem !important;
  transition: all 0.2s ease !important;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.sassy-btn-primary svg {
  transition: transform 0.2s ease;
}
.sassy-btn-primary:hover {
  background: #fec4ec !important;
  color: #080808 !important;
}
.sassy-btn-primary:hover svg {
  transform: translateX(4px);
}
.sassy-btn-outline {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: transparent !important;
  color: #e4e4ea !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  font-family: 'Inter', ui-monospace, monospace !important;
  padding: 1rem 2rem !important;
  transition: all 0.2s ease !important;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.sassy-btn-outline:hover {
  border-color: rgba(254,40,175,0.5) !important;
  color: #fe28af !important;
}

/* Trust badges */
.sassy-trust-badges {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.sassy-trust-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: badgeMarquee 16s linear infinite;
  width: max-content;
}
@keyframes badgeMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sassy-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-family: 'Inter', ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #a1a1ac;
  font-weight: 600;
}
.sassy-dot {
  width: 5px;
  height: 5px;
  background: #fe28af;
  display: inline-block;
  flex-shrink: 0;
}

/* =========================================
   SECTION TITLES
   ========================================= */
.section-title h2 {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.01em !important;
  font-size: 1.8rem !important;
  color: #e4e4ea !important;
}
.section-subtitle p {
  color: #a1a1ac !important;
  font-size: 0.85rem;
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.card {
  background: #0f0f0f !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease !important;
  position: relative;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,40,175,0.3), transparent);
  z-index: 2;
  transition: background 0.35s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(254,40,175,0.35) !important;
  box-shadow: 0 12px 40px rgba(254,40,175,0.08), 0 0 0 1px rgba(254,40,175,0.1) !important;
}
.card:hover::before {
  background: linear-gradient(90deg, transparent, #fe28af, transparent);
}
.card .card-img-top {
  background: #080808 !important;
}
.card .card-body {
  background: #0f0f0f !important;
  padding: 1rem 1.25rem !important;
}
.card .card-body .card-title {
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  font-size: 0.95rem !important;
  color: #e4e4ea !important;
}
.card .card-body .price {
  color: #fcee0a !important;
  font-weight: 800 !important;
  font-family: 'Inter', ui-monospace, monospace !important;
}
.card .card-body .text-primary {
  font-size: 0.65rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.18em !important;
  font-weight: 600 !important;
}
.card .overlay {
  background: rgba(8,8,8,0.85) !important;
}
.card .overlay .btn {
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
}
.product-img-placeholder {
  background: #080808 !important;
}

/* =========================================
   FEATURES
   ========================================= */
.features .feature {
  background: #0f0f0f !important;
  border: 1px solid #1a1a1a;
  border-radius: 0 !important;
  padding: 1.75rem !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
}
.features .feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,40,175,0.25), transparent);
  pointer-events: none;
}
.features .feature:hover {
  border-color: rgba(254,40,175,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(254,40,175,0.06);
}
.features .feature i {
  font-size: 1.4rem !important;
  color: #fe28af !important;
  margin-bottom: 1rem !important;
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  line-height: 2.8rem;
  text-align: center;
  background: rgba(254,40,175,0.06);
  border: 1px solid rgba(254,40,175,0.15);
}
.features .feature .title {
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.03em !important;
  font-size: 0.9rem !important;
  margin-bottom: 0.5rem !important;
  color: #e4e4ea !important;
}
.features .feature .description {
  color: #a1a1ac !important;
  font-size: 0.78rem !important;
  line-height: 1.65 !important;
  margin-bottom: 0 !important;
}

/* =========================================
   TESTIMONIALS / FEEDBACKS
   ========================================= */
.testimonial {
  background: rgba(15,15,15,0.7) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  clip-path: polygon(14px 0, 100% 0, 100% 100%, 0 100%, 0 14px);
  transition: border-color 0.3s ease !important;
  position: relative;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254,40,175,0.2), transparent);
  pointer-events: none;
  z-index: 1;
}
.testimonial:hover {
  border-color: rgba(254,40,175,0.3) !important;
}
.testimonial .stars svg {
  width: 0.85rem !important;
  height: 0.85rem !important;
}
.testimonial .footer {
  border-top: 1px solid #1a1a1a !important;
}

/* =========================================
   FAQ — split layout
   ========================================= */
.eclipze-faq {
  background: #0a0a0a;
  padding: 5rem 2rem;
}
.efaq-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.efaq-left {
  position: sticky;
  top: 7rem;
}
.efaq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 6px 14px;
  margin-bottom: 1.25rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}
.efaq-badge svg { opacity: 0.5; }
.efaq-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #e4e4ea;
  margin: 0 0 1rem;
}
.efaq-sub {
  font-size: 0.78rem;
  color: #3a3a3a;
  line-height: 1.75;
  margin: 0 0 1.5rem;
}
.efaq-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  background: rgba(254,40,175,0.06);
  border: 1px solid rgba(254,40,175,0.15);
  text-decoration: none;
  transition: all 0.2s ease;
}
.efaq-discord-btn:hover {
  background: rgba(254,40,175,0.12);
  color: #fe28af;
  border-color: rgba(254,40,175,0.3);
}
.efaq-discord-btn svg { color: #fe28af; }

/* FAQ items */
.efaq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.efaq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.efaq-question span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e4e4ea;
  line-height: 1.4;
}
.efaq-chevron {
  flex-shrink: 0;
  color: #444;
  transition: transform 0.3s ease;
}
.efaq-item.open .efaq-chevron {
  transform: rotate(180deg);
  color: #fe28af;
}
.efaq-item.open .efaq-question span {
  color: #fe28af;
}
.efaq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.efaq-item.open .efaq-answer {
  max-height: 300px;
}
.efaq-answer p {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.8;
  padding: 0 0 1.25rem;
  margin: 0;
}
@media (max-width: 768px) {
  .efaq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .efaq-left {
    position: static;
  }
}

/* =========================================
   SOCIALS
   ========================================= */
.socials .social {
  background: #0f0f0f !important;
  border: 1px solid #1a1a1a !important;
  border-radius: 0 !important;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}
.socials .social:hover {
  border-color: rgba(254,40,175,0.35) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 24px rgba(254,40,175,0.06) !important;
}

/* =========================================
   FOOTER
   ========================================= */
.eclipze-footer {
  background: #0c0c0c !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  padding: 3rem 0 1.5rem !important;
  position: relative;
  z-index: 1;
}
.ef-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem 3rem;
  margin-bottom: 2rem;
}
.ef-col-brand {}
.ef-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.ef-logo img {
  height: 32px;
  width: auto;
}
.ef-desc {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
}
.ef-socials {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
}
.ef-social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: #666;
  transition: all 0.2s ease;
  text-decoration: none;
}
.ef-social-icon:hover {
  background: #fe28af;
  border-color: #fe28af;
  color: #fff;
}
.ef-discord-widget {
  margin-top: 1rem;
  width: 100%;
  max-width: 350px;
  height: 52px;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  background: transparent;
}
.ef-discord-widget iframe {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}
.ef-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e4e4ea;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ef-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.ef-links a {
  color: #555;
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.ef-links a:hover {
  color: #fe28af;
}
.ef-link-icon {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}
.ef-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ef-bottom p {
  font-size: 0.72rem;
  color: #444;
  margin: 0;
}
.ef-bottom span {
  font-size: 0.72rem;
  color: #333;
}
@media (max-width: 991px) {
  .ef-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .ef-grid { grid-template-columns: 1fr; }
  .ef-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* =========================================
   GLOBAL OVERRIDES
   ========================================= */
html { scroll-behavior: smooth; }
body {
  background: #080808 !important;
  padding-top: 96px;
}

/* All border-radius → 0 */
.btn { border-radius: 0 !important; }
.form-control, .form-select { border-radius: 0 !important; }
.modal-content { border-radius: 0 !important; }
.modal-header, .modal-footer { border-radius: 0 !important; }
.badge { border-radius: 0 !important; }
.card .badges div { border-radius: 0 !important; }
.alert { border-radius: 0 !important; }
.toast { border-radius: 0 !important; }
.dropdown-menu { border-radius: 0 !important; }
.nav-pills .nav-link { border-radius: 0 !important; }
.choices__inner { border-radius: 0 !important; }
.choices__list--dropdown { border-radius: 0 !important; }

/* Form overrides */
.form-control, .form-select {
  background: #0a0a0a !important;
  border-color: #1a1a1a !important;
  color: #e4e4ea !important;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(254,40,175,0.5) !important;
  box-shadow: 0 0 0 0.2rem rgba(254,40,175,0.12) !important;
}

/* Modal */
.modal-content {
  background: #0f0f0f !important;
  border: 1px solid #1a1a1a !important;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* Announcement */
.announcement {
  background: #fe28af !important;
  color: #080808 !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
}
.announcement a { color: #080808 !important; }

/* =========================================
   CHEAT MENU DEMO PANEL
   ========================================= */
.eclipze-menu-panel {
  flex-direction: row;
  width: 520px;
  min-height: 440px;
  max-height: 500px;
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  color: #c0a0b5;
  border: 1px solid #2a2a2a;
  background: #111;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(254,40,175,0.04);
}
/* Sidebar */
.ecp-sidebar {
  width: 120px;
  background: #0d0d0d;
  border-right: 1px solid #2a2a2a;
  display: flex;
  flex-direction: column;
  padding: 16px 0 12px;
  flex-shrink: 0;
}
.ecp-logo {
  padding: 0 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ecp-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.ecp-logo-url {
  font-size: 9px;
  color: #555;
  text-align: center;
}
.ecp-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ecp-nav-item {
  padding: 7px 14px;
  border-left: 2px solid transparent;
  color: #555;
  font-size: 12px;
  cursor: default;
  transition: all 0.15s;
}
.ecp-nav-item.active {
  background: rgba(254,40,175,0.1);
  border-left-color: #fe28af;
  color: #e0b8d4;
  font-weight: 500;
}
.ecp-version {
  padding: 0 14px;
  font-size: 9px;
  color: #fe28af;
  opacity: 0.5;
}
/* Main area */
.ecp-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.ecp-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid #2a2a2a;
}
.ecp-brand {
  font-weight: 700;
  color: #fe28af;
  letter-spacing: 1.5px;
  font-size: 12px;
}
.ecp-brand-sub {
  color: #444;
  font-size: 12px;
  font-weight: 500;
}
.ecp-tab-badge {
  padding: 2px 10px;
  background: rgba(254,40,175,0.12);
  border: 1px solid #fe28af;
  color: #fe28af;
  font-size: 10px;
  font-weight: 600;
  margin-left: 4px;
}
/* Content */
.ecp-content {
  display: flex;
  flex: 1;
  padding: 12px;
  gap: 12px;
  overflow: hidden;
}
.ecp-col {
  flex: 1;
  border: 1px solid #2a2a2a;
  padding: 12px;
  min-width: 0;
}
.ecp-col-title {
  font-size: 10px;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}
.ecp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 11px;
}
.ecp-check {
  width: 12px;
  height: 12px;
  border: 1px solid #444;
  background: transparent;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.15s ease;
}
.ecp-check:hover {
  border-color: #fe28af;
}
.ecp-check.on {
  background: #fe28af;
  border-color: #fe28af;
}
.ecp-keybind {
  padding: 2px 10px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #888;
  font-size: 11px;
  text-align: center;
}
.ecp-select {
  padding: 2px 8px;
  background: #1a1a1a;
  border: 1px solid #333;
  color: #888;
  font-size: 11px;
  font-family: inherit;
  outline: none;
  cursor: pointer;
  min-width: 60px;
  border-radius: 0 !important;
}
.ecp-select:focus {
  border-color: #fe28af;
}
/* Sliders */
.ecp-slider-group {
  margin-bottom: 14px;
}
.ecp-slider-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 500;
}
.ecp-slider-val {
  color: #888;
}
.ecp-range {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: #2a2a2a;
  outline: none;
  cursor: pointer;
  margin: 0;
  border-radius: 0;
}
.ecp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  background: #fe28af;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: 0;
}
.ecp-range::-moz-range-thumb {
  width: 10px;
  height: 10px;
  background: #fe28af;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.ecp-range::-moz-range-progress {
  background: #fe28af;
  height: 4px;
}
/* Responsive — hide panel below lg */
@media (max-width: 991px) {
  .sassy-hero .container {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .eclipze-menu-panel {
    display: none !important;
  }
}

/* Status page */
.status-card { border-radius: 0 !important; }

/* Customer dashboard */
.customer-sidebar .nav-link { border-radius: 0 !important; }
.customer-sidebar .nav-link.active {
  background: rgba(254,40,175,0.1) !important;
  color: #fe28af !important;
  border-color: #fe28af !important;
}

/* Product page */
.product-page .btn { border-radius: 0 !important; }
.product-page .card { border-radius: 0 !important; }

/* All pages — text colors */
h1, h2, h3, h4, h5, h6 { color: #e4e4ea; }
.text-muted { color: #5c5f6a !important; }

/* Category cards */
.categories .card .card-body h4 {
  text-transform: uppercase !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
}

/* Pagination */
.page-link { border-radius: 0 !important; }

/* Cart page */
.cart-page .card { border-radius: 0 !important; }
.cart-page .btn { border-radius: 0 !important; }

/* =========================================
   BENTO FEATURES GRID
   ========================================= */
.eclipze-features {
  max-width: 1200px;
  position: relative;
}
/* Grid pattern behind features */
.eclipze-bento {
  position: relative;
  z-index: 1;
}
.eclipze-section-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: #e4e4ea;
  margin-bottom: 0.5rem;
}
.eclipze-section-sub {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* Grid */
.eclipze-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  auto-rows: minmax(180px, auto);
}

/* Cards base */
.eclipze-bento-card {
  background: #0f0f0f;
  border: 1px solid #1a1a1a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
}
.eclipze-bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(254,40,175,0.03) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.eclipze-bento-card:hover {
  border-color: rgba(254, 40, 175, 0.25);
  box-shadow: 0 0 40px rgba(254, 40, 175, 0.04);
}
.eclipze-bento-card:hover::after {
  opacity: 1;
}

/* Card sizes */
.eclipze-bento-wide { grid-column: span 2; }
.eclipze-bento-tall { grid-column: span 2; grid-row: span 2; min-height: 400px; }
.eclipze-bento-full { grid-column: span 4; }

/* Card header */
.ebc-header {
  padding: 1.25rem 1.5rem;
  background: #111;
  border-bottom: 1px solid #1a1a1a;
}
.ebc-header h3, .ebc-header-sm h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e4e4ea;
  margin-bottom: 0.4rem;
}
.ebc-header p, .ebc-header-sm p {
  font-size: 0.78rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}
.ebc-header-sm {
  padding: 1.25rem 1.5rem;
  background: #111;
  border-bottom: 1px solid #1a1a1a;
}

/* Card body */
.ebc-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  position: relative;
}

/* Payment marquee */
.ebc-payment-marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.ebc-payment-track {
  display: flex;
  gap: 0.75rem;
  animation: pmScroll 20s linear infinite;
  width: max-content;
}
@keyframes pmScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ebc-pm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #888;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Tall card (Simplicity) */
.eclipze-bento-tall {
  padding: 1.5rem;
}
.ebc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: rgba(254, 40, 175, 0.08);
  border: 1px solid rgba(254, 40, 175, 0.2);
  font-size: 0.7rem;
  font-weight: 600;
  color: #fe28af;
  margin-bottom: 1rem;
  width: fit-content;
}
.ebc-badge i {
  font-size: 0.65rem;
}
.ebc-big-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #e4e4ea;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.ebc-desc {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  max-width: 24rem;
}

/* Fake UI placeholder */
.ebc-visual-placeholder {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 1.5rem;
  overflow: hidden;
}
.ebc-fake-ui {
  width: 85%;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-bottom: none;
  padding: 0;
  transform: translateY(1.5rem);
  transition: transform 0.5s ease;
}
.eclipze-bento-tall:hover .ebc-fake-ui {
  transform: translateY(0.5rem);
}
.ebc-fake-bar {
  height: 28px;
  background: #181818;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  gap: 5px;
}
.ebc-fake-bar::before,
.ebc-fake-bar::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
}
.ebc-fake-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ebc-fake-line {
  height: 6px;
  background: #1e1e1e;
}
.ebc-fake-line.w75 { width: 75%; }
.ebc-fake-line.w50 { width: 50%; }
.ebc-fake-line.w90 { width: 90%; }
.ebc-fake-btn {
  width: 40%;
  height: 22px;
  background: rgba(254, 40, 175, 0.15);
  margin-top: 0.5rem;
}

/* Circles card (Safe & Quality) */
.eclipze-bento-card .ebc-circles {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
.ebc-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  transition: all 0.5s ease;
}
.eclipze-bento-card:hover .ebc-circle {
  border-color: rgba(254, 40, 175, 0.08);
  transform: scale(1.05);
}
.ebc-circle.c1 { width: 130px; height: 130px; }
.ebc-circle.c2 { width: 100px; height: 100px; }
.ebc-circle.c3 { width: 70px; height: 70px; }
.ebc-circle.c4 { width: 45px; height: 45px; }
.ebc-center-icon {
  width: 3rem;
  height: 3rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fe28af;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.eclipze-bento-card:hover .ebc-center-icon {
  transform: scale(1.1);
}
.ebc-footer-info {
  padding: 1rem 1.25rem;
  background: #111;
  border-top: 1px solid #1a1a1a;
}
.ebc-footer-info h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e4e4ea;
  margin-bottom: 0.25rem;
}
.ebc-footer-info p {
  font-size: 0.72rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Steps card (Instant Delivery) */
.ebc-steps {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 0;
}
.ebc-step-dot {
  width: 2.5rem;
  height: 2.5rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
.ebc-step-dot.sm {
  width: 2rem;
  height: 2rem;
  font-size: 0.7rem;
}
.eclipze-bento-card:hover .ebc-step-dot {
  border-color: rgba(254, 40, 175, 0.3);
  color: #fe28af;
}
.ebc-step-dot.done {
  color: #4ade80;
}
.eclipze-bento-card:hover .ebc-step-dot.done {
  border-color: rgba(74, 222, 128, 0.3);
  box-shadow: 0 0 15px rgba(74, 222, 128, 0.15);
  color: #4ade80;
}
.ebc-step-line {
  flex: 1;
  height: 1px;
  background: #2a2a2a;
  position: relative;
  overflow: hidden;
}
.ebc-step-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fe28af, transparent);
  transform: translateX(-100%);
  transition: transform 0s;
}
.eclipze-bento-card:hover .ebc-step-line::after {
  animation: stepShimmer 1.5s infinite;
}
@keyframes stepShimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Full width support card */
.eclipze-bento-full {
  padding: 2rem 2.5rem;
}
.ebc-support-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ebc-support-text {
  flex: 1;
}
.ebc-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.7rem;
  background: rgba(254, 40, 175, 0.08);
  border: 1px solid rgba(254, 40, 175, 0.2);
  font-size: 0.7rem;
  font-weight: 600;
  color: #fe28af;
  margin-bottom: 1rem;
}
.ebc-live-dot {
  width: 6px;
  height: 6px;
  background: #fe28af;
  border-radius: 50%;
  position: relative;
}
.ebc-live-dot::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #fe28af;
  opacity: 0.4;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.5); opacity: 0; }
}
.ebc-support-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: #fe28af;
  color: #080808;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.2s ease;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  flex-shrink: 0;
}
.ebc-support-btn:hover {
  background: #fec4ec;
  color: #080808;
}
.ebc-support-btn i {
  font-size: 1rem;
}

/* Hover glow on full card */
.eclipze-bento-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(254, 40, 175, 0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.eclipze-bento-full:hover::before {
  opacity: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .eclipze-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .eclipze-bento-full { grid-column: span 2; }
  .eclipze-bento-tall { grid-column: span 2; }
}
@media (max-width: 575px) {
  .eclipze-bento {
    grid-template-columns: 1fr;
  }
  .eclipze-bento-wide,
  .eclipze-bento-tall,
  .eclipze-bento-full { grid-column: span 1; }
  .ebc-support-inner {
    flex-direction: column;
    text-align: center;
  }
  .eclipze-bento-tall { min-height: 350px; }
}

/* Payment method icons */
.ebc-pm i {
  font-size: 1.4rem;
}
.ebc-pm {
  padding: 0.6rem 0.8rem !important;
}

/* Menu preview in Simplicity card */
.ebc-menu-preview {
  width: 85%;
  display: flex;
  background: #111;
  border: 1px solid #2a2a2a;
  border-bottom: none;
  transform: translateY(1.5rem);
  transition: transform 0.5s ease;
  font-size: 10px;
}
.eclipze-bento-tall:hover .ebc-menu-preview {
  transform: translateY(0.5rem);
}
.ebc-mp-sidebar {
  width: 80px;
  background: #0d0d0d;
  border-right: 1px solid #2a2a2a;
  padding: 8px 0;
  flex-shrink: 0;
}
.ebc-mp-nav {
  padding: 5px 10px;
  color: #555;
  border-left: 2px solid transparent;
}
.ebc-mp-nav.active {
  background: rgba(254,40,175,0.1);
  border-left-color: #fe28af;
  color: #e0b8d4;
}
.ebc-mp-main {
  flex: 1;
  min-width: 0;
}
.ebc-mp-topbar {
  padding: 6px 10px;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  gap: 2px;
}
.ebc-mp-rows {
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ebc-mp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #888;
}
.ebc-mp-check {
  width: 9px;
  height: 9px;
  border: 1px solid #444;
}
.ebc-mp-check.on {
  background: #fe28af;
  border-color: #fe28af;
}
.ebc-mp-slider {
  width: 50px;
  height: 3px;
  background: #2a2a2a;
}
.ebc-mp-slider-fill {
  width: 30%;
  height: 100%;
  background: #fe28af;
}