:root {
    --eco-green:      #8dc63f;
    --eco-green-dk:   #72a030;
    --eco-dark:       #0f0f0f;
    --eco-dark-2:     #1a1a1a;
    --eco-dark-3:     #252525;
    --eco-white:      #ffffff;
    --eco-light:      #f5f5f3;
    --eco-border:     #e0e0e0;
    --eco-txt:        #1a1a1a;
    --eco-txt-muted:  #777777;
    --eco-font:       'Inter', system-ui, sans-serif;
    --eco-shadow:     0 4px 24px rgba(0,0,0,.08);
    --eco-shadow-lg:  0 12px 48px rgba(0,0,0,.14);
}

*, *::before, *::after { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    /* clip (not hidden) prevents horizontal overflow without breaking sticky nav */
    overflow-x: clip;
}
body {
    font-family: var(--eco-font);
    color: var(--eco-txt);
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    overflow-x: clip;
}

/* ── Logo ──────────────────────────────────────────────────────────────────*/
.eco-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}
.logo-eco, .logo-blinds {
    font-weight: 900;
    font-size: 1.22rem;
    letter-spacing: .07em;
    color: #fff;
}
.logo-leaf-wrap { display: inline-flex; align-items: center; margin: 0 3px; }
.logo-leaf-svg  { width: 20px; height: 24px; }
.logo-tm        { font-size: .5em; vertical-align: super; margin-left: 1px; }

/* ── LOGO IMAGE ─────────────────────────────────────────────────────────────*/
.eco-logo-img {
    height: 28px;
    width: auto;
    display: block;
    /* invert black logo to white for dark backgrounds */
    filter: brightness(0) invert(1);
}
.eco-logo-footer-img {
    height: 26px;
    opacity: .85;
}

/* ── NAVBAR ─────────────────────────────────────────────────────────────────*/
.eco-navbar {
    background: var(--eco-dark) !important;
    padding: 16px 0;
    transition: padding .3s, box-shadow .3s;
}
.eco-navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.eco-navbar .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 6px 14px !important;
    transition: color .18s;
    position: relative;
}
.eco-navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 2px;
    background: var(--eco-green);
    transform: scaleX(0);
    transition: transform .2s;
}
.eco-navbar .nav-link:hover,
.eco-navbar .nav-link.active       { color: #fff !important; }
.eco-navbar .nav-link.active::after,
.eco-navbar .nav-link:hover::after { transform: scaleX(1); }

.eco-dropdown {
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 4px;
    min-width: 190px;
    padding: 6px 0;
}
.eco-dropdown .dropdown-item {
    color: rgba(255,255,255,.7);
    font-size: .86rem;
    padding: 10px 20px;
    transition: all .15s;
}
.eco-dropdown .dropdown-item:hover {
    background: var(--eco-green);
    color: #fff;
}

.eco-quote-btn {
    border: 1.5px solid rgba(255,255,255,.55) !important;
    color: #fff !important;
    background: transparent !important;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 9px 22px !important;
    border-radius: 0 !important;
    transition: all .2s;
}
.eco-quote-btn:hover {
    background: var(--eco-green) !important;
    border-color: var(--eco-green) !important;
}

/* ── BUTTONS ────────────────────────────────────────────────────────────────*/
.eco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--eco-font);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    border: none;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    padding: 12px 26px;
    transition: background .2s, transform .1s, color .2s;
    line-height: 1.4;
}
.eco-btn:active { transform: scale(.98); }

.eco-btn-green {
    background: var(--eco-green);
    color: #fff;
}
.eco-btn-green:hover  { background: var(--eco-green-dk); color: #fff; }
.eco-btn-green:disabled { background: #aaa !important; cursor: not-allowed; }

.eco-btn-outline-wh {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.6);
}
.eco-btn-outline-wh:hover { background: rgba(255,255,255,.1); color: #fff; }

.eco-btn-dark {
    background: var(--eco-dark);
    color: #fff;
    border: 2px solid var(--eco-dark);
}
.eco-btn-dark:hover { background: #333; color: #fff; }

/* ── HERO ───────────────────────────────────────────────────────────────────*/
.eco-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url('https://images.unsplash.com/photo-1618219944342-824e40a13285?auto=format&fit=crop&w=1920&q=80')
        center center / cover no-repeat;
}
.eco-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,.93) 0%, rgba(5,5,5,.88) 45%, rgba(5,5,5,.62) 100%);
}
.eco-hero-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px,
        transparent 1px, transparent 40px
    );
    pointer-events: none;
}

.eco-hero-inner { min-height: calc(100vh - 80px); padding: 80px 0 100px; }

.eco-hero-eyebrow {
    color: var(--eco-green);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.eco-hero-heading {
    font-size: clamp(2.8rem, 6.5vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.03;
    letter-spacing: -.01em;
    margin-bottom: 22px;
}
.eco-hero-accent { color: var(--eco-green); }

.eco-hero-body {
    color: rgba(255,255,255,.62);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 34px;
}
.eco-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.eco-watch-video { color: rgba(255,255,255,.65); transition: color .2s; }
.eco-watch-video:hover { color: var(--eco-green); }
.eco-play-ring {
    width: 56px; height: 56px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: #fff;
    transition: all .2s;
}
.eco-watch-video:hover .eco-play-ring { border-color: var(--eco-green); background: var(--eco-green); }
.eco-watch-label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; }

.eco-hero-divider {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.38);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    white-space: nowrap;
}

/* ── PRODUCTS STRIP ─────────────────────────────────────────────────────────*/
.eco-products-strip { background: #fff; }

.eco-strip-card {
    border-right: 1px solid var(--eco-border);
    display: flex;
    flex-direction: column;
    transition: box-shadow .25s;
}
.eco-strip-card:last-child { border-right: none; }
.eco-strip-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.1); z-index: 1; }

.eco-strip-top {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 20px 22px 16px;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--eco-txt);
    border-bottom: 1px solid var(--eco-border);
}
.eco-strip-top .bi { color: var(--eco-green); font-size: 1.1rem; }

.eco-strip-img {
    height: 210px;
    width: 100%;
    flex-shrink: 0;
    transition: opacity .3s;
}
.eco-strip-card:hover .eco-strip-img { opacity: .92; }

/* Product strip backgrounds – real Unsplash room photos */
.eco-strip-img-zebra {
    background:
        url('https://images.unsplash.com/photo-1567538096630-e0c55bd6374c?auto=format&fit=crop&w=600&q=80')
        center / cover no-repeat;
}
.eco-strip-img-roller {
    background:
        url('https://images.unsplash.com/photo-1484101403633-562f891dc89a?auto=format&fit=crop&w=600&q=80')
        center / cover no-repeat;
}
.eco-strip-img-screen {
    background:
        url('https://images.unsplash.com/photo-1493809842364-78817add7ffb?auto=format&fit=crop&w=600&q=80')
        center / cover no-repeat;
}
.eco-strip-img-blackout {
    background:
        url('https://images.unsplash.com/photo-1540518614846-7eded433c457?auto=format&fit=crop&w=600&q=80')
        center / cover no-repeat;
}

.eco-strip-body { padding: 18px 22px 26px; flex: 1; }
.eco-strip-body p {
    color: var(--eco-txt-muted);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.eco-learn-more {
    color: var(--eco-green);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s, color .2s;
}
.eco-learn-more:hover { color: var(--eco-green-dk); gap: 10px; }

/* ── ABOUT SECTION ──────────────────────────────────────────────────────────*/
.eco-about-section { background: var(--eco-light); padding: 90px 0; }

.eco-eyebrow-green {
    color: var(--eco-green);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.eco-section-h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    line-height: 1.12;
    color: var(--eco-txt);
}
.eco-body-muted {
    color: var(--eco-txt-muted);
    font-size: .95rem;
    line-height: 1.75;
}
.eco-check-list {
    list-style: none; padding: 0; margin: 0;
}
.eco-check-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: .9rem; font-weight: 500;
    margin-bottom: 11px; color: var(--eco-txt);
}
.eco-check-list .bi { color: var(--eco-green); font-size: 1.1rem; flex-shrink: 0; }

/* About photo – bright airy interior (Unsplash) */
.eco-about-photo {
    height: 400px;
    border-radius: 2px;
    box-shadow: var(--eco-shadow-lg);
    background:
        url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb3?auto=format&fit=crop&w=800&q=80')
        center / cover no-repeat;
}

.eco-stat-block { display: flex; flex-direction: column; gap: 24px; }
.eco-stat-row {
    display: flex; align-items: center; gap: 18px;
    background: #fff;
    padding: 20px 24px;
    box-shadow: var(--eco-shadow);
}
.eco-stat-ico {
    width: 50px; height: 50px; flex-shrink: 0;
    background: var(--eco-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: #fff;
}
.eco-stat-num { font-size: 2.1rem; font-weight: 900; line-height: 1; color: var(--eco-txt); }
.eco-stat-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; color: var(--eco-txt-muted); margin-top: 3px; }

/* ── CTA SECTION ────────────────────────────────────────────────────────────*/
.eco-cta-section {
    position: relative;
    background:
        url('https://images.unsplash.com/photo-1531835551805-16d864c8d311?auto=format&fit=crop&w=1920&q=80')
        center / cover no-repeat;
    padding: 0;
}
.eco-cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,.94) 0%, rgba(5,5,5,.88) 50%, rgba(5,5,5,.78) 100%);
}
.eco-cta-h2 {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
}
.eco-cta-body { color: rgba(255,255,255,.58); font-size: .95rem; line-height: 1.72; }

.eco-cta-form { }
/* ── eco-fi: dark-context input (hero, CTA section, estimator dark panel) ── */
.eco-fi {
    background:    rgba(255,255,255,.07) !important;
    border:        1.5px solid rgba(255,255,255,.22) !important;
    color:         #fff !important;
    border-radius: 0 !important;
    padding:       12px 16px !important;
    font-size:     .9rem;
    transition:    border-color .2s, background .2s;
}
.eco-fi:hover   { border-color: rgba(255,255,255,.4) !important; }
.eco-fi:focus   {
    border-color: var(--eco-green) !important;
    box-shadow:   0 0 0 3px rgba(141,198,63,.22) !important;
    outline:      none;
    background:   rgba(255,255,255,.11) !important;  /* stays dark on focus */
    color:        #fff !important;
}
.eco-fi::placeholder { color: rgba(255,255,255,.42); font-size: .88rem; }

