/* =========================================================
   RESTORED SviSound HERO (адаптировано под новую разметку)
   ========================================================= */

/* ОБОЛОЧКА HERO — как старый .hero */
.svs-category-hero {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 0rem 1rem 1rem;
    border-bottom: 1px solid #444;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

/* 🔥 НАСТОЯЩИЙ overlay — как было через ::before */
.svs-category-hero .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(0,0,0,0.75);
}

/* ВНУТРЕННИЙ КОНТЕЙНЕР — как раньше */
.svs-category-hero .hero-inner {
    position: relative;
    z-index: 1;
    padding: 0rem 1rem 0.5rem;
}

/* Заголовок — как старый h3 */
.svs-category-hero-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: rgba(255,190,99,1);
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(0,0,0,0.7); /* читаемость */
}
.svs-hero-title-link {
    color: inherit;
    text-decoration: none;
}

.svs-hero-title-link:hover {
    opacity: 0.85;
}

/* Интро — как старый hero p */
.svs-category-hero-intro {
    margin-top: 0.3rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: #ccc;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}

/* ===== HERO MENU — steel buttons (как hero-buttons .btn) ===== */

/* HERO MENU — без кнопочных стилей */
.svs-category-hero-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.svs-category-hero-menu li {
    margin: 0;
    padding: 0;
}
/* =======================================
   SVI SOUND — UNIVERSAL STEEL BUTTON (FLAT)
   ======================================= */

.svs-steel-btn {
    display: inline-block;
    padding: 5px 10px;                 /* уменьшенные интервалы */
    border-radius: 6px;

    background: rgba(0,0,0,0.45);      /* плоская заливка */
    border: 1px solid rgba(255,255,255,0.35);

    color: #fff;
    font-size: 0.92rem;
    font-weight: 500;

    text-decoration: none;

    transition:
        background 0.15s ease,
        border-color 0.15s ease;
}

.svs-steel-btn:hover {
    background: rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.55);
}

.svs-steel-btn:active {
    background: rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.45);
}

/* Активная (медная плоская) */
.svs-steel-btn-active {
    background: rgba(255,190,99,0.35);      /* медная плоская */
    border: 1px solid rgba(255,190,99,0.5);  /* медная рамка */
    color: #ddd;
}

/* HERO-specific size tuning */
.svs-category-hero .svs-steel-btn {
    padding: 5px 10px;   /* тоже уменьшено */
    font-size: 0.95rem;
}

/* ===========================================
   Testimonial Hero Tag Style
=========================================== */

.testimonial-tags-row {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}


