/* ═══════════════════════════════════════════════════════
   HERO SLIDER  —  home.css
   Pure image display using responsive HTML <img> tags.
   Preserves the original aspect ratio and size of images.
   Zero cropping on mobile, tablet, or desktop.
═══════════════════════════════════════════════════════ */

/* ─── Section Wrapper ─── */
.eco-hero-slider-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000; /* dark background during load */
    margin-top: 5px;  /* 5px gap between header and slider */
}

/* ─── Slider Track ─── */
.eco-slider-container {
    position: relative;
    width: 100%;
    height: auto;
}

/* ─── Individual Slide ─── */
.eco-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

/* The active slide is relative (in-flow) so it pushes the slider container height */
.eco-slide.active {
    position: relative;
    height: auto !important;
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* ─── Slide Image — scales naturally to preserve original size & aspect ratio ─── */
.eco-slide-img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ─── Full-slide clickable link overlay ─── */
.eco-slide-click-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    display: block;
}

/* ─── Arrow Navigation ─── */
.eco-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.eco-slider-nav svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.eco-slider-nav:hover {
    background: var(--eco-green-light, #337F3F);
    border-color: var(--eco-green-light, #337F3F);
    transform: translateY(-50%) scale(1.08);
}

.eco-slider-prev { left: 12px; }
.eco-slider-prev:hover svg { transform: translateX(-2px); }
.eco-slider-next { right: 12px; }
.eco-slider-next:hover svg { transform: translateX(2px); }

/* ─── Pagination Dots ─── */
.eco-slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
}

.eco-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.40);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-slider-dot:hover  { background: rgba(255, 255, 255, 0.75); }
.eco-slider-dot.active {
    background: var(--eco-green-light, #337F3F);
    width: 22px;
    border-radius: 4px;
}

/* ═════════════════════════════════════
   TABLET & DESKTOP RESPONSIVE SCALING
═════════════════════════════════════ */
@media (min-width: 768px) {
    .eco-slider-nav {
        width: 46px;
        height: 46px;
    }
    .eco-slider-nav svg {
        width: 20px;
        height: 20px;
    }
    .eco-slider-prev { left: 20px; }
    .eco-slider-next { right: 20px; }
    .eco-slider-dots { bottom: 18px; gap: 10px; }
    .eco-slider-dot { width: 10px; height: 10px; }
    .eco-slider-dot.active { width: 26px; }
}

@media (min-width: 1025px) {
    .eco-slider-prev { left: 28px; }
    .eco-slider-next { right: 28px; }
    .eco-slider-dots { bottom: 24px; }
    .eco-slider-dot.active { width: 30px; }
}

/* ─────────────────────────────────────────────
   IMPORTANT NOTICE BOARD — notice-card-inner
───────────────────────────────────────────── */
.eco-notice-section {
    padding: 30px 0 30px;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.eco-notice-card {
    position: relative;
    padding: 3px; /* border thickness */
    border-radius: var(--eco-radius-lg, 16px);
    overflow: hidden; /* clips the spin */
    background: transparent;
    box-shadow: var(--eco-shadow-lg);
}

/* Spinning conic-gradient — constrained inside the card bounds */
.eco-notice-card::before {
    content: '';
    position: absolute;
    inset: -60%;
    /* large enough to fill any aspect ratio */
    background: conic-gradient(from 0deg,
            transparent 0deg,
            transparent 60deg,
            var(--eco-green-light) 90deg,
            #F5E9B7 120deg,
            var(--eco-green-light) 150deg,
            transparent 180deg,
            transparent 240deg,
            var(--eco-green-mid) 270deg,
            var(--eco-green-light) 300deg,
            transparent 330deg,
            transparent 360deg);
    animation: ecoNoticeBorderSpin 4s linear infinite;
    border-radius: 50%;
}

@keyframes ecoNoticeBorderSpin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Inner card body — sits on top, covers the conic except the 3px gap */
.eco-notice-card-inner {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--eco-bg-card, #FFFFFF) 0%, var(--eco-bg-surface, #ECEFF1) 100%);
    border-radius: calc(var(--eco-radius-lg, 16px) - 4px);
    padding: 22px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eco-notice-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.eco-notice-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(51, 127, 63, 0.08);
    border: 1px solid rgba(51, 127, 63, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.eco-notice-bell-icon {
    width: 22px;
    height: 22px;
    color: var(--eco-green-light);
    animation: ecoNoticeBellRing 2.5s ease-in-out infinite;
    transform-origin: 50% 0;
}

@keyframes ecoNoticeBellRing {
    0%, 100% {
        transform: rotate(0);
    }
    10%, 20% {
        transform: rotate(-10deg);
    }
    30%, 50%, 70% {
        transform: rotate(10deg);
    }
    40%, 60%, 80% {
        transform: rotate(-10deg);
    }
    90% {
        transform: rotate(5deg);
    }
}

.eco-notice-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.eco-notice-label-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--eco-green-light);
    background: rgba(51, 127, 63, 0.08);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(51, 127, 63, 0.18);
}

.eco-notice-message-text {
    font-size: 15px;
    color: var(--eco-text-secondary);
    line-height: 1.65;
    margin: 0;
}

.eco-notice-message-text p {
    margin: 0;
}

.eco-btn-notice-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.04);
    color: var(--eco-text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.eco-btn-notice-close svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

.eco-btn-notice-close:hover {
    background: rgba(51, 127, 63, 0.12);
    color: var(--eco-green-light);
    transform: scale(1.1);
    border-color: rgba(51, 127, 63, 0.3);
}

/* responsive container */
.eco-notice-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .eco-notice-section {
        margin-top: 0;
        padding: 20px 0 28px;
    }
    .eco-notice-container {
        padding: 0 16px;
    }
    .eco-notice-card-inner {
        padding: 16px 16px;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 14px;
    }
    .eco-notice-left {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }
    .eco-notice-icon-wrap {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    .eco-notice-bell-icon {
        width: 20px;
        height: 20px;
    }
    .eco-notice-message-text {
        font-size: 14px;
    }
    .eco-btn-notice-close {
        align-self: flex-start;
        margin-top: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .eco-notice-section {
        padding: 14px 0 20px;
    }
    .eco-notice-container {
        padding: 0 12px;
    }
    .eco-notice-card-inner {
        padding: 14px 12px;
        gap: 10px;
    }
    .eco-notice-icon-wrap {
        width: 36px;
        height: 36px;
    }
    .eco-notice-bell-icon {
        width: 18px;
        height: 18px;
    }
    .eco-notice-message-text {
        font-size: 13px;
        line-height: 1.55;
    }
    .eco-notice-label-badge {
        font-size: 10px;
        padding: 2px 8px;
        letter-spacing: 0.8px;
    }
    .eco-btn-notice-close {
        width: 30px;
        height: 30px;
    }
    .eco-btn-notice-close svg {
        width: 16px;
        height: 16px;
    }
}

/* ─────────────────────────────────────────────
   PRODUCT CATALOG SECTION
   Highly professional layout, custom CSS Grid variables,
   and dynamic transition states.
───────────────────────────────────────────── */
.eco-home-catalog-section {
    padding: 60px 0 80px;
    background-color: var(--eco-bg-surface, #ECEFF1);
}

@media (max-width: 768px) {
    .eco-home-catalog-section {
        padding: 40px 0 56px;
    }
    .eco-catalog-slots-container {
        gap: 40px;
    }
    .eco-home-catalog-section .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .eco-home-catalog-section {
        padding: 28px 0 40px;
    }
    .eco-catalog-slots-container {
        gap: 28px;
    }
    .eco-home-catalog-section .eco-section-header {
        margin-bottom: 28px;
    }
    .eco-slot-category-title {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }
}

.eco-home-catalog-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.eco-home-catalog-section .eco-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eco-home-catalog-section .eco-section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--eco-charcoal, #1a1a1a);
    margin: 0 0 10px;
}

.eco-home-catalog-section .eco-section-subtitle {
    font-size: 1.05rem;
    color: var(--eco-text-secondary, #546e7a);
    max-width: 600px;
    margin: 0 auto;
}

.eco-catalog-slots-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.eco-catalog-category-slot {
    width: 100%;
}

.eco-slot-category-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--eco-charcoal, #1a1a1a);
    margin: 0 0 24px;
    padding-left: 12px;
    border-left: 4px solid var(--eco-green, #004321);
    line-height: 1.2;
}

/* Dynamic Grid matching the exact customizer counts */
.eco-home-products-grid {
    display: grid;
    grid-template-columns: repeat(var(--cols-mobile, 2), 1fr);
    column-gap: var(--eco-catalog-gap-x, 2px);
    row-gap: var(--eco-catalog-gap-y, 8px);
    margin-bottom: 30px;
}

@media (min-width: 601px) and (max-width: 1024px) {
    .eco-home-products-grid {
        grid-template-columns: repeat(var(--cols-tablet, 3), 1fr);
    }
}

@media (min-width: 1025px) {
    .eco-home-products-grid {
        grid-template-columns: repeat(var(--cols-desktop, 4), 1fr);
    }
}

/* Load More Container & Button styles */
.eco-load-more-container {
    text-align: center;
    margin: 30px 0 10px;
    width: 100%;
}

.eco-catalog-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--eco-green, #004321);
    color: #ffffff;
    border: none;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 67, 33, 0.15);
    position: relative;
    overflow: hidden;
}

.eco-catalog-load-more-btn:hover:not(:disabled) {
    background: var(--eco-green-light, #337f3f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 67, 33, 0.25);
}

.eco-catalog-load-more-btn:disabled,
.eco-catalog-load-more-btn.eco-loading {
    opacity: 0.75;
    cursor: not-allowed;
    pointer-events: none;
    transform: none;
}

.eco-catalog-load-more-btn.eco-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: eco-lm-shimmer 1.2s ease-in-out infinite;
}

@keyframes eco-lm-shimmer {
    to { left: 150%; }
}

/* Spinner element injected by JS */
.eco-lm-spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: eco-lm-spin 0.7s linear infinite;
    flex-shrink: 0;
}

@keyframes eco-lm-spin {
    to { transform: rotate(360deg); }
}


/* ─────────────────────────────────────────────
   CARD HOVER IMAGE SLIDES (Desktop hover)
───────────────────────────────────────────── */
.eco-card-image-slides {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.eco-card-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 1;
}

.eco-card-slide-img.active {
    opacity: 1;
    z-index: 2;
}

/* ─────────────────────────────────────────────
   PREMIUM GALLERY LIGHTBOX — GLOBAL STYLES
   (Shared by both Vertical and Slider Layouts)
───────────────────────────────────────────── */
body.eco-lightbox-open {
    overflow: hidden !important;
}

.eco-gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.eco-lightbox-open .eco-gallery-lightbox {
    opacity: 1;
    visibility: visible;
}

.eco-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 10, 5, 0.78);
    backdrop-filter: blur(10px);
}

