﻿/* ===== GLOBAL STYLES ===== */
html {
    scroll-behavior: smooth;
}

.product-subtitle .short-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-subtitle.expanded .short-text {
    -webkit-line-clamp: unset;
}

.toggle-btn {
    color: green;
    cursor: pointer;
    font-size: 13px;
}







.border-12 {
    border-radius: 12px !important;
}

/* ===== POPULAR PRODUCTS SECTION ===== */
.popular-products-section {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e5e5e5;
}

.section-header-pp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

    .section-header h2 {
        font-weight: 700;
        margin-bottom: 0;
    }

/* ===== TABS ===== */
.product-tabs {
    display: flex;
    gap: 10px;
}

.tab-btn {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background: #fff;
    cursor: pointer;
    font-size: 15px !important;
    width: fit-content;
    font-weight: 500;
}

    .tab-btn.active {
        background: #177e3f;
        color: #fff;
        border-color: #177e3f;
    }

/* ===== PRODUCT GRID ===== */
.product-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
}


    .product-grid::-webkit-scrollbar {
        height: 4px !important;
    }

    .product-grid::-webkit-scrollbar-track {
        background: #eee;
        border-radius: 10px;
    }

    .product-grid::-webkit-scrollbar-thumb {
        background: #177e3f !important;
        border-radius: 10px;
    }

        .product-grid::-webkit-scrollbar-thumb:hover {
            background: #555;
        }


.price-group span {
    font-family: "Montserrat", sans-serif !important;
}

.category-img-wrapper {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

/* ===== CUSTOM DROPDOWN ===== */
.dropdown-selected {
    width: 100%;
    padding: 11px 10px 11px 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.custom-dropdown .dropdown-options {
    display: none;
    position: absolute;
    background: #fff;
    width: 100%;
    z-index: 99;
    border: 1px solid #eee;
    border-radius: 8px;
}

.custom-dropdown.open .dropdown-options {
    display: block;
}

/* ===== CATEGORY SECTION ===== */
.category-section {
    border: 1px solid #e2e2e2;
    border-radius: 6px;
    padding: 16px 16px 20px;
    margin-bottom: 20px;
    background: #fff;
    position: relative;
    width: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-section-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    padding-right: 120px;
}

/* ===== PRODUCTS GRID WRAPPER ===== */
.products-grid-wrapper {
    position: relative;
    margin-top: 16px;
}

.products-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: visible !important;
    position: relative;
    scroll-behavior: smooth;
    padding: 10px 5px;
    scroll-snap-type: x mandatory;
}

    .products-grid::-webkit-scrollbar {
        display: none;
    }

/* ===== PRODUCT CARD ===== */
.products-card {
    flex: 0 0 auto;
    min-width: 300px !important;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.6s ease, transform 0.6s ease;
    will-change: box-shadow, transform;
    scroll-snap-align: start;
}

.product-img {
    width: 100%;
    height: 320px !important;
    object-fit: fill;
    padding: 10px !important;
    border-radius: 20px !important;
}

    .product-img:hover {
        transform: scale(1.02);
    }


.product-info {
    /*flex: 1;
    padding: 10px 12px;*/
    flex: 1;
    padding: 10px 12px;
}

.product-fallback-icon {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border-radius: 20px;
    background: #f3f5f7;
    display: none;
    align-items: center;
    justify-content: center;
    color: #9aa3ab;
    font-size: 48px;
}

.product-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
}

.product-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #111827;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.current-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.product-subtitle {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 13px;
}

    .product-rating .stars {
        color: #facc15;
    }

    .product-rating .rating-text {
        color: #6b7280;
        font-weight: 500;
    }

.original-price {
    font-size: 13px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* ===== SCROLL BUTTONS ===== */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cat-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.category-section-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.scroll-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}
/* Wrapper */
.product-wrapper {
    width: 100%;
    overflow: hidden;
}

/* Desktop Grid */
.product-grid {
    display: flex;
    /*    flex-wrap: wrap;*/
    gap: 15px;
}

/* Product Card */

