/* ==========================================================================
   Kanha National Park — Tour Redesign Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   01. Tour Filters
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-tour-filters {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(7, 21, 18, 0.04);
    margin-bottom: 40px;
}

.kanha-theme .kanha-tour-filters__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.kanha-theme .kanha-tour-filters__title {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.kanha-theme .kanha-tour-filters__title .section-sub-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--kanha-orange);
    font-weight: 600;
}

.kanha-theme .kanha-tour-filters__count {
    font-size: 15px;
    font-weight: 500;
    color: var(--kanha-forest);
}

.kanha-theme .kanha-tour-filters__count span {
    font-size: 18px;
    font-weight: 700;
    color: var(--kanha-brown);
}

.kanha-theme .kanha-tour-filters__controls {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    flex: 1;
    min-width: min(780px, 100%);
}

.kanha-theme .kanha-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanha-theme .kanha-field label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kanha-forest);
    margin: 0;
}

.kanha-theme .kanha-field .form-control {
    background: #fcfbfa;
    border: 1.5px solid rgba(12, 46, 39, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--kanha-forest-dark);
    transition: all 0.3s ease;
}

.kanha-theme .kanha-field .form-control:focus {
    background: #ffffff;
    border-color: var(--kanha-orange);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.15);
    outline: 0;
}

/* --------------------------------------------------------------------------
   02. Tour Listing Grid & Cards
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-listing-grid {
    margin-top: 20px;
}

.kanha-theme .kanha-listing-card {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(7, 21, 18, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.kanha-theme .kanha-listing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(7, 21, 18, 0.07);
    border-color: rgba(12, 46, 39, 0.12);
}

.kanha-theme .kanha-listing-card__image {
    display: block;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 11;
    background: #eae8e5;
}

.kanha-theme .kanha-listing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.kanha-theme .kanha-listing-card:hover .kanha-listing-card__image img {
    transform: scale(1.06);
}

.kanha-theme .kanha-listing-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(7, 21, 18, 0.4) 100%);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.kanha-theme .kanha-listing-card:hover .kanha-listing-card__image::after {
    opacity: 0.7;
}

.kanha-theme .kanha-listing-card__tag-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(12, 46, 39, 0.9);
    backdrop-filter: blur(4px);
    color: #ffe165;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.kanha-theme .kanha-listing-card__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kanha-theme .kanha-listing-card__body h3 {
    font-family: var(--accent-font);
    font-size: 16.5px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.kanha-theme .kanha-listing-card__body h3 a {
    color: var(--kanha-forest-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.kanha-theme .kanha-listing-card__body h3 a:hover {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-listing-card__body p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-color);
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kanha-theme .kanha-listing-card__specs {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px dashed rgba(12, 46, 39, 0.08);
    border-bottom: 1px dashed rgba(12, 46, 39, 0.08);
    padding: 8px 0;
    margin: 2px 0;
}

.kanha-theme .kanha-listing-card__spec-item {
    font-size: 12px;
    font-weight: 500;
    color: var(--kanha-forest);
    display: flex;
    align-items: center;
    gap: 5px;
}

.kanha-theme .kanha-listing-card__spec-item i {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-listing-card__footer {
    margin-top: 8px;
}

.kanha-theme .btn-view-tour {
    width: 100%;
    background: var(--kanha-forest);
    color: #ffffff;
    text-align: center;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 0;
}

.kanha-theme .btn-view-tour:hover {
    background: var(--kanha-orange);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.2);
}

.kanha-theme .btn-view-tour i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.kanha-theme .btn-view-tour:hover i {
    transform: translateX(4px);
}

@media (max-width: 767.98px) {
    .kanha-theme #kanhaTourGrid {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 14px;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card {
        border-radius: 14px;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__tag-overlay {
        top: 8px;
        left: 8px;
        padding: 3px 8px;
        font-size: 9px;
        gap: 4px;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__body {
        padding: 12px 10px;
        gap: 6px;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__body h3 {
        font-size: 13px;
        line-height: 1.3;
        height: auto;
        min-height: 34px;
        -webkit-line-clamp: 2;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__specs {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 6px 0;
        margin: 0;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__spec-item {
        font-size: 10.5px;
        gap: 4px;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__spec-item i {
        font-size: 10px;
        width: 12px;
        text-align: center;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__body p {
        display: none;
    }

    .kanha-theme #kanhaTourGrid .kanha-listing-card__footer {
        margin-top: 4px;
    }

    .kanha-theme #kanhaTourGrid .btn-view-tour {
        padding: 8px 10px;
        font-size: 11px;
        border-radius: 8px;
        gap: 6px;
    }

    .kanha-theme #kanhaTourGrid .btn-view-tour i {
        font-size: 10px;
    }
}

/* --------------------------------------------------------------------------
   03. Tour Detail Header & Highlights Grid
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-tour-detail {
    border: 0;
    background: transparent;
    padding: 0;
}

.kanha-theme .kanha-page-featured {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(7, 21, 18, 0.05);
    margin-bottom: 30px;
    aspect-ratio: 16 / 9;
    max-height: 360px;
}

.kanha-theme .kanha-page-featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Highlights cards */
.kanha-theme .kanha-tour-highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.kanha-theme .kanha-highlight-card {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.04);
    border-radius: 16px;
    padding: 18px 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(7, 21, 18, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kanha-theme .kanha-highlight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(7, 21, 18, 0.06);
}

.kanha-theme .kanha-highlight-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(12, 46, 39, 0.05);
    color: var(--kanha-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 12px;
    font-size: 16px;
}

/* Compact side-by-side highlights grid */
.kanha-theme .kanha-tour-highlights-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.kanha-theme .kanha-highlight-card-dotted {
    background: #ffffff;
    border: 1.5px dotted rgba(12, 46, 39, 0.22);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.kanha-theme .kanha-highlight-card-dotted:hover {
    border-color: var(--kanha-orange);
    background: rgba(224, 122, 95, 0.02);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(7, 21, 18, 0.03);
}

.kanha-theme .kanha-highlight-card-dotted .kanha-highlight-card__icon {
    width: 36px;
    height: 36px;
    background: rgba(12, 46, 39, 0.05);
    color: var(--kanha-forest);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    margin-bottom: 0;
}

.kanha-theme .kanha-highlight-card-dotted .kanha-highlight-card__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kanha-theme .kanha-highlight-card-dotted h4 {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-color);
    margin: 0;
    font-weight: 600;
}

.kanha-theme .kanha-highlight-card-dotted p {
    font-size: 13px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0;
}

.kanha-theme .kanha-highlight-card:nth-child(2) .kanha-highlight-card__icon {
    background: rgba(224, 122, 95, 0.08);
    color: var(--kanha-orange);
}

.kanha-theme .kanha-highlight-card:nth-child(3) .kanha-highlight-card__icon {
    background: rgba(212, 175, 55, 0.08);
    color: var(--kanha-gold);
}

.kanha-theme .kanha-highlight-card:nth-child(4) .kanha-highlight-card__icon {
    background: rgba(112, 49, 11, 0.08);
    color: var(--kanha-brown);
}

.kanha-theme .kanha-highlight-card h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-color);
    margin: 0 0 4px;
    font-weight: 600;
}

.kanha-theme .kanha-highlight-card p {
    font-size: 14px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0;
}

@media (max-width: 767px) {
    .kanha-theme .kanha-tour-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --------------------------------------------------------------------------
   04. Interactive Itinerary Timeline
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-section-title {
    font-family: var(--kanha-font-heading);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    padding-bottom: 8px;
}

.kanha-theme .kanha-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--kanha-orange);
    border-radius: 2px;
}

.kanha-theme .kanha-timeline {
    position: relative;
    padding-left: 32px;
    margin-bottom: 40px;
}

.kanha-theme .kanha-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(12, 46, 39, 0.12);
}

.kanha-theme .kanha-timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.kanha-theme .kanha-timeline-item:last-child {
    margin-bottom: 0;
}

.kanha-theme .kanha-timeline-node {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 24px;
    height: 24px;
    background: var(--bg-color);
    border: 2px solid var(--kanha-orange);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kanha-theme .kanha-timeline-node::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--kanha-orange);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.kanha-theme .kanha-timeline-item:hover .kanha-timeline-node {
    border-color: var(--kanha-forest);
    transform: scale(1.15);
}

.kanha-theme .kanha-timeline-item:hover .kanha-timeline-node::after {
    background: var(--kanha-forest);
}

.kanha-theme .kanha-timeline-card {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.05);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 15px rgba(7, 21, 18, 0.02);
    transition: all 0.3s ease;
}

.kanha-theme .kanha-timeline-card:hover {
    border-color: rgba(12, 46, 39, 0.12);
    box-shadow: 0 8px 25px rgba(7, 21, 18, 0.04);
}

.kanha-theme .kanha-timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.kanha-theme .kanha-timeline-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kanha-theme .kanha-timeline-day-badge {
    background: var(--kanha-orange);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
}

.kanha-theme .kanha-timeline-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

