/* ==========================================================================
   CHECK PLEASE! - SHOWCASE (REAL PRODUCT MOCKUPS & INTERFACE)
   Integrated into Hero Section: Desktop POS Window Frame with Tab Switcher
   ========================================================================== */

.hero-showcase-wrapper {
  margin-top: 0;
  width: 100%;
  scroll-margin-top: 85px;
}

/* Navigation Controls - Centered Bar with Left/Right Arrows & Dots */
.showcase-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
  width: 100%;
}

.showcase-arrow-btn {
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-flat);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  touch-action: manipulation;
}

.showcase-arrow-btn:hover {
  background: var(--app-navy-primary);
  color: #ffffff;
  border-color: var(--app-navy-primary);
  box-shadow: var(--shadow-card);
}

.showcase-dots-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  padding: 4px 0;
}

.showcase-dot {
  width: 12px;
  height: 12px;
  background: #cbd5e1;
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  display: inline-block;
  outline: none;
  touch-action: manipulation;
}

.showcase-dot:hover {
  background: #94a3b8;
  border-color: #64748b;
}

.showcase-dot.active {
  background: var(--app-navy-primary);
  border-color: var(--app-navy-primary);
  width: 32px;
}

/* Window Frame - Native Desktop Window (Full container width) */
.showcase-window {
  background: #0e1726;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-card);
  box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.28), 0 0 0 1px rgba(15, 23, 42, 0.08);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.showcase-window-bar {
  background: #0f172a;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  border-bottom: 1px solid #1e293b;
  user-select: none;
}

.window-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.window-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  display: inline-block;
}

.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #f59e0b; }
.window-dot.green { background: #10b981; }

.window-title-bar {
  font-family: var(--font-main);
  font-size: 0.825rem;
  font-weight: 600;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 8px;
  flex-grow: 1;
}

/* Panels & High-Resolution Mockup Images */
.showcase-panel {
  display: none !important;
  background: #0e1726;
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.showcase-panel.active {
  display: block !important;
  animation: panelFadeIn 0.2s ease-in-out;
}

@keyframes panelFadeIn {
  from { opacity: 0.88; }
  to { opacity: 1; }
}

.showcase-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border: 0;
  margin: 0;
  padding: 0;
  background-color: #f8fafc;
}

/* Mobile & Tablet Responsive */
@media (max-width: 768px) {
  .showcase-window-bar {
    padding: 10px 14px;
    gap: 8px;
  }
  .window-title-bar {
    font-size: 0.72rem;
  }
  .showcase-nav-bar {
    gap: 12px;
    margin-top: 14px;
  }
  .showcase-dot {
    width: 10px;
    height: 10px;
  }
  .showcase-dot.active {
    width: 24px;
  }
}