.product-card {
    max-width: 100%;
    flex: 0 0 25%;
    height: auto;
    min-height: 100%;
    scroll-snap-align: start;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    background: #fff;
}
/* ===== BANNER SWIPER ===== */
.banner-section {
    width: 100%;
}

.banner-swiper .swiper-slide {
    height: auto;
}

.banner-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    height: 520px;
}

/* ===== CTA SECTION ===== */
.KaashtKart-cta {
    background: linear-gradient(90deg, #1b5e20, #0f3d15);
    padding: 50px 20px;
    text-align: center;
}

.KaashtKart-cta-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.KaashtKart-cta-desc {
    color: #d8f3dc;
    font-size: 17px;
    margin-bottom: 25px;
}

.KaashtKart-cta-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #1b5e20;
    padding: 13px 45px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .KaashtKart-cta-btn:hover {
        background-color: #e8f5e9;
    }

.fk-hero-section {
    position: relative;
    background: #f6faf7;
    overflow: hidden;
}

.fk-hero-container {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    margin: auto;
    padding: 20px 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.fk-hero-content {
    width: 55%;
}

.fk-hero-title {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    max-width: 620px;
    margin: 0;
}

.fk-highlight {
    background: #1e8e3e;
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    display: inline-block;
    margin: 2px 0;
}

.fk-hero-subtitle {
    font-size: 20px;
    color: #1e8e3e;
    font-weight: 600;
    margin-top: 18px;
}

.fk-hero-description {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    max-width: 520px;
    margin-bottom: 25px;
}

.fk-hero-stats {
    display: none;
    gap: 40px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.fk-stat-item {
    display: flex;
    flex-direction: column;
}

.fk-stat-number {
    font-size: 28px;
    font-weight: 700;
    color: #1e8e3e;
    line-height: 1.2;
}

.fk-stat-label {
    font-size: 14px;
    color: #666;
}

.fk-hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.fk-btn {
    padding: 5px 16px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px !important;
    line-height: 25px;
}

.fk-btn-primary {
    background: #1e8e3e;
    color: white;
}

    .fk-btn-primary:hover {
        background: #146c2e;
        color: white;
        transform: translateY(-2px);
    }

.fk-btn-secondary {
    border: 2px solid #1e8e3e;
    color: #1e8e3e;
    background: transparent;
}

    .fk-btn-secondary:hover {
        background: #1e8e3e;
        color: white;
    }

.fk-hero-trust {
    font-size: 13px; /* better readability */
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px; /* modern spacing */
    padding: 12px 0;
    border-top: 1px solid #e5e5e5;
    margin-top: 16px;
    line-height: 1.4;
    flex-wrap: wrap; /* mobile ke liye important */
}

    .fk-hero-trust i {
        color: #1e8e3e;
        font-size: 16px;
        flex-shrink: 0; /* icon compress na ho */
    }

.fk-hero-phone img {
    width: 250px;
    max-width: 100%;
    display: block;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.fk-hero-bottom {
    position: relative;
    color: #fff;
    padding: 60px 40px;
    border-radius: 30px 30px 0 0;
    margin-top: 40px;
    /*background: url('../images/banner2.png') center/cover no-repeat;*/
    background: black;
    overflow: hidden;
    background-size: 100% 100%;
}

    .fk-hero-bottom::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(31, 46, 43, 0.75);
        z-index: 1;
    }

    .fk-hero-bottom .content {
        position: relative;
        z-index: 2;
        margin: auto;
        text-align: justify;
    }

    .fk-hero-bottom p {
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.7;
        color: #f1f1f1;
    }

    .fk-hero-bottom h2 {
        font-size: 28px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.farm-service-row {
    width: 100%;
    padding: 20px 0px;
}

.farm-service-wrap {
    max-width: auto;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.farm-service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    padding: 16px 25px;
    border-radius: 10px;
    flex: 1;
    transition: all 0.3s ease;
}

    .farm-service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    }

.farm-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e8e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.farm-service-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.farm-service-desc {
    font-size: 13px;
    color: #777;
    margin: 0;
}

.categories-section {
    position: relative;
}

    .categories-section .nav-buttons {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        pointer-events: none;
        padding: 0;
        z-index: 10;
    }

    .categories-section .nav-btn,
    .product-nav .nav-btn {
        pointer-events: auto;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 1px solid #177e3f;
        background: #00000030;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s ease;
    }

        .categories-section .nav-btn:hover,
        .product-nav .nav-btn:hover {
            background: #00000030;
            color: #fff;
        }

.products-swiper {
    position: relative;
}

.product-nav {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
    z-index: 20;
}

.add-cart-btn {
    width: 48px;
    height: 45px !important;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--primary-green);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .add-cart-btn:hover {
        background: var(--primary-green-light);
        box-shadow: 0 4px 12px rgba(23, 126, 63, 0.3);
    }

    .add-cart-btn i {
        font-size: 18px;
    }

.cart-loader i {
    font-size: 16px;
}

/* ===== SKELETON LOADER ===== */
.skeleton-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.skeleton-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
}

.skeleton-img {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.skeleton-line {
    height: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}

    .skeleton-line.small {
        width: 60%;
    }

.skeleton-btn {
    height: 35px;
    width: 80px;
    border-radius: 6px;
    margin-top: 10px;
}

.shimmer {
    background: linear-gradient(90deg, #eeeeee 25%, #f5f5f5 37%, #eeeeee 63%);
    background-size: 400% 100%;
    animation: shimmer 1.4s ease infinite;
}

@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

/* ===== SPINNER ===== */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #eee;
    border-top: 4px solid #2e7d32;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ===== EVENT CARDS ===== */
.events-section {
    padding: 20px 0;
}

.event-card-modern {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-img-modern {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.35s ease;
}

.event-card-modern:hover .event-img-modern {
    transform: scale(1.05);
}

.event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 22px;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

.event-title {
    font-size: 18px;
    font-weight: 600;
}

.event-date {
    font-size: 14px;
    opacity: 0.9;
}

.event-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2e7d32;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===== FAQ SECTION ===== */
#kkFaqSectionZ81 {
    background: #f8f8f8;
}

.kk-faq-container-z81 {
    max-width: 1600px;
    margin: 0 auto;
}

.kk-faq-header-z81 {
    text-align: center;
    margin-bottom: 40px;
}

.kk-faq-title-z81 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.kk-faq-underline-z81 {
    width: 80px;
    height: 4px;
    background: #177e3f;
    margin: 15px auto;
    border-radius: 4px;
}

.kk-faq-subtitle-z81 {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.kk-faq-grid-z81 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kk-faq-col-z81 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kk-faq-item-z81 {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

    .kk-faq-item-z81:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

.kk-faq-question-z81 {
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    border: none;
    outline: none;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: background 0.3s ease;
}

    .kk-faq-question-z81:hover {
        background: #f9f9f9;
    }

.kk-faq-icon-z81 {
    font-size: 22px;
    color: #177e3f;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.kk-faq-answer-z81 {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    background: #fff;
}

    .kk-faq-answer-z81 p {
        padding-bottom: 18px;
        color: #555;
        line-height: 1.6;
        font-size: 14px;
        margin: 0;
    }

.kk-faq-item-z81.active .kk-faq-answer-z81 {
    max-height: 300px;
}

.kk-faq-item-z81.active .kk-faq-icon-z81 {
    transform: rotate(45deg);
}

/* ===== EMPTY STATE ===== */
.empty-state-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

/* ===== CERT BANNER ===== */
.cert-banner {
    background: #efe !important;
}

.cert-wrapper {
    position: relative;
}

.category-section {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 16px 16px 20px;
    margin-bottom: 24px;
    background: #fff;
    width: 100%;
}

.category-inner {
    width: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.category-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #177e3f;
    display: inline-block;
}

.products-grid-wrapper {
    position: relative;
}

/* ── Scrollable product row ── */
.products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 8px 4px 12px;
    -webkit-overflow-scrolling: touch;
}

    .products-grid::-webkit-scrollbar {
        display: none;
    }

/* ── Cat arrows ── */
.cat-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #177e3f;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #177e3f;
}

    .cat-btn:hover {
        background: #177e3f;
        color: #fff;
    }

.cat-prev-btn {
    left: 0px;
}

.cat-next-btn {
    right: 0px;
}

/* ── Section wrapper ── */
.category-section {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 16px 16px 20px;
    margin-bottom: 24px;
    background: #fff;
    width: 100%;
}

.category-inner {
    width: 100%;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.category-section-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #177e3f;
    display: inline-block;
}

/* ── Grid wrapper — position:relative so arrows can anchor ── */
.products-grid-wrapper {
    position: relative;
}

/* ── Scrollable product row ── */
.products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    padding: 8px 4px 12px;
    -webkit-overflow-scrolling: touch;
}

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .products-grid .product-card {
        max-width: 100%;
        flex: 0 0 25%;
        height: auto;
        min-height: 100%;
        scroll-snap-align: start;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
        background: #fff;
    }

.cat-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #177e3f;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #177e3f;
}

    .cat-btn:hover {
        background: #177e3f;
        color: #fff;
    }

.cat-prev-btn {
    left: 0px;
}

.cat-next-btn {
    right: 0px;
}

@media (max-width: 480px) {
    .kk-card {
        position: relative;
        width: 100%;
        min-width: 38% !important;
        background: #fff;
        border: 1px solid #e3e7ee;
        border-radius: 12px;
        overflow: hidden;
        transition: 0.25s ease;
        display: flex;
        flex-direction: column;
    }
    .fk-hero-bottom {
        padding: 20px 10px;
    }

    .fk-btn {
        padding: 2px 16px;
        border-radius: 30px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 11.5px !important;
        line-height: 25px;
    }

    .category-section-title {
        font-size: 18px;
    }

    .header-mid-five-call {
        display: none !important;
    }

    #kkFaqSectionZ81 {
        padding: 40px 15px;
    }

    .kk-faq-question-z81 {
        font-size: 14px;
        padding: 14px 15px;
    }

    .kk-faq-answer-z81 p {
        font-size: 13px;
    }

    .fk-hero-content {
        width: 100%;
    }

    .fk-highlight {
        font-size: 20px;
    }

    .farm-service-wrap {
        display: none !important;
    }

    .d-none-m {
        display: none !important;
    }

    .simple-banner-2 {
        height: 200px;
    }

    .cert-badge-img {
        width: 50px !important;
        height: 50px !important;
    }

    .modal-custom {
        height: 350px !important;
        width: 350px !important;
    }

    .categories-section .nav-btn,
    .product-nav .nav-btn {
        width: 34px !important;
        height: 34px !important;
    }

    .tab-btn {
        padding: 8px 8px;
        border-radius: 8px;
        border: 1px solid #dcdcdc;
        background: #fff;
        cursor: pointer;
        font-size: 11px;
        width: fit-content;
        font-weight: 500;
        overflow-x: scroll;
    }

        .tab-btn.active {
            background: #177e3f;
            color: #fff;
            border-color: #177e3f;
        }

    .products-grid .product-card {
        flex: 0 0 100%;
        max-width: auto;
    }

    .products-grid {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 575px) {
    .fk-hero-trust {
        font-size: 11px !important;
        gap: 6px;
        padding: 10px 0;
    }

        .fk-hero-trust i {
            font-size: 14px;
        }

    .banner-slide {
        height: 150px;
    }

    .banner-section .swiper-button-next,
    .banner-section .swiper-button-prev {
        display: none;
    }

    .container {
        padding: 10px;
    }

    .bg_primary {
        display: none;
    }

    .bg-light-green {
        background-color: #efe !important;
        padding: 30px 10px;
    }

    .simple-banner {
        height: 180px;
        display: none;
    }
}

@media (max-width: 600px) {
    .category-section {
        padding: 12px 10px 16px;
    }

    .category-section-title {
        font-size: 18px;
    }

    .cat-btn {
        display: flex !important;
    }

    .products-grid {
        scroll-snap-type: x mandatory;
        padding-left: 10px;
        padding-right: 10px;
        gap: 10px;
    }

    .cat-prev-btn {
        left: 2px;
    }

    .cat-next-btn {
        right: 2px;
    }

    .fk-hero-title {
        font-size: 20px !important;
    }

    .fk-hero-phone img {
        width: 200px;
        display: none;
    }

    .fk-hero-bottom {
        padding: 60px 20px;
    }

        .fk-hero-bottom p {
            font-size: 14px;
        }

    .farm-service-item {
        flex: 1 1 100% !important;
    }
}

@media (max-width: 768px) {

    .section-header-pp {
        gap: 9px !important;
    }

    .farm-service-item {
        flex: 1 1 45%;
    }

    .fk-hero-content {
        width: 100% !important;
    }

    .fk-hero-container {
        padding: 20px 10px !important;
    }

    .fk-hero-bottom {
        background: rgba(0, 0, 0, 0.85);
        padding: 25px 15px;
        border-radius: 20px 20px 0 0;
    }

        .fk-hero-bottom::before {
            display: none;
        }

        .fk-hero-bottom h2 {
            font-size: 20px;
        }

        .fk-hero-bottom p {
            font-size: 14px;
            justify-content: center !important;
        }

    .logo-area {
        display: block;
        padding-left: 20px;
        transition: var(--transition-smooth);
    }

    .logo-search-category-wrapper {
        display: flex;
        align-items: center;
        gap: 35px;
        justify-content: flex-end;
        margin-right: 20px;
    }

    .product-tabs {
        display: flex;
        flex-wrap: wrap; /* desktop me wrap ok */
        gap: 10px;
        align-items: center;
        justify-content: center;
    }

    .category-section-title {
        font-size: 20px;
        padding-right: 0;
    }



    .product-info {
        flex: 1 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }

        .product-info > * {
            max-height: 100% !important;
            overflow: hidden !important;
        }

    .product-img {
        width: 100% !important;
        height: 320px !important;
        object-fit: cover;
        padding: 10px !important;
        border-radius: 20px !important;
    }

    .scroll-btn {
        display: flex;
        position: absolute;
        top: 31.8% !important;
        transform: translateY(-50%);
        background: #00000030;
        color: #fff;
        border: 1px solid #177e3f;
    }

    .pop-btn {
        display: flex;
        position: absolute;
        top: 35% !important;
        transform: translateY(-50%);
        background: #00000030;
        color: #fff;
        border: 1px solid #177e3f;
    }

    .cat-btn {
        display: flex;
        position: absolute;
        top: 51.5% !important;
        transform: translateY(-50%);
        background: #00000030;
        color: #fff;
        border: 1px solid #177e3f;
    }

    .category-section-btn {
        display: flex;
        position: absolute;
        top: 31.8% !important;
        transform: translateY(-50%);
    }

    .cat-prev-btn {
        left: 5px !important;
    }

    .cat-next-btn {
        right: 6px !important;
    }

    .fk-hero-title {
        font-size: 20px !important;
    }

    .kk-faq-grid-z81 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .kk-faq-title-z81 {
        font-size: 28px;
    }

    .kk-faq-subtitle-z81 {
        font-size: 14px;
        display: none;
    }

    .kk-faq-question-z81 {
        font-size: 15px;
        padding: 16px 18px;
    }

    .KaashtKart-cta-title {
        font-size: 23px;
    }

    .KaashtKart-cta-desc {
        font-size: 15px;
    }

    .KaashtKart-cta-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .cert-list {
        display: flex !important;
        flex-direction: row !important;
        overflow-x: auto;
        gap: 12px;
        padding: 10px;
    }

        .cert-list::-webkit-scrollbar {
            display: none;
        }

    .cert-row {
        flex: 0 0 auto;
        width: 303px;
        display: flex;
        align-items: center;
        gap: 10px;
        background: #e6f2e6;
        padding: 10px;
        border-radius: 10px;
    }

        .cert-row:hover {
            transform: scale(1) translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
        }

    .products-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .product-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto; /* better than scroll */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 12px; /* scrollbar ke liye space */
        gap: 12px;
    }

        .product-grid::-webkit-scrollbar {
            height: 6px;
        }

        .product-grid::-webkit-scrollbar-track {
            background: #eee;
            border-radius: 10px;
        }

        .product-grid::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

            .product-grid::-webkit-scrollbar-thumb:hover {
                background: #555;
            }

    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 100% !important;
        padding: 10px;
    }


    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .kk-faq-grid-z81 {
        max-height: 400px;
        overflow-y: auto;
        padding-right: 5px;
    }

        .kk-faq-grid-z81::-webkit-scrollbar {
            width: 6px;
        }

        .kk-faq-grid-z81::-webkit-scrollbar-thumb {
            background: #ccc;
            border-radius: 10px;
        }

    .related-products-slider {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

        .related-products-slider::-webkit-scrollbar {
            display: none;
        }

        .related-products-slider .col-md-2 {
            flex: 0 0 100%;
            max-width: 100%;
            scroll-snap-align: start;
            padding: 10px;
        }

    .product-hover-actions {
        position: absolute;
        bottom: 0; /* FIXED */
        left: 50%;
        transform: translate(-50%, 100%);
        width: 50%;
        background: #177e3f;
        border-radius: 10px 10px 0 0;
        padding: 10px 14px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
        z-index: 5;
    }

    .product-card:hover .product-hover-actions {
        bottom: 230px !important;
        transform: translate(-50%, -10px); /* upar slide */
        opacity: 1;
    }

    .product-hover-actions .hover-btn {
        background: transparent;
        border: none;
        color: #fff;
        font-size: 18px;
        cursor: pointer;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

        .product-hover-actions .hover-btn:hover {
            transform: scale(1.2) rotate(3deg);
            opacity: 0.9;
        }
}

@media (min-width: 769px) and (max-width: 894px) {
    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 50% !important;
        padding: 10px;
    }
}

@media (min-width: 895px) and (max-width: 1024px) {
    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 40% !important;
        padding: 10px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 33.33% !important;
        padding: 10px;
    }
}

