/* ================================================================
   Category Page Hero — shared styles (cat-hero.css)
   ================================================================ */

.cat-page-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 180px; /* Absolutely forces content below the navbar */
    padding-bottom: 80px;
}
.cat-page-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 8s ease;
}
.cat-page-hero:hover .cat-page-hero-img {
    transform: scale(1.0);
}
.cat-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(11,19,43,0.72) 0%,
        rgba(11,19,43,0.52) 55%,
        rgba(11,19,43,0.88) 100%);
}
.cat-page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 700px;
}
.cat-page-hero-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(212,175,55,0.18);
    border: 1px solid rgba(212,175,55,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: #D4AF37;
}
.cat-page-hero-eyebrow {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #D4AF37;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.cat-page-hero-eyebrow::before,
.cat-page-hero-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: #D4AF37;
    opacity: 0.6;
}
.cat-page-hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0,0,0,0.45);
    letter-spacing: -0.5px;
}
.cat-page-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.72);
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.75;
}
.cat-page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.48);
    margin-bottom: 24px;
}
.cat-page-hero-breadcrumb a {
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.2s;
}
.cat-page-hero-breadcrumb a:hover { color: #D4AF37; }
.cat-page-hero-breadcrumb .crumb-active { color: #D4AF37; }
.cat-page-hero-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.cat-hero-tab {
    padding: 10px 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: all 0.3s;
    display: inline-block;
}
.cat-hero-tab-active {
    background: #D4AF37;
    color: #0B132B;
    box-shadow: 0 4px 16px rgba(212,175,55,0.35);
}
.cat-hero-tab-inactive {
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}
.cat-hero-tab-inactive:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
}
.cat-page-hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #D4AF37 40%, transparent 100%);
    z-index: 11;
}
