/* =============================================================
   PRODUCT CATEGORY HEROES — css/category-heroes.css
   Loaded on all product category pages that have a hero defined
   =============================================================
   Shared hero styles for: binder, laminator, note-counter,
   paper-shredder, time-attendance-machine, safe-box,
   perforator, coin-counter
   ============================================================= */

.cat-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #001e3c 0%, #0073aa 60%, #00838f 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.cat-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(0, 20, 50, 0.72) 0%,
        rgba(0, 80, 120, 0.5) 100%
    );
    z-index: 1;
}

.cat-hero-inner {
    position: relative;
    z-index: 2;
    padding: 64px 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cat-hero-inner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.cat-hero-inner p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cat-hero {
        min-height: 260px;
    }

    .cat-hero-inner h1 {
        font-size: 1.8rem;
    }

    .cat-hero-inner {
        padding: 48px 16px;
    }
}

@media (max-width: 480px) {
    .cat-hero-inner h1 {
        font-size: 1.5rem;
    }
}