@media (min-width: 1201px) and (max-width: 1399px) {
    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 30% !important;
        padding: 10px;
    }
}

@media (min-width: 1400px) and (max-width: 1620px) {
    .product-card {
        max-width: 100%;
        flex-shrink: 0;
        flex: 0 0 27% !important;
        padding: 10px;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .fk-hero-content {
        width: 100% !important;
    }

    .logo {
        height: 80px;
        margin-left: 0px;
    }

    .fk-hero-title {
        font-size: 32px !important;
    }

    .fk-hero-container {
        padding: 20px 25px !important;
    }

    .fk-hero-bottom {
        background: rgba(0, 0, 0, 0.85);
        padding: 25px 15px;
        border-radius: 20px 20px 0 0;
    }

        .fk-hero-bottom::before {
            display: none;
        }

        .fk-hero-bottom h2 {
            font-size: 20px;
        }

        .fk-hero-bottom p {
            font-size: 14px;
            justify-content: center !important;
        }

    .logo-area {
        display: block;
        padding-left: 20px;
        transition: var(--transition-smooth);
    }

    .logo-search-category-wrapper {
        display: flex;
        align-items: center;
        gap: 35px;
        justify-content: flex-end;
        margin-right: 20px;
    }


    .products-grid {
        padding-left: 2px;
        padding-right: 2px;
    }

    .fk-hero-phone {
        margin-top: 40px;
    }

    .fk-hero-stats {
        justify-content: center;
    }

    /* .fk-hero-buttons {
            justify-content: center;
        }*/

    .fk-hero-title {
        font-size: 40px;
    }

    /*.fk-hero-trust {
            justify-content: center;
        }
*/
    .farm-service-item {
        flex: 1 1 45%;
    }

    .banner-slide {
        height: 340px;
    }

    .cat-btn {
        display: none;
    }

    .scroll-btn {
        display: none;
    }

    .cert-list {
        display: flex;
        justify-content: space-between;
    }
}

@media (min-width: 992px) and (max-width: 1300px) {
    .logo {
        height: 80px;
        margin-left: 0px !important;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .logo {
        height: 80px;
        margin-left: -17px !important;
    }
}

@media (min-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 1199px) {
    .banner-slide {
        height: 420px;
    }
}

@media (min-width: 1621px) {
    .products-grid .product-card {
        max-width: 100%;
        flex: 0 0 20%;
        height: auto;
        min-height: 100%;
    }
}

@media (min-width: 1750px) {
    .banner-slide {
        height: 600px;
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 20% !important;
    }
}


/*--------- Explore product css  ---------------*/



.kk-explore-page {
    /*max-width: 1400px;*/
}

.kk-page-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 24px;
}

.kk-filter-sticky {
    position: sticky;
    top: 20px;
}

.kk-sort-box .form-select {
    height: 44px;
    border-radius: 8px;
    border: 1px solid #d9dfe8;
    font-size: 15px;
    color: #2d3a58;
    box-shadow: none;
}

.kk-filter-card {
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 12px;
    padding: 18px 16px;
}

.kk-filter-header h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #1f2a44;
}

