/* ============================================================
   PRODUCTS PAGE — bell-products-* styles
   ============================================================ */

.bell-con-boxed-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Video Hero --- */
.bell-products-video-hero {
    position: relative;
    width: 100%;
    background: #000;
    line-height: 0;
    margin-top: -30px;
}

.bell-products-video-hero__inner {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 82vh;
    overflow: hidden;
    background: #000;
}

.bell-products-video-hero__inner iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.bell-products-video-hero__overlay {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s;
}

.bell-products-video-hero__overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.bell-products-video-hero__play {
    width: 72px;
    height: 72px;
    background: rgba(253, 186, 49, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.bell-products-video-hero__overlay:hover .bell-products-video-hero__play {
    transform: scale(1.1);
    background: #fdba31;
}

.bell-products-video-hero__play svg {
    width: 28px;
    height: 28px;
    fill: #fff;
    margin-left: 4px;
}

/* --- Page heading row --- */
.bell-products-heading-row {
    background: #fff;
    padding: 1.5rem 0 0.5rem;
}

.bell-products-heading-row h1 {
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary, #1a1a2e);
    margin: 0;
    text-transform: uppercase;
}

/* --- Breadcrumb --- */
.bell-products-breadcrumb {
    background: #fff;
    padding: 0.5rem 0 1rem;
    font-size: 0.85rem;
    color: #666;
}

.bell-products-breadcrumb a {
    color: #666;
    text-decoration: none;
}

.bell-products-breadcrumb a:hover {
    color: var(--color-primary, #fdba31);
}

/* --- Category nav buttons --- */
.bell-products-nav {
    background: #f5f5f5;
    padding: 1rem 0;
    border-top: 1px solid #e0e0e0;
}

.bell-products-nav__row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bell-products-nav-btn {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: var(--color-primary, #fdba31);
    color: #000;
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.2s, color 0.2s;
}

.bell-products-nav-btn:hover {
    background: var(--color-secondary, #1a1a2e);
    color: #fff;
    text-decoration: none;
}

/* --- Industry heading (grey band) --- */
.bell-products-industry-header {
    background: #EBEBEB;
    border-top: 5px solid var(--color-primary, #fdba31);
    padding: 1.25rem 0;
}

.bell-products-industry-header h2 {
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0;
}

/* --- Section body --- */
.bell-products-section {
    background: #fff;
    padding: 2.5rem 0;
}

.bell-products-section--alt {
    background: #f5f5f5;
}

.bell-products-section h2 {
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary, #1a1a2e);
    text-transform: uppercase;
    margin: 0 0 1rem;
}

.bell-products-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text, #333);
    margin-bottom: 0.75rem;
}

.bell-products-section__grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.bell-products-section__grid--reverse {
    grid-template-columns: 2fr 3fr;
}

.bell-products-section__grid--reverse .bell-products-section__text {
    order: 2;
}

.bell-products-section__grid--reverse .bell-products-section__image {
    order: 1;
}

@media (max-width: 900px) {
    .bell-products-section__grid,
    .bell-products-section__grid--reverse {
        grid-template-columns: 1fr;
    }

    .bell-products-section__grid--reverse .bell-products-section__text,
    .bell-products-section__grid--reverse .bell-products-section__image {
        order: unset;
    }
}

.bell-products-section__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Action buttons inside sections --- */
.bell-products-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
}

.bell-products-btn {
    display: inline-block;
    padding: 0.6rem 1.1rem;
    background: var(--color-primary, #fdba31);
    color: #000;
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.2s, color 0.2s;
}

.bell-products-btn:hover {
    background: var(--color-secondary, #1a1a2e);
    color: #fff;
    text-decoration: none;
}

/* --- Back to top row --- */
.bell-products-back-top-row {
    background: #fff;
    padding: 0.75rem 0;
    text-align: center;
}

.bell-products-section--alt + .bell-products-back-top-row {
    background: #f5f5f5;
}

.bell-products-back-top {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.25rem;
    background: #e0e0e0;
    color: #333;
    font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s;
}

.bell-products-back-top:hover {
    background: #ccc;
    color: #000;
    text-decoration: none;
}

.bell-products-back-top svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

/* ── Group site: deeper pull-up so content sits behind the large Bell logo ── */
.site-group .bell-products-video-hero { margin-top: -90px; }
