/* Hero demo card 3D tilt, ported verbatim from the template's own
   #dashboard rule: starts tilted/scaled-down in perspective, GSAP
   ScrollTrigger (in layout.blade.php) animates it flat as the hero
   scrolls past. */
#dashboard {
    transform: perspective(1200px) translateX(0px) translateY(12px) scale(0.8) rotate(0deg) rotateX(70deg);
    transition: transform 0.5s;
}

/* Functional classes this page's real (non-decorative) JS toggles --
   the pixaai template has no equivalent for these, since it has no
   multi-panel demo/category-chip concept. Colors match the template's own
   CSS custom properties (index.css) so these blend in, not bolted on. */

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 9999px;
    border: 1px solid var(--hr-color);
    background-color: var(--bg-color);
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.chip-active {
    border-color: #10b981;
    background-color: #10b981;
    color: #000;
}

.demo-tab {
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--faq-content-text);
    transition: color 0.2s, background-color 0.2s;
}

.demo-tab.is-active {
    background-color: var(--bg-color);
    color: var(--primary-text-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.store-demo-stage {
    position: relative;
}