.kk-filter-header span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #6f7d95;
}

.kk-filter-divider {
    border-top: 1px solid #e5e9f0;
    margin: 16px 0;
}

.kk-filter-title h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1f2a44;
    margin-bottom: 14px;
}

.kk-filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 520px;
    overflow-y: auto;
    padding-right: 6px;
    /* Firefox */
    scrollbar-width: thin;
    scrollbar-color: #1f8f47 #f1f5f2;
}

    /* Chrome, Edge, Safari */
    .kk-filter-options::-webkit-scrollbar {
        width: 6px;
    }

    .kk-filter-options::-webkit-scrollbar-track {
        background: #f1f5f2;
        border-radius: 10px;
    }

    .kk-filter-options::-webkit-scrollbar-thumb {
        background: linear-gradient(180deg, #1f8f47, #27a956);
        border-radius: 10px;
        transition: 0.3s;
    }

        .kk-filter-options::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #166534, #1f8f47);
        }

.kk-filter-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 2px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    font-size: 15px;
    color: #42526e;
    margin: 0;
    font-weight: 600;
}

    .kk-filter-item:hover {
        background: #efe;
    }

    .kk-filter-item input {
        width: 17px;
        height: 17px;
        cursor: pointer;
        accent-color: #1f8f4d;
        margin: 0;
    }