.eco-lightbox-close {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 67, 33, 0.1);
    color: #263238;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    padding: 0;
}

.eco-lightbox-close:hover {
    background: #e53935;
    border-color: #e53935;
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
}

.eco-popup-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.eco-popup-badge-pill {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    line-height: 1.2;
}

.eco-popup-cat-badge {
    background: rgba(51, 127, 63, 0.08);
    color: var(--eco-green-light, #337f3f);
    border: 1px solid rgba(51, 127, 63, 0.15);
}

.eco-popup-id-badge {
    background: rgba(240, 192, 64, 0.12);
    color: #b78a00;
    border: 1px solid rgba(240, 192, 64, 0.22);
}

.eco-lightbox-product-title {
    font-weight: 700;
    color: var(--eco-green, #004321);
    margin: 0 0 16px 0;
    line-height: 1.25;
}

.eco-lightbox-divider {
    height: 1px;
    background: rgba(0, 67, 33, 0.08);
    width: 100%;
    margin-bottom: 18px;
}

.eco-lightbox-desc-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78909c;
    margin: 0 0 10px 0;
}

.eco-lightbox-description-body {
    font-size: 14px;
    line-height: 1.65;
    color: #455a64;
}

.eco-lightbox-description-body p {
    margin: 0 0 12px 0;
}

.eco-lightbox-description-body p:last-child {
    margin-bottom: 0;
}

.eco-lightbox-features-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed rgba(0, 67, 33, 0.08);
}

