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

/* === 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-card .product-img {
    width: 100% !important;
    aspect-ratio: 1/1;
    object-fit: contain;
    padding: 15px;
    background: #fafbfc;
}
.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;
}
.ka-product-section h2 {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 35px;
    color: #1a1a1a;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* === COMMITMENT TRUST STRIP === */
.ka-commitment-strip {
    background: #2d5a27 !important;
    padding: 30px 0;
}
.ka-commitment-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
    text-align: center;
}
.ka-commitment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.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;
}

/* === 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 {
    flex: 0 0 200px;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    scroll-snap-align: start;
}
.ka-watch-card .reel-img {
    width: 100%;
    aspect-ratio: 9/14;
    object-fit: cover;
    display: block;
}
.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: 30px auto;
    max-width: 1320px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5ecd7 0%, #f0e8d0 100%);
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 40px;
    position: relative;
}
.ka-consultation-banner .banner-content {
    max-width: 450px;
}
.ka-consultation-banner h2 {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #2d5a27 !important;
    line-height: 1.15;
    margin-bottom: 12px;
    font-family: 'Georgia', 'Times New Roman', serif !important;
}
.ka-consultation-banner p {
    font-size: 16px;
    color: #b47a2e;
    font-style: italic;
    margin-bottom: 20px;
}
.ka-consultation-banner .book-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #8B6914;
    color: white;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    transition: all 0.3s;
}
.ka-consultation-banner .book-btn:hover {
    background: #6d5310;
    transform: translateY(-2px);
}

/* === 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-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
}
.ka-testimonial-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}
.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: #555;
    margin-bottom: 15px;
}
.ka-testimonial-card .reviewer {
    font-weight: 700;
    color: #1a1a1a;
}
.ka-testimonial-card .reviewer span {
    font-weight: 400;
    color: #888;
    font-size: 13px;
}

/* === 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 h2,
    .ka-product-section h2,
    .ka-watch-section h2,
    .ka-testimonials h2,
    .ka-consultation-banner 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-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .ka-category-item { width: auto; }
    .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 {
        padding: 30px;
        margin: 20px 15px;
    }
    
    .ka-commitment-row {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .ka-watch-card { flex: 0 0 200px; }
}

@media (max-width: 480px) {
    .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; }
}