.kk-grid-row {
    align-items: stretch;
}

.kk-grid-col {
    display: flex;
}

.kk-card {
    position: relative;
    width: 100%;
    min-width: 100%;
    background: #fff;
    border: 1px solid #e3e7ee;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.25s ease;
    display: flex;
    flex-direction: column;
}

    .kk-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    }

.kk-image-link {
    position: relative;
    height: 240px;
    min-height: 240px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 14px;
    text-decoration: none;
}

.kk-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.kk-fallback {
    display: none;
    height: 240px;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    background: #f8f9fb;
    color: #a0aec0;
    font-size: 34px;
}

.kk-hover-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.25s ease;
}

.kk-card:hover .kk-hover-actions {
    opacity: 1;
    transform: translateY(0);
}

.kk-hover-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
}

.kk-discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #177e3f;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 6px;
}

.kk-info {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.kk-name-link {
    text-decoration: none;
}

.kk-name {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 600;
    color: #24324a;
    margin: 0 0 5px;
    /*min-height: 48px;*/
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kk-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    /*margin-bottom: 8px;*/
}

.kk-current-price {
    font-size: 24px;
    font-weight: 700;
    color: #0f172a;
}

.kk-original-price {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
}

.kk-discount-text {
    font-size: 14px;
    font-weight: 600;
    color: #15803d;
}

.kk-subtitle {
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
    min-height: 42px;
    margin-bottom: 10px;
}

.kk-short-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kk-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.kk-stars {
    background: #16a34a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.kk-review-count {
    font-size: 13px;
    color: #667085;
}

.kk-no-review {
    font-size: 13px;
    color: #667085;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: 14px;
}

.kk-actions {
    display: flex;
/*    align-items: center;*/
    gap: 10px;
}

.kk-dropdown {
    position: relative;
    flex: 1;
}

.kk-dropdown-selected {
    height: 46px;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    color: #24324a;
}

.kk-dropdown-arrow {
    font-size: 12px;
    color: #667085;
}

.kk-dropdown-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #dbe2ea;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
    padding: 6px;
    z-index: 20;
    display: none;
    max-height: 220px;
    overflow-y: auto;
}

