/* ==========================================================================
   ELETROBOOM VORTEX - 3D 360° VIEWER, BENTO GRID & SHADCN UI COMPONENTS
   ========================================================================== */

/* 3D & 360 Experience Container */
.eb-3d-experience {
  position: relative;
  background: radial-gradient(circle at 50% 40%, #161D2B 0%, #0B0E14 100%);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  margin: 40px 0;
}

.eb-3d-canvas-wrapper {
  position: relative;
  width: 100%;
  height: 540px;
  cursor: grab;
  user-select: none;
  touch-action: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-3d-canvas-wrapper:active {
  cursor: grabbing;
}

/* 3D Stage Elements */
.eb-3d-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-3d-turntable {
  position: relative;
  width: 440px;
  height: 440px;
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-3d-object-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, 0.75));
  pointer-events: none;
  transition: filter 0.3s ease;
}

/* Floor Pedestal Glow */
.eb-3d-pedestal {
  position: absolute;
  bottom: 40px;
  width: 380px;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(64, 128, 124, 0.35) 0%, rgba(64, 128, 124, 0.08) 45%, transparent 75%);
  border-radius: 50%;
  transform: rotateX(75deg);
  pointer-events: none;
}

/* 3D Interactive Hotspot Beacons */
.eb-3d-beacon {
  position: absolute;
  z-index: 20;
  cursor: pointer;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-beacon-dot {
  width: 16px;
  height: 16px;
  background: #123836;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(64, 128, 124, 0.9);
  position: relative;
  z-index: 2;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-3d-beacon:hover .eb-beacon-dot {
  transform: scale(1.3);
  background: #40807C;
}

.eb-beacon-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(64, 128, 124, 0.4);
  animation: ebBeaconPulse 2s infinite cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

@keyframes ebBeaconPulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Shadcn-Style Hotspot Popover Tooltip */
.eb-3d-tooltip {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 12px 16px;
  width: 260px;
  color: #FFFFFF;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 30;
}

.eb-3d-beacon:hover .eb-3d-tooltip,
.eb-3d-beacon.active .eb-3d-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.eb-tooltip-tag {
  font-size: 0.68rem;
  font-weight: 800;
  color: #40807C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.eb-tooltip-title {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.eb-tooltip-desc {
  font-size: 0.78rem;
  color: #94A3B8;
  line-height: 1.4;
}

/* 360 HUD Controls Overlay */
.eb-3d-hud {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 25;
}

.eb-3d-hud-pill {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
  color: #E2E8F0;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.eb-3d-btn-group {
  display: flex;
  gap: 8px;
  pointer-events: auto;
}

.eb-3d-btn {
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  color: #E2E8F0;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.eb-3d-btn:hover,
.eb-3d-btn.active {
  background: #123836;
  border-color: #123836;
  color: #FFFFFF;
  box-shadow: 0 0 20px rgba(64, 128, 124, 0.5);
}

/* ==========================================================================
   SHADCN-STYLE BENTO GRID (PRODUCT MASTER HIGHLIGHTS)
   ========================================================================== */
.eb-bento-section {
  padding: 80px 0;
}

.eb-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.eb-bento-card {
  background: #FFFFFF;
  border: 1px solid var(--eb-border);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--eb-shadow-sm);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.eb-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--eb-shadow-lg);
  border-color: rgba(64, 128, 124, 0.4);
}

.eb-bento-card.dark {
  background: linear-gradient(145deg, #111827 0%, #0A0D14 100%);
  border-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.eb-bento-col-8 { grid-column: span 8; }
.eb-bento-col-4 { grid-column: span 4; }
.eb-bento-col-6 { grid-column: span 6; }
.eb-bento-col-12 { grid-column: span 12; }

@media (max-width: 992px) {
  .eb-bento-col-8,
  .eb-bento-col-4,
  .eb-bento-col-6 {
    grid-column: span 12;
  }
}

.eb-bento-hero-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.eb-bento-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(64, 128, 124, 0.1);
  color: #123836;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.eb-bento-card.dark .eb-bento-badge {
  background: rgba(64, 128, 124, 0.2);
  color: #40807C;
}

.eb-bento-title {
  font-family: var(--eb-font-title);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.eb-bento-desc {
  color: var(--eb-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.eb-bento-card.dark .eb-bento-desc {
  color: #94A3B8;
}

/* Metric Display Inside Bento */
.eb-bento-stat {
  font-family: var(--eb-font-title);
  font-size: 3.2rem;
  font-weight: 900;
  color: #123836;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   INTERACTIVE COMPARISON MATRIX (ELETROBOOM VS CONCORRENTES)
   ========================================================================== */
.eb-comparison-wrap {
  margin: 60px 0;
  background: #FFFFFF;
  border: 1px solid var(--eb-border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--eb-shadow-sm);
}

.eb-comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
}

.eb-comparison-table th,
.eb-comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--eb-border);
}

.eb-comparison-table th {
  font-family: var(--eb-font-title);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--eb-text-dark);
}

.eb-comparison-table .eb-col-eletroboom {
  background: rgba(64, 128, 124, 0.04);
  border-left: 2px solid #123836;
  border-right: 2px solid #123836;
  font-weight: 700;
}

.eb-comparison-table th.eb-col-eletroboom {
  border-top: 2px solid #123836;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: #123836;
  font-size: 1.15rem;
}

.eb-comparison-table tr:last-child .eb-col-eletroboom {
  border-bottom: 2px solid #123836;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.eb-check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #059669;
  color: #FFFFFF;
  margin-right: 8px;
}

.eb-cross-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #CBD5E1;
  color: #64748B;
  margin-right: 8px;
}


/* ==========================================================================
   ELETROBOOM VORTEX - AWWWARDS-TIER HERO & DOUBLE-BEZEL DESIGN SYSTEM
   ========================================================================== */

/* 1. Cinematic Hero Section */
.eb-hero-awwwards {
  position: relative;
  background: #04100F;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eb-hero-stage-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 88vh;
  min-height: 88dvh;
  display: flex;
}

.eb-hero-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(1.02);
  z-index: 1;
  display: flex;
  align-items: center;
}

