/* ============================================
   KRISHNA AYURVED DITTO THEME v3
   BODY SECTIONS ONLY - Header & Footer UNTOUCHED
   ============================================ */

/* Full Width Banner */
.ka-full-banner {
    padding: 60px 0;
    background: #fff;
}

.ka-full-banner .container-fluid {
    padding: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.full-banner-img {
    max-width: 1400px;
    width: 100%;
    height: auto;
    display: inline-block;
    transition: transform 0.3s ease;
    margin: 0 auto;
}

.full-banner-img:hover {
    transform: scale(1.01);
}

@media (max-width: 768px) {
    .ka-full-banner {
        padding: 30px 0;
    }
}

/* === HIDE OLD BODY SECTIONS THAT ARE REPLACED === */
.concern-section,
.concern-flex-wrapper,
.concern-label { display: none !important; }

.goodness-promise-section { display: none !important; }
.why-choose-section { display: none !important; }

/* === SELECT YOUR CONCERN SECTION === */
.ka-concern-section {
    padding: 30px 0 20px !important;
    text-align: center;
    background: #f7f8fa !important;
}
.ka-concern-section h2 {
    font-size: 26px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    margin-bottom: 20px;
    font-family: 'Georgia', 'Times New Roman', serif !important;
}
.ka-concern-pills {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.ka-concern-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid #ddd;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 600;
    background: white;
    transition: all 0.3s;
    cursor: pointer;
}
.ka-concern-pill:hover {
    border-color: #2d5a27;
    color: #2d5a27;
}
.ka-concern-pill.active {
    border-color: #2d5a27;
    background: #2d5a27;
    color: white;
}
.ka-concern-pill img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

/* === PRODUCT GRID (4 columns, white cards on grey bg) === */
.ka-products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
.ka-product-card {
    background: white !important;
    border-radius: 8px !important;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.3s;
    text-align: center;
    padding-bottom: 22px;
    cursor: pointer;
    text-decoration: none !important;
    color: inherit !important;
    display: block;
    border: 1px solid #f0f0f0;
}
.ka-product-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.ka-save-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e8f5e9;
    color: #2d5a27;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
}
.ka-save-badge::before {
    content: '🏷️';
    font-size: 11px;
}
.ka-product-image-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.ka-product-card .product-img {
    width: 100% !important;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    background: transparent;
    grid-area: 1 / 1;
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.ka-product-card .product-img-hover {
    opacity: 0;
    pointer-events: none;
}

.ka-hover-add-btn {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translate(-50%, 10px);
    opacity: 0;
    pointer-events: none;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #2d5a27 0%, #1f4320 100%);
    color: #fff;
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 18px rgba(31, 67, 32, 0.28);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 6;
    white-space: nowrap;
    cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
    .ka-product-card:hover .ka-product-image-wrap .product-img {
        transform: scale(1.04);
    }

    .ka-product-card:hover .ka-product-image-wrap.has-hover-image .product-img-primary {
        opacity: 0;
    }

    .ka-product-card:hover .ka-product-image-wrap.has-hover-image .product-img-hover {
        opacity: 1;
    }

    .ka-product-card:hover .ka-hover-add-btn,
    .ka-product-image-wrap:focus-within .ka-hover-add-btn {
        opacity: 1;
        pointer-events: auto;
        transform: translate(-50%, 0);
    }
}
.ka-product-card .product-name {
    font-size: 14px !important;
    font-weight: 600;
    color: #1a1a1a;
    margin: 10px 0 6px;
    padding: 0 12px;
    height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.ka-product-card .product-stars {
    color: #2d8a3e;
    font-size: 12px;
    margin-bottom: 6px;
}
.ka-product-card .product-stars span {
    color: #888;
    font-size: 11px;
}
.ka-product-card .product-pricing {
    font-size: 17px;
    font-weight: 800;
    color: #1a1a1a;
}
.ka-product-card .product-pricing .from-text {
    font-size: 14px;
    font-weight: 400;
    color: #555;
}
.ka-product-card .product-pricing .old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    margin-left: 8px;
}

/* === VIEW ALL LINK === */
.ka-view-all-link {
    display: block;
    text-align: center;
    padding: 30px 0 10px;
    color: #555;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.ka-view-all-link:hover {
    color: #2d5a27;
}

/* === SECTION DIVIDER === */
.ka-section-divider {
    width: 50%;
    max-width: 600px;
    height: 3px;
    background: #1a1a1a;
    margin: 0 auto;
    border: none;
}

/* === CATEGORY CIRCLES === */
.ka-category-circles {
    padding: 50px 0 60px;
    background: #f7f8fa;
}
.ka-category-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.ka-category-item {
    text-align: center;
    text-decoration: none;
    color: #333;
    width: 180px;
}
.ka-category-item .circle-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e2e2;
    margin: 0 auto 12px;
    display: block;
    transition: transform 0.3s;
}
.ka-category-item:hover .circle-img {
    transform: scale(1.05);
}
.ka-category-item .cat-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* === PRODUCT SECTION (second grid - "I'm looking for Best Solution") === */
.ka-product-section {
    padding: 50px 0 60px;
    background: #f7f8fa;
}
/* === SECTION HEADER (Unified) === */
.ka-section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.ka-section-header .section-title {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    font-family: 'Georgia', 'Times New Roman', serif;
    margin-bottom: 10px;
}

