/* ==========================================================================
   EKO MART THEME - FRESH • PURE • NATURAL
   ========================================================================== */

:root {
    --eko-primary: #08823d;
    --eko-primary-dark: #06622d;
    --eko-primary-hover: #077336;
    --eko-accent: #0ba347;
    --eko-accent-light: #e8f5e9;
    --eko-card-bg: #edf5ee;
    --eko-dark: #1a202c;
    --eko-muted: #64748b;
    --eko-border: #e2e8f0;
    --eko-font: "Plus Jakarta Sans", "Inter", sans-serif;
    --eko-script: "Caveat", "Playball", cursive;
}

body {
    font-family: var(--eko-font);
    color: var(--eko-dark);
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    overflow-x: visible !important;
}

/* --------------------------------------------------------------------------
   STICKY MASTER HEADER & SEARCH
   -------------------------------------------------------------------------- */
.eko-master-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
    width: 100% !important;
    background: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
    transition: box-shadow 0.25s ease;
}

.eko-header {
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}

.site-container {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    box-sizing: border-box;
}

.eko-header .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 20px;
}

.eko-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.eko-logo-icon {
    width: 44px;
    height: 44px;
    background: #e8f5e9;
    color: var(--eko-primary);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 24px;
}

.eko-logo-text {
    display: flex;
    flex-direction: column;
}

.eko-logo-text strong {
    font-size: 24px;
    font-weight: 800;
    color: var(--eko-primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.eko-logo-text span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #4b7a5a;
    text-transform: uppercase;
    margin-top: 3px;
}

.eko-search-form {
    position: relative;
    max-width: 600px;
    width: 100%;
}

.eko-search-form .form-control {
    height: 46px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    padding-left: 18px;
    padding-right: 54px;
    font-size: 14px;
    color: var(--eko-dark);
    background: #fdfdfd;
    box-shadow: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eko-search-form .form-control:focus {
    border-color: var(--eko-primary);
    box-shadow: 0 0 0 3px rgba(8, 130, 61, 0.12);
}

.eko-search-form button {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: 40px;
    background: var(--eko-primary);
    color: #ffffff;
    border: none;
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.eko-search-form button:hover {
    background: var(--eko-primary-hover);
}

.eko-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.eko-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 22px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
}

.eko-action-btn:hover {
    color: var(--eko-primary);
}

.eko-cart-btn {
    position: relative;
    font-size: 22px;
    color: var(--eko-primary);
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.eko-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--eko-primary);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    border: 2px solid #ffffff;
}

/* --------------------------------------------------------------------------
   GREEN NAVBAR
   -------------------------------------------------------------------------- */
.eko-navbar-wrap {
    background: var(--eko-primary);
}

.eko-navbar-wrap .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.eko-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.eko-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.eko-nav-links a {
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.eko-nav-links a:hover,
.eko-nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
}

.eko-track-btn {
    background: #0ea74c;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.eko-track-btn:hover {
    background: #11b855;
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   HERO BANNER SECTION
   -------------------------------------------------------------------------- */
.eko-hero-section {
    padding: 24px 0 20px;
}

.eko-hero-section .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.eko-hero-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 480px;
    background: #084c23;
    display: flex;
    align-items: center;
}

.eko-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.eko-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 68, 30, 0.95) 0%, rgba(6, 68, 30, 0.85) 45%, rgba(6, 68, 30, 0.2) 80%, transparent 100%);
}

.eko-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px clamp(24px, 5vw, 60px);
    max-width: 650px;
}

.eko-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.eko-hero-pill i {
    color: #a3f7bf;
    font-size: 15px;
}

.eko-hero-title {
    color: #ffffff;
    margin-bottom: 24px;
}

.eko-hero-title-main {
    display: block;
    font-size: clamp(34px, 4.5vw, 54px);
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.eko-hero-title-sub {
    display: block;
    font-family: var(--eko-script);
    font-size: clamp(38px, 5.5vw, 62px);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.1;
    margin-top: 4px;
}

.eko-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--eko-accent);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(11, 163, 71, 0.4);
    transition: background-color 0.2s, transform 0.2s;
}

.eko-hero-btn:hover {
    background: #0ea74c;
    color: #ffffff;
    transform: translateY(-2px);
}

.eko-hero-btn-arrow {
    width: 26px;
    height: 26px;
    background: #ffffff;
    color: var(--eko-accent);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 13px;
}

/* --------------------------------------------------------------------------
   CATEGORIES ROW
   -------------------------------------------------------------------------- */
.eko-categories-section {
    padding: 30px 0 20px;
}

.eko-categories-section .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.eko-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.eko-category-card {
    background: var(--eko-card-bg);
    border-radius: 12px;
    padding: 16px 12px 14px;
    text-align: center;
    text-decoration: none;
    color: var(--eko-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.eko-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: var(--eko-primary);
}

.eko-category-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
}

.eko-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
}

.eko-category-card:hover .eko-category-img-wrap img {
    transform: scale(1.05);
}

.eko-category-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

/* --------------------------------------------------------------------------
   FEATURED PRODUCTS SECTION
   -------------------------------------------------------------------------- */
.eko-products-section {
    padding: 30px 0 50px;
}

.eko-products-section .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.eko-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.eko-section-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.eko-slider-arrows {
    display: flex;
    gap: 8px;
}

.eko-slider-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid #94d3a2;
    background: transparent;
    color: var(--eko-primary);
    border-radius: 6px;
    display: grid;
    place-items: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
}