.eb-hero-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Staged Background Picture */
.eb-hero-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.eb-hero-bg-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Atmospheric Vignette & Contrast Gradients */
.eb-hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 16, 15, 0.96) 0%, rgba(4, 16, 15, 0.85) 45%, rgba(4, 16, 15, 0.25) 75%, transparent 100%);
}

@media (max-width: 768px) {
  .eb-hero-vignette {
    background: linear-gradient(180deg, rgba(4, 16, 15, 0.96) 0%, rgba(4, 16, 15, 0.88) 50%, rgba(4, 16, 15, 0.7) 75%, rgba(4, 16, 15, 0.98) 100%);
  }
}

/* Hero Content Grid */
.eb-hero-content-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 60px 70px 100px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .eb-hero-content-container {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 120px;
  }
}

/* Live Typography & Badges */
.eb-badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(45, 212, 191, 0.12);
  color: #2DD4BF;
  border: 1px solid rgba(45, 212, 191, 0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(45, 212, 191, 0.15);
}

.eb-pulse-beacon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2DD4BF;
  box-shadow: 0 0 10px #2DD4BF;
  animation: ebPulse 1.8s infinite;
}

@keyframes ebPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(45, 212, 191, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.eb-hero-title-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.eb-text-gradient-cyan {
  background: linear-gradient(135deg, #2DD4BF 0%, #38BDF8 60%, #99F6E4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eb-hero-desc-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 24px;
  max-width: 560px;
}

/* Micro-spec Chips */
.eb-hero-chips-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.eb-chip-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #E2E8F0;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.eb-chip-item.highlight {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.35);
  color: #2DD4BF;
}

/* Price Box */
.eb-hero-price-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  max-width: fit-content;
  backdrop-filter: blur(12px);
}

.eb-hero-price-old {
  font-size: 0.92rem;
  color: #64748B;
  text-decoration: line-through;
  font-weight: 500;
}

.eb-hero-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eb-hero-price-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #2DD4BF;
}