/* --------------------------------------------------------------------------
   05. Inclusions & Exclusions side-by-side
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-inclusion-exclusion-row {
    margin-bottom: 40px;
}

.kanha-theme .kanha-inclusion-card,
.kanha-theme .kanha-exclusion-card {
    height: 100%;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(7, 21, 18, 0.02);
}

.kanha-theme .kanha-inclusion-card {
    background: rgba(22, 78, 67, 0.03);
    border: 1.5px solid rgba(22, 78, 67, 0.08);
}

.kanha-theme .kanha-exclusion-card {
    background: rgba(112, 49, 11, 0.03);
    border: 1.5px solid rgba(112, 49, 11, 0.08);
}

.kanha-theme .kanha-inclusion-card h3,
.kanha-theme .kanha-exclusion-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kanha-theme .kanha-inclusion-card h3 {
    color: var(--kanha-forest-light);
}

.kanha-theme .kanha-exclusion-card h3 {
    color: var(--kanha-brown);
}

.kanha-theme .kanha-inc-exc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanha-theme .kanha-inc-exc-list li {
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    padding-left: 26px;
    color: var(--kanha-forest-dark);
    font-weight: 500;
}

.kanha-theme .kanha-inc-exc-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 14px;
}

.kanha-theme .kanha-inclusion-card li i {
    color: #2e7d32;
}

.kanha-theme .kanha-exclusion-card li i {
    color: #c62828;
}

/* --------------------------------------------------------------------------
   06. Collapsible Policies/Accordions
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-policies-accordion {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanha-theme .kanha-accordion-item {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.kanha-theme .kanha-accordion-item:hover {
    border-color: rgba(12, 46, 39, 0.15);
}

.kanha-theme .kanha-accordion-btn {
    width: 100%;
    background: none;
    border: 0;
    padding: 16px 20px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-accordion-btn:focus {
    outline: 0;
}

.kanha-theme .kanha-accordion-btn i {
    color: var(--kanha-orange);
    transition: transform 0.3s ease;
}

.kanha-theme .kanha-accordion-btn.collapsed i {
    transform: rotate(-90deg);
}

.kanha-theme .kanha-accordion-content {
    border-top: 1px solid rgba(12, 46, 39, 0.05);
    background: #fbfbfa;
}

.kanha-theme .kanha-accordion-body {
    padding: 18px 20px;
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--text-color);
}

.kanha-theme .kanha-accordion-body ul, 
.kanha-theme .kanha-accordion-body ol {
    margin-bottom: 0;
    padding-left: 20px;
}

.kanha-theme .kanha-accordion-body li {
    margin-bottom: 8px;
}

.kanha-theme .kanha-accordion-body li:last-child {
    margin-bottom: 0;
}

.kanha-theme .kanha-accordion-body p {
    margin-bottom: 10px;
}

.kanha-theme .kanha-accordion-body p:last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   07. Sidebar Enquiry Form Redesign
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-sidebar-form-card {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(7, 21, 18, 0.05);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.kanha-theme .kanha-sidebar-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--kanha-forest) 0%, var(--kanha-orange) 100%);
}

.kanha-theme .kanha-sidebar-form-card h3 {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin-top: 0;
    margin-bottom: 6px;
}

.kanha-theme .kanha-sidebar-form-card p {
    font-size: 13px;
    color: var(--text-color);
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.kanha-theme .kanha-sidebar-form-card .form-group {
    margin-bottom: 16px;
}

.kanha-theme .kanha-sidebar-form-card label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kanha-forest);
    margin-bottom: 6px;
    display: block;
}

.kanha-theme .kanha-sidebar-form-card .form-control {
    background: #faf9f6;
    border: 1.5px solid rgba(12, 46, 39, 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--kanha-forest-dark);
    transition: all 0.3s ease;
}

.kanha-theme .kanha-sidebar-form-card .form-control:focus {
    background: #ffffff;
    border-color: var(--kanha-orange);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
    outline: 0;
}

.kanha-theme .kanha-sidebar-form-card .btn-submit-form {
    background: var(--kanha-orange);
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.2);
}

.kanha-theme .kanha-sidebar-form-card .btn-submit-form:hover {
    background: var(--kanha-brown);
    box-shadow: 0 6px 16px rgba(112, 49, 11, 0.25);
    transform: translateY(-1px);
}

.kanha-theme .kanha-sidebar-form-card .btn-submit-form:active {
    transform: translateY(0);
}

.kanha-theme .kanha-sidebar-form-card .btn-submit-form i {
    font-size: 14px;
}

/* --------------------------------------------------------------------------
   08. Additional Details
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-footer-notes {
    font-size: 12px;
    line-height: 1.5;
    color: #888;
    margin-top: 30px;
    border-top: 1px solid rgba(12, 46, 39, 0.08);
    padding-top: 15px;
}

/* Fix sticky header alignment */
.kanha-theme .kanha-page-header {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* --------------------------------------------------------------------------
   09. Page Header Title/Eyebrow Overlap Fix
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-page-header .section-sub-title {
    display: block !important;
    margin-bottom: 10px;
    text-align: center;
}

.kanha-theme .kanha-page-header .page-header-box h1 {
    display: block !important;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* --------------------------------------------------------------------------
   10. Hotel Page Specific Styling
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-hotel-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--kanha-forest);
    background: rgba(12, 46, 39, 0.05);
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 8px;
}

.kanha-theme .kanha-hotel-location i {
    font-size: 11px;
    color: var(--kanha-orange);
}

.kanha-theme .kanha-hotel-card-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.kanha-theme .kanha-hotel-price-row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.kanha-theme .kanha-hotel-layout-container {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .kanha-theme .kanha-hotel-sidebar-col {
        flex: 0 0 280px;
        width: 280px;
    }
    
    .kanha-theme .kanha-hotel-listings-col {
        flex: 1;
        min-width: 0;
    }
}

@media (max-width: 991.98px) {
    .kanha-theme .kanha-hotel-sidebar-col {
        flex: 0 0 100%;
        width: 100%;
        margin-bottom: 12px;
    }
    
    .kanha-theme .kanha-hotel-listings-col {
        flex: 0 0 100%;
        width: 100%;
    }

    .kanha-theme .kanha-hotel-sidebar-filter {
        position: relative;
        top: auto;
    }

    .kanha-theme .kanha-hotel-sidebar-filter .sidebar-filter-header {
        width: 100%;
        border: 0;
        background: transparent;
        cursor: pointer;
        text-align: left;
        font: inherit;
        color: inherit;
    }

    .kanha-theme .sidebar-filter-header__meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .kanha-theme .sidebar-filter-toggle-icon {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(12, 46, 39, 0.06);
        color: var(--kanha-forest);
        font-size: 12px;
        transition: transform 0.25s ease, background 0.25s ease;
    }

    .kanha-theme .kanha-hotel-sidebar-filter:not(.is-collapsed) .sidebar-filter-toggle-icon {
        transform: rotate(180deg);
        background: rgba(224, 122, 95, 0.14);
        color: var(--kanha-orange);
    }

    .kanha-theme .kanha-hotel-sidebar-filter.is-collapsed .sidebar-filter-body {
        display: none;
    }
}

@media (min-width: 992px) {
    .kanha-theme .sidebar-filter-header__meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .kanha-theme .sidebar-filter-toggle-icon {
        display: none;
    }

    .kanha-theme .kanha-hotel-sidebar-filter .sidebar-filter-header {
        cursor: default;
        pointer-events: none;
    }

    .kanha-theme .kanha-hotel-sidebar-filter.is-collapsed .sidebar-filter-body {
        display: block;
    }
}

/* Sidebar filter panel */
.kanha-theme .kanha-hotel-sidebar-filter {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf8 100%);
    border: 1px solid rgba(12, 46, 39, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(7, 21, 18, 0.06);
    position: sticky;
    top: 90px;
    z-index: 10;
}

.kanha-theme .kanha-hotel-sidebar-filter::before {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--kanha-forest) 0%, var(--kanha-forest-light) 50%, var(--kanha-gold) 100%);
}

.kanha-theme .sidebar-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(12, 46, 39, 0.06);
}

.kanha-theme .sidebar-filter-title {
    font-family: var(--accent-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.kanha-theme .sidebar-filter-title i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(224, 122, 95, 0.12);
    color: var(--kanha-orange);
    font-size: 12px;
}

.kanha-theme .kanha-hotel-filter-count {
    font-size: 11px;
    font-weight: 600;
    color: var(--kanha-forest);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 999px;
    padding: 4px 10px;
    white-space: nowrap;
}

.kanha-theme .kanha-hotel-filter-count span {
    color: var(--kanha-brown);
    font-weight: 700;
}

.kanha-theme .sidebar-filter-body {
    padding: 14px 14px 16px;
}

.kanha-theme .kanha-filter-block {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.07);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
}

.kanha-theme .kanha-filter-block__label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--kanha-forest);
    margin-bottom: 10px;
}

.kanha-theme .kanha-filter-block__label i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(12, 46, 39, 0.06);
    color: var(--kanha-orange);
    font-size: 10px;
}

.kanha-theme .kanha-hotel-sidebar-filter .search-input-wrap {
    position: relative;
}

.kanha-theme .kanha-hotel-sidebar-filter .search-input-wrap .form-control {
    padding: 9px 12px 9px 34px;
    font-size: 13px;
    border-radius: 8px;
    height: 40px;
    border: 1px solid rgba(12, 46, 39, 0.12);
    background: #fafaf9;
}

.kanha-theme .kanha-hotel-sidebar-filter .search-input-wrap .form-control:focus {
    border-color: var(--kanha-forest-light);
    box-shadow: 0 0 0 3px rgba(12, 46, 39, 0.08);
    background: #fff;
}

.kanha-theme .kanha-hotel-sidebar-filter .search-input-wrap .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
    font-size: 12px;
    color: #9aa5a1;
    pointer-events: none;
}

/* Chip-style filter options */
.kanha-theme .kanha-filter-chips {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanha-theme .kanha-filter-chip.custom-radio {
    margin-bottom: 0;
    position: relative;
    padding-left: 0;
}

.kanha-theme .kanha-filter-chip.custom-radio input[type="radio"] {
    display: none;
}

.kanha-theme .kanha-filter-chip.custom-radio label {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 8px 12px 8px 36px;
    border-radius: 8px;
    border: 1px solid rgba(12, 46, 39, 0.1);
    background: #fafaf9;
    font-size: 12.5px;
    font-weight: 500;
    color: #5a6563;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-filter-chip.custom-radio label::before {
    left: 12px;
    width: 14px;
    height: 14px;
}

.kanha-theme .kanha-filter-chip.custom-radio label::after {
    left: 15px;
    width: 8px;
    height: 8px;
    background: var(--kanha-forest);
}

.kanha-theme .kanha-filter-chip.custom-radio input[type="radio"]:checked + label {
    background: rgba(12, 46, 39, 0.06);
    border-color: rgba(12, 46, 39, 0.18);
    color: var(--kanha-forest-dark);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--kanha-orange);
}

.kanha-theme .kanha-filter-chip.custom-radio input[type="radio"]:checked + label::before {
    border-color: var(--kanha-forest);
    box-shadow: none;
}

.kanha-theme .kanha-filter-chip.custom-radio input[type="radio"]:checked + label::after {
    transform: translateY(-50%) scale(1);
}

.kanha-theme .kanha-filter-chip.custom-radio label:hover {
    border-color: rgba(12, 46, 39, 0.16);
    background: #fff;
}

.kanha-theme .stars-gold {
    color: var(--kanha-gold);
    margin-right: 4px;
    font-size: 9px;
}

