/* =========================================================
   ACCESSORIES HERO - Enhanced text visibility
   ========================================================= */
.hero-accessories {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.hero-accessories .hero-bg {
    position: absolute;
    inset: 0;
    background: url("/assets/img/hero/accessories-hero.jpg") center/cover no-repeat;
    z-index: 0;
}

.hero-accessories .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .70), rgba(0, 0, 0, .80));
    z-index: 1;
}

.hero-accessories .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 16px;
}

.hero-accessories h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    margin-bottom: 18px;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0, 0, 0, .9);
    letter-spacing: 1.5px;
    color: #ffffff;
}

.hero-accessories .hero-lead {
    font-size: clamp(17px, 2.4vw, 24px);
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 0 3px 8px rgba(0, 0, 0, .8);
    font-weight: 500;
    opacity: 0.98;
}

/* Mobile responsive */
@media (max-width: 900px) {
    .hero-accessories {
        min-height: 40vh;
    }

    .hero-accessories h1 {
        font-size: clamp(28px, 6vw, 36px);
        margin-bottom: 12px;
    }

    .hero-accessories .hero-lead {
        font-size: clamp(15px, 4vw, 18px);
    }
}