/* Force readable text in native select dropdown options */
.eco-fi option {
    background: #1e1e1e;
    color: #f0f0f0;
}

/* Block browser autofill white-bg in dark inputs */
.eco-fi:-webkit-autofill,
.eco-fi:-webkit-autofill:hover,
.eco-fi:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(18,18,18,.95) inset !important;
    -webkit-text-fill-color: #fff !important;
    caret-color: #fff;
    border-color: rgba(255,255,255,.22) !important;
}

/* ── Light-section override (estimator, admin) ──────────────────── */
.eco-collection-section .eco-fi,
.eco-quote-list-section .eco-fi,
.eco-est-panel .eco-fi,
.eco-panel-box .eco-fi,
.eco-add-item-card .eco-fi {
    background: #fff !important;
    border:     1.5px solid #b8bcc0 !important;
    color:      #1a1a1a !important;
}
.eco-collection-section .eco-fi:focus,
.eco-quote-list-section .eco-fi:focus,
.eco-est-panel .eco-fi:focus,
.eco-panel-box .eco-fi:focus,
.eco-add-item-card .eco-fi:focus {
    border-color: var(--eco-green) !important;
    box-shadow:   0 0 0 3px rgba(141,198,63,.15) !important;
    background:   #fff !important;
    color:        #1a1a1a !important;
}
.eco-collection-section .eco-fi::placeholder,
.eco-est-panel .eco-fi::placeholder,
.eco-panel-box .eco-fi::placeholder,
.eco-add-item-card .eco-fi::placeholder { color: #9ca3af; }

/* ── FOOTER ─────────────────────────────────────────────────────────────────*/
.eco-footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.05); }
.eco-logo-footer .logo-eco,
.eco-logo-footer .logo-blinds { color: #fff; font-size: 1.1rem; }

.eco-footer-tagline { color: rgba(255,255,255,.4); font-size: .84rem; line-height: 1.7; }

.eco-social { display: flex; gap: 10px; }
.eco-social a {
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5);
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}
.eco-social a:hover { border-color: var(--eco-green); color: var(--eco-green); }

.eco-footer-heading {
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .16em;
    margin-bottom: 16px;
}
.eco-footer-links { list-style: none; padding: 0; margin: 0; }
.eco-footer-links li { margin-bottom: 10px; }
.eco-footer-links a {
    color: rgba(255,255,255,.45);
    text-decoration: none; font-size: .87rem;
    transition: color .15s;
}
.eco-footer-links a:hover { color: var(--eco-green); }

.eco-footer-contact { list-style: none; padding: 0; margin: 0; }
.eco-footer-contact li {
    display: flex; align-items: flex-start; gap: 10px;
    color: rgba(255,255,255,.45);
    font-size: .87rem; margin-bottom: 12px;
}
.eco-footer-contact .bi { color: var(--eco-green); flex-shrink: 0; margin-top: 2px; }

.eco-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; gap: 8px;
    color: rgba(255,255,255,.28);
    font-size: .79rem;
}
.eco-footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.eco-footer-bottom a:hover { color: var(--eco-green); }

/* ── BREADCRUMB ─────────────────────────────────────────────────────────────*/
.eco-breadcrumb-bar {
    background: var(--eco-light);
    border-bottom: 1px solid var(--eco-border);
}
.eco-breadcrumb-bar .breadcrumb {
    margin: 0; font-size: .82rem;
}
.eco-breadcrumb-bar .breadcrumb-item a { color: var(--eco-green); text-decoration: none; }
.eco-breadcrumb-bar .breadcrumb-item.active { color: var(--eco-txt-muted); }
.eco-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before { color: #ccc; }

/* ── PRODUCT HERO SPLIT ─────────────────────────────────────────────────────*/
.eco-prod-hero {
    display: flex;
    min-height: 360px;
}
.eco-prod-hero-left {
    flex: 0 0 42%;
    background: var(--eco-dark);
    display: flex;
    align-items: center;
    padding: 60px 50px 60px 40px;
    position: relative;
}
.eco-prod-hero-left::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px,
        transparent 1px, transparent 38px
    );
    pointer-events: none;
}
.eco-prod-hero-right {
    flex: 0 0 58%;
    background-size: cover;
    background-position: center;
    min-height: 340px;
}

/* Hero right backgrounds per product */
.eco-prod-hero-img-zebra {
    background:
        url('../images/products/Dual-Shade-Zebra.png')
        center / cover no-repeat;
}
.eco-prod-hero-img-roller {
    background:
        url('../images/products/Sun-Filtering-screen.png')
        center / cover no-repeat;
}
.eco-prod-hero-img-blackout {
    background:
        url('../images/products/Black-Out.png')
        center / cover no-repeat;
}
.eco-prod-hero-img-screen {
    background:
        url('../images/products/Sun-Filtering-screen.png')
        center / cover no-repeat;
}
.eco-prod-hero-img-outdoor {
    background:
        url('../images/products/Outdoor-Sun-Filtering-screen.png')
        center / cover no-repeat;
}

.eco-prod-hero-content { position: relative; z-index: 1; max-width: 460px; }
.eco-prod-title {
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 18px;
}
.eco-prod-desc {
    color: rgba(255,255,255,.62);
    font-size: .95rem;
    line-height: 1.72;
}
.eco-prod-features {
    display: flex; flex-wrap: wrap; gap: 28px;
}
.eco-prod-feat {
    display: flex; flex-direction: column; align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.7);
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
    min-width: 64px;
}
.eco-prod-feat .bi { font-size: 1.7rem; color: var(--eco-green); }

/* ── COLLECTION ─────────────────────────────────────────────────────────────*/
.eco-collection-section { background: #fff; }
.eco-coll-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.01em;
    color: var(--eco-txt);
}
.eco-coll-desc {
    max-width: 320px;
    color: var(--eco-txt-muted);
    font-size: .88rem;
    line-height: 1.6;
}

/* Variant cards */
.eco-variant-card {
    border: 1.5px solid var(--eco-border);
    cursor: pointer;
    transition: box-shadow .2s, border-color .2s, transform .15s;
}
.eco-variant-card:hover {
    box-shadow: var(--eco-shadow);
    border-color: #ccc;
    transform: translateY(-3px);
}
.eco-variant-card.selected {
    border-color: var(--eco-green);
    box-shadow: 0 0 0 3px rgba(141,198,63,.2);
}

.eco-variant-img {
    height: 160px;
    width: 100%;
    transition: opacity .2s;
}
.eco-variant-card:hover .eco-variant-img { opacity: .88; }