.ka-section-header .section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.ka-section-header .view-all {
    display: inline-block;
    color: #2d5a27;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 2px solid #2d5a27;
    transition: all 0.3s;
}

.ka-section-header .view-all:hover {
    color: #1a1a1a;
    border-color: #1a1a1a;
}

/* === COMMITMENT TRUST STRIP === */
.ka-commitment-strip {
    background: #2d5a27 !important;
    padding: 30px 0;
    overflow: hidden;
}

.ka-commitment-marquee {
    width: 100%;
    overflow: hidden;
}

.ka-commitment-row {
    display: flex;
    align-items: center;
    width: max-content;
    color: white;
    text-align: center;
    animation: ka-commitment-scroll 22s linear infinite;
    will-change: transform;
}

.ka-commitment-group {
    display: flex;
    align-items: center;
    gap: clamp(26px, 4vw, 64px);
    width: max-content;
    min-width: 100%;
    justify-content: space-around;
}

.ka-commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 150px;
}

.ka-commitment-item img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.ka-commitment-item span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes ka-commitment-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ka-commitment-row {
        animation: none;
    }
}

/* === HOME SERVICE HIGHLIGHTS (BEFORE BLOG) === */
.ka-home-service-strip {
    background: #ececec;
    padding: 28px 0 24px;
}

.ka-home-service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    max-width: 980px;
    margin: 0 auto;
}

.ka-home-service-item {
    text-align: center;
    transition: transform 0.28s ease;
}

.ka-home-service-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 1.6px solid #b7c0c8;
    margin: 0 auto 14px;
    background: radial-gradient(circle at 30% 30%, #ffffff 0%, #f3f6f8 48%, #e8edf1 100%);
    color: #1f2c38;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 7px 18px rgba(22, 34, 46, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.ka-home-service-icon::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px solid rgba(26, 45, 63, 0.15);
}