.kk-dropdown.open .kk-dropdown-options {
    display: block;
}

.kk-dropdown-option {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    color: #24324a;
}

    .kk-dropdown-option:hover,
    .kk-dropdown-option.selected {
        background: #f3f7fb;
    }

.kk-cart-btn {
    width: 48px;
    min-width: 48px;
    height: 46px;
    border: none;
    border-radius: 10px;
    background: #15803d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

    .kk-cart-btn:hover {
        background: #166534;
    }

    .kk-cart-btn i {
        font-size: 18px;
    }

#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.modern-spinner {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 4px solid #ddd;
    border-top: 4px solid #2874f0;
    animation: spin 0.7s linear infinite;
    margin: auto;
}

.loader-content p {
    margin-top: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 991px) {
    .kk-filter-sticky {
        position: static;
    }

    .kk-image-link,
    .kk-fallback {
        height: 220px;
        min-height: 220px;
    }
}

@media (max-width: 767px) {
    .kk-page-title {
        font-size: 24px;
    }

    .kk-name {
        font-size: 15px;
        min-height: auto;
    }

    .kk-current-price {
        font-size: 20px;
    }

    .kk-dropdown {
        width: 100%;
    }

    .kk-actions {
        display: flex;
        flex-direction: column;
/*        align-items: center;*/
        gap: 10px;
    }
}