/* Zebra blind variant images – real room photos */
.eco-vi-lwhite  { background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-vi-sbeige  { background: url('https://images.unsplash.com/photo-1567538096630-e0c55bd6374c?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-vi-lgrey   { background: url('https://images.unsplash.com/photo-1493809842364-78817add7ffb?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-vi-cgrey   { background: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-vi-brown   { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-vi-jblack  { background: url('https://images.unsplash.com/photo-1565538810643-b5bdb714032a?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }

/* Roller shade variants – real room photos */
.eco-ri-chalk    { background: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-ri-linen    { background: url('https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-ri-pgrey    { background: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-ri-sgrey    { background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-ri-espresso { background: url('https://images.unsplash.com/photo-1449247709851-ade45e5c31c9?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-ri-mblack   { background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }

/* Blackout variants – real room photos */
.eco-bi-white   { background: url('https://images.unsplash.com/photo-1631679706909-1844bbd07221?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-bi-ivory   { background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-bi-wgrey   { background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-bi-charco  { background: url('https://images.unsplash.com/photo-1583847268964-b28dc8f51f92?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-bi-dbrown  { background: url('https://images.unsplash.com/photo-1449247709851-ade45e5c31c9?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-bi-jblack  { background: url('https://images.unsplash.com/photo-1540518614846-7eded433c457?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }

/* Screen shade variants – real room photos */
.eco-si-w5   { background: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-si-p5   { background: url('https://images.unsplash.com/photo-1502005229762-cf1b2da7c5d6?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-si-g3   { background: url('https://images.unsplash.com/photo-1493809842364-78817add7ffb?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-si-c3   { background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-si-b1   { background: url('https://images.unsplash.com/photo-1556909114-f6e7ad7d3136?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }
.eco-si-bl1  { background: url('https://images.unsplash.com/photo-1505691938895-1758d7feb511?auto=format&fit=crop&w=400&q=75') center/cover no-repeat; }

.eco-variant-body { padding: 14px 16px 16px; }
.eco-variant-name { font-weight: 700; font-size: .9rem; color: var(--eco-txt); margin-bottom: 4px; }
.eco-variant-desc { font-size: .82rem; color: var(--eco-txt-muted); line-height: 1.55; margin-bottom: 0; }

.eco-swatches { display: flex; gap: 6px; }
.eco-swatch {
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,.15);
    display: inline-block;
}

.eco-view-all-btn {
    border: 1.5px solid var(--eco-txt);
    color: var(--eco-txt);
    text-decoration: none;
    padding: 14px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    transition: all .2s;
    margin-top: 8px;
}
.eco-view-all-btn:hover {
    background: var(--eco-txt);
    color: #fff;
}

/* ── ESTIMATE PANEL ─────────────────────────────────────────────────────────*/
.eco-est-panel {
    border: 1px solid var(--eco-border);
    box-shadow: var(--eco-shadow-lg);
    position: sticky;
    top: 82px;
    background: #fff;
}

.eco-est-panel-hdr {
    background: var(--eco-dark);
    padding: 20px 24px 14px;
}
.eco-est-panel-title {
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .14em;
}
.eco-est-panel-sub {
    color: rgba(255,255,255,.45);
    font-size: .78rem;
    margin-top: 5px;
    line-height: 1.5;
}

.eco-est-panel-body { padding: 20px 24px; }

.eco-field-group { margin-bottom: 14px; }
.eco-field-label {
    display: block;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--eco-txt-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}
.eco-field-label-optional { font-weight: 400; color: inherit; }
.eco-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    margin-top: -2px;
    width: 18px; height: 18px;
    background: var(--eco-accent);
    color: #fff;
    font-size: .65rem;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}

/* Live price box */
.eco-live-price-box {
    background: var(--eco-dark);
    padding: 16px 18px;
    margin: 18px 0 0;
    border: 2px solid var(--eco-dark);
}
.eco-lp-label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(255,255,255,.45);
    margin-bottom: 6px;
}
.eco-lp-amount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    line-height: 1;
}
.eco-lp-amount span:first-child {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--eco-green);
}
.eco-lp-currency {
    font-size: .8rem;
    font-weight: 700;
    color: rgba(255,255,255,.5);
}
.eco-lp-note {
    font-size: .72rem;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
    font-style: italic;
}

.eco-need-help {
    color: var(--eco-txt-muted);
    font-size: .8rem;
    text-decoration: none;
    transition: color .15s;
}
.eco-need-help:hover { color: var(--eco-green); }

/* Control selector (Left / Right / Motorized) */
.eco-control-group {
    display: flex;
    gap: 8px;
}
.eco-control-opt {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 9px 6px;
    border: 1.5px solid #b8bcc0;
    background: #fff;
    color: #1a1a1a;
    font-size: .8rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.eco-control-opt input { position: absolute; opacity: 0; pointer-events: none; }
.eco-control-opt:hover { border-color: var(--eco-green); }
.eco-control-opt.active {
    background: var(--eco-green);
    border-color: var(--eco-green);
    color: #0f0f0f;
}
.eco-control-opt em {
    font-style: normal;
    font-size: .68rem;
    opacity: .7;
}
.eco-control-opt .bi { font-size: 1.05rem; line-height: 1; }
.eco-control-icon { width: 22px; height: 22px; object-fit: contain; }

/* Help icon (?) — click-to-open popover, keeps fields uncluttered by default */
.eco-help-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    margin-left: 4px;
    padding: 0;
    background: none;
    border: none;
    color: var(--eco-txt-muted);
    cursor: pointer;
    vertical-align: middle;
    line-height: 1;
}
.eco-help-icon:hover,
.eco-help-icon:focus { color: var(--eco-green); outline: none; }
.eco-help-icon .bi { font-size: .95rem; }
.eco-help-icon-inline {
    position: absolute;
    top: 2px;
    right: 2px;
    margin-left: 0;
    width: 14px;
    height: 14px;
    opacity: .55;
}
.eco-control-opt.active .eco-help-icon-inline { color: #0f0f0f; }
.popover { --bs-popover-max-width: 250px; --bs-popover-font-size: .8rem; box-shadow: var(--eco-shadow-lg); border: none; }
.popover-header { font-weight: 700; font-size: .78rem; background: var(--eco-dark); color: #fff; border: none; }
.popover-body { color: var(--eco-txt-muted); line-height: 1.5; }

/* Installation Type selector (Inside Mount / Outside Mount) */
.eco-install-group { display: flex; gap: 8px; }
.eco-install-opt {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 12px;
    border: 1.5px solid #b8bcc0;
    background: #fff;
    color: #1a1a1a;
    cursor: pointer;
    transition: background .15s, border-color .15s, color .15s;
}
.eco-install-opt input { position: absolute; opacity: 0; pointer-events: none; }
.eco-install-opt:hover { border-color: var(--eco-green); }
.eco-install-opt.active {
    background: var(--eco-green);
    border-color: var(--eco-green);
    color: #0f0f0f;
}
.eco-install-opt-title { font-size: .82rem; font-weight: 700; }
.eco-install-opt-sub { font-size: .68rem; opacity: .7; }

/* Width / Height — whole number + fraction dropdown, same row height as before */
.eco-measure-row { display: flex; gap: 8px; }
.eco-measure-row .eco-fi:first-child { flex: 1 1 auto; min-width: 0; }
.eco-frac-select { flex: 0 0 84px; }

/* Outside Mount recommendation — only rendered when Outside Mount is selected */
.eco-outside-note {
    background: var(--eco-light);
    border: 1px solid var(--eco-border);
    padding: 10px 12px;
    margin: -6px 0 14px;
    font-size: .78rem;
    color: var(--eco-txt-muted);
}
.eco-outside-note-row { margin-bottom: 6px; }
.eco-outside-note-row .bi { color: var(--eco-green); margin-right: 2px; }
.eco-outside-note-row strong { color: var(--eco-txt); }
.eco-outside-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--eco-txt);
}
.eco-outside-toggle input { accent-color: var(--eco-green); width: 14px; height: 14px; margin: 0; }

.eco-why-box {
    background: var(--eco-light);
    border-top: 1px solid var(--eco-border);
    padding: 16px 24px;
}
.eco-why-box-title {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--eco-txt);
    margin-bottom: 10px;
}
.eco-why-box-title .bi { color: var(--eco-green); margin-right: 4px; }
.eco-why-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.eco-why-list li { display: flex; align-items: center; gap: 8px; font-size: .83rem; color: var(--eco-txt-muted); }
.eco-why-list .bi { color: var(--eco-green); font-size: .85rem; flex-shrink: 0; }

/* ── QUOTE LIST SECTION ─────────────────────────────────────────────────────*/
.eco-quote-list-section { background: var(--eco-light); border-top: 3px solid var(--eco-green); }

.eco-panel-box {
    background: #fff;
    border: 1px solid var(--eco-border);
    box-shadow: var(--eco-shadow);
    overflow: hidden;
}
.eco-panel-box-hdr {
    background: var(--eco-dark);
    color: #fff;
    padding: 14px 22px;
    font-size: .85rem;
}
.eco-panel-box-footer {
    background: var(--eco-light);
    border-top: 1px solid var(--eco-border);
    padding: 16px 22px;
}

.eco-quote-table { font-size: .87rem; }
.eco-quote-table thead th {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--eco-txt-muted);
    background: #f9f9f9;
    border-bottom: 2px solid var(--eco-border);
    padding: 11px 14px;
}
.eco-quote-table tbody td {
    padding: 12px 14px;
    vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}
.eco-quote-table tbody tr:hover td { background: rgba(141,198,63,.04); }

.eco-quote-total-box { min-width: 200px; }
.eco-qt-row {
    display: flex; justify-content: space-between;
    font-size: .87rem; padding: 4px 0;
    color: var(--eco-txt-muted);
}
.eco-qt-discount { color: #2e7d32 !important; }
.eco-qt-total {
    display: flex; justify-content: space-between;
    font-size: 1.1rem; font-weight: 800;
    color: var(--eco-txt);
    border-top: 2px solid var(--eco-txt);
    padding-top: 8px; margin-top: 6px;
}

/* ── WHY CHOOSE ─────────────────────────────────────────────────────────────*/
.eco-why-section { background: #fff; border-top: 1px solid var(--eco-border); }
.eco-why-section-title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--eco-txt);
    margin-bottom: 0;
}
.eco-why-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
}
.eco-why-icon {
    width: 44px; height: 44px;
    flex-shrink: 0;
    background: rgba(141,198,63,.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--eco-green);
}
.eco-why-title { font-size: .92rem; font-weight: 800; color: var(--eco-txt); margin-bottom: 2px; }
.eco-why-desc { font-size: .8rem; color: var(--eco-txt-muted); line-height: 1.5; }

/* ════════════════════════════════════════════════════════════════════════════
   ADMIN PANEL
   ════════════════════════════════════════════════════════════════════════════ */
.admin-body { background: #f0f2f5; }

.admin-layout { display: flex; min-height: 100vh; }

.admin-sidebar {
    width: 255px; flex-shrink: 0;
    background: var(--eco-dark);
    display: flex; flex-direction: column;
    position: sticky; top: 0;
    height: 100vh; overflow-y: auto;
    z-index: 200;
}
.admin-sidebar-brand {
    padding: 22px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.admin-sidebar-label {
    font-size: .68rem; font-weight: 700;
    letter-spacing: .16em; color: rgba(255,255,255,.3);
    margin-top: 5px; text-transform: uppercase;
}
.admin-nav {
    padding: 14px 10px;
    flex: 1;
    display: flex; flex-direction: column; gap: 3px;
}
.admin-nav-link {
    display: flex; align-items: center; gap: 11px;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    font-size: .84rem; font-weight: 500;
    padding: 11px 13px;
    border-radius: 4px;
    transition: all .15s;
}
.admin-nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-nav-link.active { background: var(--eco-green); color: #fff; }
.admin-nav-link .bi { font-size: 1rem; }

.admin-sidebar-footer {
    padding: 14px 16px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.admin-user-info { display: flex; align-items: center; gap: 10px; color: #fff; margin-bottom: 10px; }
.admin-user-info .bi { color: rgba(255,255,255,.4); }

.admin-main { flex: 1; display: flex; flex-direction: column; overflow: auto; }

.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--eco-border);
    padding: 0 28px; height: 62px;
    display: flex; align-items: center; gap: 16px;
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.admin-page-title { font-size: .98rem; font-weight: 700; color: var(--eco-txt); }

.admin-content-wrap { padding: 26px; flex: 1; }

.admin-stat-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    padding: 20px; display: flex; flex-direction: column; gap: 8px;
    box-shadow: var(--eco-shadow);
}
.admin-stat-icon {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.admin-stat-val { font-size: 1.85rem; font-weight: 800; color: var(--eco-txt); line-height: 1; }
.admin-stat-label { font-size: .7rem; font-weight: 700; letter-spacing: .09em; color: var(--eco-txt-muted); text-transform: uppercase; }

.admin-panel-card { background: #fff; border: 1px solid var(--eco-border); box-shadow: var(--eco-shadow); overflow: hidden; }
.admin-panel-header { padding: 14px 22px; border-bottom: 1px solid var(--eco-border); background: var(--eco-light); }

.admin-table { font-size: .87rem; margin: 0; }
.admin-table thead th {
    font-size: .7rem; font-weight: 700; letter-spacing: .09em;
    text-transform: uppercase; color: var(--eco-txt-muted);
    background: var(--eco-light); border-bottom: 2px solid var(--eco-border);
    padding: 12px 16px;
}
.admin-table tbody td {
    padding: 13px 16px; vertical-align: middle;
    border-bottom: 1px solid #f0f0f0;
}
.admin-table tbody tr:hover td { background: rgba(141,198,63,.04); }

.eco-accent-text { color: var(--eco-green) !important; }

/* Admin Login */
.admin-login-page {
    background: var(--eco-dark);
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
}
.admin-login-wrap { width: 100%; max-width: 420px; padding: 20px; }
.admin-login-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    padding: 40px 36px;
}
.eco-input-dark {
    background: rgba(255,255,255,.06) !important;
    border: 1.5px solid rgba(255,255,255,.1) !important;
    color: #fff !important; border-radius: 0 !important;
    padding: 11px 14px !important;
}
.eco-input-dark:focus {
    border-color: var(--eco-green) !important;
    box-shadow: 0 0 0 3px rgba(141,198,63,.2) !important;
    background: rgba(255,255,255,.08) !important;
}
.eco-input-dark::placeholder { color: rgba(255,255,255,.3); }

/* Admin sidebar toggle (mobile) */
.admin-sidebar-toggle { background: none; border: none; cursor: pointer; color: var(--eco-txt); padding: 0; }
@media (max-width: 991px) {
    .admin-sidebar { position: fixed; left: -255px; transition: left .25s; }
    .admin-sidebar.show { left: 0; box-shadow: 4px 0 20px rgba(0,0,0,.3); }
}

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .eco-prod-hero { flex-direction: column; }
    .eco-prod-hero-left { flex: none; width: 100%; padding: 40px 24px; }
    .eco-prod-hero-right { flex: none; width: 100%; min-height: 240px; }
    .eco-est-panel { position: static; }
    .eco-hero-inner { padding: 60px 0 80px; }
}
@media (max-width: 767px) {
    .eco-hero-heading { font-size: 2.5rem; }
    .eco-cta-h2 { font-size: 2rem; }
    .eco-prod-title { font-size: 2rem; }
    .eco-strip-card { border-right: none; border-bottom: 1px solid var(--eco-border); }
    .eco-hero-divider { display: none; }
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.z-1 { z-index: 1; }
.alert { animation: alertFade .3s ease; }
@keyframes alertFade { from { opacity:0; transform: translateY(-6px); } to { opacity:1; transform: translateY(0); } }
.pagination .page-link { color: var(--eco-green); border-radius: 0 !important; }
.pagination .page-item.active .page-link { background: var(--eco-green); border-color: var(--eco-green); }

/* ════════════════════════════════════════════════════════════════════════════
   MISSING / ALIAS CLASSES
   (admin views use these Bootstrap-compatible shorthand classes)
   ════════════════════════════════════════════════════════════════════════════ */

/* eco-btn-primary  – used in admin without the base .eco-btn class */
.eco-btn-primary,
.btn.eco-btn-primary {
    background-color: var(--eco-green) !important;
    border-color:     var(--eco-green) !important;
    color: #fff !important;
    border-radius: 0 !important;
    font-weight: 700;
    letter-spacing: .06em;
    transition: background .2s, border-color .2s;
}
.eco-btn-primary:hover,
.btn.eco-btn-primary:hover {
    background-color: var(--eco-green-dk) !important;
    border-color:     var(--eco-green-dk) !important;
    color: #fff !important;
}
.eco-btn-primary:focus,
.btn.eco-btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(141,198,63,.35) !important;
}

/* ─── eco-input: light-bg form fields (admin settings, contact forms on white)
   Always visible border + dark text regardless of surrounding context ─────── */
.eco-input {
    border-radius:  0 !important;
    border:         1.5px solid #b8bcc0 !important;   /* clearly visible on white */
    padding:        11px 14px !important;
    font-size:      .9rem !important;
    font-family:    var(--eco-font);
    color:          #1a1a1a !important;               /* always dark text */
    background:     #ffffff !important;
    transition:     border-color .2s, box-shadow .2s;
    -webkit-text-fill-color: #1a1a1a;                /* Safari override */
}
.eco-input:hover {
    border-color: #8dc63f !important;
}
.eco-input:focus {
    border-color: #8dc63f !important;
    box-shadow:   0 0 0 3px rgba(141,198,63,.18) !important;
    outline:      none;
    color:        #1a1a1a !important;
    background:   #ffffff !important;
}
.eco-input::placeholder { color: #9ca3af; font-size: .88rem; }
select.eco-input         { cursor: pointer; }
.eco-input option        { background: #fff; color: #1a1a1a; }

/* Red validation state for missing width/height */
.eco-fi.is-invalid,
.eco-input.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220,53,69,.15) !important;
    animation: shake .35s ease;
}
@keyframes shake {
    0%,100%{ transform:translateX(0); }
    20%    { transform:translateX(-5px); }
    60%    { transform:translateX(5px); }
}

/* Inline field error text — hidden until a field is marked .is-invalid */
.eco-field-error {
    display: none;
    color: #dc3545;
    font-size: .74rem;
    margin-top: 4px;
}
.eco-field-error.show { display: block; }

/* Status badge colours in leads table */
.status-badge-new        { background: #fff3cd; color: #856404; }
.status-badge-contacted  { background: #cff4fc; color: #055160; }
.status-badge-closed     { background: #d1e7dd; color: #0a3622; }
.status-badge-lost       { background: #f8d7da; color: #842029; }

/* Admin status select */
.status-select { font-size: .82rem; border-radius: 0 !important; min-width: 120px; }

/* Bootstrap 5 pagination override */
.pagination .page-link:hover  { color: var(--eco-green); }
.pagination .page-link:focus  { box-shadow: 0 0 0 3px rgba(141,198,63,.25); }

/* Admin settings input-group – $ / % prefix badge + inputs ─────────────────── */
.admin-panel-card .input-group-text {
    border-radius: 0 !important;
    background:    #f0f2f4;
    border:        1.5px solid #b8bcc0;
    font-weight:   700;
    color:         #555;
    font-size:     .9rem;
}
/* Sync input border with the prefix badge */
.admin-panel-card .input-group .eco-input,
.admin-panel-card .input-group .form-control {
    border-radius:   0 !important;
    border:          1.5px solid #b8bcc0 !important;
    border-left:     0 !important;            /* no double border next to badge */
    color:           #1a1a1a !important;
    background:      #ffffff !important;
    font-size:       .9rem !important;
    padding:         11px 14px !important;
    -webkit-text-fill-color: #1a1a1a;
}
.admin-panel-card .input-group .eco-input:focus,
.admin-panel-card .input-group .form-control:focus {
    border-color: #8dc63f !important;
    box-shadow:   0 0 0 3px rgba(141,198,63,.18) !important;
    outline:      none;
    color:        #1a1a1a !important;
    background:   #fff !important;
}
/* also sync the left badge border when its sibling input is focused */
.admin-panel-card .input-group:focus-within .input-group-text {
    border-color: #8dc63f;
    border-right-color: #b8bcc0;  /* keep the join invisible */
}

/* Formula info box in settings */
.formula-box {
    background: rgba(141,198,63,.08);
    border-left: 3px solid var(--eco-green);
    padding: 12px 16px;
    font-size: .83rem;
    color: var(--eco-txt-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}
.formula-box strong { color: var(--eco-txt); }

/* Legacy section 1 responsive */
@media (max-width: 991px) {
    .eco-prod-hero { flex-direction: column; }
    .eco-prod-hero-left { flex: none; width: 100%; padding: 40px 24px; }
    .eco-prod-hero-right { flex: none; width: 100%; min-height: 240px; }
    .eco-est-panel { position: static; }
    .eco-hero-inner { padding: 60px 0 80px; }
}
@media (max-width: 767px) {
    .eco-hero-heading { font-size: 2.5rem; }
    .eco-cta-h2 { font-size: 2rem; }
    .eco-prod-title { font-size: 2rem; }
    .eco-strip-card { border-right: none; border-bottom: 1px solid var(--eco-border); }
    .eco-hero-divider { display: none; }
}

/* ── Variables ────────────────────────────────────────────────────────────── */
:root {
    --eco-accent:     #8dc63f;
    --eco-accent-dk:  #6fa030;
    --eco-dark:       #0f0f0f;
    --eco-dark-2:     #1a1a1a;
    --eco-dark-3:     #252525;
    --eco-white:      #ffffff;
    --eco-light:      #f5f5f3;
    --eco-text:       #1a1a1a;
    --eco-text-muted: #888888;
    --eco-border:     #e5e5e5;
    --eco-card-shadow: 0 4px 24px rgba(0,0,0,.08);
    --eco-font:       'Inter', -apple-system, sans-serif;
    --eco-radius:     0px;          /* Flat/square like mockup */
    --eco-radius-sm:  4px;
}

/* ── Base ─────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--eco-font);
    font-size: 15px;
    color: var(--eco-text);
    background: var(--eco-white);
    -webkit-font-smoothing: antialiased;
}

/* ── Typography helpers ───────────────────────────────────────────────────── */
.eco-accent        { color: var(--eco-accent); }
.eco-accent-text   { color: var(--eco-accent) !important; }

/* ── NAVBAR ───────────────────────────────────────────────────────────────── */
.eco-navbar {
    background: var(--eco-dark) !important;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: padding .3s;
}
.eco-navbar.scrolled { padding: 12px 0; }

/* Logo */
.eco-logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: .02em;
    line-height: 1;
}
.logo-eco    { color: #fff; font-size: 1.25rem; letter-spacing: .08em; }
.logo-blinds { color: #fff; font-size: 1.25rem; letter-spacing: .08em; }
.logo-tm     { font-size: .55em; vertical-align: super; }

.logo-leaf-wrap {
    display: inline-flex;
    align-items: center;
    margin: 0 4px;
}
.logo-leaf-svg {
    width: 22px;
    height: 26px;
    flex-shrink: 0;
}

/* Nav links */
.eco-navbar .nav-link {
    color: rgba(255,255,255,.75) !important;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .1em;
    padding: 6px 14px !important;
    transition: color .2s;
}
.eco-navbar .nav-link:hover,
.eco-navbar .nav-link.active { color: var(--eco-accent) !important; }

/* Dropdown */
.eco-dropdown {
    background: var(--eco-dark-2);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--eco-radius-sm);
    min-width: 180px;
}
.eco-dropdown .dropdown-item {
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    padding: 10px 20px;
    transition: all .15s;
}
.eco-dropdown .dropdown-item:hover {
    background: var(--eco-accent);
    color: #fff;
}

/* Quote button */
.eco-quote-btn {
    border: 1.5px solid rgba(255,255,255,.5) !important;
    color: #fff !important;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    padding: 8px 22px !important;
    border-radius: var(--eco-radius) !important;
    transition: all .2s;
}
.eco-quote-btn:hover {
    background: var(--eco-accent) !important;
    border-color: var(--eco-accent) !important;
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.eco-hero {
    min-height: 72vh;
    position: relative;
    background:
        url('/images/hero-banner.png')
        center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.eco-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(5,5,5,.95) 0%,
        rgba(5,5,5,.90) 45%,
        rgba(5,5,5,.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.eco-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.eco-hero .container-xl {
    position: relative;
    z-index: 3;
}

.eco-hero-sub {
    color: var(--eco-accent);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.eco-hero-title {
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -.01em;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.eco-hero-desc {
    color: rgba(255,255,255,.62);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 34px;
    max-width: 480px;
}

.eco-hero-bottom-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.38);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .2em;
    white-space: nowrap;
    z-index: 3;
}

/* Watch video link */
.eco-watch-video {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.65);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    transition: color .2s;
}
.eco-watch-video:hover { color: var(--eco-accent); }

.eco-play-btn {
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    flex-shrink: 0;
    transition: all .2s;
}
.eco-watch-video:hover .eco-play-btn {
    border-color: var(--eco-accent);
    background: var(--eco-accent);
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.eco-btn-primary {
    background: var(--eco-accent) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 2px !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 28px !important;
    transition: background .2s, transform .1s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.eco-btn-primary:hover {
    background: var(--eco-accent-dk) !important;
    transform: translateY(-1px);
}
.eco-btn-primary:disabled {
    background: #aaa !important;
    cursor: not-allowed;
    transform: none;
}

.eco-btn-outline-white {
    border: 1.5px solid rgba(255,255,255,.55) !important;
    color: #fff !important;
    background: transparent !important;
    border-radius: 2px !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 28px !important;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
}
.eco-btn-outline-white:hover {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.8) !important;
}

.eco-btn-dark {
    background: var(--eco-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 2px !important;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 12px 28px !important;
    transition: background .2s;
}
.eco-btn-dark:hover { background: #333 !important; }
.eco-btn-dark:hover { background: var(--eco-dark-3) !important; }

/* ── OUR WINDOW SOLUTIONS LABEL ─────────────────────────────────────────── */
.eco-solutions-bar {
    background: #0d0d0d;
    text-align: center;
    padding: 26px 0 24px;
    border-top: 1px solid rgba(255,255,255,.06);
}
.eco-solutions-bar span {
    color: rgba(255,255,255,.55);
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .28em;
    text-transform: uppercase;
}

/* ── PRODUCTS SECTION (DARK) ────────────────────────────────────────────── */
.eco-products-section {
    background: #0d0d0d;
    border-bottom: 1px solid rgba(255,255,255,.06);
    padding-bottom: 10px;
}

.eco-product-card {
    border-right: 1px solid rgba(255,255,255,.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    background: transparent;
    cursor: pointer;
    transition: background .25s;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.eco-product-card:last-child { border-right: none; }
.eco-product-card:hover { background: rgba(255,255,255,.03); color: inherit; text-decoration: none; }

.eco-product-icon {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 20px 22px 17px;
    color: rgba(255,255,255,.9);
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}
.eco-product-icon .bi {
    color: var(--eco-accent);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Product image backgrounds – product thumbnails */
.eco-product-img {
    height: 200px;
    width: calc(100% - 48px);
    margin: 12px 24px 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
    flex-shrink: 0;
}
.eco-product-card:hover .eco-product-img { transform: scale(1.05); }
.eco-img-zebra {
    background: url('../images/products/Dual-Shade-Zebra.png') center/cover no-repeat;
}
.eco-img-roller {
    background: url('../images/products/Sun-Filtering-screen.png') center/cover no-repeat;
}
.eco-img-screen {
    background: url('../images/products/Outdoor-Sun-Filtering-screen.png') center/cover no-repeat;
}
.eco-img-blackout {
    background: url('../images/products/Black-Out.png') center/cover no-repeat;
}

.eco-product-body {
    padding: 18px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.eco-product-body p {
    color: rgba(255,255,255,.55);
    font-size: .88rem;
    line-height: 1.65;
    margin-bottom: 16px;
    flex: 1;
}

.eco-learn-more {
    color: var(--eco-accent);
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s, color .15s;
    align-self: flex-start;
}
.eco-learn-more:hover { color: #a8d85a; gap: 10px; }

/* ── ABOUT SECTION ───────────────────────────────────────────────────────── */
.eco-about {
    background: var(--eco-light);
    padding: 90px 0;
}

.eco-section-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--eco-accent);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.eco-label-light { color: var(--eco-accent) !important; }

.eco-section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--eco-text);
    letter-spacing: -.01em;
}

.eco-body-text {
    color: var(--eco-text-muted);
    line-height: 1.75;
    font-size: .95rem;
}

.eco-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--eco-text);
    font-size: .9rem;
    margin-bottom: 10px;
    font-weight: 500;
}
.eco-check-list .bi { color: var(--eco-accent); font-size: 1rem; }

/* About image – bright tall luxury interior */
.eco-about-img-wrap {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.eco-about-img {
    height: 420px;
    background: url('../images/about.png') center/cover no-repeat;
}

/* Stats */
.eco-stats { display: flex; flex-direction: column; gap: 32px; }

.eco-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 0;
}

.eco-stat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border: 1px solid #d0d0d0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #8a8a8a;
}
.eco-stat-num   { font-size: 2.4rem; font-weight: 900; color: var(--eco-text); line-height: 1; letter-spacing: -.02em; }
.eco-stat-label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--eco-text-muted); margin-top: 4px; }

/* ── CTA SECTION ─────────────────────────────────────────────────────────── */
.eco-cta-section {
    position: relative;
    background:
        url('../images/contact.png')
        center/cover no-repeat;
    padding: 45px 0 !important;
}
.eco-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(5,5,5,.97) 0%,
        rgba(5,5,5,.92) 45%,
        rgba(5,5,5,.80) 100%);
    pointer-events: none;
    z-index: 0;
}
.eco-cta-section .container-xl { position: relative; z-index: 1; }

.eco-cta-title {
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -.01em;
}
.eco-cta-desc { color: rgba(255,255,255,.58); font-size: .95rem; line-height: 1.72; }

/* CTA form – inputs directly on dark bg, no wrapper card */
.eco-cta-form-wrap {
    padding: 0;
    background: transparent;
    border: none;
}

/* ── CTA DARK-BG FORM (homepage) ──────────────────────────────────────
   Uses .eco-fi (dark-context) – no extra rules needed, default covers it.
   Only the select chevron arrow and textarea height are added here. */
select.eco-fi.eco-cta-select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath stroke='%23ffffff' stroke-opacity='0.65' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-repeat:   no-repeat !important;
    background-position: right 14px center !important;
    background-size:     14px !important;
    padding-right:       40px !important;
}
textarea.eco-fi { resize: vertical; }

/* Dark form inputs (admin login) */
.eco-input-dark {
    background: rgba(255,255,255,.06) !important;
    border: 1.5px solid rgba(255,255,255,.1) !important;
    color: #fff !important;
    border-radius: var(--eco-radius-sm) !important;
    padding: 10px 14px !important;
}
.eco-input-dark:focus {
    border-color: var(--eco-accent) !important;
    box-shadow: 0 0 0 3px rgba(141,198,63,.2) !important;
    background: rgba(255,255,255,.08) !important;
}
.eco-input-dark::placeholder { color: rgba(255,255,255,.3); }

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.eco-footer {
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,.06);
}
.eco-footer-tagline { color: rgba(255,255,255,.45); font-size: .85rem; line-height: 1.7; }

.eco-social { display: flex; gap: 12px; }
.eco-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: .95rem;
    text-decoration: none;
    transition: all .2s;
}
.eco-social a:hover { border-color: var(--eco-accent); color: var(--eco-accent); }

.eco-footer-heading {
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    margin-bottom: 16px;
}

.eco-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-footer-links li { margin-bottom: 10px; }
.eco-footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .88rem;
    transition: color .15s;
}
.eco-footer-links a:hover { color: var(--eco-accent); }

.eco-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.eco-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.5);
    font-size: .88rem;
    margin-bottom: 12px;
}
.eco-footer-contact .bi { color: var(--eco-accent); flex-shrink: 0; margin-top: 2px; }

.eco-footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255,255,255,.3);
    font-size: .8rem;
}
.eco-footer-bottom a { color: rgba(255,255,255,.4); text-decoration: none; }
.eco-footer-bottom a:hover { color: var(--eco-accent); }

/* ── BREADCRUMB ──────────────────────────────────────────────────────────── */
.eco-breadcrumb {
    background: var(--eco-light);
    border-bottom: 1px solid var(--eco-border);
    padding: 12px 0;
}
.eco-breadcrumb .breadcrumb { margin: 0; font-size: .82rem; }
.eco-breadcrumb .breadcrumb-item a { color: var(--eco-accent); text-decoration: none; }
.eco-breadcrumb .breadcrumb-item.active { color: var(--eco-text-muted); }
.eco-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: var(--eco-border); }

/* ── ESTIMATOR HERO ──────────────────────────────────────────────────────── */
.eco-est-hero {
    position: relative;
    background:
        url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1920&q=80')
        center/cover no-repeat;
    min-height: 280px;
    display: flex;
    align-items: center;
}
.eco-est-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,.92) 0%, rgba(5,5,5,.88) 50%, rgba(5,5,5,.55) 100%);
    z-index: 0;
}
.eco-est-hero-overlay {
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px,
        transparent 1px, transparent 38px
    );
    pointer-events: none;
    z-index: 0;
}
.eco-est-hero .container-xl { position: relative; z-index: 1; }
.eco-est-title { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 900; }