.eb-hero-pix-badge {
  background: #10B981;
  color: #022C22;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

.eb-hero-installments {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Magnetic Button-in-Button CTA */
.eb-hero-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.eb-btn-magnetic-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #14B8A6 0%, #0D9488 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.eb-btn-magnetic-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(20, 184, 166, 0.5);
  color: #FFFFFF;
}

.eb-btn-circle-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-btn-magnetic-primary:hover .eb-btn-circle-arrow {
  transform: translate(3px, -3px);
  background: rgba(255, 255, 255, 0.35);
}

.eb-btn-magnetic-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.eb-btn-magnetic-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Interactive Hotspot Beacons on Product */
.eb-hero-interactive-zone {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .eb-hero-interactive-zone {
    min-height: 340px;
  }
}

.eb-hotspot-pin {
  position: absolute;
  z-index: 25;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.eb-hotspot-radar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(45, 212, 191, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 212, 191, 0.6);
  box-shadow: 0 0 16px rgba(45, 212, 191, 0.5);
  animation: ebHotspotPulse 2s infinite;
  transition: transform 0.3s ease;
}

.eb-hotspot-pin:hover .eb-hotspot-radar {
  transform: scale(1.25);
  background: rgba(45, 212, 191, 0.4);
}

.eb-hotspot-core {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 8px #2DD4BF;
}

@keyframes ebHotspotPulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 12px rgba(45, 212, 191, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.eb-hotspot-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(4, 16, 15, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(45, 212, 191, 0.4);
  padding: 8px 14px;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.eb-hotspot-pin:hover .eb-hotspot-tooltip,
.eb-hotspot-pin.active .eb-hotspot-tooltip {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Floating Glass Spec Badges */
.eb-hero-floating-glass-pill {
  position: absolute;
  z-index: 20;
  background: rgba(4, 20, 18, 0.85);
  border: 1px solid rgba(45, 212, 191, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 8px 14px;
  border-radius: 12px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.eb-hero-floating-glass-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 212, 191, 0.6);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(45, 212, 191, 0.2);
}

/* Lateral Navigation Arrows (< and >) */
.eb-hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 45;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(4, 20, 18, 0.82);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.55);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-hero-nav-arrow:hover {
  background: #14B8A6;
  border-color: #2DD4BF;
  color: #022C22;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 34px rgba(20, 184, 166, 0.45);
}

.eb-hero-arrow-prev {
  left: 16px;
}

.eb-hero-arrow-next {
  right: 16px;
}

@media (max-width: 900px) {
  .eb-hero-nav-arrow {
    display: none !important;
  }
}

/* Hero Carousel Controls (Bottom Tabs) */
.eb-hero-tabs-bar {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
}

.eb-hero-tabs-container {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 16, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 6px;
  border-radius: 999px;
  max-width: 95vw;
  overflow-x: auto;
}

.eb-hero-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  color: #94A3B8;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.eb-hero-tab-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
}

.eb-hero-tab-btn.active {
  color: #FFFFFF;
  background: rgba(20, 184, 166, 0.25);
  border: 1px solid rgba(45, 212, 191, 0.4);
}

.eb-hero-tab-progress {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #64748B;
  transition: all 0.3s ease;
}

.eb-hero-tab-btn.active .eb-hero-tab-progress {
  background: #2DD4BF;
  box-shadow: 0 0 8px #2DD4BF;
}

/* 2. Interactive Anatomy & Engineering Section */
.eb-anatomy-section {
  position: relative;
  background: #020908;
  padding: 100px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eb-section-header-awwwards {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.eb-section-title-large {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.eb-anatomy-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1024px) {
  .eb-anatomy-grid {
    grid-template-columns: 1fr;
  }
}

.eb-spec-card-bezel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  margin-bottom: 20px;
}

.eb-spec-card-bezel:hover,
.eb-spec-card-bezel.active {
  border-color: rgba(45, 212, 191, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(45, 212, 191, 0.12);
}

.eb-spec-card-core {
  background: #071917;
  border-radius: 16px;
  padding: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.06);
}

.eb-spec-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.12);
  border: 1px solid rgba(45, 212, 191, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2DD4BF;
  margin-bottom: 14px;
}

.eb-spec-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.eb-spec-card-desc {
  font-size: 0.88rem;
  color: #94A3B8;
  line-height: 1.5;
}

.eb-anatomy-center-visual {
  position: relative;
  text-align: center;
  padding: 20px;
}

.eb-anatomy-pedestal-glow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.4) 0%, rgba(45, 212, 191, 0.08) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.eb-anatomy-cutout-img {
  max-width: 95%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 3. Double-Bezel Bento Grid of Authentic Products */
.eb-bento-section {
  position: relative;
  background: #04100F;
  padding: 100px 24px;
}

.eb-bento-grid-catalog {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .eb-bento-grid-catalog {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .eb-bento-grid-catalog {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.eb-bento-featured-span2 {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .eb-bento-featured-span2 {
    grid-column: span 1;
  }
}

/* Double-Bezel Hardware Card Architecture */
.eb-doppel-bezel-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 10px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.eb-doppel-bezel-card:hover {
  border-color: rgba(45, 212, 191, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 212, 191, 0.1);
}

.eb-doppel-core {
  background: #081B19;
  border-radius: 20px;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.eb-card-product-stage {
  position: relative;
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: radial-gradient(circle at 50% 60%, rgba(45, 212, 191, 0.12) 0%, transparent 70%);
  border-radius: 14px;
  overflow: hidden;
  padding: 12px;
}

.eb-bento-featured-span2 .eb-card-product-stage {
  height: 320px;
}

.eb-card-product-stage picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.eb-card-product-img {
  max-width: 92%;
  max-height: 210px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-bento-featured-span2 .eb-card-product-img {
  max-height: 275px;
}

.eb-doppel-bezel-card:hover .eb-card-product-img {
  transform: translateY(-6px) scale(1.04);
}

.eb-card-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #10B981;
  color: #022C22;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  z-index: 5;
}

.eb-card-rating-top {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FBBF24;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.eb-card-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}

.eb-card-title:hover {
  color: #2DD4BF;
}

.eb-card-spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.eb-tag-micro {
  font-size: 0.74rem;
  font-weight: 700;
  color: #94A3B8;
  background: rgba(255, 255, 255, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
}

.eb-card-pricing-lockup {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eb-card-price-old {
  font-size: 0.82rem;
  color: #64748B;
  text-decoration: line-through;
}

.eb-card-price-pix {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: #2DD4BF;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
}

.eb-card-price-installments {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 16px;
}

.eb-card-actions-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.eb-btn-card-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #14B8A6 0%, #0F766E 100%);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.eb-btn-card-add:hover {
  background: linear-gradient(135deg, #2DD4BF 0%, #14B8A6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(20, 184, 166, 0.4);
  color: #FFFFFF;
}

.eb-btn-card-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

.eb-btn-card-details:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: #FFFFFF;
}

/* 4. Trust & Factory Benefits Section */
.eb-trust-section {
  position: relative;
  background: #020908;
  padding: 80px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eb-trust-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .eb-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .eb-trust-grid {
    grid-template-columns: 1fr;
  }
}

.eb-trust-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
}

.eb-trust-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-4px);
}

.eb-trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.25);
  color: #2DD4BF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eb-trust-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.eb-trust-desc {
  font-size: 0.85rem;
  color: #94A3B8;
  line-height: 1.5;
}


/* Mobile Viewport Refinements */
@media (max-width: 1024px) {
  .eb-hero-awwwards {
    min-height: auto;
    padding-top: 4px !important;
    padding-bottom: 45px;
  }

  .eb-hero-stage-track {
    min-height: auto;
    position: relative;
  }

  .eb-hero-slide-item {
    position: relative;
    display: none;
    min-height: auto;
    transform: none;
    opacity: 0;
  }

  .eb-hero-slide-item.active {
    display: block;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .eb-hero-content-container {
    display: flex;
    flex-direction: column;
    padding: 4px 16px 60px !important;
    gap: 12px;
  }

  .eb-hero-col-info {
    display: flex;
    flex-direction: column;
  }

  .eb-badge-eyebrow {
    font-size: 0.72rem;
    padding: 4px 10px;
    margin-bottom: 6px !important;
    align-self: flex-start;
  }

  .eb-hero-title-main {
    font-size: 1.45rem !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
  }

  .eb-hero-desc-text {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
    color: #94A3B8 !important;
  }

  .eb-hero-chips-wrap {
    gap: 5px;
    margin-bottom: 12px !important;
  }

  .eb-chip-item {
    font-size: 0.7rem;
    padding: 3px 8px;
  }

  /* Slide 0 Lifestyle Image is background; hide empty interactive zone to prevent huge gap */
  .eb-hero-slide-item[data-slide-index="0"] .eb-hero-interactive-zone {
    display: none !important;
  }

  /* Centered Product Stage on Mobile for Slides 1-4 with Soft Pedestal Glow */
  .eb-hero-interactive-zone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 4px 0 10px;
    position: relative;
  }

  .eb-hero-bg-picture img {
    object-fit: cover !important;
    object-position: center bottom !important;
    filter: brightness(0.68) !important;
  }

  .eb-hero-nav-arrow {
    display: none !important;
  }

  .eb-hero-stage-visual-wrap {
    width: 100% !important;
    max-width: 260px !important;
    height: 180px !important;
    margin: 0 auto !important;
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .eb-hero-stage-img {
    max-width: 90% !important;
    max-height: 170px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 20px rgba(45, 212, 191, 0.15)) !important;
    margin: 0 auto !important;
    display: block !important;
  }

  .eb-hero-pedestal-ambient {
    width: 200px !important;
    height: 40px !important;
    bottom: -10px !important;
  }

  /* Clumsy Hotspots and Bulky Floating Pills Hidden on Mobile for Ultra-Clean Focus */
  .eb-hotspot-pin {
    display: none !important;
  }

  .eb-hero-floating-glass-pill {
    display: none !important;
  }

  /* Compact Luxury Price Box */
  .eb-hero-price-panel {
    width: 100%;
    max-width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    margin-bottom: 14px;
    background: rgba(13, 23, 22, 0.85);
    border: 1px solid rgba(45, 212, 191, 0.2);
  }

  .eb-hero-price-old {
    font-size: 0.74rem;
    color: #94A3B8;
  }

  .eb-hero-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 3px 0 4px;
  }

  .eb-hero-price-val {
    font-size: 1.35rem !important;
    font-weight: 900 !important;
    color: #2DD4BF !important;
  }

  .eb-hero-pix-badge {
    font-size: 0.68rem;
    padding: 2px 7px;
  }

  .eb-hero-installments {
    font-size: 0.74rem;
    color: #94A3B8;
  }

  /* Action CTA Buttons */
  .eb-hero-actions-row {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .eb-btn-magnetic-primary {
    width: 100%;
    height: 46px;
    font-size: 0.88rem;
    font-weight: 800;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
  }

  .eb-btn-magnetic-secondary {
    width: 100%;
    height: 44px;
    font-size: 0.82rem;
    font-weight: 700;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
  }

  .eb-hero-tabs-bar {
    bottom: 8px;
  }

  .eb-hero-tabs-container {
    padding: 3px;
    gap: 3px;
  }

  .eb-hero-tab-btn {
    font-size: 0.72rem;
    padding: 5px 8px;
  }
}

/* ==========================================================================
   AGENCY-GRADE POLISH: HERO PRODUCT STAGE, REVIEWS CAROUSEL & HUMANIZED ASSETS
   ========================================================================== */

/* 1. Hero Product Stage with Rock-Solid Pin Anchoring */
.eb-hero-stage-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
  height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.eb-hero-stage-img {
  max-width: 88%;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 40px rgba(45, 212, 191, 0.15));
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.eb-hero-pedestal-ambient {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 90px;
  background: radial-gradient(ellipse at center, rgba(45, 212, 191, 0.35) 0%, rgba(20, 184, 166, 0.12) 40%, transparent 75%);
  border-radius: 50%;
  filter: blur(14px);
  z-index: 1;
  pointer-events: none;
}

/* 2. Shimmering Brand Light passing through letters */
.eb-brand-shimmer-text {
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #FFFFFF 25%,
    #2DD4BF 45%,
    #38BDF8 55%,
    #FFFFFF 75%,
    #FFFFFF 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ebBrandGlint 5s ease-in-out infinite;
  display: inline-block;
}

@keyframes ebBrandGlint {
  0% {
    background-position: 100% center;
  }
  100% {
    background-position: -100% center;
  }
}

/* 3. Humanized Chef Presentation with Bottom Alpha Fade */
.eb-anatomy-chef-humanized {
  max-width: 100%;
  height: auto;
  border-radius: 28px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0,0,0,0.5) 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 65%, rgba(0,0,0,0.5) 85%, transparent 100%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.85));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-anatomy-chef-humanized:hover {
  transform: translateY(-4px) scale(1.02);
}