.eco-lightbox-features-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78909c;
    margin: 0 0 12px 0;
}

.eco-popup-features-list {
    margin: 0;
    padding-left: 20px;
    color: #455a64;
    font-size: 14px;
    line-height: 1.65;
}

.eco-popup-features-list li {
    margin-bottom: 8px;
}

.eco-popup-features-list li::marker {
    color: var(--eco-green-light, #337f3f);
}

.eco-lightbox-specs-section {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px dashed rgba(0, 67, 33, 0.08);
}

.eco-lightbox-specs-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #78909c;
    margin: 0 0 12px 0;
}

.eco-popup-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    line-height: 1.5;
    color: #455a64;
}

.eco-popup-specs-table tr {
    border-bottom: 1px solid rgba(0, 67, 33, 0.04);
}

.eco-popup-specs-table tr:last-child {
    border-bottom: none;
}

.eco-popup-specs-table td {
    padding: 8px 0;
    vertical-align: top;
}

.eco-popup-specs-table td.eco-spec-label {
    font-weight: 600;
    color: var(--eco-green, #004321);
    width: 35%;
}

.eco-popup-specs-table td.eco-spec-value {
    color: #37474f;
    padding-left: 12px;
}


.eco-popup-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 67, 33, 0.07);
    display: flex;
    gap: 12px;
}

.eco-popup-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--eco-whatsapp-btn, #25D366);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 8px 24px var(--eco-whatsapp-btn-shadow, rgba(37, 211, 102, 0.25));
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-popup-whatsapp-btn:hover {
    background: var(--eco-whatsapp-btn-hover, #1da851);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--eco-whatsapp-btn-shadow, rgba(37, 211, 102, 0.4));
}

.eco-popup-whatsapp-btn svg {
    display: block;
    width: 20px;
    height: 20px;
}


/* ─────────────────────────────────────────────
   STYLE 1: VERTICAL SCROLL LAYOUT
───────────────────────────────────────────── */
.eco-style-vertical .eco-lightbox-wrapper {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 560px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 40, 15, 0.22);
    border: 1px solid rgba(0, 67, 33, 0.08);
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.eco-lightbox-open .eco-style-vertical .eco-lightbox-wrapper {
    transform: scale(1);
}

.eco-style-vertical .eco-lightbox-scroll-body {
    overflow-y: auto;
    overflow-x: hidden;
    flex: 1;
    scroll-behavior: smooth;
}

.eco-style-vertical .eco-lightbox-scroll-body::-webkit-scrollbar { width: 5px; }
.eco-style-vertical .eco-lightbox-scroll-body::-webkit-scrollbar-track { background: transparent; }
.eco-style-vertical .eco-lightbox-scroll-body::-webkit-scrollbar-thumb {
    background: rgba(0, 67, 33, 0.18);
    border-radius: 10px;
}
.eco-style-vertical .eco-lightbox-scroll-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 67, 33, 0.35);
}

.eco-style-vertical .eco-lightbox-images-stack {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f7faf8;
}

.eco-style-vertical .eco-lightbox-img-item {
    width: 100%;
    line-height: 0;
    border-bottom: 1px solid rgba(0, 67, 33, 0.05);
}

.eco-style-vertical .eco-lightbox-img-item:last-child {
    border-bottom: none;
}

.eco-style-vertical .eco-lightbox-img-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.eco-style-vertical .eco-lightbox-details-section {
    padding: 28px 28px 32px;
    background: #ffffff;
}

.eco-style-vertical .eco-lightbox-product-title {
    font-size: 22px;
}

.eco-style-vertical .eco-popup-actions {
    flex-direction: column;
}

/* Call button — white background, no border, no hover, icon + number only */
.eco-style-vertical .eco-popup-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--eco-green, #004321) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    margin-top: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    pointer-events: auto;
}

.eco-style-vertical .eco-popup-call-btn:hover,
.eco-style-vertical .eco-popup-call-btn:focus,
.eco-style-vertical .eco-popup-call-btn:active {
    background: #ffffff;
    color: var(--eco-green, #004321) !important;
    text-decoration: none !important;
    outline: none;
    box-shadow: none;
}

.eco-style-vertical .eco-popup-call-btn svg {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}


/* ─────────────────────────────────────────────
   STYLE 2: SLIDER CAROUSEL LAYOUT
───────────────────────────────────────────── */
.eco-style-slider .eco-lightbox-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 960px;
    height: 85vh;
    max-height: 640px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 40, 15, 0.22);
    border: 1px solid rgba(0, 67, 33, 0.08);
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.eco-lightbox-open .eco-style-slider .eco-lightbox-wrapper {
    transform: scale(1);
}

.eco-style-slider .eco-lightbox-content-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
    height: 100%;
}

.eco-style-slider .eco-lightbox-gallery-col {
    background: #f7faf8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-right: 1px solid rgba(0, 67, 33, 0.06);
    height: 100%;
}

.eco-style-slider .eco-lightbox-slider-container {
    position: relative;
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.eco-style-slider .eco-lightbox-slides-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.eco-style-slider .eco-lightbox-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease;
    transform: scale(0.95);
}

.eco-style-slider .eco-lightbox-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.eco-style-slider .eco-lightbox-slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
}

.eco-style-slider .eco-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 67, 33, 0.12);
    color: var(--eco-green, #004321);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.28s ease;
    padding: 0;
}