.eco-feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,.7);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    min-width: 80px;
}
.eco-feat .bi {
    font-size: 1.6rem;
    color: var(--eco-accent);
}

/* ── PRODUCT TABS ────────────────────────────────────────────────────────── */
.eco-product-tabs {
    background: var(--eco-dark);
    border-bottom: 3px solid var(--eco-accent);
}

.eco-tab-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.65);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    padding: 10px 22px;
    border-radius: var(--eco-radius-sm);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px;
}
.eco-tab-btn:hover {
    border-color: var(--eco-accent);
    color: var(--eco-accent);
}
.eco-tab-btn.active {
    background: var(--eco-accent);
    border-color: var(--eco-accent);
    color: #fff;
}
.eco-tab-btn .bi { font-size: .9rem; }

/* ── ESTIMATOR CARD ──────────────────────────────────────────────────────── */
.eco-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius-sm);
    box-shadow: var(--eco-card-shadow);
    overflow: hidden;
}
.eco-card-header {
    background: var(--eco-dark);
    color: #fff;
    padding: 16px 22px;
    font-size: .85rem;
}
.eco-card-body { padding: 0; }
.eco-card-footer {
    background: var(--eco-light);
    border-top: 1px solid var(--eco-border);
    padding: 12px 22px;
}

