/* ══════════════════════════════════════════════════════════
   EventFab "Lumina" Dark Design System
   Source: stitch_modern_led_wall_redesign (DESIGN.md)
   Loaded site-wide AFTER general.css/custom.css — selectors
   are body-prefixed to outrank template-part inline styles.
   ══════════════════════════════════════════════════════════ */

:root {
    /* Surfaces (tonal elevation — no drop shadows) */
    --ef-surface: #131313;
    --ef-surface-deep: #080808;
    --ef-surface-lowest: #0e0e0e;
    --ef-surface-low: #1c1b1b;
    --ef-surface-container: #201f1f;
    --ef-surface-high: #2a2a2a;
    --ef-surface-highest: #353534;
    --ef-glass: rgba(26, 26, 26, 0.7);

    /* Brand accent — CTAs and active states ONLY */
    --ef-yellow: #ece900;
    --ef-yellow-dim: #cfcc00;
    --ef-on-yellow: #1d1d00;

    /* Text */
    --ef-text: #ffffff;
    --ef-text-body: #e5e2e1;
    --ef-text-secondary: #c8c6c5;
    --ef-text-dim: #a1a1a1;

    /* Lines */
    --ef-border: #2a2a2a;

    /* Type */
    --ef-font: 'Space Grotesk', 'Helvetica Neue', Arial, sans-serif;

    /* Shape */
    --ef-radius: 0.5rem;
    --ef-radius-lg: 1rem;

    /* Rhythm */
    --ef-section-gap: 120px;
}

/* ── Base ─────────────────────────────────────────────── */

html { background: var(--ef-surface); }

body.non-elementor-page {
    font-family: var(--ef-font);
    background: var(--ef-surface);
    color: var(--ef-text-body);
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

body.non-elementor-page h1,
body.non-elementor-page h2,
body.non-elementor-page h3,
body.non-elementor-page h4,
body.non-elementor-page h5,
body.non-elementor-page h6 {
    font-family: var(--ef-font);
    color: var(--ef-text);
    font-weight: 700;
}

body.non-elementor-page h1 { font-family: var(--ef-font); }

body.non-elementor-page a { color: inherit; }

body.non-elementor-page ::selection {
    background: var(--ef-yellow);
    color: var(--ef-on-yellow);
}

/* Heading scale — headline-xl 48/56 desktop, 32/40 mobile */
body.non-elementor-page .text-heading {
    font-family: var(--ef-font);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.16;
    letter-spacing: -0.01em;
    color: var(--ef-text);
    text-transform: none;
    margin: 0 0 16px 0;
}

body.non-elementor-page .text-heading3,
body.non-elementor-page .text-content h3 {
    font-family: var(--ef-font);
    font-weight: 600;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    letter-spacing: normal;
    color: var(--ef-text);
    margin: 0 0 16px 0;
}

body.non-elementor-page .text-content {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--ef-text-secondary);
}
body.non-elementor-page .text-content strong,
body.non-elementor-page .text-content b {
    font-weight: 600;
    color: var(--ef-text-body);
}
body.non-elementor-page .text-content a { color: var(--ef-yellow); text-decoration: none; }
body.non-elementor-page .text-content a:hover { color: var(--ef-text); }

body.non-elementor-page .sub-heading {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: normal;
    color: var(--ef-text-secondary);
}

/* Section label — technical/pro-AV uppercase tag */
body.non-elementor-page .ef-label {
    display: block;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ef-yellow);
    margin-bottom: 16px;
}

/* Badge pill (hero) */
body.non-elementor-page .ef-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 9999px;
    border: 1px solid rgba(236, 233, 0, 0.3);
    background: var(--ef-glass);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ef-yellow);
}
body.non-elementor-page .ef-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ef-yellow);
    animation: ef-pulse 2s infinite;
}
@keyframes ef-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ── Buttons — flat, 8px radius ───────────────────────── */

