/* ═══════════════════════════════════════════════════════════
   MinerCore — Single Product Hero Band
   Compact dark strip: brand eyebrow + product title + spec pills
   Always compact. Full-width. Zero overflow.
   ═══════════════════════════════════════════════════════════ */

.miner-product-hero {
    position: relative;
    width: 100%;
    background-color: #060a12;
    background-image:
        linear-gradient(180deg, rgba(6, 10, 18, 0.92) 0%, rgba(3, 6, 12, 0.97) 100%),
        var(--mc-hero-pages-bg, url('../images/hosted-datacenter-aisle.jpg'));
    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0 20px;
    color: #ffffff;
    overflow: hidden;
    box-sizing: border-box;
}

.miner-product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,0.5), transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, rgba(0,0,0,0.5), transparent);
}

.miner-product-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.miner-product-hero__copy {
    flex: 1 1 0;
    min-width: 0;
}

/* Eyebrow (brand name) */
.miner-product-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-accent, #38bdf8);
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 4px;
    line-height: 1.2;
}

.miner-product-hero__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-accent, #38bdf8);
    box-shadow: 0 0 7px var(--color-accent, #38bdf8);
    flex-shrink: 0;
    display: inline-block;
}

/* Product Title */
.miner-product-hero__title {
    margin: 0 0 8px;
    font-size: var(--text-3xl) !important;
    font-weight: var(--fw-semibold) !important;
    color: #ffffff !important;
    line-height: var(--lh-tight) !important;
    letter-spacing: -0.025em;
    word-break: break-word;
}

/* Spec Pills Row */
.miner-product-hero__specs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
}

.miner-hero-spec-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #cbd5e1;
    font-size: var(--text-xs);
    font-weight: var(--fw-regular);
    white-space: nowrap;
    backdrop-filter: blur(4px);
    line-height: 1.4;
}

.miner-hero-spec-pill svg {
    color: var(--color-accent, #38bdf8);
    flex-shrink: 0;
}

.miner-hero-spec-pill--eff {
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.08);
}

.miner-hero-spec-pill--facility svg {
    color: #34d399 !important;
}

.miner-hero-spec-pill--rate {
    color: #6ee7b7;
    background: rgba(16, 185, 129, 0.09);
    border-color: rgba(16, 185, 129, 0.25);
}

.miner-product-hero__status {
    flex: 0 0 auto;
}

.miner-hero-stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.miner-hero-stock-badge--instock {
    background: rgba(16, 185, 129, 0.14);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #34d399;
}

.miner-hero-stock-badge--preorder {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.32);
    color: #fbbf24;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .miner-product-hero {
        padding: 16px 0 14px;
    }
    .miner-product-hero__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .miner-product-hero__status {
        display: none;
    }
}

@media (max-width: 480px) {
    .miner-product-hero {
        padding: 12px 0 10px;
    }
    .miner-product-hero__title {
        font-size: var(--text-2xl) !important;
        margin-bottom: 6px;
    }
    .miner-hero-spec-pill:nth-child(n+3) {
        display: none;
    }
}