/* ── WINDOWS HEADER (column labels) ─────────────────────────────────────── */
.eco-windows-header {
    display: grid;
    grid-template-columns: 1.8fr 0.9fr 0.9fr 0.6fr 1fr 1fr 0.9fr 40px;
    gap: 8px;
    padding: 10px 16px;
    background: var(--eco-light);
    border-bottom: 1px solid var(--eco-border);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    color: var(--eco-text-muted);
    text-transform: uppercase;
}

/* ── WINDOW ROW ──────────────────────────────────────────────────────────── */
.eco-window-row {
    display: grid;
    grid-template-columns: 1.8fr 0.9fr 0.9fr 0.6fr 1fr 1fr 0.9fr 40px;
    gap: 8px;
    padding: 10px 16px;
    border-bottom: 1px solid var(--eco-border);
    align-items: center;
    transition: background .15s;
    animation: rowSlideIn .2s ease;
}
.eco-window-row:last-child { border-bottom: none; }
.eco-window-row:hover { background: rgba(141,198,63,.04); }

@keyframes rowSlideIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.eco-window-row .eco-input {
    padding: 7px 10px !important;
    font-size: .84rem !important;
}

.eco-row-price {
    color: var(--eco-accent);
    font-size: .9rem;
    font-weight: 700;
    white-space: nowrap;
}