body.non-elementor-page .btn.btn-yellow {
    font-family: var(--ef-font);
    background: var(--ef-yellow);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
    color: var(--ef-on-yellow);
    padding: 16px 32px;
    border-radius: var(--ef-radius);
    border: none;
    transition: 150ms all ease-in-out;
    text-decoration: none;
    display: inline-block;
}
body.non-elementor-page .btn.btn-yellow:hover {
    background: var(--ef-yellow-dim);
    color: var(--ef-on-yellow);
    border-color: transparent;
}

/* Secondary — 2px stroke, transparent */
body.non-elementor-page .btn.btn-black {
    font-family: var(--ef-font);
    background: transparent;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
    color: var(--ef-text);
    padding: 14px 30px;
    border-radius: var(--ef-radius);
    border: 2px solid var(--ef-border);
    transition: 150ms all ease-in-out;
    text-decoration: none;
    display: inline-block;
}
body.non-elementor-page .btn.btn-black:hover {
    background: transparent;
    border-color: var(--ef-yellow);
    color: var(--ef-yellow);
}

/* Ghost link w/ arrow or icon */
body.non-elementor-page .ef-ghost-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ef-yellow);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 150ms color ease;
}
body.non-elementor-page .ef-ghost-link:hover { color: var(--ef-text); }
body.non-elementor-page .ef-ghost-link svg { width: 20px; height: 20px; }

/* ── Cards ────────────────────────────────────────────── */

body.non-elementor-page .ef-card {
    background: var(--ef-surface-container);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-radius-lg);
    transition: 200ms border-color ease;
}
body.non-elementor-page .ef-card:hover { border-color: rgba(236, 233, 0, 0.5); }
body.non-elementor-page .ef-card-elevated { background: var(--ef-surface-high); }

/* ── Generic chrome ───────────────────────────────────── */

.divider { border: none; border-top: 1px solid var(--ef-border); margin: 0; }
.gutter { padding: 0 20px 20px 20px; }
@media (max-width: 991px) { .gutter { padding: 0 15px 15px 15px; } }

/* Native inputs — LED "on" focus state */
body.non-elementor-page input[type="text"],
body.non-elementor-page input[type="email"],
body.non-elementor-page input[type="tel"],
body.non-elementor-page input[type="number"],
body.non-elementor-page select,
body.non-elementor-page textarea {
    background: var(--ef-surface-low);
    border: 1px solid var(--ef-surface-highest);
    border-radius: var(--ef-radius);
    color: var(--ef-text-body);
    padding: 12px 16px;
}
body.non-elementor-page input:focus,
body.non-elementor-page select:focus,
body.non-elementor-page textarea:focus {
    outline: none;
    border-color: var(--ef-yellow);
    box-shadow: 0 0 0 3px rgba(236, 233, 0, 0.15);
}

/* Owl carousel accents */
.owl-carousel .owl-dots .owl-dot span { background: var(--ef-surface-highest); }
.owl-carousel .owl-dots .owl-dot.active span { background: var(--ef-yellow); }

/* ══════════════════════════════════════════════════════════
   SERVICES TEMPLATE SECTIONS
   ══════════════════════════════════════════════════════════ */

/* ── Hero ─────────────────────────────────────────────── */

body.non-elementor-page .ef-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 140px 24px 80px;
    background-size: cover;
    background-position: center;
}
body.non-elementor-page .ef-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ef-surface) 0%, rgba(19, 19, 19, 0.6) 45%, rgba(19, 19, 19, 0.8) 100%);
}
body.non-elementor-page .ef-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
body.non-elementor-page .ef-hero .text-heading,
body.non-elementor-page .ef-hero h1 {
    font-size: clamp(36px, 5.5vw, 72px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--ef-text);
    margin: 24px 0 16px;
}
body.non-elementor-page .ef-hero .text-content {
    max-width: 640px;
    margin: 0 auto 32px;
    color: var(--ef-text-secondary);
}
body.non-elementor-page .ef-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ── Introduction ─────────────────────────────────────── */