.eco-style-slider .eco-lightbox-nav:hover {
    background: var(--eco-green, #004321);
    color: #ffffff;
    border-color: var(--eco-green, #004321);
    transform: translateY(-50%) scale(1.1);
}

.eco-style-slider .eco-lightbox-nav svg {
    width: 16px;
    height: 16px;
    display: block;
}

.eco-style-slider .eco-lightbox-prev { left: 16px; }
.eco-style-slider .eco-lightbox-next { right: 16px; }

.eco-style-slider .eco-lightbox-dots-wrap {
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 16px 0;
    background: #f7faf8;
}

.eco-style-slider .eco-lightbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 67, 33, 0.2);
    cursor: pointer;
    transition: all 0.28s ease;
    padding: 0;
    border: none;
}

.eco-style-slider .eco-lightbox-dot.active {
    background: var(--eco-green-light, #337f3f);
    transform: scale(1.3);
}

.eco-style-slider .eco-lightbox-info-col {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.eco-style-slider .eco-lightbox-info-inner {
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-sizing: border-box;
}

.eco-style-slider .eco-lightbox-product-title {
    font-size: 24px;
}

.eco-style-slider .eco-lightbox-description-scroll {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 24px;
    padding-right: 12px;
}

.eco-style-slider .eco-lightbox-description-scroll::-webkit-scrollbar {
    width: 4px;
}
.eco-style-slider .eco-lightbox-description-scroll::-webkit-scrollbar-track {
    background: transparent;
}
.eco-style-slider .eco-lightbox-description-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 67, 33, 0.15);
    border-radius: 10px;
}
.eco-style-slider .eco-lightbox-description-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 67, 33, 0.3);
}

.eco-style-slider .eco-popup-actions {
    flex-direction: column;
}

/* Call button — white background, no border, no hover, icon + number only */
.eco-style-slider .eco-popup-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--eco-green, #004321) !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 15px;
    margin-top: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border: none;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    pointer-events: auto;
}

.eco-style-slider .eco-popup-call-btn:hover,
.eco-style-slider .eco-popup-call-btn:focus,
.eco-style-slider .eco-popup-call-btn:active {
    background: #ffffff;
    color: var(--eco-green, #004321) !important;
    text-decoration: none !important;
    outline: none;
    box-shadow: none;
}

.eco-style-slider .eco-popup-call-btn svg {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}


/* ─────────────────────────────────────────────
   RESPONSIVE MEDIA QUERIES (BOTH LAYOUTS)
───────────────────────────────────────────── */
@media (max-width: 820px) {
    /* Convert split screen Slider Layout into vertical scroll list on tablets/mobiles */
    .eco-style-slider .eco-lightbox-wrapper {
        flex-direction: column;
        height: auto;
        max-height: 92vh;
        width: 94%;
        border-radius: 16px;
    }

    .eco-style-slider .eco-lightbox-content-grid {
        grid-template-columns: 1fr;
        height: auto;
        max-height: 92vh;
        overflow-y: auto;
    }

    .eco-style-slider .eco-lightbox-gallery-col {
        height: 280px;
        border-right: none;
        border-bottom: 1px solid rgba(0, 67, 33, 0.06);
    }

    .eco-style-slider .eco-lightbox-info-col {
        height: auto;
    }

    .eco-style-slider .eco-lightbox-info-inner {
        padding: 24px;
        height: auto;
    }

    .eco-style-slider .eco-lightbox-product-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .eco-style-slider .eco-lightbox-divider {
        margin-bottom: 16px;
    }

    .eco-style-slider .eco-lightbox-description-scroll {
        max-height: 180px;
        margin-bottom: 16px;
    }

    .eco-style-slider .eco-popup-actions {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 600px) {
    /* Responsive tweaks for Vertical Scroll layout on smaller phones */
    .eco-style-vertical .eco-lightbox-wrapper {
        width: 96%;
        border-radius: 14px;
        max-height: 94vh;
    }

    .eco-style-vertical .eco-lightbox-details-section {
        padding: 20px 18px 24px;
    }

    .eco-style-vertical .eco-lightbox-product-title {
        font-size: 19px;
    }

    .eco-gallery-lightbox .eco-lightbox-close {
        top: 10px;
        right: 12px;
        width: 32px;
        height: 32px;
        font-size: 20px;
    }
}


/* ═══════════════════════════════════════════════════════════════════
   PRODUCTION VIDEO SECTION  —  Dual Slider Layout
═══════════════════════════════════════════════════════════════════ */

/* ─── Section wrapper ─── */
.eco-production-video-section {
    padding: 72px 0 80px;
    background: linear-gradient(170deg, #f4f7f5 0%, #edf2ee 100%);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .eco-production-video-section {
        padding: 48px 0 56px;
    }
    .eco-pvs-inner {
        padding: 0 16px;
    }
    .eco-pvs-header {
        margin-bottom: 28px;
    }
}

.eco-pvs-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.eco-pvs-header {
    text-align: center;
    margin-bottom: 40px;
}

/* ─── Section rows — both sliders stack vertically, each full-width ─── */
.eco-pvs-columns {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* No special per-variant overrides — all full-width */
.eco-pvs-columns.eco-video-split-layout,
.eco-pvs-columns.eco-video-vertical-only,
.eco-pvs-columns.eco-video-horizontal-only {
    /* intentionally empty — all variants are full-width stacked */
}

/* ─── Each slider column ─── */
.eco-pvs-col {
    min-width: 0;
    width: 100%;
}

/* Row label above each slider */
.eco-pvs-row-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eco-green, #004321);
    opacity: 0.55;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.eco-pvs-row-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: currentColor;
    opacity: 0.25;
}

/* ─── Slider wrapper — gives arrows their positioning context ─── */
.eco-pvs-slider {
    position: relative;
    padding: 0 48px; /* side room for arrows */
}

/* ─── The scrollable track ─── */
.eco-pvs-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 16px;
    padding: 10px 4px 14px; /* vertical padding so card box-shadows show */
}

.eco-pvs-track::-webkit-scrollbar {
    display: none;
}

/* ─── Each slide — desktop: 4 cards visible ─── */
.eco-pvs-slide {
    flex: 0 0 calc(25% - 12px); /* 4 per view: (100% / 4) minus 3/4 of gap */
    scroll-snap-align: start;
    box-sizing: border-box;
}

/* ─── Video Card Base ─── */
.eco-video-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 67, 33, 0.07);
    border: 1px solid rgba(0, 67, 33, 0.07);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.eco-video-card:hover,