.eco-del-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    color: #ccc;
    font-size: .8rem;
    transition: all .2s;
    cursor: pointer;
}
.eco-del-btn:hover { background: #fee; border-color: #e55; color: #e55; }

/* ── PRICE PANEL ─────────────────────────────────────────────────────────── */
.eco-price-panel {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius-sm);
    box-shadow: var(--eco-card-shadow);
    overflow: hidden;
}

.eco-price-header {
    background: var(--eco-dark);
    color: #fff;
    padding: 18px 22px 12px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.eco-price-subtitle {
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    letter-spacing: 0;
}

.eco-price-body { padding: 18px 22px; }

/* Live per-window breakdown */
.eco-price-breakdown {
    min-height: 40px;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 10px;
}
.eco-breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    border-bottom: 1px dashed var(--eco-border);
    font-size: .83rem;
}
.eco-breakdown-row:last-child { border-bottom: none; }
.eco-breakdown-room { color: var(--eco-text); font-weight: 500; }
.eco-breakdown-size { color: var(--eco-text-muted); font-size: .78rem; }
.eco-breakdown-price { color: var(--eco-accent); font-weight: 700; }

.eco-price-row {
    display: flex;
    justify-content: space-between;
    font-size: .87rem;
    padding: 5px 0;
    color: var(--eco-text-muted);
}
.eco-discount-row { color: #2e7d32; }

.eco-price-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--eco-dark);
    color: #fff;
    padding: 14px 16px;
    border-radius: var(--eco-radius-sm);
    margin-top: 10px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
}
.eco-total-amount {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--eco-accent);
    line-height: 1;
}
.eco-total-currency { font-size: .8rem; font-weight: 600; color: rgba(255,255,255,.6); }

.eco-price-note {
    font-size: .73rem;
    color: var(--eco-text-muted);
    margin: 8px 0 0;
    font-style: italic;
}

.eco-need-help {
    color: var(--eco-text-muted);
    font-size: .8rem;
    text-decoration: none;
    transition: color .15s;
}
.eco-need-help:hover { color: var(--eco-accent); }

/* Why EcoBlinds box */
.eco-price-why {
    background: var(--eco-light);
    border-top: 1px solid var(--eco-border);
    padding: 16px 22px;
}
.eco-why-title {
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--eco-text);
    margin-bottom: 10px;
}
.eco-why-title .bi { color: var(--eco-accent); }
.eco-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.eco-why-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem;
    color: var(--eco-text-muted);
}
.eco-why-list .bi { color: var(--eco-accent); font-size: .85rem; }

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.eco-how-it-works { }
.eco-how-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.eco-how-num {
    width: 38px;
    height: 38px;
    background: var(--eco-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    font-weight: 800;
}
.eco-how-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--eco-text-muted);
    letter-spacing: .05em;
}

/* ── QUOTE SECTION ───────────────────────────────────────────────────────── */
.eco-quote-section {
    background: var(--eco-light);
    border-top: 3px solid var(--eco-accent);
}

/* ── ADMIN LAYOUT ────────────────────────────────────────────────────────── */
.admin-body { background: #f0f2f5; }

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: var(--eco-dark);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-brand {
    padding: 24px 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.admin-sidebar-label {
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .15em;
    color: rgba(255,255,255,.35);
    margin-top: 6px;
    text-transform: uppercase;
}

.admin-nav {
    padding: 16px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.admin-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    font-size: .85rem;
    font-weight: 500;
    padding: 11px 14px;
    border-radius: var(--eco-radius-sm);
    transition: all .15s;
}
.admin-nav-link:hover { background: rgba(255,255,255,.07); color: #fff; }
.admin-nav-link.active { background: var(--eco-accent); color: #fff; }
.admin-nav-link .bi { font-size: 1rem; }

.admin-sidebar-footer {
    padding: 16px 18px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.admin-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #fff;
}
.admin-user-info .bi { color: rgba(255,255,255,.4); }

/* Main area */
.admin-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
}
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--eco-border);
    padding: 0 28px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.admin-page-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eco-text);
}
.admin-content-wrap { padding: 28px; flex: 1; }

/* Admin cards */
.admin-stat-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius-sm);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: var(--eco-card-shadow);
}
.admin-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--eco-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.admin-stat-val   { font-size: 1.8rem; font-weight: 800; color: var(--eco-text); line-height: 1; }
.admin-stat-label { font-size: .72rem; font-weight: 700; letter-spacing: .08em; color: var(--eco-text-muted); text-transform: uppercase; }

.admin-panel-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    border-radius: var(--eco-radius-sm);
    box-shadow: var(--eco-card-shadow);
    overflow: hidden;
}
.admin-panel-header {
    padding: 16px 22px;
    border-bottom: 1px solid var(--eco-border);
    background: var(--eco-light);
}

/* Admin table */
.admin-table {
    font-size: .88rem;
    margin: 0;
}
.admin-table thead th {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--eco-text-muted);
    background: var(--eco-light);
    border-bottom: 2px solid var(--eco-border);
    padding: 12px 16px;
}
.admin-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--eco-border);
}
.admin-table tbody tr:hover td { background: rgba(141,198,63,.04); }

/* Admin Login page */
.admin-login-page {
    background: var(--eco-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.admin-login-wrap {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}
.admin-login-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--eco-radius-sm);
    padding: 40px 36px;
}

/* Sidebar toggle (mobile) */
.admin-sidebar-toggle {
    background: none;
    border: none;
    color: var(--eco-text);
    cursor: pointer;
}
@media (max-width: 991px) {
    .admin-sidebar {
        position: fixed;
        left: -260px;
        transition: left .25s;
    }
    .admin-sidebar.show { left: 0; }
    .admin-main { margin-left: 0 !important; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    .eco-windows-header { display: none; }

    .eco-window-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 8px;
        padding: 14px 16px;
    }
    .eco-wr-room  { grid-column: 1 / -1; }
    .eco-wr-price { grid-column: 1; }
    .eco-wr-del   { grid-column: 2; justify-self: end; }

    .eco-price-panel { position: static !important; }
}

/* ── TABLET (≤991px) ──────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    /* Hero */
    .eco-hero { min-height: 75vh; }
    .eco-hero-title { font-size: clamp(2.4rem, 5vw, 3.6rem); }
    .eco-hero-bottom-label { display: none; }

    /* Products – 2 per row (col-md-6) */
    .eco-product-card { border-right: 1px solid var(--eco-border); border-bottom: 1px solid var(--eco-border); }
    .eco-product-card:nth-child(2n) { border-right: none; }

    /* About */
    .eco-about .g-5 { --bs-gutter-y: 2rem; }

    /* CTA */
    .eco-cta-section { padding: 40px 0; }
    .eco-cta-title { font-size: clamp(1.8rem, 4vw, 2.6rem); }
}