body.non-elementor-page .services-introduction-section {
    padding: var(--ef-section-gap) 0;
}
body.non-elementor-page .services-introduction-section .text-heading {
    margin-bottom: 24px;
}

/* ── Features → Bento grid ────────────────────────────── */

body.non-elementor-page .intro-features {
    padding: var(--ef-section-gap) 0;
    background: var(--ef-surface-lowest);
    margin: unset;
}
body.non-elementor-page .intro-features .ef-features-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
body.non-elementor-page .ef-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
body.non-elementor-page .ef-bento-item {
    position: relative;
    background: var(--ef-surface-container);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-radius-lg);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 250px;
    overflow: hidden;
    transition: 200ms border-color ease;
}
body.non-elementor-page .ef-bento-item:hover { border-color: rgba(236, 233, 0, 0.5); }
body.non-elementor-page .ef-bento-item.is-featured {
    grid-column: span 2;
    grid-row: span 2;
    background: var(--ef-surface-high);
}
body.non-elementor-page .ef-bento-item.is-wide {
    grid-column: span 2;
    background: var(--ef-surface-high);
    justify-content: center;
}
body.non-elementor-page .ef-bento-item.is-wide::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: linear-gradient(to left, rgba(236, 233, 0, 0.08), transparent);
    pointer-events: none;
}
body.non-elementor-page .ef-bento-media {
    position: absolute;
    inset: 0;
}
body.non-elementor-page .ef-bento-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: 400ms opacity ease;
}
body.non-elementor-page .ef-bento-item:hover .ef-bento-media img { opacity: 0.6; }
body.non-elementor-page .ef-bento-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ef-surface-deep) 10%, rgba(8, 8, 8, 0.7) 45%, transparent 100%);
}
body.non-elementor-page .ef-bento-content { position: relative; z-index: 1; }
body.non-elementor-page .ef-bento-number {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 1;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
    color: var(--ef-surface-highest);
}
body.non-elementor-page .ef-bento-item.is-featured .ef-bento-number { color: rgba(236, 233, 0, 0.55); }
body.non-elementor-page .ef-bento-item .ef-bento-heading {
    font-family: var(--ef-font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ef-text);
    margin: 0 0 8px 0;
}
body.non-elementor-page .ef-bento-item.is-featured .ef-bento-heading,
body.non-elementor-page .ef-bento-item.is-wide .ef-bento-heading {
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.25;
    text-transform: none;
    letter-spacing: normal;
}
body.non-elementor-page .ef-bento-item .ef-bento-text {
    font-size: 15px;
    line-height: 23px;
    color: var(--ef-text-secondary);
    margin: 0;
}
body.non-elementor-page .ef-bento-item.is-featured .ef-bento-text { max-width: 440px; font-size: 16px; line-height: 24px; }

@media (max-width: 991px) {
    body.non-elementor-page .ef-bento { grid-template-columns: 1fr; }
    body.non-elementor-page .ef-bento-item.is-featured,
    body.non-elementor-page .ef-bento-item.is-wide { grid-column: span 1; grid-row: span 1; }
    body.non-elementor-page .ef-bento-item { min-height: 200px; }
}

/* ── Mid-page CTA band ────────────────────────────────── */

body.non-elementor-page .mid-page-cta {
    padding: 56px 0;
    background: var(--ef-surface-low);
    border-top: 1px solid var(--ef-border);
    border-bottom: 1px solid var(--ef-border);
}
body.non-elementor-page .mid-page-cta .mid-cta-heading {
    font-family: var(--ef-font);
    font-size: clamp(24px, 2.5vw, 32px);
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--ef-text);
}
body.non-elementor-page .mid-page-cta .mid-cta-text {
    font-size: 17px;
    color: var(--ef-text-dim);
    margin: 0;
}

/* ── Gallery ──────────────────────────────────────────── */