.ka-home-service-icon svg {
    width: 38px;
    height: 38px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ka-home-service-icon.is-delivery {
    color: #10603c;
}

.ka-home-service-icon.is-shipping {
    color: #1a4f8d;
}

.ka-home-service-icon.is-deals {
    color: #965b06;
}

.ka-home-service-icon.is-support {
    color: #6940a1;
}

.ka-home-service-item:hover {
    transform: translateY(-3px);
}

.ka-home-service-item:hover .ka-home-service-icon {
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 12px 22px rgba(22, 34, 46, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.ka-home-service-item p {
    margin: 0;
    color: #22303c;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}

/* === WATCH & SHOP REELS === */
.ka-watch-section {
    padding: 40px 0;
    background: #f7f8fa;
}
.ka-watch-section h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 25px;
    font-family: 'Georgia', 'Times New Roman', serif;
}
.ka-watch-grid {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}
.ka-watch-grid::-webkit-scrollbar { display: none; }
.ka-watch-card.custom-reel-card {
    flex: 0 0 280px;
    height: auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
}

.reel-video-container {
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.reel-video-container video,
.reel-video-container .reel-video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reel-video-container .reel-video-fallback {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.24s ease;
}

.reel-video-container .reel-video-fallback.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.reel-video-container .reel-video {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.24s ease;
    background: #000;
}

.reel-video-container .reel-drive-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 2;
    background: #000;
    display: block;
}

.reel-video-container .reel-video.is-ready {
    opacity: 1;
}

.reel-video-container .reel-video.has-error {
    display: none;
}

.reel-overlay-top {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.views-pill {
    background: rgba(0, 0, 0, 0.4);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.reel-overlay-side {
    position: absolute;
    bottom: 20px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
    color: white;
    font-size: 24px;
}

.reel-overlay-side i {
    cursor: pointer;
    transition: transform 0.2s;
}

.reel-overlay-side i:hover {
    transform: scale(1.1);
}

.reel-footer {
    padding: 15px;
}

.reel-product-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.product-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: contain;
    background: #f8f8f8;
    border: 1px solid #eee;
}

.product-name {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
}

.product-price {
    font-size: 14px;
    font-weight: 600;
    color: #2d5a27;
}

.product-price s {
    color: #999;
    font-size: 12px;
    margin-left: 5px;
    font-weight: 400;
}

.reel-buy-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2d5a27;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    transition: background 0.3s;
}

.reel-buy-btn:hover {
    background: #23471e;
}
.ka-watch-card .reel-info {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.ka-watch-card .reel-info .reel-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: contain;
}
.ka-watch-card .reel-info .reel-product {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}
.ka-watch-card .reel-info .reel-price {
    font-size: 12px;
    color: #555;
}
.ka-watch-card .reel-info .reel-price s {
    color: #999;
}
.ka-watch-card .buy-now-btn {
    display: block;
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px;
    background: #2d5a27;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.3s;
}
.ka-watch-card .buy-now-btn:hover {
    background: #1e3d1a;
}

/* === CONSULTATION BANNER === */
.ka-consultation-banner {
    margin: 60px auto;
    max-width: 1400px;
    width: min(100%, 1400px);
    aspect-ratio: 1536 / 1024;
    min-height: 700px;
    display: block;
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: #eef2e6;
    background-image: url('../../images/banners/consultation-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.ka-consultation-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 1;
}

.ka-consultation-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 550px;
}

.ka-consultation-banner h2 {
    font-size: 52px !important;
    font-weight: 900 !important;
    color: #2D5A27 !important;
    line-height: 1.05;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif !important;
    text-transform: capitalize;
}

.ka-consultation-banner p {
    font-size: 22px;
    color: #4A4A4A;
    margin-bottom: 35px;
    font-weight: 500;
}

.ka-consultation-banner .book-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 50px;
    background: #2D5A27;
    color: white;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 30px rgba(45, 90, 39, 0.3);
}

.ka-consultation-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.22);
}

.ka-consultation-banner:focus-visible {
    outline: 3px solid rgba(45, 90, 39, 0.85);
    outline-offset: 6px;
}

.ka-consultation-banner .book-btn:hover {
    background: #1e3d1a;
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ka-consultation-banner {
        margin: 24px 12px !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 420px !important;
        aspect-ratio: 1536 / 1024;
        border-radius: 18px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
        text-align: left;
    }

    .ka-consultation-banner::before {
        width: 100%;
        background: transparent;
    }

    .ka-consultation-banner .banner-content {
        left: 18px !important;
        right: 18px !important;
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        max-width: 62% !important;
        text-align: left !important;
    }

    .ka-consultation-banner h2 {
        font-size: 30px !important;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .ka-consultation-banner p {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .ka-consultation-banner .book-btn {
        padding: 12px 20px;
        font-size: 12px;
        letter-spacing: 0.8px;
        border-radius: 999px;
    }
}

/* === TESTIMONIALS === */
.ka-testimonials {
    padding: 40px 0;
    background: white;
}
.ka-testimonials h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
}
.ka-testimonial-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 10px 0 30px;
    margin: 0 auto;
    max-width: 1200px;
}
.ka-testimonial-grid {
    display: flex !important;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    gap: 20px;
    padding: 10px;
}
.ka-testimonial-card {
    flex: 0 0 calc(33.333% - 14px);
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    min-width: 300px;
}
.ka-testimonial-card .stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 15px;
}
.ka-testimonial-card .review-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
}
.ka-testimonial-card .reviewer {
    font-weight: 700;
    color: #1a1a1a;
    border-top: 1px solid #eee;
    padding-top: 15px;
}
.ka-testimonial-card .reviewer span {
    font-weight: 400;
    color: #888;
    font-size: 13px;
}
.ka-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.ka-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}
.ka-dot.active {
    background: #2d5a27;
    transform: scale(1.4);
}