.kanha-theme .kanha-hotel-filter-reset {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    border: 1px dashed rgba(12, 46, 39, 0.2);
    border-radius: 10px;
    background: transparent;
    color: var(--kanha-forest);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-hotel-filter-reset:hover {
    background: rgba(12, 46, 39, 0.04);
    border-color: var(--kanha-orange);
    color: var(--kanha-brown);
}

/* Hotel listing cards */
.kanha-theme .kanha-hotel-card.kanha-listing-card--horizontal {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    box-shadow: 0 4px 18px rgba(7, 21, 18, 0.04);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.kanha-theme .kanha-hotel-card.kanha-listing-card--horizontal:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(7, 21, 18, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__image-container {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
    overflow: hidden;
    background: #eae8e5;
}

.kanha-theme .kanha-hotel-card__image-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(7, 21, 18, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__image {
    display: block;
    height: 100%;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.kanha-theme .kanha-hotel-card:hover .kanha-listing-card__image img {
    transform: scale(1.06);
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__body {
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    gap: 10px;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__body h3 {
    font-size: 16px;
    margin: 0 0 6px;
    font-family: var(--accent-font);
    font-weight: 700;
    line-height: 1.3;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__body h3 a {
    color: var(--kanha-forest-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__body h3 a:hover {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-hotel-card .kanha-hotel-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #627572;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__tag-overlay {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(7, 21, 18, 0.72);
    backdrop-filter: blur(6px);
    color: #fff;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__tag-overlay i {
    color: var(--kanha-gold);
    font-size: 9px;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0;
    margin: 4px 0 10px;
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__spec-item {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--kanha-forest);
    background: rgba(12, 46, 39, 0.04);
    padding: 4px 9px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(12, 46, 39, 0.06);
}

.kanha-theme .kanha-hotel-card .kanha-listing-card__spec-item i {
    color: var(--kanha-orange);
    font-size: 9px;
}

.kanha-theme .kanha-hotel-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(249, 248, 246, 0.95) 0%, rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 10px;
}

.kanha-theme .kanha-hotel-card .price-label {
    font-size: 9px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.kanha-theme .kanha-hotel-card .price-value {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--kanha-brown);
    line-height: 1.1;
}

.kanha-theme .kanha-hotel-card .price-unit {
    font-size: 11px;
    color: #777;
    font-weight: 500;
}

.kanha-theme .kanha-hotel-card .kanha-btn--sm {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .kanha-theme .kanha-hotel-card.kanha-listing-card--horizontal {
        flex-direction: row;
    }
    
    .kanha-theme .kanha-hotel-card .kanha-listing-card__image-container {
        width: 38%;
        min-width: 38%;
        height: auto;
        aspect-ratio: auto;
        min-height: 210px;
    }
    
    .kanha-theme .kanha-hotel-card .kanha-listing-card__body {
        width: 62%;
        padding: 18px 20px;
    }
}

@media (max-width: 575.98px) {
    .kanha-theme .kanha-hotel-card-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .kanha-theme .kanha-hotel-card .kanha-btn--sm {
        width: 100%;
    }
}

/* --------------------------------------------------------------------------
   11. Single Hotel Page Design Enhancements
   -------------------------------------------------------------------------- */

/* Quick Specs Row */
.kanha-theme .hotel-quick-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    background: var(--kanha-cream);
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: 0 4px 15px rgba(7, 21, 18, 0.02);
}

.kanha-theme .quick-spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kanha-theme .quick-spec-item i {
    font-size: 20px;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.kanha-theme .quick-spec-item i.text-gold {
    color: var(--kanha-gold);
}

.kanha-theme .quick-spec-item i.text-orange {
    color: var(--kanha-orange);
}

.kanha-theme .quick-spec-item i.text-forest {
    color: var(--kanha-forest);
}

.kanha-theme .quick-spec-item i.text-green {
    color: #28a745;
}

.kanha-theme .quick-spec-item .spec-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.kanha-theme .quick-spec-item .spec-value {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--kanha-forest-dark);
    line-height: 1.2;
}

/* Mosaic Gallery */
.kanha-theme .hotel-gallery-mosaic {
    display: grid;
    grid-template-columns: 1.55fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
}

.kanha-theme .hotel-gallery-mosaic__main {
    grid-column: 1;
    grid-row: 1 / -1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

/* Flatten nested wrappers so all cells share one grid */
.kanha-theme .hotel-gallery-mosaic__side {
    display: contents;
}

.kanha-theme .hotel-gallery-mosaic__side-top {
    grid-column: 2 / -1;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.kanha-theme .hotel-gallery-mosaic__side-bottom {
    display: contents;
}

.kanha-theme .hotel-gallery-mosaic__side-item {
    position: relative;
    overflow: hidden;
    min-height: 0;
}

.kanha-theme .hotel-gallery-mosaic__side-item:first-child {
    grid-column: 2;
    grid-row: 2;
}

.kanha-theme .hotel-gallery-mosaic__side-item:last-child {
    grid-column: 3;
    grid-row: 2;
}

.kanha-theme .hotel-gallery-mosaic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.kanha-theme .hotel-gallery-mosaic a {
    display: block;
    height: 100%;
    width: 100%;
}

.kanha-theme .hotel-gallery-mosaic a:hover img {
    transform: scale(1.05);
}

/* Detail Sections */
.kanha-theme .hotel-detail-section {
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.05);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(7, 21, 18, 0.02);
}

.kanha-theme .section-title-underlined {
    font-family: var(--accent-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1.5px solid rgba(12, 46, 39, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.kanha-theme .section-title-underlined i {
    color: var(--kanha-orange);
    font-size: 18px;
}

.kanha-theme .hotel-description-text p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 16px;
}

.kanha-theme .hotel-description-text p:last-child {
    margin-bottom: 0;
}

/* Facilities Grid - Luxury Style */
.kanha-theme .hotel-facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.kanha-theme .facility-grid-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--kanha-forest);
    padding: 10px 14px;
    background: #fcfbfa;
    border: 1.5px solid rgba(12, 46, 39, 0.04);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.kanha-theme .facility-grid-item:hover {
    background: #f4f6f5;
    border-color: rgba(12, 46, 39, 0.1);
    transform: translateY(-1px);
}

.kanha-theme .facility-grid-item i {
    color: var(--kanha-orange);
    font-size: 14px;
    width: 24px;
    height: 24px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

/* Location Map Box */
.kanha-theme .hotel-location-text {
    font-size: 14px;
    font-weight: 550;
    color: var(--kanha-forest-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.kanha-theme .hotel-location-map-wrap {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(12, 46, 39, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Policies Listing */
.kanha-theme .policy-card {
    background: #fffcfb;
    border: 1.5px dashed rgba(224, 122, 95, 0.2);
    border-radius: 12px;
    padding: 20px;
}

.kanha-theme .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kanha-theme .policy-list li {
    position: relative;
    padding-left: 24px;
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--text-color);
}

.kanha-theme .policy-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: var(--kanha-orange);
    font-size: 14px;
    line-height: 1;
}

/* Responsive Rules for Single Hotel Detail */
@media (max-width: 991.98px) {
    .kanha-theme .hotel-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }
    
    .kanha-theme .hotel-gallery-mosaic {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        height: auto;
        gap: 8px;
        overflow: visible;
        border-radius: 12px;
    }

    .kanha-theme .hotel-gallery-mosaic__side,
    .kanha-theme .hotel-gallery-mosaic__side-bottom {
        display: contents;
    }

    .kanha-theme .hotel-gallery-mosaic__main,
    .kanha-theme .hotel-gallery-mosaic__side-top,
    .kanha-theme .hotel-gallery-mosaic__side-item {
        display: block;
        grid-column: auto;
        grid-row: auto;
        position: relative;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        min-height: 0;
    }

    .kanha-theme .hotel-gallery-mosaic img {
        min-height: 130px;
    }
    
    .kanha-theme .hotel-facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kanha-theme .facility-grid-item {
        align-items: flex-start;
        line-height: 1.35;
    }

    .kanha-theme .facility-grid-item i {
        flex-shrink: 0;
        margin-top: 1px;
    }
}

@media (max-width: 575.98px) {
    .kanha-theme .hotel-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px 16px;
    }

    .kanha-theme .quick-spec-item {
        align-items: flex-start;
        min-width: 0;
    }

    .kanha-theme .quick-spec-item > div {
        min-width: 0;
    }

    .kanha-theme .quick-spec-item .spec-value {
        font-size: 12px;
        word-break: break-word;
    }
    
    .kanha-theme .hotel-gallery-mosaic {
        gap: 8px;
    }

    .kanha-theme .hotel-gallery-mosaic img {
        min-height: 120px;
    }
    
    .kanha-theme .hotel-facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .kanha-theme .facility-grid-item {
        font-size: 12px;
        padding: 10px 11px;
    }
    
    .kanha-theme .hotel-detail-section {
        padding: 16px;
    }
}

/* Sidebar Icons styling */
.kanha-theme .kanha-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: #4b6b60;
    transition: all 0.3s ease;
}

.kanha-theme .kanha-sidebar-list li a:hover {
    background: rgba(12, 46, 39, 0.05);
    color: var(--kanha-orange);
    padding-left: 18px;
}

.kanha-theme .sidebar-link-icon {
    font-size: 14px;
    color: #a3b899;
    width: 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.kanha-theme .kanha-sidebar-list li a:hover .sidebar-link-icon {
    color: var(--kanha-orange);
}

.kanha-theme article.page-single-post {
    padding-top: 0 !important;
}

/* Available Rooms Section */
.hotel-room-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hotel-room-card {
    display: grid;
    grid-template-columns: 240px 1fr 200px;
    background: #ffffff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    align-items: stretch;
}

.hotel-room-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 46, 39, 0.06);
    border-color: rgba(12, 46, 39, 0.15);
}

.hotel-room-image-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.hotel-room-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.hotel-room-card:hover .hotel-room-image-wrap img {
    transform: scale(1.06);
}

.hotel-room-details {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hotel-room-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0 0 6px;
    font-family: var(--accent-font);
}

.room-short-desc {
    font-size: 12.5px;
    color: #777;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.room-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.room-features-grid li {
    font-size: 12px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-features-grid li i {
    color: var(--kanha-orange);
    font-size: 11px;
}

.room-cta-panel {
    border-left: 1px dashed rgba(12, 46, 39, 0.1);
    background: #fbfcfb;
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background 0.3s ease;
}

.hotel-room-card:hover .room-cta-panel {
    background: #f7f9f7;
}

.room-price-info {
    margin-bottom: 12px;
}

.room-price-info .price-period {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.room-price-info .price-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    line-height: 1.2;
}

.room-price-info .price-tax {
    font-size: 10px;
    color: #888;
}

.room-book-btn {
    width: 100%;
    background: var(--kanha-forest);
    color: #fff !important;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12.5px;
    transition: all 0.2s ease;
    border: none;
    text-align: center;
}

.room-book-btn:hover {
    background: var(--kanha-orange);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(228, 93, 44, 0.2);
}

@media (max-width: 767.98px) {
    .hotel-room-card {
        grid-template-columns: 1fr;
        border-radius: 14px;
    }
    .hotel-room-image-wrap {
        height: 200px;
        min-height: 200px;
    }
    .room-cta-panel {
        border-left: none;
        border-top: 1px solid rgba(12, 46, 39, 0.08);
        padding: 14px 16px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        background: #f8faf9;
    }
    .hotel-room-details {
        padding: 16px 16px 12px;
    }
    .room-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
    }
    .room-features-grid li {
        align-items: flex-start;
        line-height: 1.35;
        font-size: 12px;
    }
    .room-features-grid li i {
        margin-top: 2px;
        flex-shrink: 0;
    }
    .room-price-info {
        margin-bottom: 0;
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    .room-book-btn {
        width: auto;
        min-width: 130px;
        flex-shrink: 0;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 13px;
    }
}

/* --------------------------------------------------------------------------
   12. Hotel Detail Page — Wider Content + Compact Sidebar
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-hotel-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

@media (min-width: 992px) {
    .kanha-theme .kanha-hotel-detail-main {
        flex: 1 1 0;
        min-width: 0;
        width: calc(100% - 320px);
    }

    .kanha-theme .kanha-hotel-detail-sidebar {
        flex: 0 0 296px;
        width: 296px;
    }
}

@media (max-width: 991.98px) {
    .kanha-theme .kanha-hotel-detail-main,
    .kanha-theme .kanha-hotel-detail-sidebar {
        flex: 0 0 100%;
        width: 100%;
    }
}

/* Tighter main content spacing */
.kanha-theme .kanha-hotel-detail-page.kanha-section,
.kanha-theme .kanha-page-content.kanha-hotel-detail-page {
    padding-top: 48px;
    padding-bottom: 56px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic {
    height: 360px;
    gap: 10px;
    margin-bottom: 1.25rem !important;
}

.kanha-theme .kanha-hotel-detail-page .hotel-quick-specs {
    gap: 10px;
    padding: 12px 14px;
    margin-bottom: 1rem !important;
}

.kanha-theme .kanha-hotel-detail-page .quick-spec-item {
    gap: 8px;
}

.kanha-theme .kanha-hotel-detail-page .quick-spec-item i {
    width: 28px;
    height: 28px;
    font-size: 16px;
}

.kanha-theme .kanha-hotel-detail-page .quick-spec-item .spec-value {
    font-size: 12.5px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-detail-section {
    padding: 18px 20px;
    margin-bottom: 1.1rem !important;
    border-radius: 14px;
}

.kanha-theme .kanha-hotel-detail-page .section-title-underlined {
    font-size: 17px;
    margin-bottom: 14px;
    padding-bottom: 10px;
}

.kanha-theme .kanha-hotel-detail-page .section-title-underlined i {
    font-size: 15px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-description-text p {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 12px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-facilities-grid {
    gap: 10px;
}

@media (min-width: 992px) {
    .kanha-theme .kanha-hotel-detail-page .hotel-facilities-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.kanha-theme .kanha-hotel-detail-page .facility-grid-item {
    font-size: 11.5px;
    padding: 6px 9px;
    border-radius: 7px;
    gap: 7px;
}

.kanha-theme .kanha-hotel-detail-page .facility-grid-item i {
    width: 20px;
    height: 20px;
    font-size: 11px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-location-map-wrap iframe {
    height: 280px;
}

.kanha-theme .kanha-hotel-detail-page .policy-card {
    padding: 14px 16px;
    background: linear-gradient(135deg, #fffdfb 0%, #fff8f5 100%);
    border: 1px solid rgba(224, 122, 95, 0.18);
    border-left: 4px solid var(--kanha-orange);
}

.kanha-theme .kanha-hotel-detail-page .policy-list {
    gap: 6px;
}

.kanha-theme .kanha-hotel-detail-page .policy-list li {
    font-size: 12.5px;
    line-height: 1.45;
    padding-left: 22px;
}

.kanha-theme .kanha-hotel-detail-page .policy-list li::before {
    content: "\f058";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 13px;
    top: 2px;
    color: var(--kanha-orange);
}

.kanha-theme .kanha-hotel-detail-page .hotel-room-list {
    gap: 10px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-room-card {
    grid-template-columns: 260px minmax(0, 1fr) 158px;
    border-radius: 12px;
    align-items: stretch;
}

.kanha-theme .kanha-hotel-detail-page .hotel-room-image-wrap {
    min-height: 168px;
}

.kanha-theme .kanha-hotel-detail-page .hotel-room-details {
    padding: 12px 14px;
    justify-content: flex-start;
}

.kanha-theme .kanha-hotel-detail-page .hotel-room-details h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.kanha-theme .kanha-hotel-detail-page .room-short-desc {
    font-size: 12px;
    margin-bottom: 6px;
    line-height: 1.35;
}

.kanha-theme .kanha-hotel-detail-page .room-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3px 8px;
}

.kanha-theme .kanha-hotel-detail-page .room-features-grid li {
    font-size: 11px;
    gap: 5px;
    line-height: 1.3;
}

.kanha-theme .kanha-hotel-detail-page .room-features-grid li i {
    font-size: 10px;
    width: 14px;
    flex-shrink: 0;
    text-align: center;
}

.kanha-theme .kanha-hotel-detail-page .room-cta-panel {
    padding: 10px 12px;
}

.kanha-theme .kanha-hotel-detail-page .room-price-info {
    margin-bottom: 8px;
}

.kanha-theme .kanha-hotel-detail-page .room-price-info .price-amount {
    font-size: 17px;
}

.kanha-theme .kanha-hotel-detail-page .room-book-btn {
    padding: 7px 12px;
    font-size: 11.5px;
}

/* Compact sidebar on hotel detail pages */
.kanha-theme .kanha-hotel-detail-page .kanha-page-sidebar {
    top: 88px;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-block,
.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta {
    position: relative;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-block {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    border: 1px solid rgba(12, 46, 39, 0.1);
    border-left: 3px solid var(--kanha-orange);
    padding: 15px 14px 10px;
    box-shadow: 0 8px 22px rgba(7, 21, 18, 0.05);
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-block::before {
    display: none;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-block h3,
.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta h3 {
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 8px;
    padding: 0 0 8px;
    padding-left: 0;
    line-height: 1.3;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(12, 46, 39, 0.07);
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 6px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #3a564c;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li a::after {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 9px;
    margin-left: auto;
    color: rgba(12, 46, 39, 0.25);
    transition: color 0.2s ease, transform 0.2s ease;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li a:hover {
    background: rgba(12, 46, 39, 0.05);
    color: var(--kanha-orange);
    padding-left: 6px;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li a:hover::after {
    color: var(--kanha-orange);
    transform: translateX(2px);
}

.kanha-theme .kanha-hotel-detail-page .sidebar-link-icon {
    font-size: 12px;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(12, 46, 39, 0.06);
    color: var(--kanha-forest);
    transition: background 0.2s ease, color 0.2s ease;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-list li a:hover .sidebar-link-icon {
    background: rgba(224, 122, 95, 0.12);
    color: var(--kanha-orange);
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta {
    background: linear-gradient(145deg, var(--kanha-forest) 0%, #0a241f 100%);
    border: 1px solid rgba(12, 46, 39, 0.2);
    color: #fff;
    padding: 16px 14px 14px;
    box-shadow: 0 10px 24px rgba(7, 21, 18, 0.12);
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kanha-gold), var(--kanha-orange));
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta h3 {
    color: #fff;
    padding-left: 0;
    font-size: 13.5px;
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta p {
    font-size: 11.5px;
    line-height: 1.45;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.kanha-theme .kanha-hotel-detail-page .kanha-sidebar-cta .kanha-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 12px;
    font-size: 12px;
}

@media (min-width: 1200px) {
    .kanha-theme .kanha-hotel-detail-page .hotel-facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .kanha-theme .kanha-hotel-detail-page .hotel-room-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .kanha-theme .kanha-hotel-detail-page .room-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kanha-theme .kanha-hotel-detail-page .room-cta-panel {
        grid-column: 1 / -1;
        border-left: none;
        border-top: 1px dashed rgba(12, 46, 39, 0.1);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 8px 12px;
    }

    .kanha-theme .kanha-hotel-detail-page .room-price-info {
        margin-bottom: 0;
        text-align: left;
    }

    .kanha-theme .kanha-hotel-detail-page .room-book-btn {
        width: auto;
        min-width: 120px;
    }
}

@media (max-width: 767.98px) {
    .kanha-theme .kanha-hotel-detail-page {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-quick-specs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 14px 16px;
    }

    .kanha-theme .kanha-hotel-detail-page .quick-spec-item {
        align-items: flex-start;
        min-width: 0;
    }

    .kanha-theme .kanha-hotel-detail-page .quick-spec-item > div {
        min-width: 0;
    }

    .kanha-theme .kanha-hotel-detail-page .quick-spec-item .spec-value {
        font-size: 12px;
        word-break: break-word;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
        height: auto;
        gap: 8px;
        overflow: visible;
        border-radius: 12px;
        margin-bottom: 1rem !important;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic__side,
    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic__side-bottom {
        display: contents;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic__main,
    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic__side-top,
    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic__side-item {
        display: block;
        grid-column: auto;
        grid-row: auto;
        position: relative;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        border-radius: 10px;
        min-height: 0;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-gallery-mosaic img {
        min-height: 130px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-facilities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .kanha-theme .kanha-hotel-detail-page .facility-grid-item {
        font-size: 12.5px;
        padding: 10px 12px;
        align-items: flex-start;
        line-height: 1.35;
        gap: 8px;
        border-radius: 10px;
    }

    .kanha-theme .kanha-hotel-detail-page .facility-grid-item i {
        flex-shrink: 0;
        width: 22px;
        height: 22px;
        margin-top: 1px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-room-card {
        grid-template-columns: 1fr;
        border-radius: 14px;
        overflow: hidden;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-room-image-wrap {
        min-height: 200px;
        height: 200px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-room-details {
        padding: 16px 16px 12px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-room-details h4 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .kanha-theme .kanha-hotel-detail-page .room-short-desc {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .kanha-theme .kanha-hotel-detail-page .room-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 10px;
    }

    .kanha-theme .kanha-hotel-detail-page .room-features-grid li {
        font-size: 12px;
        align-items: flex-start;
        line-height: 1.35;
    }

    .kanha-theme .kanha-hotel-detail-page .room-features-grid li i {
        margin-top: 2px;
        flex-shrink: 0;
    }

    .kanha-theme .kanha-hotel-detail-page .room-cta-panel {
        border-left: none;
        border-top: 1px solid rgba(12, 46, 39, 0.08);
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        gap: 12px;
        background: #f8faf9;
    }

    .kanha-theme .kanha-hotel-detail-page .room-price-info {
        margin-bottom: 0;
        text-align: left;
        flex: 1;
        min-width: 0;
    }

    .kanha-theme .kanha-hotel-detail-page .room-price-info .price-amount {
        font-size: 22px;
    }

    .kanha-theme .kanha-hotel-detail-page .room-book-btn {
        width: auto;
        min-width: 130px;
        flex-shrink: 0;
        padding: 10px 16px;
        border-radius: 8px;
        font-size: 13px;
    }

    .kanha-theme .kanha-hotel-detail-page .hotel-detail-section {
        padding: 16px;
    }
}

/* --------------------------------------------------------------------------
   13. Universal Sidebar Layout — narrower sidebar, wider content
   -------------------------------------------------------------------------- */
@media (min-width: 992px) {
    .kanha-theme .kanha-sidebar-layout {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 28px;
        margin-left: 0;
        margin-right: 0;
    }

    .kanha-theme .kanha-sidebar-layout.row > * {
        flex-shrink: 1;
    }

    .kanha-theme .kanha-sidebar-layout > .kanha-sidebar-layout__main,
    .kanha-theme .kanha-sidebar-layout > .col-lg-8 {
        flex: 1 1 0;
        min-width: 0;
        width: auto !important;
        max-width: none;
    }

    .kanha-theme .kanha-sidebar-layout > .kanha-sidebar-layout__aside,
    .kanha-theme .kanha-sidebar-layout > .col-lg-4 {
        flex: 0 0 296px;
        width: 296px !important;
        max-width: 296px;
    }
}

.kanha-theme .kanha-sidebar-layout {
    gap: 22px;
    margin-left: 0;
    margin-right: 0;
}

.kanha-theme .kanha-sidebar-layout.row > .kanha-sidebar-layout__main,
.kanha-theme .kanha-sidebar-layout.row > .kanha-sidebar-layout__aside {
    width: 100%;
    max-width: 100%;
}

.kanha-theme .kanha-guide-page.kanha-section,
.kanha-theme .kanha-guide-page.kanha-page-content {
    padding-top: 40px;
    padding-bottom: 48px;
}

.kanha-theme .kanha-sidebar-layout__aside .kanha-page-sidebar {
    top: 88px;
}

/* Guide page content cards */
.kanha-theme .kanha-guide-article {
    color: #444;
}

.kanha-theme .kanha-guide-intro {
    background: linear-gradient(135deg, rgba(12, 46, 39, 0.03) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-left: 3px solid var(--kanha-orange);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
}

.kanha-theme .kanha-guide-intro h2 {
    margin: 0 0 8px;
}

.kanha-theme .kanha-guide-intro p {
    margin: 0;
    font-size: inherit;
    line-height: 1.7;
}

.kanha-theme .kanha-guide-gallery {
    margin-bottom: 14px;
}

.kanha-theme .kanha-guide-gallery__item {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(7, 21, 18, 0.08);
    height: 100%;
}

.kanha-theme .kanha-guide-gallery__item img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.kanha-theme .kanha-guide-section-card {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-left: 3px solid var(--kanha-orange);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(7, 21, 18, 0.04);
}

.kanha-theme .kanha-guide-section-card h2 {
    margin: 0 0 8px;
}

.kanha-theme .kanha-guide-section-card h3 {
    margin: 14px 0 8px;
}

.kanha-theme .kanha-guide-section-card h3:first-child {
    margin-top: 0;
}

.kanha-theme .kanha-guide-section-card p {
    font-size: inherit;
    line-height: 1.7;
    margin-bottom: 10px;
}

.kanha-theme .kanha-guide-section-card p:last-child {
    margin-bottom: 0;
}

.kanha-theme .kanha-guide-section-card a {
    color: var(--kanha-orange);
    font-weight: 600;
    text-decoration: none;
}

.kanha-theme .kanha-guide-section-card a:hover {
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-plan-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}

.kanha-theme .kanha-plan-step-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 12px;
    background: rgba(12, 46, 39, 0.03);
    border: 1px solid rgba(12, 46, 39, 0.06);
}

.kanha-theme .kanha-plan-step-card__num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--kanha-forest);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.kanha-theme .kanha-plan-step-card h3 {
    font-size: 16px;
    margin: 0 0 6px;
}

.kanha-theme .kanha-plan-step-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.kanha-theme .kanha-packing-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kanha-theme .kanha-packing-grid li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(12, 46, 39, 0.04);
    border: 1px solid rgba(12, 46, 39, 0.06);
    font-size: 14px;
    font-weight: 500;
    color: var(--kanha-forest);
}

.kanha-theme .kanha-packing-grid li i {
    color: var(--kanha-orange);
    width: 18px;
    text-align: center;
}

/* Guide pages — compact spacing (typography from global kanha-theme scale) */
.kanha-theme .kanha-guide-page .kanha-content-body h2 {
    margin: 16px 0 8px;
}

.kanha-theme .kanha-guide-page .kanha-content-body h3 {
    margin: 12px 0 6px;
}

.kanha-theme .kanha-guide-page .kanha-page-cta {
    margin-top: 18px;
}

.kanha-theme .kanha-guide-page .kanha-page-cta__inner {
    padding: 20px 22px;
}

.kanha-theme .kanha-guide-page .kanha-page-cta__inner h2 {
    font-size: 18px;
    margin-bottom: 4px;
}

.kanha-theme .kanha-guide-page .kanha-page-cta__inner p {
    font-size: 14px;
}

.kanha-theme .kanha-plan-step-card {
    padding: 12px 14px;
}

.kanha-theme .kanha-tour-overview,
.kanha-theme .kanha-hotel-overview {
    padding: 16px 18px;
    margin-bottom: 14px;
}

.kanha-theme .kanha-tour-overview h2,
.kanha-theme .kanha-hotel-overview h2 {
    margin-bottom: 8px;
}

@media (max-width: 991.98px) {
    .kanha-theme .kanha-season-cards {
        grid-template-columns: 1fr;
    }
}

.kanha-theme .kanha-guide-page .kanha-guide-article {
    font-size: inherit;
    line-height: 1.7;
    color: #3a3a3a;
}

.kanha-theme .kanha-guide-page .kanha-guide-article h2 {
    margin: 16px 0 8px;
}

.kanha-theme .kanha-guide-page .kanha-guide-intro h2,
.kanha-theme .kanha-guide-page .kanha-guide-section-card > h2:first-child {
    margin-top: 0;
}

.kanha-theme .kanha-guide-page .kanha-guide-article h3 {
    margin: 12px 0 6px;
}

.kanha-theme .kanha-guide-page .kanha-guide-article p,
.kanha-theme .kanha-guide-page .kanha-guide-article li {
    margin-bottom: 12px;
    font-size: inherit;
    line-height: 1.7;
}

.kanha-theme .kanha-guide-page .kanha-guide-article img.infoimg,
.kanha-theme .kanha-guide-page .kanha-guide-article .kanha-guide-gallery img,
.kanha-theme .kanha-guide-page .kanha-guide-article .row img.infoimg {
    border-radius: 12px;
    width: 100%;
    height: 210px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(7, 21, 18, 0.07);
}

.kanha-theme .kanha-guide-page .kanha-guide-article .kanha-guide-gallery,
.kanha-theme .kanha-guide-page .kanha-guide-article .row:has(img.infoimg) {
    margin-bottom: 14px;
}

/* Zone / info list — one card, flat rows (no card-in-card) */
.kanha-theme .kanha-zone-list .kanha-zone-item,
.kanha-theme .kanha-guide-page .kanha-zone-list .kanha-info-card {
    background: transparent;
    border: none;
    border-left: none;
    box-shadow: none;
    border-radius: 0;
    padding: 7px 0;
    margin: 0;
    font-size: inherit;
    line-height: 1.65;
    border-bottom: 1px solid rgba(12, 46, 39, 0.07);
}

.kanha-theme .kanha-zone-list .kanha-zone-item:last-child,
.kanha-theme .kanha-guide-page .kanha-zone-list .kanha-info-card:last-child {
    border-bottom: none;
}

.kanha-theme .kanha-zone-list .kanha-zone-item strong,
.kanha-theme .kanha-guide-page .kanha-info-card strong {
    color: var(--kanha-forest-dark);
    font-weight: 600;
}

.kanha-theme .kanha-zone-list h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--kanha-forest);
    margin: 10px 0 4px;
    font-family: var(--kanha-font-heading);
}

.kanha-theme .kanha-zone-list h4:first-of-type {
    margin-top: 0;
}

.kanha-theme .kanha-guide-page .kanha-info-card .kanha-info-card {
    padding-left: 0;
}

/* ── Data tables (guide pages) ───────────────────────────── */
.kanha-theme .kanha-table-block {
    margin: 12px 0 16px;
}

.kanha-theme .kanha-table-block h4 {
    margin: 0 0 8px;
}

.kanha-theme .kanha-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
    border: 1px solid rgba(12, 46, 39, 0.1);
    box-shadow: 0 3px 14px rgba(7, 21, 18, 0.04);
    background: #fff;
}

.kanha-theme .kanha-guide-article .kanha-data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.kanha-theme .kanha-guide-article .kanha-data-table thead th {
    background: var(--kanha-forest);
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    padding: 9px 12px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    vertical-align: middle;
}

.kanha-theme .kanha-guide-article .kanha-data-table thead th:last-child {
    border-right: none;
}

.kanha-theme .kanha-guide-article .kanha-data-table thead tr + tr th {
    background: rgba(12, 46, 39, 0.9);
    font-size: 12px;
    font-weight: 500;
    padding: 7px 12px;
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody td {
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid rgba(12, 46, 39, 0.07);
    border-right: 1px solid rgba(12, 46, 39, 0.05);
    vertical-align: middle;
    color: #444;
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody tr:last-child td {
    border-bottom: none;
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody td:last-child {
    border-right: none;
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody tr:nth-child(even) {
    background: rgba(12, 46, 39, 0.025);
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody tr:hover td {
    background: rgba(198, 120, 44, 0.07);
}

.kanha-theme .kanha-guide-article .kanha-data-table tbody td:first-child {
    font-weight: 500;
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-guide-article .kanha-data-table--compact tbody td,
.kanha-theme .kanha-guide-article .kanha-data-table--compact thead th {
    padding: 7px 10px;
    font-size: 13px;
}

/* Legacy tables inside guide articles (no thead) */
.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 0;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 14px rgba(7, 21, 18, 0.04);
    border: 1px solid rgba(12, 46, 39, 0.1);
}

.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) td,
.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) th {
    padding: 8px 12px;
    border: 1px solid rgba(12, 46, 39, 0.08);
    vertical-align: top;
}

.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) tr.months th,
.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) > thead th {
    background: var(--kanha-forest);
    color: #fff;
    font-weight: 600;
}

.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) > tbody > tr:first-child td strong:only-child,
.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) > tbody > tr:first-child th {
    background: var(--kanha-forest);
    color: #fff;
    font-weight: 600;
}

.kanha-theme .kanha-guide-page .kanha-guide-article table:not(.kanha-data-table) > tbody > tr:first-child td strong:only-child {
    display: block;
    font-weight: 600;
}

.kanha-theme .kanha-zone-list .kanha-table-block {
    margin-top: 10px;
}

.kanha-theme .kanha-zone-list .kanha-table-block + .kanha-table-block {
    margin-top: 14px;
}

.kanha-theme .kanha-season-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}

.kanha-theme .kanha-season-card {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 12px;
    padding: 14px 14px;
    box-shadow: 0 4px 16px rgba(7, 21, 18, 0.04);
    position: relative;
    overflow: hidden;
}

.kanha-theme .kanha-season-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--kanha-forest), var(--kanha-orange));
}

.kanha-theme .kanha-season-card__icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(12, 46, 39, 0.06);
    color: var(--kanha-orange);
    font-size: 18px;
    margin-bottom: 12px;
}

.kanha-theme .kanha-season-card h3 {
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-season-card p {
    font-size: inherit;
    line-height: 1.6;
    margin-bottom: 8px;
    color: #555;
}

.kanha-theme .kanha-season-card__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanha-theme .kanha-season-card__meta li {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--kanha-forest);
    display: flex;
    align-items: center;
    gap: 8px;
}

.kanha-theme .kanha-season-card__meta i {
    color: var(--kanha-orange);
    width: 14px;
}

.kanha-theme .kanha-section-title {
    margin-bottom: 10px;
}

/* Activity blocks — compact */
.kanha-theme .kanha-guide-page .kanha-guide-article p:has(> strong) {
    background: rgba(12, 46, 39, 0.03);
    border: 1px solid rgba(12, 46, 39, 0.07);
    border-left: 3px solid var(--kanha-orange);
    border-radius: 10px 10px 0 0;
    padding: 8px 12px 6px;
    margin-top: 10px;
    margin-bottom: 0;
    font-size: inherit;
}

.kanha-theme .kanha-guide-page .kanha-guide-article p:has(> strong) + p {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.07);
    border-top: none;
    border-left: 3px solid rgba(232, 119, 34, 0.3);
    border-radius: 0 0 10px 10px;
    padding: 8px 12px 10px;
    margin-top: 0;
    margin-bottom: 6px;
    box-shadow: none;
}

/* --------------------------------------------------------------------------
   14. Sidebar blocks (all pages)
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-page-sidebar .kanha-sidebar-block {
    background: linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
    border: 1px solid rgba(12, 46, 39, 0.1);
    border-left: 3px solid var(--kanha-orange);
    border-radius: 12px;
    padding: 14px 14px 10px;
    margin-bottom: 12px;
    box-shadow: 0 6px 20px rgba(7, 21, 18, 0.05);
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-block h3 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(12, 46, 39, 0.08);
    line-height: 1.3;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-list li {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 8px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 500;
    color: #3a564c;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-list li a::after {
    content: "\f054";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 9px;
    margin-left: auto;
    color: rgba(12, 46, 39, 0.22);
    transition: color 0.2s ease, transform 0.2s ease;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-list li a:hover {
    background: rgba(12, 46, 39, 0.05);
    color: var(--kanha-orange);
    padding-left: 12px;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-list li a:hover::after {
    color: var(--kanha-orange);
    transform: translateX(2px);
}

.kanha-theme .kanha-sidebar-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--kanha-orange);
    text-decoration: none;
}

.kanha-theme .kanha-sidebar-view-all:hover {
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-cta {
    background: linear-gradient(135deg, rgba(12, 46, 39, 0.04) 0%, rgba(232, 119, 34, 0.08) 100%);
    border: 1px solid rgba(12, 46, 39, 0.1);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-cta::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--kanha-forest), var(--kanha-orange));
}

.kanha-theme .kanha-sidebar-cta__icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(12, 46, 39, 0.08);
    color: var(--kanha-orange);
    font-size: 18px;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-cta h3 {
    font-size: 16px;
    margin-bottom: 6px;
    border: none;
    padding: 0;
}

.kanha-theme .kanha-page-sidebar .kanha-sidebar-cta p {
    font-size: 13px;
    margin-bottom: 14px;
    color: #5a5a5a;
}

/* Tour / hotel overview blocks */
.kanha-theme .kanha-tour-overview,
.kanha-theme .kanha-hotel-overview {
    background: linear-gradient(135deg, rgba(12, 46, 39, 0.04) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 1.5rem;
}

.kanha-theme .kanha-tour-overview h2,
.kanha-theme .kanha-hotel-overview h2 {
    font-size: 22px;
    color: var(--kanha-forest-dark);
    margin: 0 0 10px;
}

.kanha-theme .kanha-tour-overview p,
.kanha-theme .kanha-hotel-overview p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.kanha-theme .kanha-highlight-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--kanha-forest);
    margin-bottom: 2px;
}

.kanha-theme .kanha-tour-detail-page .kanha-section-title {
    margin-bottom: 1rem;
}

.kanha-theme .kanha-sidebar-form-card--compact {
    margin-bottom: 18px;
}

.kanha-theme .kanha-sidebar-form-card--compact p {
    margin-bottom: 14px;
}

.kanha-theme .kanha-sidebar-form-card--compact .form-group {
    margin-bottom: 12px;
}

/* Contact page */
.kanha-theme .kanha-contact-section .kanha-contact-page > h2 {
    font-size: 26px;
    color: var(--kanha-forest-dark);
    margin-bottom: 12px;
}

.kanha-theme .kanha-contact-section .kanha-contact-page > h3 {
    font-size: 18px;
    color: var(--kanha-forest-dark);
    margin: 28px 0 14px;
}

.kanha-theme .kanha-contact-details--cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0;
}

.kanha-theme .kanha-contact-details--cards .kanha-contact-details__item {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 0;
    box-shadow: 0 4px 18px rgba(7, 21, 18, 0.04);
}

.kanha-theme .kanha-contact-details--cards .kanha-contact-details__item--email {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
}

.kanha-theme .kanha-contact-details--cards .kanha-contact-details__item--email p {
    font-size: 15px;
    word-break: break-word;
}

.kanha-theme .kanha-contact-details--cards .kanha-contact-details__item--email a {
    font-weight: 600;
}

.kanha-theme .kanha-contact-quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.kanha-theme .kanha-contact-quick-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(12, 46, 39, 0.04);
    border: 1px solid rgba(12, 46, 39, 0.08);
    color: var(--kanha-forest);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.kanha-theme .kanha-contact-quick-links a:hover {
    background: var(--kanha-forest);
    color: #fff;
}

.kanha-theme .kanha-contact-quick-links a i {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-contact-quick-links a:hover i {
    color: #fff;
}

.kanha-theme .kanha-sidebar-form-card--flush {
    margin-bottom: 0;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
}

.kanha-theme .kanha-sidebar-form-card--flush::before {
    display: none;
}

.kanha-theme .kanha-contact-form-wrap {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(7, 21, 18, 0.06);
}

/* Contact page — wider form, balanced content column */
@media (min-width: 992px) {
    .kanha-theme .kanha-contact-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(360px, 40%);
        gap: 28px;
        align-items: start;
    }

    .kanha-theme .kanha-contact-layout > .kanha-sidebar-layout__main,
    .kanha-theme .kanha-contact-layout > .kanha-sidebar-layout__aside {
        flex: unset;
        width: auto !important;
        max-width: none;
    }

    .kanha-theme .kanha-contact-layout .kanha-contact-form-wrap {
        padding: 26px 28px;
        position: sticky;
        top: 92px;
    }

    .kanha-theme .kanha-contact-layout .kanha-sidebar-form-card h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .kanha-theme .kanha-contact-layout .kanha-sidebar-form-card p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 18px;
        color: #5a5a5a;
    }

    .kanha-theme .kanha-contact-layout .kanha-contact-form .form-control {
        padding: 11px 14px;
        font-size: 14px;
    }

    .kanha-theme .kanha-contact-layout .kanha-contact-form textarea.form-control {
        min-height: 120px;
    }

    .kanha-theme .kanha-contact-layout .btn-submit-form {
        padding: 13px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1200px) {
    .kanha-theme .kanha-contact-layout {
        grid-template-columns: minmax(0, 54%) minmax(400px, 44%);
        gap: 32px;
    }
}

@media (min-width: 1400px) {
    .kanha-theme .kanha-contact-layout {
        grid-template-columns: minmax(0, 52%) minmax(420px, 46%);
    }
}

@media (max-width: 991.98px) {
    .kanha-theme .kanha-contact-layout .kanha-contact-form-wrap {
        margin-top: 8px;
    }
}

@media (max-width: 767.98px) {
    .kanha-theme .kanha-contact-details--cards,
    .kanha-theme .kanha-contact-quick-links,
    .kanha-theme .kanha-packing-grid {
        grid-template-columns: 1fr;
    }

    .kanha-theme .kanha-guide-gallery__item img {
        height: 220px;
    }
}

/* Wildlife Information pages — compact section blocks */
.kanha-theme .kanha-species-grid,
.kanha-theme .kanha-activity-list,
.kanha-theme .kanha-place-list,
.kanha-theme .kanha-history-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.kanha-theme .kanha-species-card,
.kanha-theme .kanha-activity-card,
.kanha-theme .kanha-place-card,
.kanha-theme .kanha-history-item {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(12, 46, 39, 0.03);
    border: 1px solid rgba(12, 46, 39, 0.06);
}

.kanha-theme .kanha-species-card h4,
.kanha-theme .kanha-activity-card h4,
.kanha-theme .kanha-place-card h4,
.kanha-theme .kanha-history-item h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: var(--kanha-forest-dark);
    font-family: var(--kanha-font-heading);
}

.kanha-theme .kanha-species-card h4 i,
.kanha-theme .kanha-activity-card__icon i {
    color: var(--kanha-orange);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.kanha-theme .kanha-species-card p,
.kanha-theme .kanha-activity-card p,
.kanha-theme .kanha-place-card p,
.kanha-theme .kanha-history-item p {
    margin: 0;
    font-size: inherit;
    line-height: 1.65;
    color: #555;
}

.kanha-theme .kanha-activity-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kanha-theme .kanha-activity-card__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: var(--kanha-forest);
    color: #fff;
    font-size: 14px;
}

.kanha-theme .kanha-place-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.kanha-theme .kanha-place-card__head h4 {
    margin: 0;
}

.kanha-theme .kanha-place-card__meta {
    flex-shrink: 0;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--kanha-forest);
    background: rgba(12, 46, 39, 0.07);
    border: 1px solid rgba(12, 46, 39, 0.1);
    border-radius: 999px;
    padding: 3px 9px;
}

.kanha-theme .kanha-history-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.kanha-theme .kanha-history-item__year {
    flex-shrink: 0;
    min-width: 58px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: var(--kanha-forest);
    border-radius: 8px;
    padding: 6px 8px;
    line-height: 1.2;
}

.kanha-theme .kanha-guide-section-card .kanha-table-block:first-of-type {
    margin-top: 4px;
}

.kanha-theme .kanha-guide-section-card .kanha-table-block + .kanha-table-block {
    margin-top: 12px;
}

/* Best-time page — compact season block */
.kanha-theme .kanha-season-section {
    padding: 14px 16px;
}

.kanha-theme .kanha-season-section__lead {
    margin: 0 0 12px;
    font-size: inherit;
    line-height: 1.65;
    color: #555;
}

.kanha-theme .kanha-season-section__links {
    margin: 12px 0 0;
    font-size: inherit;
    line-height: 1.6;
}

.kanha-theme .kanha-season-cards--compact {
    gap: 10px;
    margin-bottom: 0;
}

.kanha-theme .kanha-season-cards--compact .kanha-season-card {
    padding: 12px 14px;
}

.kanha-theme .kanha-season-cards--compact .kanha-season-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--kanha-forest-dark);
    font-family: var(--kanha-font-heading);
}

.kanha-theme .kanha-season-cards--compact .kanha-season-card p {
    margin-bottom: 6px;
    font-size: inherit;
    line-height: 1.6;
}

.kanha-theme .kanha-season-cards--compact .kanha-season-card__icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 8px;
}

/* FAQ page accordion */
.kanha-theme .kanha-faq-page__accordion-wrap {
    padding: 12px 14px;
}

.kanha-theme .kanha-faq-page .kanha-faq-item .accordion-header .accordion-button {
    font-size: 14px;
    padding: 10px 40px 10px 12px;
}

.kanha-theme .kanha-faq-page .kanha-faq-item .accordion-body {
    padding: 0 14px 12px 42px;
}

.kanha-theme .kanha-faq-page .kanha-faq-item .accordion-body p {
    margin: 0;
    font-size: inherit;
    line-height: 1.65;
    color: #555;
}

.kanha-theme .kanha-faq-page .kanha-faq-item {
    margin-bottom: 6px;
}

/* Legal / terms page */
.kanha-theme .kanha-legal-page .kanha-guide-section-card {
    padding: 14px 16px;
    margin-bottom: 12px;
}

.kanha-theme .kanha-legal-page .kanha-guide-section-card h3 {
    margin-top: 0;
    margin-bottom: 8px;
}

.kanha-theme .kanha-legal-page .kanha-guide-section-card p {
    margin-bottom: 10px;
    font-size: inherit;
    line-height: 1.65;
}

.kanha-theme .kanha-legal-page .kanha-guide-section-card p:last-child {
    margin-bottom: 0;
}

.kanha-theme .kanha-legal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.kanha-theme .kanha-legal-list li {
    position: relative;
    padding: 8px 12px 8px 28px;
    border-radius: 8px;
    background: rgba(12, 46, 39, 0.03);
    border: 1px solid rgba(12, 46, 39, 0.06);
    font-size: inherit;
    line-height: 1.5;
    color: #444;
}

.kanha-theme .kanha-legal-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 10px;
    top: 9px;
    font-size: 12px;
    color: var(--kanha-orange);
}

/* --------------------------------------------------------------------------
   14. Payment Page
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-payment-section {
    padding-top: 48px;
    padding-bottom: 64px;
    background: linear-gradient(180deg, #f9f8f6 0%, #fff 120px);
}

.kanha-theme .kanha-payment-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 28px;
    align-items: start;
}

.kanha-theme .kanha-payment-card {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 20px;
    box-shadow: 0 14px 40px rgba(7, 21, 18, 0.07);
    overflow: hidden;
}

.kanha-theme .kanha-payment-card__head {
    padding: 28px 28px 0;
}

.kanha-theme .kanha-payment-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--kanha-orange);
    margin-bottom: 10px;
}

.kanha-theme .kanha-payment-card__head h2 {
    font-family: var(--accent-font);
    font-size: 28px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0 0 8px;
}

.kanha-theme .kanha-payment-card__head p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    max-width: 620px;
}

.kanha-theme .kanha-payment-form-wrap {
    padding: 24px 28px 28px;
}

.kanha-theme .kanha-payment-alert {
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.kanha-theme .kanha-payment-alert--error {
    background: rgba(220, 53, 69, 0.08);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #b02a37;
}

.kanha-theme .kanha-payment-alert ul {
    margin: 6px 0 0;
    padding-left: 18px;
}

.kanha-theme .kanha-payment-types {
    margin-bottom: 22px;
}

.kanha-theme .kanha-payment-types__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kanha-forest);
    margin-bottom: 10px;
}

.kanha-theme .kanha-payment-types__label .required,
.kanha-theme .kanha-payment-form label .required {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-payment-types__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.kanha-theme .kanha-payment-type {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 88px;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1.5px solid rgba(12, 46, 39, 0.1);
    background: #faf9f6;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.kanha-theme .kanha-payment-type input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.kanha-theme .kanha-payment-type__icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(12, 46, 39, 0.06);
    color: var(--kanha-forest);
    font-size: 16px;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-payment-type__text {
    font-size: 13px;
    font-weight: 600;
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-payment-type:hover {
    border-color: rgba(224, 122, 95, 0.35);
    background: #fff;
}

.kanha-theme .kanha-payment-type.is-active {
    border-color: var(--kanha-orange);
    background: rgba(224, 122, 95, 0.06);
    box-shadow: 0 6px 18px rgba(224, 122, 95, 0.12);
}

.kanha-theme .kanha-payment-type.is-active .kanha-payment-type__icon {
    background: var(--kanha-orange);
    color: #fff;
}

.kanha-theme .kanha-payment-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
}

.kanha-theme .kanha-payment-form .form-group {
    margin-bottom: 0;
}

.kanha-theme .kanha-payment-form label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--kanha-forest);
    margin-bottom: 6px;
    display: block;
}

.kanha-theme .kanha-payment-form .form-control {
    background: #faf9f6;
    border: 1.5px solid rgba(12, 46, 39, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--kanha-forest-dark);
    transition: all 0.2s ease;
    width: 100%;
}

.kanha-theme .kanha-payment-form .form-control:focus {
    background: #fff;
    border-color: var(--kanha-orange);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
    outline: 0;
}

.kanha-theme .kanha-payment-amount-field {
    display: flex;
    align-items: stretch;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid rgba(12, 46, 39, 0.1);
    background: #faf9f6;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-payment-amount-field:focus-within {
    border-color: var(--kanha-orange);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
    background: #fff;
}

.kanha-theme .kanha-payment-amount-field__currency {
    display: flex;
    align-items: center;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--kanha-forest);
    background: rgba(12, 46, 39, 0.06);
    border-right: 1px solid rgba(12, 46, 39, 0.08);
}

.kanha-theme .kanha-payment-amount-field .form-control {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
}

.kanha-theme .kanha-payment-amount-field .form-control:focus {
    box-shadow: none;
}

.kanha-theme .kanha-payment-form__purpose {
    grid-column: 1 / -1;
}

.kanha-theme .kanha-payment-form__actions {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(12, 46, 39, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
}

.kanha-theme .kanha-payment-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    padding: 14px 24px;
    border: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--kanha-orange) 0%, #c96a52 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(224, 122, 95, 0.28);
    transition: all 0.2s ease;
}

.kanha-theme .kanha-payment-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(224, 122, 95, 0.35);
}

.kanha-theme .kanha-payment-submit:disabled {
    opacity: 0.75;
    cursor: wait;
}

.kanha-theme .kanha-payment-secure--inline {
    flex: 1;
    min-width: 200px;
}

.kanha-theme .kanha-payment-secure__badges {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.kanha-theme .kanha-payment-secure__badges span {
    width: 36px;
    height: 28px;
    border-radius: 6px;
    background: rgba(12, 46, 39, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kanha-forest);
    font-size: 18px;
}

.kanha-theme .kanha-payment-secure p {
    margin: 0;
    font-size: 12px;
    color: #888;
}

.kanha-theme .kanha-payment-side-card {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 8px 24px rgba(7, 21, 18, 0.05);
}

.kanha-theme .kanha-payment-side-card--trust {
    background: linear-gradient(160deg, var(--kanha-forest-dark) 0%, #0a2420 100%);
    border-color: transparent;
    color: #fff;
}

.kanha-theme .kanha-payment-side-card--trust h3,
.kanha-theme .kanha-payment-side-card--trust p {
    color: #fff;
}

.kanha-theme .kanha-payment-side-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--kanha-orange);
    margin-bottom: 12px;
}

.kanha-theme .kanha-payment-side-card h3 {
    font-family: var(--accent-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin: 0 0 8px;
}

.kanha-theme .kanha-payment-side-card p {
    font-size: 13px;
    line-height: 1.55;
    color: #666;
    margin: 0 0 12px;
}

.kanha-theme .kanha-payment-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kanha-theme .kanha-payment-trust-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.92);
}

.kanha-theme .kanha-payment-trust-list i {
    color: var(--kanha-orange);
    font-size: 12px;
}

.kanha-theme .kanha-payment-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kanha-theme .kanha-payment-checklist li {
    position: relative;
    padding: 7px 0 7px 22px;
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    border-bottom: 1px solid rgba(12, 46, 39, 0.06);
}

.kanha-theme .kanha-payment-checklist li:last-child {
    border-bottom: 0;
}

.kanha-theme .kanha-payment-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 7 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 11px;
    color: var(--kanha-orange);
}

.kanha-theme .kanha-payment-help-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.kanha-theme .kanha-payment-help-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--kanha-forest);
    text-decoration: none;
}

.kanha-theme .kanha-payment-help-links a i {
    color: var(--kanha-orange);
    width: 16px;
}

.kanha-theme .kanha-payment-help-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(12, 46, 39, 0.06);
    border: 1px solid rgba(12, 46, 39, 0.1);
    color: var(--kanha-forest);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.kanha-theme .kanha-payment-help-btn:hover {
    background: var(--kanha-forest);
    color: #fff;
}

.kanha-theme .kanha-payment-agency-note {
    font-size: 12px;
    line-height: 1.55;
    color: #888;
    margin: 4px 0 0;
    padding: 0 4px;
}

@media (max-width: 991.98px) {
    .kanha-theme .kanha-payment-layout {
        grid-template-columns: 1fr;
    }

    .kanha-theme .kanha-payment-layout__aside {
        order: 2;
    }
}

@media (max-width: 767.98px) {
    .kanha-theme .kanha-payment-card__head,
    .kanha-theme .kanha-payment-form-wrap {
        padding-left: 18px;
        padding-right: 18px;
    }

    .kanha-theme .kanha-payment-types__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kanha-theme .kanha-payment-form__grid {
        grid-template-columns: 1fr;
    }

    .kanha-theme .kanha-payment-submit {
        width: 100%;
        min-width: 0;
    }
}

/* --------------------------------------------------------------------------
   15. Lightweight motion & backgrounds (replaces animate.css / GSAP / parallaxie)
   -------------------------------------------------------------------------- */
.kanha-theme .wow,
.kanha-theme .text-anime-style-3 {
    opacity: 0;
}

.kanha-theme .wow.kanha-visible,
.kanha-theme .text-anime-style-3.kanha-visible,
.kanha-theme .kanha-hero .text-anime-style-3 {
    animation: kanhaFadeInUp 0.65s ease forwards;
}

.kanha-theme .kanha-hero .text-anime-style-3 {
    opacity: 0;
    animation-delay: 0.12s;
}

@keyframes kanhaFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .kanha-theme .wow,
    .kanha-theme .text-anime-style-3 {
        opacity: 1;
        animation: none !important;
    }
}

.kanha-theme .kanha-page-header.bg-section,
.kanha-theme .hero-royal.kanha-hero,
.kanha-theme .kanha-heritage-section.parallaxie {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
    .kanha-theme .kanha-page-header.bg-section,
    .kanha-theme .hero-royal.kanha-hero.parallaxie,
    .kanha-theme .kanha-heritage-section.parallaxie {
        background-attachment: fixed;
    }
}

/* --------------------------------------------------------------------------
   News list & detail pages
   -------------------------------------------------------------------------- */
.kanha-theme .kanha-news-list-page {
    padding-top: 28px;
    padding-bottom: 56px;
    background: #f7f6f3;
}

.kanha-theme .kanha-news-list-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    margin-bottom: 22px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(7, 21, 18, 0.04);
}

.kanha-theme .kanha-news-list-toolbar__search {
    position: relative;
    flex: 1 1 260px;
    max-width: 460px;
}

.kanha-theme .kanha-news-list-toolbar__icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a9a92;
    font-size: 14px;
    pointer-events: none;
}

.kanha-theme .kanha-news-list-toolbar__input {
    width: 100%;
    height: 42px;
    padding: 0 38px 0 38px;
    border: 1px solid rgba(12, 46, 39, 0.12);
    border-radius: 9px;
    font-size: 14px;
    color: var(--kanha-forest-dark);
    background: #fafaf8;
}

.kanha-theme .kanha-news-list-toolbar__input:focus {
    outline: 0;
    border-color: var(--kanha-orange);
    box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
    background: #fff;
}

.kanha-theme .kanha-news-list-toolbar__clear {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 7px;
    background: rgba(12, 46, 39, 0.06);
    color: #5f6f6a;
    cursor: pointer;
}

.kanha-theme .kanha-news-list-status {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #6b7a72;
}

.kanha-theme .kanha-news-list-empty {
    text-align: center;
    padding: 40px 16px;
    background: #fff;
    border: 1px dashed rgba(12, 46, 39, 0.14);
    border-radius: 12px;
    margin-bottom: 18px;
}

.kanha-theme .kanha-news-list-empty i {
    font-size: 26px;
    color: var(--kanha-orange);
    margin-bottom: 10px;
}

.kanha-theme .kanha-news-list-empty p {
    margin: 0;
    font-size: 14px;
    color: #5f6f6a;
}

/* Mobile: 2 per row | Desktop: 4 per row */
.kanha-theme .kanha-news-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

@media (min-width: 992px) {
    .kanha-theme .kanha-news-list-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 16px;
    }
}

.kanha-theme .kanha-news-list-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.07);
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(7, 21, 18, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    height: 100%;
    opacity: 1 !important;
}

.kanha-theme .kanha-news-list-card.is-hidden,
.kanha-theme .kanha-news-list-card[hidden] {
    display: none !important;
}

.kanha-theme .kanha-news-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(7, 21, 18, 0.08);
}

.kanha-theme .kanha-news-list-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e3df;
}

.kanha-theme .kanha-news-list-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kanha-theme .kanha-news-list-card:hover .kanha-news-list-card__media img {
    transform: scale(1.05);
}

.kanha-theme .kanha-news-list-card__tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--kanha-forest-dark);
    color: #ffe165;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 7px;
    border-radius: 4px;
}

.kanha-theme .kanha-news-list-card__body {
    padding: 10px 11px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.kanha-theme .kanha-news-list-card__date {
    font-size: 10px;
    font-weight: 700;
    color: var(--kanha-orange);
}

.kanha-theme .kanha-news-list-card__title {
    font-family: var(--kanha-font-heading, var(--accent-font));
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 35px;
}

.kanha-theme .kanha-news-list-card__title a {
    color: var(--kanha-forest-dark);
    text-decoration: none;
}

.kanha-theme .kanha-news-list-card__title a:hover {
    color: var(--kanha-orange);
}

.kanha-theme .kanha-news-list-card__excerpt {
    margin: 0;
    font-size: 11.5px;
    line-height: 1.45;
    color: #6b7a72;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.kanha-theme .kanha-news-list-card__link {
    font-size: 11px;
    font-weight: 700;
    color: var(--kanha-orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.kanha-theme .kanha-news-pagination {
    margin-top: 28px;
}

.kanha-theme .kanha-news-pagination__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.kanha-theme .kanha-news-pagination__btn {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(12, 46, 39, 0.12);
    border-radius: 8px;
    background: #fff;
    color: var(--kanha-forest-dark);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.kanha-theme .kanha-news-pagination__btn.is-active {
    background: var(--kanha-forest-dark);
    border-color: var(--kanha-forest-dark);
    color: #fff;
}

.kanha-theme .kanha-news-pagination__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.kanha-theme .kanha-news-pagination__ellipsis {
    display: inline-flex;
    align-items: center;
    min-width: 24px;
    height: 36px;
    color: #8a9a92;
}

/* Detail page */
.kanha-theme .kanha-news-page {
    background: #f7f6f3;
    padding-top: 32px;
    padding-bottom: 48px;
}

.kanha-theme .kanha-news-article {
    background: #fff;
    border: 1px solid rgba(12, 46, 39, 0.08);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(7, 21, 18, 0.05);
    opacity: 1 !important;
}

.kanha-theme .kanha-news-article .wow {
    opacity: 1 !important;
    animation: none !important;
}

.kanha-theme .kanha-news-article__featured {
    margin: 0;
    border-radius: 0;
    max-height: 380px;
    aspect-ratio: 21 / 9;
}

.kanha-theme .kanha-news-article__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kanha-theme .kanha-news-article__header {
    padding: 18px 22px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin: 0;
}

.kanha-theme .kanha-news-article__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(12, 46, 39, 0.07);
    color: var(--kanha-forest-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 5px 9px;
    border-radius: 5px;
}

.kanha-theme .kanha-news-article__date {
    font-size: 12px;
    font-weight: 600;
    color: var(--kanha-orange);
}

.kanha-theme .kanha-news-article__title {
    flex: 1 1 100%;
    font-family: var(--kanha-font-heading, var(--accent-font));
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: var(--kanha-forest-dark);
    margin: 6px 0 0;
}

.kanha-theme .kanha-news-article__content {
    padding: 16px 22px 24px;
    border: 0;
    box-shadow: none;
    background: transparent;
    font-size: 15px;
    line-height: 1.75;
    color: #3a4541;
}

.kanha-theme .kanha-news-article__content > p:first-child {
    margin-top: 0;
    font-size: 15.5px;
    color: #2e3834;
}

.kanha-theme .kanha-news-article__content p > strong:only-child {
    display: block;
    margin: 16px 0 6px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(12, 46, 39, 0.08);
    font-size: 17px;
    color: var(--kanha-forest-dark);
}

.kanha-theme .kanha-news-page .kanha-news-article__title {
    display: none;
}

.kanha-theme .kanha-news-article__content .kanha-news-list-item {
    position: relative;
    margin: 0 0 8px;
    padding: 0 0 0 4px;
    color: #2e3834;
}

.kanha-theme .kanha-news-article__content .kanha-news-list-item + .kanha-news-list-item {
    margin-top: -2px;
}

.kanha-theme .kanha-news-article__content a {
    color: var(--kanha-orange);
    font-weight: 600;
    text-decoration: none;
}

.kanha-theme .kanha-news-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    margin: 0;
    padding: 16px 22px 22px;
    border-top: 1px solid rgba(12, 46, 39, 0.08);
}

.kanha-theme .kanha-news-share__label {
    font-size: 14px;
    font-weight: 700;
    color: var(--kanha-forest-dark);
    margin-right: 4px;
}

.kanha-theme .kanha-news-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kanha-theme .kanha-news-share__link:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(7, 21, 18, 0.15);
    color: #fff;
}

.kanha-theme .kanha-news-share__link--facebook {
    background: #1877f2;
}

.kanha-theme .kanha-news-share__link--twitter {
    background: #1da1f2;
}

.kanha-theme .kanha-sidebar-block--facebook {
    margin-bottom: 18px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 12px;
}

.kanha-theme .kanha-sidebar-block--facebook h3 {
    margin-bottom: 10px;
}

.kanha-theme .kanha-facebook-embed {
    width: 100%;
    max-width: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(12, 46, 39, 0.08);
    background: #fff;
    line-height: 0;
}

.kanha-theme .kanha-facebook-embed iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 500px;
    border: 0;
}

.kanha-theme .kanha-news-nav {
    margin: 18px 0 12px;
}

.kanha-theme .kanha-news-nav__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--kanha-forest-dark);
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 9px;
    border: 1px solid rgba(12, 46, 39, 0.12);
    background: #fff;
}

.kanha-theme .kanha-news-nav__back:hover {
    color: var(--kanha-orange);
    border-color: rgba(224, 122, 95, 0.3);
}

.kanha-theme .kanha-news-page .kanha-page-cta {
    margin-top: 0;
}

@media (max-width: 767.98px) {
    .kanha-theme .kanha-news-list-toolbar {
        padding: 12px;
    }

    .kanha-theme .kanha-news-list-status {
        width: 100%;
        text-align: center;
    }

    .kanha-theme .kanha-news-article__title {
        font-size: 19px;
    }

    .kanha-theme .kanha-news-article__content {
        padding: 14px 16px 20px;
        font-size: 14px;
    }

    .kanha-theme .kanha-news-article__featured {
        max-height: 200px;
        aspect-ratio: 16 / 10;
    }
}