.eco-video-card:focus-visible {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 14px 36px rgba(0, 67, 33, 0.13);
    border-color: var(--eco-green-light, #337F3F);
}

/* ─── Media wrapper ─── */
.eco-vc-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    display: block;
}

.eco-video-card-vertical .eco-vc-media {
    aspect-ratio: 9 / 16;
}

.eco-video-card-horizontal .eco-vc-media {
    aspect-ratio: 16 / 9;
}

.eco-vc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.35s ease;
}

.eco-video-card:hover .eco-vc-media img {
    transform: scale(1.07);
    filter: brightness(0.82);
}

/* Fallback gradient background */
.eco-vc-fallback {
    width: 100%;
    height: 100%;
    min-height: 160px;
    background: linear-gradient(145deg, var(--eco-green, #004321) 0%, #263238 100%);
}

/* ─── Play overlay ─── */
.eco-vc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 30, 14, 0.12);
    transition: background 0.3s ease;
}

.eco-video-card:hover .eco-vc-overlay {
    background: rgba(0, 30, 14, 0.28);
}

.eco-vc-play {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-vc-play svg {
    transform: translateX(2px);
}

.eco-video-card:hover .eco-vc-play {
    background: var(--eco-green-light, #337F3F);
    border-color: var(--eco-green-light, #337F3F);
    transform: scale(1.14);
    box-shadow: 0 0 28px rgba(51, 127, 63, 0.55);
}

/* ─── Source badge ─── */
.eco-vc-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 5;
    transition: transform 0.25s ease;
}

.eco-vc-badge svg { display: block; }
.eco-badge-yt  { background: rgba(220, 0, 0, 0.85); }
.eco-badge-mp4 { background: rgba(0, 67, 33, 0.85); }
.eco-video-card:hover .eco-vc-badge { transform: scale(1.1); }

/* ─── Card info strip ─── */
.eco-vc-info {
    padding: 12px 14px;
    background: #fff;
    flex: 1;
}

.eco-vc-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    color: #263238;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s ease;
}

.eco-video-card:hover .eco-vc-title {
    color: var(--eco-green-light, #337F3F);
}

/* ─── Slider Navigation Arrows ─── */
.eco-pvs-arrow {
    position: absolute;
    top: 40%; /* align with card media area, not the title strip */
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid rgba(0, 67, 33, 0.14);
    color: var(--eco-green, #004321);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
    padding: 0;
}

.eco-pvs-arrow:hover {
    background: var(--eco-green, #004321);
    color: #fff;
    border-color: var(--eco-green, #004321);
    box-shadow: 0 6px 22px rgba(0, 67, 33, 0.32);
    transform: translateY(-50%) scale(1.08);
}

/* Arrows sit in the 48px padding gutters on each side */
.eco-pvs-prev { left: 4px; }
.eco-pvs-next { right: 4px; }

/* ─── Dot Indicators ─── */
.eco-pvs-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 14px;
}

.eco-pvs-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 67, 33, 0.22);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.28s ease;
}

.eco-pvs-dot.active,
.eco-pvs-dot:hover {
    background: var(--eco-green, #004321);
    transform: scale(1.35);
}

/* ═══════════════════════════════════════════════════════════════════
   VIDEO LIGHTBOX MODAL
═══════════════════════════════════════════════════════════════════ */
.eco-video-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-video-lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.eco-vlb-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 8, 4, 0.82);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.eco-vlb-dialog {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 900px;
    background: #1a2428;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: scale(0.91);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-video-lightbox-modal.active .eco-vlb-dialog {
    transform: scale(1);
}

/* Vertical modal — keep it narrow */
.eco-video-lightbox-modal.is-vertical .eco-vlb-dialog {
    max-width: 420px;
}

.eco-vlb-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    padding: 0;
    transition: all 0.28s ease;
}

.eco-vlb-close:hover {
    background: #e53935;
    border-color: #e53935;
    transform: rotate(90deg) scale(1.05);
}

.eco-vlb-player {
    position: relative;
    width: 100%;
    background: #000;
}

.eco-vlb-player.aspect-horizontal { aspect-ratio: 16 / 9; }
.eco-vlb-player.aspect-vertical   { aspect-ratio: 9 / 16; max-height: 80vh; }

.eco-vlb-player iframe,
.eco-vlb-player video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.eco-vlb-title {
    color: #e0e8e3;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 20px;
    margin: 0;
    background: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — multi-card visible per breakpoint
═══════════════════════════════════════════════════════════════════ */

/* Tablet ≤ 1024px — 3 cards per row */
@media (max-width: 1024px) {
    .eco-pvs-slide {
        flex: 0 0 calc(33.333% - 11px);
    }

    .eco-pvs-slider {
        padding: 0 44px;
    }
}

/* Mobile ≤ 600px — 2 cards per row */
@media (max-width: 600px) {
    .eco-pvs-slide {
        flex: 0 0 calc(50% - 8px);
    }

    .eco-production-video-section {
        padding: 48px 0 56px;
    }

    .eco-pvs-inner {
        padding: 0 12px;
    }

    .eco-pvs-slider {
        padding: 0 36px;
    }

    .eco-pvs-columns {
        gap: 36px;
    }

    .eco-vc-play {
        width: 44px;
        height: 44px;
    }

    .eco-vlb-dialog {
        width: 95%;
        border-radius: 12px;
    }

    .eco-vlb-title {
        font-size: 13px;
        padding: 11px 16px;
    }
}

/* Very small — single card, minimal padding */
@media (max-width: 360px) {
    .eco-pvs-slide {
        flex: 0 0 calc(100% - 0px);
    }
    .eco-pvs-slider {
        padding: 0 32px;
    }
}

/* ═══════════════════════════════════════════════════════════
   OUR VERIFIED CLIENTS — Premium Infinite Logo Marquee
═══════════════════════════════════════════════════════════ */

.eco-clients-section {
    position: relative;
    padding: 10px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            color-mix(in srgb, var(--eco-green, #004321) 6%, #fff) 0%,
            color-mix(in srgb, var(--eco-green-light, #337F3F) 3%, var(--eco-bg-page, #F5F7F8)) 50%,
            color-mix(in srgb, var(--eco-green, #004321) 4%, #fff) 100%
        );
    border-top:    1px solid color-mix(in srgb, var(--eco-green, #004321) 14%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--eco-green, #004321) 8%,  transparent);
}

/* Diagonal mesh texture */
.eco-clients-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg,  color-mix(in srgb, var(--eco-green, #004321) 6%, transparent) 1px, transparent 1px),
        linear-gradient(-45deg, color-mix(in srgb, var(--eco-green, #004321) 6%, transparent) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

/* Radial gradient spotlight at the top-centre */
.eco-clients-section::after {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 420px;
    background: radial-gradient(ellipse at center,
        color-mix(in srgb, var(--eco-green-light, #337F3F) 14%, transparent) 0%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.eco-clients-inner {
    position: relative;
    z-index: 1;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Section Header ── */
.eco-clients-header {
    text-align: center;
    margin-bottom: 56px;
}

/* Verified badge pill */
.eco-clients-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 20px 7px 15px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--eco-green, #004321);
    background: color-mix(in srgb, var(--eco-green, #004321) 9%, #fff);
    border: 1.5px solid color-mix(in srgb, var(--eco-green, #004321) 20%, transparent);
    margin-bottom: 20px;
    box-shadow: 0 2px 14px rgba(0,67,33,0.10);
    animation: eco-badge-pop 0.6s 0.2s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes eco-badge-pop {
    from { opacity: 0; transform: scale(0.78) translateY(6px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);   }
}

.eco-clients-badge-icon {
    flex-shrink: 0;
    color: #1a7f3e;
}

/* Main heading */
.eco-clients-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 900;
    letter-spacing: -0.025em;
    color: var(--eco-charcoal, #263238);
    margin: 0 0 16px;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--eco-charcoal, #263238) 0%, var(--eco-green, #004321) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.eco-clients-subtitle {
    font-size: clamp(14px, 2vw, 16.5px);
    color: var(--eco-charcoal-muted, #546E7A);
    margin: 0 auto 0;
    max-width: 540px;
    line-height: 1.65;
}

/* ── Verified Clients Image Slider ── */
.eco-clients-slider-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 12px 36px rgba(0, 43, 20, 0.14);
    margin-bottom: 24px;
}

.eco-clients-slider-container .eco-slide,
.eco-clients-slider-container .eco-slide-img {
    border-radius: 16px;
    overflow: hidden;
}

/* ── Marquee: fade-edge wrapper ── */
.eco-clients-marquee-wrap {
    position: relative;
    overflow: hidden;
    padding: 14px 0;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        #000 10%,
        #000 90%,
        transparent 100%
    );
}

/* Marquee scroll container */
.eco-clients-marquee {
    display: flex;
    width: max-content;
    animation: eco-marquee-scroll 28s linear infinite;
    will-change: transform;
}

/* Pause on hover — accessibility-friendly */
.eco-clients-marquee-wrap:hover .eco-clients-marquee {
    animation-play-state: paused;
}

/* Each track row */
.eco-clients-track {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 10px;
    flex-shrink: 0;
}

/* Individual card wrapper */
.eco-clients-logo-item {
    flex-shrink: 0;
}

/* ── Premium logo card ── */
.eco-clients-logo-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 192px;
    height: 96px;
    padding: 18px 26px;
    background: rgba(255, 255, 255, 0.90);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 4px 18px rgba(0, 67, 33, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition:
        transform  0.32s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
    cursor: default;
}

/* Inner shimmer ring on hover */
.eco-clients-logo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--eco-green-light, #337F3F) 14%, transparent) 0%,
        transparent 55%
    );
    opacity: 0;
    transition: opacity 0.28s ease;
}

.eco-clients-logo-card:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 8px 32px rgba(0, 67, 33, 0.16),
        0 20px 56px rgba(0, 0, 0, 0.10);
    border-color: color-mix(in srgb, var(--eco-green, #004321) 32%, transparent);
}

.eco-clients-logo-card:hover::before {
    opacity: 1;
}

/* Logo image */
.eco-clients-logo-card img {
    position: relative; /* above ::before */
    z-index: 1;
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    /* Starts greyscale; blooms to colour on hover */
    filter: grayscale(45%) brightness(0.95) opacity(0.82);
    transition: filter 0.32s ease, transform 0.32s ease;
}

.eco-clients-logo-card:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
    transform: scale(1.04);
}

/* ── Keyframe: seamless marquee ── */
@keyframes eco-marquee-scroll {
    0%   { transform: translateX(0);    }
    100% { transform: translateX(-50%); }
}

/* ── Decorative divider line ── */
.eco-clients-glow-line {
    height: 2px;
    margin-top: 64px;
    border-radius: 2px;
    background: linear-gradient(
        to right,
        transparent 0%,
        color-mix(in srgb, var(--eco-green-light, #337F3F) 40%, transparent) 30%,
        color-mix(in srgb, var(--eco-green, #004321) 60%, transparent) 50%,
        color-mix(in srgb, var(--eco-green-light, #337F3F) 40%, transparent) 70%,
        transparent 100%
    );
    opacity: 0.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .eco-clients-section { padding: 10px 0; }
    .eco-clients-logo-card {
        width: 166px;
        height: 84px;
        padding: 14px 22px;
        border-radius: 14px;
    }
    .eco-clients-logo-card img { max-height: 50px; }
}

@media (max-width: 600px) {
    .eco-clients-section  { padding: 10px 0; }
    .eco-clients-header   { margin-bottom: 38px; }
    .eco-clients-inner    { padding: 0 16px; }
    .eco-clients-logo-card {
        width: 136px;
        height: 70px;
        padding: 10px 16px;
        border-radius: 12px;
    }
    .eco-clients-logo-card img { max-height: 42px; }
    .eco-clients-track    { gap: 14px; padding: 0 7px; }
    .eco-clients-marquee  { animation-duration: 20s; }
    .eco-clients-glow-line { margin-top: 42px; }
    .eco-clients-marquee-wrap {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, #000 6%, #000 94%, transparent 100%);
    }
}

@media (max-width: 360px) {
    .eco-clients-logo-card {
        width: 114px;
        height: 62px;
        padding: 8px 12px;
    }
    .eco-clients-logo-card img { max-height: 36px; }
    .eco-clients-track    { gap: 10px; }
    .eco-clients-marquee  { animation-duration: 18s; }
}

/* Reduced motion: stop the animation */
@media (prefers-reduced-motion: reduce) {
    .eco-clients-marquee {
        animation: none;
        flex-wrap: wrap;
        width: auto;
        justify-content: center;
    }
    .eco-clients-track { flex-wrap: wrap; }
    .eco-clients-track-clone { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   MAP & CONTACT INFORMATION SECTION
═══════════════════════════════════════════════════════════ */

.eco-map-section {
    position: relative;
    padding: 80px 0 0 !important;
    background: linear-gradient(
        180deg,
        var(--eco-bg-page, #F5F7F8) 0%,
        color-mix(in srgb, var(--eco-green, #004321) 3%, var(--eco-bg-page, #F5F7F8)) 100%
    );
    overflow: hidden;
    border-top: 1px solid color-mix(in srgb, var(--eco-green, #004321) 10%, transparent);
}

/* Soft dot grid matching theme */
.eco-map-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, color-mix(in srgb, var(--eco-green, #004321) 8%, transparent) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.eco-map-inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 24px;
}

/* ─── Header ─── */
.eco-map-header {
    text-align: center;
    margin-bottom: 44px;
}

.eco-map-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 18px 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: var(--eco-green, #004321);
    background: color-mix(in srgb, var(--eco-green, #004321) 10%, transparent);
    border: 1.5px solid color-mix(in srgb, var(--eco-green, #004321) 22%, transparent);
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0, 67, 33, 0.08);
}

.eco-map-badge-icon {
    flex-shrink: 0;
    color: var(--eco-green-light, #337F3F);
}

.eco-map-title {
    font-size: clamp(22px, 3.8vw, 36px);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--eco-charcoal, #263238);
    margin: 0 0 14px !important; /* override global h2 margin-bottom */
    line-height: 1.15;
}

.eco-map-subtitle {
    font-size: clamp(14px, 2vw, 16px);
    color: var(--eco-charcoal-muted, #546E7A);
    margin: 0 auto !important; /* override global p margin-bottom: 16px */
    max-width: 560px;
    line-height: 1.6;
}

/* ─── Map & Overlay Wrapper ─── */
.eco-map-container-wrap {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 67, 33, 0.06), 
        0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--eco-green, #004321) 12%, transparent);
    background: #fff;
    margin-bottom: 0 !important; /* kill any inherited bottom margin */
}

/* Map Iframe Holder */
.eco-map-iframe-holder {
    position: relative;
    width: 100%;
    height: 560px;
    display: block;
    line-height: 0;
    overflow: hidden;
}

.eco-map-iframe-holder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: contrast(1.05) saturate(1.05); /* Premium slightly punchy color output */
}

/* ─── Premium Glassmorphic Overlay Info Card ─── */
.eco-map-info-card {
    position: absolute;
    top: 110px;
    left: 36px;
    width: 380px;
    /* Never overflow the map container bottom */
    max-height: calc(100% - 60px);
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 10px 30px rgba(0, 67, 33, 0.14),
        0 28px 64px rgba(0, 0, 0, 0.11);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.eco-map-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 1px 0 rgba(255,255,255,0.9) inset,
        0 12px 35px rgba(0, 67, 33, 0.16),
        0 30px 70px rgba(0, 0, 0, 0.14);
}

/* Floating accent glow under the card */
.eco-map-card-glow {
    position: absolute;
    top: -50px; left: -50px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--eco-green-light, #337F3F) 25%, transparent) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.eco-map-card-inner {
    position: relative;
    z-index: 1;
    padding: 36px 28px 28px;
    overflow-y: auto;
    /* Scrollable if card content exceeds map height */
    flex: 1 1 auto;
    /* Custom thin scrollbar */
    scrollbar-width: thin;
    scrollbar-color: color-mix(in srgb, var(--eco-green, #004321) 30%, transparent) transparent;
}

.eco-map-card-inner::-webkit-scrollbar {
    width: 4px;
}

.eco-map-card-inner::-webkit-scrollbar-track {
    background: transparent;
}

.eco-map-card-inner::-webkit-scrollbar-thumb {
    background: color-mix(in srgb, var(--eco-green, #004321) 30%, transparent);
    border-radius: 4px;
}

/* Card Header */
.eco-map-card-title {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--eco-green, #004321);
    margin: 0 0 16px;
    line-height: 1.2;
}

.eco-map-card-divider {
    height: 3px;
    width: 48px;
    background: var(--eco-green-light, #337F3F);
    border-radius: 2px;
    margin-bottom: 24px;
}

/* Rows */
.eco-map-card-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.eco-map-card-row:last-child {
    margin-bottom: 0;
}

.eco-map-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--eco-green, #004321) 8%, #fff);
    border: 1px solid color-mix(in srgb, var(--eco-green, #004321) 15%, transparent);
    color: var(--eco-green, #004321);
    flex-shrink: 0;
    margin-top: 2px;
}

.eco-map-card-text {
    flex-grow: 1;
}

.eco-map-card-text strong {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--eco-charcoal-muted, #546E7A);
    margin-bottom: 4px;
}

.eco-map-card-text p,
.eco-map-card-text a {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--eco-charcoal, #263238);
    margin: 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.eco-map-card-text a:hover {
    color: var(--eco-green-light, #337F3F);
}

/* ─── Responsive Breakpoints ─── */
@media (max-width: 1024px) {
    .eco-map-section {
        padding: 64px 0 0 !important;
    }
    
    .eco-map-container-wrap {
        border-radius: 20px;
    }
    
    .eco-map-info-card {
        top: 100px;
        left: 24px;
        width: 300px;
        max-height: calc(100% - 120px);
    }
    
    .eco-map-card-inner {
        padding: 32px 20px 24px;
    }
    
    .eco-map-card-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .eco-map-card-divider {
        margin-bottom: 20px;
    }
}

@media (max-width: 868px) {
    /* Stacking on smaller tablets */
    .eco-map-section {
        padding-bottom: 0 !important;
    }
    .eco-map-container-wrap {
        display: flex;
        flex-direction: column;
        border: none;
        box-shadow: none;
        background: transparent;
        overflow: visible;
    }
    
    .eco-map-iframe-holder {
        height: 420px;
        border-radius: 16px;
        border: 1px solid color-mix(in srgb, var(--eco-green, #004321) 12%, transparent);
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }
    
    .eco-map-info-card {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-height: none;
        margin-top: 20px;
        background: #fff;
        border: 1px solid color-mix(in srgb, var(--eco-green, #004321) 12%, transparent);
        box-shadow: 0 10px 30px rgba(0, 67, 33, 0.05);
    }
}



@media (max-width: 600px) {
    .eco-map-section {
        padding: 48px 0 0 !important;
    }
    
    .eco-map-header {
        margin-bottom: 32px;
    }
    
    .eco-map-inner {
        padding: 18px 16px;
    }
    
    .eco-map-iframe-holder {
        height: 340px;
    }
    
    .eco-map-card-inner {
        padding: 28px 16px 20px;
    }
    
    .eco-map-card-row {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .eco-map-card-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }
    
    .eco-map-card-icon svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    .eco-map-section {
        padding: 36px 0 0 !important;
    }
    .eco-map-inner {
        padding: 14px 12px;
    }
    .eco-map-header {
        margin-bottom: 24px;
    }
    .eco-map-iframe-holder {
        height: 280px;
        border-radius: 12px;
    }
    .eco-map-info-card {
        margin-top: 14px;
        border-radius: 14px;
    }
    .eco-map-card-inner {
        padding: 22px 14px 16px;
    }
    .eco-map-card-title {
        font-size: 16px;
    }
    .eco-map-card-row {
        gap: 10px;
        margin-bottom: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════════
   TESTIMONIALS / CLIENT REVIEWS SLIDER SECTION
═══════════════════════════════════════════════════════════════════ */
.eco-testimonials-section {
    position: relative;
    background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.eco-testimonials-inner {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Header */
.eco-testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 42px;
}

.eco-testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(0, 67, 33, 0.08);
    color: var(--eco-green, #004321);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.eco-testimonials-badge svg {
    color: #f59e0b;
}

.eco-testimonials-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    color: #111827;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.eco-testimonials-subtitle {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
    line-height: 1.6;
}

/* Slider Wrap */
.eco-testimonials-slider-wrap {
    position: relative;
    padding: 0 48px;
}

/* Scroll Track */
.eco-testimonials-slider {
    overflow: hidden;
    width: 100%;
}

.eco-testimonials-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 12px 4px 20px;
}

.eco-testimonials-track::-webkit-scrollbar {
    display: none;
}

/* Single Slide Card */
.eco-testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
}

.eco-testimonial-card {
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease;
    box-sizing: border-box;
}

.eco-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.09);
    border-color: #d1d5db;
}

/* Comment text */
.eco-tc-comment p {
    font-size: 15px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0;
    font-weight: 400;
}

/* Rating Stars */
.eco-tc-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #e5e7eb;
}

.eco-tc-rating .eco-star.active {
    color: #f59e0b;
}

/* Author Section */
.eco-tc-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f3f4f6;
}

.eco-tc-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #f3f4f6;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1.5px solid #ffffff;
}

.eco-tc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.eco-tc-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e2e8f0;
    color: #94a3b8;
}

.eco-tc-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 2px;
    line-height: 1.3;
}

.eco-tc-role {
    font-size: 13px;
    color: #6b7280;
    display: block;
    line-height: 1.3;
}

/* Arrow Navigation */
.eco-tr-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e5e7eb;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    padding: 0;
}

.eco-tr-arrow:hover {
    background: var(--eco-green, #004321);
    color: #ffffff;
    border-color: var(--eco-green, #004321);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 20px rgba(0, 67, 33, 0.3);
}

.eco-tr-prev { left: 2px; }
.eco-tr-next { right: 2px; }

/* Dots Navigation */
.eco-tr-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.eco-tr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.28s ease;
}

.eco-tr-dot.active,
.eco-tr-dot:hover {
    background: var(--eco-green, #004321);
    width: 24px;
    border-radius: 10px;
}

/* Responsive Layout */
@media (max-width: 1024px) {
    .eco-testimonial-slide {
        flex: 0 0 calc(50% - 12px);
    }
    .eco-testimonials-slider-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .eco-testimonial-slide {
        flex: 0 0 100%;
    }
    .eco-testimonials-slider-wrap {
        padding: 0 32px;
    }
    .eco-tr-arrow {
        width: 34px;
        height: 34px;
    }
    .eco-testimonial-card {
        padding: 22px 18px 18px;
    }
}