/* 4. Luxury Dark Double-Bezel Trust Matrix */
.eb-trust-section {
  position: relative;
  background: #020908 !important;
  padding: 60px 24px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.eb-trust-card {
  background: rgba(14, 28, 26, 0.6) !important;
  border: 1px solid rgba(45, 212, 191, 0.18) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-radius: 20px !important;
  padding: 22px 24px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.06) !important;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.eb-trust-card:hover {
  background: rgba(18, 38, 35, 0.8) !important;
  border-color: rgba(45, 212, 191, 0.5) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 24px rgba(45, 212, 191, 0.15) !important;
}

/* 5. Luxury Reviews Carousel with Tabs */
.eb-reviews-carousel-wrapper {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.eb-reviews-carousel-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 8px 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.eb-reviews-carousel-track::-webkit-scrollbar {
  display: none;
}

.eb-reviews-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4, 20, 18, 0.9);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.eb-reviews-nav-btn:hover {
  background: #14B8A6;
  border-color: #2DD4BF;
  color: #022C22;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 30px rgba(20, 184, 166, 0.45);
}

.eb-reviews-nav-btn.prev {
  left: 0;
}

.eb-reviews-nav-btn.next {
  right: 0;
}

.eb-master-review-card {
  flex: 0 0 380px;
  max-width: 380px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  .eb-reviews-carousel-wrapper {
    padding: 0 16px;
  }
  .eb-reviews-nav-btn {
    display: none;
  }
  .eb-master-review-card {
    flex: 0 0 85vw;
    max-width: 85vw;
    padding: 20px;
  }
}

/* Exploded CAD Specs 4-Col Grid Responsiveness */
@media (max-width: 1024px) {
  .eb-exploded-specs-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

@media (max-width: 580px) {
  .eb-exploded-specs-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
}