.always-open-sort {
    width: 270px !important;
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.sort-title {
    padding: 12px 16px;
    font-size: 14px;
    color: #5f6368;
    background: #fff;
    border-bottom: 1px solid #ececec;
}

.sort-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .sort-list li {
        padding: 12px 16px;
        font-size: 14px;
        color: #5f6368;
        border-bottom: 1px solid #f1f1f1;
        cursor: pointer;
        background: #fff;
    }

        .sort-list li:last-child {
            border-bottom: none;
        }

        .sort-list li:hover {
            background: #efe;
            font-weight: bold;
            transition: ease 0.5s;
        }

        .sort-list li.active {
            color: #1f1f1f;
            font-weight: 500;
            background: #f9f9f9;
        }

.breadcrumb-area {
    background-color: #efe !important;
}

.kk-pagination-wrapper {
    margin-top: 35px;
    padding-top: 10px;
}

.kk-pagination-top {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
}

.kk-pagination-info {
    font-size: 14px;
    color: #5f6b7a;
    background: #f8faf8;
    border: 1px solid #e3ece4;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.kk-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.kk-page-btn,
.kk-page-dots {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.kk-page-btn {
    background: #fff;
    border: 1px solid #dce6dc;
    color: #2f3b4a;
    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

    .kk-page-btn:hover {
        color: #1f8f47;
        border-color: #1f8f47;
        transform: translateY(-2px);
    }

    .kk-page-btn.active {
        background: linear-gradient(135deg, #1f8f47, #27a956);
        color: #fff;
        border-color: #1f8f47;
        box-shadow: 0 8px 20px rgba(31, 143, 71, 0.22);
    }

    .kk-page-btn.disabled {
        pointer-events: none;
        opacity: 0.45;
        background: #f1f3f5;
        color: #98a2b3;
    }

.kk-page-dots {
    min-width: auto;
    padding: 0 4px;
    color: #7d8794;
}

.kk-nav-btn {
    font-size: 15px;
}

@media (max-width: 576px) {
    .kk-pagination-info {
        font-size: 13px;
        padding: 8px 12px;
        text-align: center;
    }

    .kk-page-btn,
    .kk-page-dots {
        min-width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 13px;
        padding: 0 10px;
    }

    .kk-pagination {
        gap: 8px;
    }
}

.kk-clear-filter {
    font-size: 15px;
    color: #1f8f47;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
    margin-bottom: 15px;
}

    .kk-clear-filter:hover {
        text-decoration: underline;
        color: #166534;
    }