@media (max-width: 1024px) {
    .ka-testimonial-card {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .ka-testimonial-card {
        flex: 0 0 100%;
        min-width: unset;
    }
}

/* === STATS SECTION === */
.stats-counter-section-moved {
    background: #2d5a27;
}
.stats-section {
    background: #2d5a27 !important;
}
.stats-grid {
    color: white !important;
}
.stat-item .stat-number {
    color: white !important;
}
.stat-item .stat-label {
    color: rgba(255,255,255,0.85) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .ka-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .ka-category-grid { gap: 25px; }
    .ka-category-item { width: 140px; }
    .ka-category-item .circle-img { width: 130px; height: 130px; }
    .ka-testimonial-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 768px) {
    .ka-concern-section {
        overflow: hidden !important;
    }

    .ka-concern-pills {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        scroll-snap-type: x mandatory !important;
        transform: none !important;
        touch-action: pan-x !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none;
        gap: 10px !important;
        padding: 0 4px 4px !important;
        margin: 0 -4px 20px !important;
    }

    .ka-concern-pills::-webkit-scrollbar {
        display: none;
    }

    .ka-concern-pill {
        flex: 0 0 auto !important;
        scroll-snap-align: start;
        white-space: nowrap !important;
    }

    .ka-concern-section h2,
    .ka-product-section h2,
    .ka-watch-section h2,
    .ka-testimonials h2 { font-size: 24px !important; }
    
    .ka-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .ka-product-card .product-name { font-size: 13px !important; }
    .ka-product-card .product-pricing { font-size: 16px; }
    
    .ka-concern-pills { gap: 8px; }
    .ka-concern-pill { padding: 7px 14px; font-size: 12px; }
    
    .ka-category-circles {
        overflow: hidden !important;
    }

    .ka-category-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        gap: 14px !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none;
        padding: 0 4px 4px !important;
        margin: 0 -4px !important;
    }

    .ka-category-grid::-webkit-scrollbar {
        display: none;
    }

    .ka-category-item {
        width: 110px !important;
        flex: 0 0 110px !important;
        scroll-snap-align: start;
    }

    .ka-category-item .circle-img { width: 90px; height: 90px; }
    .ka-category-item .cat-name { font-size: 12px; }
    
    .ka-testimonial-grid { grid-template-columns: 1fr !important; }
    
    .ka-consultation-banner {
        margin: 24px 12px !important;
        padding: 0 !important;
    }
    
    .ka-commitment-group {
        gap: 20px;
        justify-content: flex-start;
        min-width: max-content;
    }
    .ka-commitment-row { animation-duration: 16s; }
    .ka-commitment-item { min-width: 126px; }

    .ka-home-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 14px;
    }

    .ka-home-service-icon {
        width: 68px;
        height: 68px;
        margin-bottom: 10px;
    }

    .ka-home-service-icon svg {
        width: 34px;
        height: 34px;
    }

    .ka-home-service-item p {
        font-size: 13px;
    }
    
    .ka-watch-card { flex: 0 0 200px; }
}

@media (max-width: 480px) {
    .ka-consultation-banner {
        margin: 16px 10px !important;
        min-height: 360px !important;
        border-radius: 14px;
        background-position: center top;
    }

    .ka-consultation-banner .banner-content {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
        max-width: 72% !important;
    }

    .ka-consultation-banner h2 {
        font-size: 24px !important;
        margin-bottom: 8px;
    }

    .ka-consultation-banner p {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .ka-consultation-banner .book-btn {
        padding: 11px 16px;
        font-size: 11px;
        letter-spacing: 0.6px;
    }

    .ka-products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .ka-product-card .product-img { padding: 10px; }
    .ka-product-card .product-name { font-size: 12px !important; }
    .ka-product-card .product-pricing { font-size: 14px; }
    .ka-save-badge { font-size: 10px; padding: 3px 8px; }

    .ka-home-service-strip {
        padding: 22px 0;
    }

    .ka-home-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px 12px;
    }

    .ka-home-service-item p {
        font-size: 12px;
    }
}

/* ============================================
   ULTIMATE BANNER PAGINATION (TARGET STYLE)
   ============================================ */
.hero-slider-section .slider-dots {
    position: absolute !important;
    bottom: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: flex !important;
    gap: 8px !important; /* Visual gap exactly like target */
    z-index: 1000 !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
}

.hero-slider-section .slider-dots .dot {
    width: 100px !important; /* Long thin lines */
    height: 2px !important; /* Perfect thin line height */
    background: rgba(255, 255, 255, 0.25) !important; /* Semi-transparent inactive track */
    border: none !important;
    border-radius: 0 !important; /* No rounding, sharp ends */
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    display: block !important;
    box-shadow: none !important;
}

.hero-slider-section .slider-dots .dot::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    height: 100% !important;
    width: 0% !important;
    background: white !important; /* Pure white progress bar */
    transition: none !important;
}

.hero-slider-section .slider-dots .dot.active::after {
    animation: slideProgress 5s linear forwards !important;
}

@keyframes slideProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.slider-arrow {
    width: 44px !important;
    height: 44px !important;
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 100 !important;
    transition: all 0.3s ease !important;
}

.slider-arrow:hover {
    background: #2d5a27 !important;
    transform: translateY(-50%) scale(1.1) !important;
}