/* ── MOBILE (≤767px) ──────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    /* Hero */
    .eco-hero { min-height: auto; padding: 80px 0 100px; align-items: flex-start; }
    .eco-hero .container-xl { padding-top: 0 !important; padding-bottom: 0 !important; }
    .eco-hero-title { font-size: 2.4rem; margin-bottom: 18px; }
    .eco-hero-desc { font-size: .95rem; }
    .eco-hero-bottom-label { display: none; }

    /* Products – 1 per row */
    .eco-product-card { border-right: none; border-bottom: 1px solid var(--eco-border); }
    .eco-product-img { height: 180px; }

    /* About */
    .eco-section-title { font-size: 1.8rem; }
    .eco-about-img { height: 260px; }
    .eco-stats { gap: 16px; }
    .eco-stat-num { font-size: 1.8rem; }

    /* CTA */
    .eco-cta-section { padding: 30px 0; }
    .eco-cta-title { font-size: 1.9rem; }
    .eco-cta-form-wrap { padding: 0; }

    /* Window row 2-col */
    .eco-window-row { grid-template-columns: 1fr 1fr; }
}

/* ── SMALL MOBILE (≤575px) ───────────────────────────────────────────────── */

/* On mobile the textarea must appear above the select+button column */
@media (max-width: 767px) {
    .eco-form-msg-col { order: 1; }
    .eco-form-btn-col { order: 2; }
}

@media (max-width: 575px) {
    .eco-hero { padding: 70px 0 90px; }
    .eco-hero-title { font-size: 2rem; }
    .eco-hero-sub { font-size: .66rem; }
    .eco-hero-desc { font-size: .9rem; }

    /* Buttons stack */
    .eco-hero .d-flex { flex-direction: column; align-items: flex-start; }
    .eco-btn-primary, .eco-btn-outline-white { width: 100%; justify-content: center; }

    /* Products */
    .eco-product-icon { padding: 14px 16px 12px; font-size: .68rem; }
    .eco-product-img { height: 160px; }
    .eco-product-body { padding: 14px 16px 20px; }

    /* About */
    .eco-section-title { font-size: 1.6rem; }
    .eco-cta-title { font-size: 1.7rem; }
    .eco-stat-item { padding: 0; gap: 14px; }
    .eco-stat-num { font-size: 1.6rem; }

    /* Footer columns */
    .eco-footer .row > [class*="col-"] { margin-bottom: 24px; }
}

/* ── PAGINATION (Bootstrap override) ─────────────────────────────────────── */
.pagination .page-link {
    color: var(--eco-accent);
    border-radius: var(--eco-radius-sm) !important;
}
.pagination .page-item.active .page-link {
    background: var(--eco-accent);
    border-color: var(--eco-accent);
}

/* ── MISC ────────────────────────────────────────────────────────────────── */
.z-1 { z-index: 1; }

/* Success/error alert transition */
.alert { animation: alertIn .3s ease; }
@keyframes alertIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Fade in form success message */
#formMsg .alert, #ctaFormMsg .alert {
    animation: alertIn .3s ease;
}

/* ════════════════════════════════════════════════════════════════════════════
   PAGE BANNER (small utility banner – about / terms / privacy)
   ════════════════════════════════════════════════════════════════════════════ */
.eco-page-banner {
    position: relative;
    background:
        url('../images/contact.png')
        center/cover no-repeat;
    padding: 70px 0 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.eco-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(5,5,5,.95) 0%,
        rgba(5,5,5,.90) 45%,
        rgba(5,5,5,.55) 100%);
    z-index: 0;
}
.eco-page-banner-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(255,255,255,.018) 0, rgba(255,255,255,.018) 1px,
        transparent 1px, transparent 38px
    );
    pointer-events: none;
    z-index: 0;
}
.eco-page-banner .container-xl { position: relative; z-index: 1; }

.eco-page-banner-sub {
    color: var(--eco-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}
.eco-page-banner-title {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin: 0;
}
.eco-page-crumbs {
    margin-top: 16px;
    font-size: .78rem;
    color: rgba(255,255,255,.5);
    letter-spacing: .04em;
}
.eco-page-crumbs a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .15s; }
.eco-page-crumbs a:hover { color: var(--eco-accent); }
.eco-page-crumbs .sep { margin: 0 8px; color: rgba(255,255,255,.3); }

/* ── ABOUT (standalone page) ─────────────────────────────────────────────── */
.eco-about-intro { background: #fff; padding: 90px 0; }
.eco-about-lead {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -.01em;
    color: var(--eco-text);
    max-width: 820px;
    margin: 0 auto 26px;
    text-align: center;
}
.eco-about-lead .eco-accent { color: var(--eco-accent); }
.eco-about-copy {
    max-width: 760px;
    margin: 0 auto;
}
.eco-about-copy p {
    color: var(--eco-text-muted);
    font-size: 1.02rem;
    line-height: 1.85;
    margin-bottom: 22px;
}

.eco-about-pillars { background: var(--eco-light); padding: 80px 0; }
.eco-pillar {
    background: #fff;
    border: 1px solid var(--eco-border);
    padding: 14px 10px;
    height: 100%;
    text-align: center;
    transition: box-shadow .2s, transform .2s;
}
.eco-pillar:hover { box-shadow: var(--eco-card-shadow); transform: translateY(-4px); }
.eco-pillar-icon {
    width: 26px; height: 26px;
    background: rgba(141,198,63,.12);
    color: var(--eco-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: .8rem;
    margin: 0 auto 8px;
}
.eco-pillar h5 {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .02em;
    color: var(--eco-text);
    margin-bottom: 4px;
    text-transform: uppercase;
}
.eco-pillar p {
    font-size: .68rem;
    line-height: 1.5;
    color: var(--eco-text-muted);
    margin: 0;
}

/* Contact info cards */
.eco-contact-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    padding: 32px 24px;
    transition: box-shadow .2s, transform .2s;
}
.eco-contact-card:hover { box-shadow: var(--eco-card-shadow); transform: translateY(-4px); }
.eco-contact-card-icon {
    width: 48px; height: 48px;
    background: rgba(141,198,63,.12);
    color: var(--eco-accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 14px;
    border-radius: 50%;
}
.eco-contact-card h5 {
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--eco-text);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.eco-contact-card p {
    font-size: .95rem;
    line-height: 1.7;
    color: var(--eco-text);
    margin: 0;
}
.eco-contact-card p a {
    color: var(--eco-accent);
    text-decoration: none;
}
.eco-contact-card p a:hover { text-decoration: underline; }

/* Closing luxury banner */
.eco-about-closing {
    position: relative;
    background:
        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1920&q=80')
        center/cover no-repeat;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}
.eco-about-closing::before {
    content: '';
    position: absolute; inset: 0;
    background: rgba(8,8,8,.86);
    z-index: 0;
}
.eco-about-closing .container-xl { position: relative; z-index: 1; }
.eco-about-closing-quote {
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -.01em;
    max-width: 760px;
    margin: 0 auto;
}
.eco-about-closing-quote .eco-accent { color: var(--eco-accent); }

/* ── LEGAL / CONTENT PAGES (terms, privacy) ──────────────────────────────── */
.eco-legal { background: #fff; padding: 70px 0 90px; }
.eco-legal-wrap { max-width: 820px; margin: 0 auto; }
.eco-legal-updated {
    font-size: .8rem;
    color: var(--eco-text-muted);
    letter-spacing: .04em;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--eco-border);
}
.eco-legal-wrap h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--eco-text);
    letter-spacing: -.01em;
    margin: 40px 0 14px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.eco-legal-wrap h2:first-of-type { margin-top: 0; }
.eco-legal-wrap h2 .num { color: var(--eco-accent); font-size: .95rem; font-weight: 900; }
.eco-legal-wrap h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--eco-text);
    margin: 24px 0 10px;
}
.eco-legal-wrap p {
    color: var(--eco-text-muted);
    font-size: .96rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.eco-legal-wrap ul {
    margin: 0 0 18px;
    padding-left: 0;
    list-style: none;
}
.eco-legal-wrap ul li {
    position: relative;
    padding-left: 26px;
    color: var(--eco-text-muted);
    font-size: .96rem;
    line-height: 1.75;
    margin-bottom: 10px;
}
.eco-legal-wrap ul li::before {
    content: '';
    position: absolute;
    left: 4px; top: 10px;
    width: 7px; height: 7px;
    background: var(--eco-accent);
    border-radius: 50%;
}
.eco-legal-wrap a { color: var(--eco-accent); text-decoration: none; }
.eco-legal-wrap a:hover { text-decoration: underline; }
.eco-legal-contact-box {
    background: var(--eco-light);
    border-left: 3px solid var(--eco-accent);
    padding: 22px 26px;
    margin-top: 30px;
}
.eco-legal-contact-box p { margin-bottom: 6px; }

@media (max-width: 767px) {
    .eco-page-banner { padding: 50px 0 46px; }
    .eco-about-intro, .eco-legal { padding: 56px 0; }
    .eco-about-pillars, .eco-about-closing { padding: 56px 0; }
}

/* ════════════════════════════════════════════════════════════════════════════
   OUR PROCESS (steps)
   ════════════════════════════════════════════════════════════════════════════ */
.eco-process { background: #fff; padding: 90px 0; }
.eco-process-step {
    display: flex;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--eco-border);
}
.eco-process-step:last-child { border-bottom: none; }
.eco-process-num {
    flex-shrink: 0;
    width: 62px; height: 62px;
    background: var(--eco-dark);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    font-weight: 900;
    position: relative;
}
.eco-process-num::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--eco-accent);
    transform: translate(6px, 6px);
    z-index: -1;
}
.eco-process-body { flex: 1; }
.eco-process-body h4 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--eco-text);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.eco-process-body p {
    color: var(--eco-text-muted);
    font-size: .98rem;
    line-height: 1.8;
    margin: 0;
    max-width: 640px;
}

