/* Hero Mini — for store page */
.hero-mini {
    position: relative;
    overflow: hidden;
    padding: 60px 0 40px;
    background: linear-gradient(135deg,
        rgba(0,150,199,.15) 0%,
        rgba(15,29,53,0)   50%,
        rgba(0,180,216,.1) 100%),
        var(--surface);
    border-bottom: 1px solid var(--border);
}
.hero-mini-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .12;
    pointer-events: none;
}
.hero-mini-inner {
    position: relative;
    z-index: 1;
    text-align: center;
}
.hero-mini-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text);
}
.hero-mini-sub {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}