body.non-elementor-page .gallery-section {
    padding: var(--ef-section-gap) 0;
    background: var(--ef-surface-deep);
    margin: 0 !important;
}
body.non-elementor-page .gallery-section .gallery-item img,
body.non-elementor-page .gallery-section .gallery-item video {
    border-radius: var(--ef-radius-lg);
}
body.non-elementor-page .gallery-carousel-actions button,
body.non-elementor-page .highlights-carousel-actions button {
    background: var(--ef-surface-high);
    border: 1px solid var(--ef-border);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 150ms all ease;
}
body.non-elementor-page .gallery-carousel-actions button:hover,
body.non-elementor-page .highlights-carousel-actions button:hover {
    background: var(--ef-yellow);
    border-color: var(--ef-yellow);
}
body.non-elementor-page .gallery-carousel-actions button:hover svg path,
body.non-elementor-page .highlights-carousel-actions button:hover svg path {
    fill: var(--ef-on-yellow);
}

/* ── Highlights (lineup cards) ────────────────────────── */

body.non-elementor-page .services-highlights-section {
    padding: var(--ef-section-gap) 0 60px;
}
body.non-elementor-page .intro-highlight-item {
    background: var(--ef-surface-container);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-radius-lg);
    overflow: hidden;
    transition: 200ms border-color ease;
}
body.non-elementor-page .intro-highlight-item:hover { border-color: rgba(236, 233, 0, 0.5); }
body.non-elementor-page .intro-highlight-item .secondary-content img { border-radius: 0; }
body.non-elementor-page .intro-highlight-item .secondary-content-inner { padding: 24px; }
body.non-elementor-page .intro-highlight-item .text-heading {
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 12px;
}
body.non-elementor-page .intro-highlight-item .text-content {
    font-size: 15px;
    line-height: 23px;
}

/* ── FAQ ──────────────────────────────────────────────── */

body.non-elementor-page .faq-section {
    padding: var(--ef-section-gap) 0;
    background: var(--ef-surface-lowest);
}
body.non-elementor-page .faq-section .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--ef-border);
}
body.non-elementor-page .faq-section .accordion-button {
    background: transparent;
    color: var(--ef-text);
    font-family: var(--ef-font);
    font-size: 18px;
    font-weight: 600;
    box-shadow: none;
    padding: 24px 8px;
}
body.non-elementor-page .faq-section .accordion-button:not(.collapsed) { color: var(--ef-yellow); }
body.non-elementor-page .faq-section .accordion-button:focus { box-shadow: none; }
body.non-elementor-page .faq-section .accordion-body {
    color: var(--ef-text-secondary);
    font-size: 16px;
    line-height: 26px;
    padding: 0 8px 24px;
}
/* legacy +/- icons drawn with black strokes — invert for dark */
body.non-elementor-page .faq-section .open-faq svg path,
body.non-elementor-page .faq-section .close-faq svg path { stroke: var(--ef-yellow); }

/* ── Contact / form section ───────────────────────────── */

body.non-elementor-page .services-cta-section {
    padding: var(--ef-section-gap) 0;
    background: var(--ef-surface);
    color: var(--ef-text-body);
}
body.non-elementor-page .services-cta-section .text-heading { color: var(--ef-text); }
body.non-elementor-page .services-cta-section .text-content { color: var(--ef-text-secondary); }
body.non-elementor-page .cta-phone-label {
    font-size: 13px;
    color: var(--ef-text-dim);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}
body.non-elementor-page .cta-phone-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--ef-yellow);
    text-decoration: none;
    transition: color 0.2s ease;
}
body.non-elementor-page .cta-phone-number:hover { color: var(--ef-text); }
body.non-elementor-page .cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--ef-text-secondary);
}
body.non-elementor-page .cta-trust-item svg path { fill: var(--ef-yellow); }

/* ── Native contact form ─────────────────────────────── */