.eko-slider-arrow:hover {
    background: var(--eko-primary);
    color: #ffffff;
    border-color: var(--eko-primary);
}

.eko-products-grid {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 6px 2px 14px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.eko-products-grid::-webkit-scrollbar {
    display: none;
}

.eko-product-card {
    flex: 0 0 240px;
    min-width: 240px;
    max-width: 240px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.eko-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border-color: #d1fae5;
}

.eko-badge-wrap {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.eko-discount-badge {
    background: var(--eko-accent);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
}

.eko-product-img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.eko-product-img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.eko-product-card:hover .eko-product-img-wrap img {
    transform: scale(1.05);
}

.eko-product-title {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.35;
    color: #334155;
    margin: 0 0 8px;
    text-align: center;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.eko-product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.eko-product-title a:hover {
    color: var(--eko-primary);
}

.eko-product-price {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 12px;
}

.eko-add-cart-btn {
    width: 100%;
    background: var(--eko-accent-light);
    color: var(--eko-primary);
    border: none;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    margin-top: auto;
}

.eko-add-cart-btn:hover {
    background: var(--eko-primary);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   FEATURES / GUARANTEES SECTION
   -------------------------------------------------------------------------- */
.eko-features-section {
    padding: 28px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 30px 0;
}

.eko-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: center;
}

.eko-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.eko-feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #ffffff;
    color: var(--eko-primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
}

.eko-feature-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
}

.eko-feature-text small {
    display: block;
    font-size: 12px;
    color: #64748b;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.eko-newsletter-section {
    padding: 20px 0 50px;
}

.eko-newsletter-card {
    background: linear-gradient(135deg, #065e28 0%, #08823d 100%);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 50px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(8, 130, 61, 0.2);
}

.eko-newsletter-content {
    max-width: 540px;
}

.eko-newsletter-pill {
    display: inline-block;
    background: #ffffff;
    color: var(--eko-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.eko-newsletter-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 8px;
}

.eko-newsletter-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

.eko-newsletter-form-wrap {
    flex: 1;
    max-width: 480px;
}

.eko-newsletter-form {
    display: flex;
    gap: 10px;
}

.eko-newsletter-form .form-control {
    height: 48px;
    border-radius: 8px;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    background: #ffffff;
    color: #1e293b;
}

.eko-newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.4);
}

.eko-newsletter-btn {
    background: #ffffff;
    color: var(--eko-primary);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 0 24px;
    white-space: nowrap;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, transform 0.15s;
}

.eko-newsletter-btn:hover {
    background: #f1f5f9;
    color: var(--eko-primary-dark);
    transform: translateY(-1px);
}

.eko-newsletter-success {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.eko-footer {
    background: #084c23;
    color: #e2e8f0;
    padding: 50px 0 25px;
}

.eko-footer .site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.eko-footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.eko-footer a:hover {
    color: #ffffff;
}

.eko-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.eko-footer h4 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.eko-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}

.eko-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: #94a3b8;
}

/* --------------------------------------------------------------------------
   PROMO DUAL BANNERS
   -------------------------------------------------------------------------- */
.eko-promo-banners-section {
    padding: 24px 0;
}

.eko-promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.eko-promo-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    align-items: center;
    padding: 32px 36px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.eko-promo-card.banner-1 {
    background: linear-gradient(135deg, #064e26 0%, #0d7a3d 100%);
}

.eko-promo-card.banner-2 {
    background: linear-gradient(135deg, #1e3a8a 0%, #0284c7 100%);
}

.eko-promo-bg-img {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(to right, transparent, black 35%);
    mask-image: linear-gradient(to right, transparent, black 35%);
}

.eko-promo-content {
    position: relative;
    z-index: 2;
    max-width: 58%;
    color: #ffffff;
}

.eko-promo-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #86efac;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.banner-2 .eko-promo-tag {
    color: #7dd3fc;
}

.eko-promo-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 16px;
}

.eko-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0f172a;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s, background-color 0.2s, color 0.2s;
}

.eko-promo-btn:hover {
    transform: translateY(-2px);
    background: #f8fafc;
    color: var(--eko-primary);
}

/* --------------------------------------------------------------------------
   STATIC PRODUCTS SECTION (NO SLIDE)
   -------------------------------------------------------------------------- */
.eko-static-products-section {
    padding: 24px 0 35px;
}

.eko-static-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.eko-static-grid .eko-product-card {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
}

.eko-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--eko-primary);
    text-decoration: none;
    padding: 7px 16px;
    border-radius: 20px;
    background: var(--eko-accent-light);
    transition: all 0.2s;
}

.eko-view-all-btn:hover {
    background: var(--eko-primary);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
    .eko-static-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .eko-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .eko-navbar {
        display: none;
    }
    .eko-promo-grid {
        grid-template-columns: 1fr;
    }
    .eko-static-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .eko-categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .eko-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .eko-newsletter-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .eko-newsletter-form-wrap {
        width: 100%;
        max-width: 100%;
    }
    .eko-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .eko-hero-card {
        min-height: 380px;
    }
    .eko-hero-content {
        padding: 30px 20px;
    }
    .eko-promo-card {
        min-height: 180px;
        padding: 24px 20px;
    }
    .eko-promo-title {
        font-size: 18px;
    }
    .eko-promo-content {
        max-width: 65%;
    }
    .eko-promo-bg-img {
        width: 55%;
    }
    .eko-static-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .eko-categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .eko-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .eko-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .eko-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eko-static-grid {
        grid-template-columns: 1fr;
    }
}