/* ════════════════════════════════════════════════════════════════════════════
   PROJECTS GALLERY
   ════════════════════════════════════════════════════════════════════════════ */
.eco-projects { background: #fff; padding: 80px 0; }
.eco-project-card {
    position: relative;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}
.eco-project-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .5s ease;
}
.eco-project-card:hover .eco-project-img { transform: scale(1.08); }
.eco-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5,5,5,.85) 0%, rgba(5,5,5,.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: .95;
    transition: background .3s;
}
.eco-project-tag {
    color: var(--eco-accent);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.eco-project-title {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.01em;
    margin: 0;
}

/* ════════════════════════════════════════════════════════════════════════════
   REVIEWS / TESTIMONIALS
   ════════════════════════════════════════════════════════════════════════════ */
.eco-reviews { background: var(--eco-light); padding: 80px 0; }
.eco-review-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    padding: 30px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s, transform .2s;
}
.eco-review-card:hover { box-shadow: var(--eco-card-shadow); transform: translateY(-4px); }
.eco-review-stars { color: #f5b301; font-size: .95rem; margin-bottom: 16px; letter-spacing: 2px; }
.eco-review-text {
    color: var(--eco-text);
    font-size: .96rem;
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 22px;
}
.eco-review-person { display: flex; align-items: center; gap: 14px; }
.eco-review-avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--eco-accent);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.eco-review-name { font-weight: 700; font-size: .92rem; color: var(--eco-text); }
.eco-review-loc { font-size: .8rem; color: var(--eco-text-muted); }

.eco-reviews-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 54px;
    text-align: center;
}
.eco-reviews-summary .eco-rs-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--eco-text);
    line-height: 1;
}
.eco-reviews-summary .eco-rs-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--eco-text-muted);
    margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════════════════════════════════════════ */
.eco-faq { background: #fff; padding: 70px 0 90px; }
.eco-faq-wrap { max-width: 820px; margin: 0 auto; }
.eco-faq-item {
    border: 1px solid var(--eco-border);
    margin-bottom: 12px;
    background: #fff;
    transition: box-shadow .2s;
}
.eco-faq-item.open { box-shadow: var(--eco-card-shadow); }
.eco-faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--eco-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}
.eco-faq-q .bi {
    color: var(--eco-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: transform .25s;
}
.eco-faq-item.open .eco-faq-q .bi { transform: rotate(45deg); }
.eco-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.eco-faq-a-inner {
    padding: 0 24px 22px;
    color: var(--eco-text-muted);
    font-size: .96rem;
    line-height: 1.8;
}

@media (max-width: 767px) {
    .eco-process, .eco-projects, .eco-reviews, .eco-faq { padding: 56px 0; }
    .eco-process-step { gap: 16px; padding: 24px 0; }
    .eco-process-num { width: 50px; height: 50px; font-size: 1.15rem; }
    .eco-reviews-summary { gap: 36px; margin-bottom: 40px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   VIDEO MODAL
   ════════════════════════════════════════════════════════════════════════════ */
.eco-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.88);
    align-items: center;
    justify-content: center;
}
.eco-video-modal.active {
    display: flex;
}
.eco-video-modal-inner {
    position: relative;
    width: 90%;
    max-width: 960px;
}
.eco-video-player {
    width: 100%;
    display: block;
    border-radius: 4px;
    box-shadow: 0 24px 80px rgba(0,0,0,.6);
}
.eco-video-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: .75;
    transition: opacity .15s;
}
.eco-video-close:hover { opacity: 1; }

/* ════════════════════════════════════════════════════════════════════════════
   INSTANT ESTIMATE BUILDER (generic, multi-product /estimator page)
════════════════════════════════════════════════════════════════════════════ */
.eco-page-banner-estimator { background: url('../images/hero-banner1.jpeg') center/cover no-repeat; }
.eco-page-banner-desc {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    margin-top: 14px;
    max-width: 480px;
}

.eco-add-item-card {
    background: #fff;
    border: 1px solid var(--eco-border);
    box-shadow: var(--eco-shadow);
    padding: 28px;
}
.eco-add-item-card-sticky { position: sticky; top: 82px; }
@media (max-width: 991px) {
    .eco-add-item-card-sticky { position: static; }
}
.eco-add-item-title { font-size: 1.3rem; font-weight: 800; color: var(--eco-txt); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .01em; }
.eco-add-item-sub { color: var(--eco-txt-muted); font-size: .85rem; margin-bottom: 20px; }

.eco-add-item-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--eco-light);
    border: 1px solid var(--eco-border);
    padding: 12px 14px;
    font-size: .78rem;
    color: var(--eco-txt-muted);
    line-height: 1.5;
}
.eco-add-item-note .bi { color: var(--eco-green); font-size: 1rem; margin-top: 1px; }
.eco-add-item-note strong { color: var(--eco-txt); }

/* Outline buttons reused on this page */
.eco-btn-outline-green {
    background: transparent;
    color: var(--eco-green);
    border: 1.5px solid var(--eco-green);
}
.eco-btn-outline-green:hover { background: var(--eco-green); color: #fff; }
.eco-btn-outline-dark {
    background: transparent;
    color: var(--eco-txt);
    border: 1.5px solid var(--eco-txt);
}
.eco-btn-outline-dark:hover { background: var(--eco-txt); color: #fff; }

/* Project summary card */
.eco-project-summary-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--eco-light);
    border: 1px solid var(--eco-border);
    padding: 18px 20px;
}
.eco-project-summary-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(141,198,63,.12);
    color: var(--eco-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.eco-summary-icon-img { width: 26px; height: 26px; object-fit: contain; }
.eco-project-summary-mid { flex: 1; }
.eco-project-summary-count { font-weight: 800; font-size: 1.05rem; color: var(--eco-txt); }
.eco-project-summary-label { font-size: .78rem; color: var(--eco-txt-muted); }
.eco-project-summary-amt { text-align: right; font-weight: 900; font-size: 1.4rem; color: var(--eco-green); }
.eco-project-summary-usd { font-size: .68rem; font-weight: 700; color: var(--eco-txt-muted); letter-spacing: .08em; }

/* Empty state */
.eco-project-empty {
    border: 1.5px dashed var(--eco-border);
    text-align: center;
    padding: 40px 20px;
    color: var(--eco-txt-muted);
}
.eco-project-empty .bi { font-size: 1.8rem; color: #c7c7c7; display: block; margin-bottom: 10px; }
.eco-project-empty p { margin: 0; font-size: .88rem; }

/* Project item cards */
.eco-proj-item-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1.5px solid var(--eco-border);
    box-shadow: var(--eco-shadow);
    padding: 14px;
    margin-bottom: 14px;
}
.eco-proj-item-photo {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}
.eco-proj-item-body { flex: 1; min-width: 0; }
.eco-proj-item-hdr { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.eco-proj-item-name { font-weight: 800; font-size: .98rem; color: var(--eco-txt); }
.eco-proj-item-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.eco-proj-item-edit {
    background: none; border: none; padding: 0;
    color: var(--eco-green); font-size: .78rem; font-weight: 700;
    display: inline-flex; align-items: center; gap: 4px; cursor: pointer;
}
.eco-proj-item-edit:hover { text-decoration: underline; }
.eco-proj-item-del {
    background: none; border: none; padding: 0;
    color: #b0433f; font-size: .95rem; cursor: pointer;
}
.eco-proj-item-del:hover { color: #8a2f2c; }
.eco-proj-item-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 4px 18px;
    margin-top: 8px;
    font-size: .82rem;
}
.eco-proj-item-specs span { color: var(--eco-txt-muted); margin-right: 4px; }
.eco-proj-item-specs em { color: var(--eco-txt); font-style: italic; font-weight: 600; }

/* Project total bar */
.eco-project-total-bar { background: var(--eco-dark); padding: 26px 0; }
.eco-ptb-label { color: rgba(255,255,255,.45); font-size: .72rem; font-weight: 700; letter-spacing: .14em; }
.eco-ptb-count { color: #fff; font-size: 1.1rem; font-weight: 800; margin-top: 2px; }
.eco-ptb-amount { color: var(--eco-green); font-size: 1.8rem; font-weight: 900; }
.eco-ptb-usd { color: rgba(255,255,255,.5); font-size: .8rem; font-weight: 700; }
.eco-ptb-note { color: rgba(255,255,255,.35); font-size: .76rem; font-style: italic; margin-top: 2px; }

/* Trust row */
.eco-trust-item { display: flex; align-items: flex-start; gap: 14px; height: 100%; }
.eco-trust-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(141,198,63,.12);
    color: var(--eco-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.eco-trust-title { font-weight: 800; font-size: .92rem; color: var(--eco-txt); }
.eco-trust-desc { font-size: .8rem; color: var(--eco-txt-muted); }

.eco-secure-note {
    text-align: center;
    margin-top: 10px;
    font-size: .76rem;
    color: var(--eco-txt-muted);
}
.eco-secure-note .bi { color: var(--eco-green); margin-right: 4px; }

/* Request quote modal */
.eco-modal-content { border: none; border-radius: 0; }
.eco-modal-content .eco-fi,
.eco-modal-content .form-select {
    background: #fff !important;
    border: 1.5px solid #b8bcc0 !important;
    color: #1a1a1a !important;
}
.eco-modal-content .eco-fi::placeholder { color: #9ca3af; }
.eco-modal-content .eco-fi:focus {
    border-color: var(--eco-green) !important;
    box-shadow: 0 0 0 3px rgba(141,198,63,.15) !important;
}

@media (max-width: 767px) {
    .eco-proj-item-card { flex-direction: column; }
    .eco-proj-item-photo { width: 100%; height: 140px; }
    .eco-proj-item-specs { grid-template-columns: 1fr; }
}