body.non-elementor-page .ef-form-card {
    background: var(--ef-surface-container);
    border: 1px solid var(--ef-border);
    border-radius: var(--ef-radius-lg);
    padding: 40px;
    max-width: 980px;
    margin: 0 auto;
    text-align: left;
}
body.non-elementor-page .ef-contact-form .ef-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
body.non-elementor-page .ef-contact-form .ef-field { margin-bottom: 20px; min-width: 0; }
body.non-elementor-page .ef-contact-form label,
body.non-elementor-page .ef-contact-form legend {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--ef-text-body);
    margin-bottom: 8px;
}
body.non-elementor-page .ef-contact-form .ef-req { color: var(--ef-yellow); margin-left: 2px; }
body.non-elementor-page .ef-contact-form input[type="text"],
body.non-elementor-page .ef-contact-form input[type="email"],
body.non-elementor-page .ef-contact-form input[type="tel"],
body.non-elementor-page .ef-contact-form input[type="date"],
body.non-elementor-page .ef-contact-form textarea {
    width: 100%;
    font-family: var(--ef-font);
    font-size: 16px;
    color-scheme: dark;
}
body.non-elementor-page .ef-contact-form .ef-fieldset { border: 0; padding: 0; margin: 0 0 20px; }
body.non-elementor-page .ef-contact-form .ef-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
}
body.non-elementor-page .ef-contact-form .ef-check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 400;
    color: var(--ef-text-secondary);
    cursor: pointer;
    margin: 0;
}
body.non-elementor-page .ef-contact-form .ef-check input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border: 1px solid var(--ef-surface-highest);
    border-radius: 4px;
    background: var(--ef-surface-low);
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    transition: 120ms all ease;
    padding: 0;
}
body.non-elementor-page .ef-contact-form .ef-check input[type="radio"] { border-radius: 50%; }
body.non-elementor-page .ef-contact-form .ef-check input:checked {
    background: var(--ef-yellow);
    border-color: var(--ef-yellow);
}
body.non-elementor-page .ef-contact-form .ef-check input:checked::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--ef-on-yellow);
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
body.non-elementor-page .ef-contact-form .ef-check input[type="radio"]:checked::before {
    clip-path: none;
    border-radius: 50%;
    width: 8px;
    height: 8px;
}
body.non-elementor-page .ef-contact-form .ef-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
body.non-elementor-page .ef-form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}
body.non-elementor-page .ef-form-error {
    color: #ffb4ab;
    font-size: 15px;
    margin: 0;
    flex: 1;
    text-align: left;
}
body.non-elementor-page .ef-form-success {
    text-align: center;
    padding: 48px 24px;
}
body.non-elementor-page .ef-form-success .ef-success-icon { color: var(--ef-yellow); display: inline-block; margin-bottom: 16px; }
body.non-elementor-page .ef-form-success h3 { font-size: 28px; margin-bottom: 8px; }
body.non-elementor-page .ef-form-success p { color: var(--ef-text-secondary); margin: 0; }
@media (max-width: 767px) {
    body.non-elementor-page .ef-form-card { padding: 24px; }
    body.non-elementor-page .ef-contact-form .ef-form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ── Legacy light sections that may remain on other pages ── */

body.non-elementor-page .footer-cta-section {
    position: relative;
}
body.non-elementor-page .footer-cta-section .text-content a { color: var(--ef-yellow); }

/* Old serif utility overrides — anything still referencing the old fonts */
body.non-elementor-page .hero-form-header,
body.non-elementor-page .mid-cta-heading,
body.non-elementor-page .footer-title {
    font-family: var(--ef-font) !important;
}

@media (max-width: 991px) {
    :root { --ef-section-gap: 72px; }
    body.non-elementor-page .ef-hero { min-height: 70vh; padding: 120px 16px 56px; }
}

/* ── Footer contact section (#contactus, from footer template) ── */

body.non-elementor-page .home-contact-us {
    padding: var(--ef-section-gap) 0;
    background: var(--ef-surface-lowest);
    border-top: 1px solid var(--ef-border);
}
body.non-elementor-page .home-contact-us .sub-heading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--ef-yellow);
    margin-bottom: 12px;
}
body.non-elementor-page .home-contact-us .text-heading { margin-bottom: 40px; }

/* ── Footer CTA band ── */
body.non-elementor-page .footer-cta-section {
    border-radius: var(--ef-radius-lg);
    overflow: hidden;
}
body.non-elementor-page .footer-cta-section .text-heading { margin-bottom: 16px; }

/* ── Light product/category cards keep dark text (product photos need white) ── */

body.non-elementor-page .category-listing-item-inner { color: #1c1b1b; }
body.non-elementor-page .category-listing-item-inner .listing-title { color: #131313; }
body.non-elementor-page .category-listing-item.tagline .category-listing-item-inner {
    background: var(--ef-surface-container);
    color: var(--ef-text-body);
    border: 1px solid var(--ef-border);
}
body.non-elementor-page .category-listing-item.tagline .tagline-text { color: var(--ef-text); }

/* WooCommerce product grids + single product on dark */
body.non-elementor-page .woocommerce ul.products li.product,
body.non-elementor-page ul.products li.product {
    background: #fff;
    border-radius: var(--ef-radius-lg);
    overflow: hidden;
    padding-bottom: 12px;
}
body.non-elementor-page ul.products li.product .woocommerce-loop-product__title,
body.non-elementor-page ul.products li.product h2 { color: #131313; }
body.non-elementor-page ul.products li.product .price { color: #1c1b1b; }
body.non-elementor-page .woocommerce-breadcrumb,
body.non-elementor-page .woocommerce-breadcrumb a { color: var(--ef-text-dim); }
body.non-elementor-page .woocommerce-breadcrumb a:hover { color: var(--ef-yellow); }
body.non-elementor-page .woocommerce div.product .product_title { color: var(--ef-text); }
body.non-elementor-page .woocommerce div.product p.price { color: var(--ef-text-secondary); }
body.non-elementor-page .woocommerce div.product .woocommerce-product-details__short-description { color: var(--ef-text-secondary); }
body.non-elementor-page .woocommerce-product-categories { color: var(--ef-text-dim); }

/* ── Elementor legacy pages (contact/our-company) readable on dark ── */

body.non-elementor-page .elementor-field-group label,
body.non-elementor-page .elementor-field-group .elementor-field-label { color: var(--ef-text-body); }
body.non-elementor-page .elementor-field-group .elementor-field,
body.non-elementor-page .elementor-field-group input,
body.non-elementor-page .elementor-field-group textarea,
body.non-elementor-page .elementor-field-group select {
    background: var(--ef-surface-low);
    border: 1px solid var(--ef-surface-highest);
    color: var(--ef-text-body);
    border-radius: var(--ef-radius);
}
body.non-elementor-page .elementor-field-group input::placeholder,
body.non-elementor-page .elementor-field-group textarea::placeholder { color: var(--ef-text-dim); }
body.non-elementor-page .elementor-button[type="submit"],
body.non-elementor-page button.elementor-button {
    background: var(--ef-yellow);
    color: var(--ef-on-yellow);
    font-family: var(--ef-font);
    font-weight: 700;
    border-radius: var(--ef-radius);
    border: none;
}

/* Product grid (custom Woo listing): titles sit on the dark ground below the
   light image box — white, not accent yellow */
body.non-elementor-page .woocommerce-custom-listing .product-item .product-title {
    color: var(--ef-text);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: normal;
}
body.non-elementor-page .woocommerce-custom-listing .product-item a { text-decoration: none; }
body.non-elementor-page .woocommerce-custom-listing .product-item:hover .product-title { color: var(--ef-yellow); }

/* Rental catalog hero: bright source image needs a heavier scrim than the global 0.4 */
.page-template-page-template-rental-catalog-non-elementor .hero-section::before {
    background: linear-gradient(180deg, rgba(14, 14, 14, 0.82) 0%, rgba(14, 14, 14, 0.6) 100%);
}
