/* Kyrgyzlife Tours Frontend Styles - scoped to .klt-wrapper only */

.klt-wrapper {
    --klt-primary: #1b2944;
    --klt-accent: #a63d11;
    --klt-yellow: #FFD880;
    --klt-white: #ffffff;
}

/* Category Sorter */
.klt-wrapper .klt-category-sorter {
    margin: 30px 0;
}

.klt-wrapper .klt-category-scroll-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.klt-wrapper .klt-category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.klt-wrapper .klt-category-pills::-webkit-scrollbar {
    display: none;
}

.klt-wrapper .klt-category-pill {
    padding: 10px 20px;
    border: 2px solid;
    background: transparent;
    border-radius: 25px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.klt-wrapper .klt-category-pill:hover,
.klt-wrapper .klt-category-pill.active {
    background-color: var(--klt-accent);
    color: var(--klt-white) !important;
    border-color: var(--klt-accent);
}

.klt-wrapper .klt-scroll-arrow {
    background: var(--klt-primary);
    color: var(--klt-white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-scroll-arrow:hover {
    background: var(--klt-accent);
}

.klt-wrapper .klt-view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--klt-accent);
    color: var(--klt-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-view-all-btn:hover {
    background: var(--klt-primary);
    color: var(--klt-white);
}

/* Tour List */
.klt-wrapper .klt-tour-list {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.klt-wrapper .klt-columns-1 {
    grid-template-columns: 1fr;
}

.klt-wrapper .klt-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.klt-wrapper .klt-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.klt-wrapper .klt-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .klt-wrapper .klt-tour-list {
        grid-template-columns: 1fr !important;
    }
}

.klt-wrapper .klt-tour-card {
    background: var(--klt-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.klt-wrapper .klt-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.klt-wrapper .klt-tour-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.klt-wrapper .klt-tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.klt-wrapper .klt-tour-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 15px;
    color: var(--klt-white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.klt-wrapper .klt-tour-card-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
}

.klt-wrapper .klt-tour-card-title {
    padding: 20px 20px 10px;
    margin: 0;
    font-size: 20px;
}

.klt-wrapper .klt-tour-card-title a {
    color: var(--klt-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.klt-wrapper .klt-tour-card-title a:hover {
    color: var(--klt-accent);
}

.klt-wrapper .klt-tour-card-highlights {
    padding: 0 20px 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.klt-wrapper .klt-highlight-link {
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.klt-wrapper .klt-highlight-link:hover {
    color: var(--klt-accent);
}

.klt-wrapper .klt-tour-card-dates {
    padding: 0 20px 10px;
    font-size: 14px;
    color: #666;
}

.klt-wrapper .klt-tour-card-price {
    padding: 0 20px 15px;
    font-size: 18px;
    font-weight: 700;
    color: var(--klt-accent);
}

.klt-wrapper .klt-quick-look-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--klt-primary);
    color: var(--klt-white);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-quick-look-btn:hover {
    background: var(--klt-accent);
    color: var(--klt-white);
}

/* Fixed Dates */
.klt-wrapper .klt-fixed-dates {
    margin: 30px 0;
}

.klt-wrapper .klt-fixed-date-card {
    background: var(--klt-white);
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.klt-wrapper .klt-fixed-date-card:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.klt-wrapper .klt-fixed-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f5f5f5;
    border: none;
    width: 100%;
    text-align: left;
}

.klt-wrapper .klt-fixed-date-header h3 {
    margin: 0;
    flex: 1;
    color: var(--klt-primary);
}

.klt-wrapper .klt-fixed-date-range {
    margin-left: 20px;
    color: #666;
    font-size: 14px;
}

.klt-wrapper .klt-expand-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--klt-primary);
    transition: transform 0.3s ease;
}

.klt-wrapper .klt-fixed-date-card.expanded .klt-expand-btn {
    transform: rotate(180deg);
}

.klt-wrapper .klt-fixed-date-content {
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.klt-wrapper .klt-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.klt-wrapper .klt-calendar-day {
    text-align: center;
    padding: 10px;
    border-radius: 5px;
    background: #e0e0e0;
    color: #666;
}

.klt-calendar-day.available {
    background: var(--klt-primary);
    color: var(--klt-white);
}

.klt-calendar-day-name {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.klt-calendar-day-number {
    font-size: 16px;
    font-weight: 700;
}

.klt-wrapper .klt-fixed-date-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--klt-accent);
    margin-bottom: 15px;
}

.klt-wrapper .klt-book-now-btn {
    padding: 12px 30px;
    background: var(--klt-accent);
    color: var(--klt-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-book-now-btn:hover {
    background: var(--klt-primary);
}

/* Single Tour Page */
.klt-wrapper .klt-single-tour {
    max-width: 100%;
    margin: 0 auto;
    padding: 0px;
    background: #fff;
}

.klt-wrapper .klt-tour-hero {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-color: var(--klt-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.klt-wrapper .klt-tour-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.klt-tour-hero-title {
    position: relative;
    z-index: 1;
    color: var(--klt-white);
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0;
    padding: 20px;
}

@media (max-width: 768px) {
    .klt-wrapper .klt-tour-hero {
        height: 400px;
    }
    
    .klt-wrapper .klt-tour-hero-title {
        font-size: 32px;
    }
}

.klt-wrapper .klt-tour-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    padding-left:10%;
}

.klt-wrapper .klt-tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.klt-wrapper .klt-tab-btn:hover {
    color: var(--klt-primary);
}

.klt-wrapper .klt-tab-btn.active {
    color: var(--klt-accent);
    border-bottom-color: var(--klt-accent);
}

.klt-wrapper .klt-tab-content {
    display: none;
    padding: 30px 0;
}

.klt-wrapper .klt-tab-content.active {
    display: block;
}

.klt-wrapper .klt-tour-overview {
    font-size: 16px;
    line-height: 1.8;
}

.klt-wrapper .klt-tour-overview p {
    margin-bottom: 15px;
}

.klt-wrapper .klt-overview-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}
.klt-wrapper .klt-overview-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
.klt-wrapper .klt-overview-meta-item i {
    color: var(--klt-accent);
}
.klt-wrapper .klt-tour-highlights-list { margin-top: 24px; }
.klt-wrapper .klt-highlights-list-title { margin-bottom: 10px; color: var(--klt-primary); }
.klt-wrapper .klt-dates-prices-custom { margin-bottom: 24px; }
.klt-wrapper .klt-included-not-included-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
@media (max-width: 640px) {
    .klt-wrapper .klt-included-not-included-row { grid-template-columns: 1fr; }
}
.klt-wrapper .klt-similar-fixed-dates { margin-top: 30px; }
.klt-wrapper .klt-similar-fixed-dates h3 { margin-bottom: 10px; color: var(--klt-primary); }
.klt-wrapper .klt-similar-fixed-dates ul { list-style: none; padding: 0; }
.klt-wrapper .klt-similar-fixed-dates li { margin-bottom: 8px; }

/* Is this trip for me */
.klt-wrapper .klt-trip-for-me { margin-top: 28px; padding-top: 24px; border-top: 1px solid #e0e0e0; }
.klt-wrapper .klt-trip-for-me-title { margin-bottom: 16px; color: var(--klt-primary); }
.klt-wrapper .klt-trip-for-me-grid { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.klt-wrapper .klt-trip-for-me-item { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.klt-wrapper .klt-trip-for-me-item i { color: var(--klt-accent); width: 20px; }
.klt-wrapper .klt-trip-for-me-label { font-weight: 600; text-transform: capitalize; color: var(--klt-primary); }
.klt-wrapper .klt-trip-for-me-dots { display: inline-flex; gap: 4px; }
.klt-wrapper .klt-trip-dot { width: 12px; height: 12px; border-radius: 50%; background: #ddd; }
.klt-wrapper .klt-trip-dot.filled { background: var(--klt-accent); }
.klt-wrapper .klt-trip-physical { font-weight: 600; padding: 2px 8px; border-radius: 4px; }
.klt-wrapper .klt-trip-physical-easy { background: #d4edda; color: #155724; }
.klt-wrapper .klt-trip-physical-medium { background: #fff3cd; color: #856404; }
.klt-wrapper .klt-trip-physical-hard { background: #f8d7da; color: #721c24; }
.klt-wrapper .klt-trip-tags { color: #666; }

.klt-wrapper .klt-tour-itinerary {
    margin-top: 20px;
}

.klt-wrapper .klt-itinerary-day-accordion {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
}

.klt-wrapper .klt-itinerary-day-header {
    width: 100%;
    padding: 20px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--klt-primary);
    transition: background 0.3s ease;
}

.klt-wrapper .klt-itinerary-day-header:hover {
    background: #e8e8e8;
}

.klt-wrapper .klt-itinerary-day-content {
    padding: 20px;
    display: none;
}

.klt-wrapper .klt-itinerary-day-accordion.expanded .klt-itinerary-day-content {
    display: block;
}

.klt-wrapper .klt-itinerary-day-accordion.expanded .klt-itinerary-day-header .klt-accordion-icon {
    transform: rotate(180deg);
}

.klt-wrapper .klt-accordion-icon {
    transition: transform 0.3s ease;
    display: inline-block;
}

.klt-wrapper .klt-tour-map {
    width: 100%;
    height: 500px;
    margin-top: 20px;
}

.klt-wrapper .klt-tour-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.klt-wrapper .klt-dates-prices-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.klt-wrapper .klt-dates-prices-table th,
.klt-wrapper .klt-dates-prices-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.klt-wrapper .klt-dates-prices-table th {
    background: #f5f5f5;
    font-weight: 600;
    color: var(--klt-primary);
}

.klt-wrapper .klt-included-section,
.klt-wrapper .klt-not-included-section {
    margin-top: 30px;
}

.klt-wrapper .klt-included-section h3,
.klt-wrapper .klt-not-included-section h3 {
    color: var(--klt-primary);
    margin-bottom: 15px;
}

.klt-wrapper .klt-included-section ul,
.klt-wrapper .klt-not-included-section ul {
    list-style: none;
    padding: 0;
}

.klt-wrapper .klt-included-section li,
.klt-wrapper .klt-not-included-section li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.klt-wrapper .klt-included-section li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
    font-weight: bold;
}

.klt-wrapper .klt-not-included-section li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: red;
    font-weight: bold;
}

/* Useful Information Section */
.klt-wrapper .klt-useful-info-section {
    background: var(--klt-accent);
    color: var(--klt-white);
    padding: 50px 30px;
    margin: 3% 10%;
    border-radius: 10px;
}

.klt-wrapper .klt-useful-info-section h2 {
    color: var(--klt-white);
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.klt-wrapper .klt-useful-info-section h3 {
    color: var(--klt-white);
    font-size: 24px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0.9;
}

.klt-wrapper .klt-useful-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.klt-wrapper .klt-useful-info-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.klt-wrapper .klt-useful-info-item i {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.klt-wrapper .klt-useful-info-item h4 {
    color: var(--klt-white);
    font-size: 20px;
    margin-bottom: 15px;
}

.klt-wrapper .klt-useful-info-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* FAQ Section */
.klt-wrapper .klt-faq-section {
    background: var(--klt-accent);
    color: var(--klt-white);
    padding: 40px 30px;
    margin: 0 10%;
    border-radius: 10px;
}

.klt-wrapper .klt-faq-section h2 {
    color: var(--klt-white);
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.klt-wrapper .klt-faq-theme {
    margin-bottom: 30px;
}

.klt-wrapper .klt-faq-theme-header {
    color: var(--klt-white);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.klt-wrapper .klt-faq-list {
    margin-top: 20px;
}

.klt-wrapper .klt-faq-item {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.klt-wrapper .klt-faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--klt-white);
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.klt-wrapper .klt-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.klt-wrapper .klt-faq-item.expanded .klt-faq-answer {
    max-height: 1000px;
    padding: 20px;
}

.klt-wrapper .klt-faq-item.expanded .klt-faq-question .klt-accordion-icon {
    transform: rotate(180deg);
}

/* Book Now Popup */
.klt-wrapper .klt-book-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.klt-wrapper .klt-book-popup.active {
    display: flex;
}

.klt-wrapper .klt-book-popup-content {
    background: var(--klt-white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.klt-wrapper .klt-book-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

.klt-wrapper .klt-book-popup h2 {
    color: var(--klt-primary);
    margin-bottom: 20px;
}

.klt-wrapper .klt-book-popup form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.klt-wrapper .klt-book-popup label {
    font-weight: 600;
    color: var(--klt-primary);
}

.klt-wrapper .klt-book-popup input,
.klt-wrapper .klt-book-popup textarea {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
}

.klt-wrapper .klt-book-popup button[type="submit"] {
    padding: 15px;
    background: var(--klt-accent);
    color: var(--klt-white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.klt-wrapper .klt-book-popup button[type="submit"]:hover {
    background: var(--klt-primary);
}

/* Loading state */
.klt-wrapper .klt-category-results.klt-loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Quick Look popup */
.klt-wrapper .klt-quicklook-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
}

.klt-wrapper .klt-quicklook-popup.active {
    display: flex;
}

.klt-wrapper .klt-quicklook-popup-content {
    background: var(--klt-white);
    padding: 30px;
    border-radius: 10px;
    max-width: 900px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.klt-wrapper .klt-quicklook-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

.klt-wrapper .klt-quicklook-title {
    margin: 0 0 8px 0;
    color: var(--klt-primary);
}

.klt-wrapper .klt-quicklook-meta {
    color: #666;
    margin-bottom: 10px;
}

.klt-wrapper .klt-quicklook-price {
    color: var(--klt-accent);
    font-weight: 700;
    margin-bottom: 15px;
}

.klt-wrapper .klt-quicklook-actions {
    margin-top: 20px;
}

.klt-wrapper .klt-quicklook-view {
    display: inline-block;
    padding: 12px 18px;
    background: var(--klt-primary);
    color: var(--klt-white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.klt-wrapper .klt-quicklook-view:hover {
    background: var(--klt-accent);
    color: var(--klt-white);
}

/* Fixed dates layout (3 columns) */
.klt-wrapper .klt-fixed-date-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    background: #f5f5f5;
    border: none;
    width: 100%;
    text-align: left;
}

.klt-wrapper .klt-fixed-date-header-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.klt-wrapper .klt-fixed-date-every {
    font-size: 13px;
    color: #666;
    font-weight: 600;
}
.klt-wrapper .klt-fixed-date-range {
    font-weight: 700;
    color: var(--klt-primary);
}

.klt-wrapper .klt-fixed-date-row {
    display: grid;
    grid-template-columns: 1fr 220px 220px;
    gap: 20px;
    align-items: center;
}

@media (max-width: 900px) {
    .klt-wrapper .klt-fixed-date-row {
        grid-template-columns: 1fr;
        gap: 14px;
        align-items: stretch;
    }
}

.klt-wrapper .klt-fixed-date-col-price {
    text-align: center;
}

.klt-wrapper .klt-fixed-date-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--klt-accent);
    line-height: 1.1;
}

.klt-wrapper .klt-fixed-date-price-sub {
    color: #666;
    font-size: 12px;
    margin-top: 4px;
}

.klt-wrapper .klt-detailed-itinerary-btn {
    margin-top: 12px;
    display: inline-block;
    padding: 10px 12px;
    border: 2px solid var(--klt-primary);
    color: var(--klt-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.klt-wrapper .klt-detailed-itinerary-btn:hover {
    border-color: var(--klt-accent);
    color: var(--klt-accent);
}

.klt-wrapper .klt-fixed-date-col-book {
    text-align: center;
}

/* Mini calendar */
.klt-wrapper .klt-calendar-grid-mini {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.klt-wrapper .klt-calendar-grid-mini .klt-calendar-day {
    padding: 4px 2px;
    border-radius: 4px;
}

.klt-wrapper .klt-calendar-grid-mini .klt-calendar-day-name {
    font-size: 9px;
    margin-bottom: 2px;
    font-weight: 700;
}

.klt-wrapper .klt-calendar-grid-mini .klt-calendar-day-number {
    font-size: 11px;
    font-weight: 800;
}

.klt-wrapper .klt-calendar-grid-mini .klt-calendar-day.available {
    background: #1b4ddb; /* blue */
}

.klt-wrapper .klt-calendar-grid-mini .klt-calendar-day.unavailable {
    background: #cfcfcf; /* grey */
    color: #666;
}

/* Make Quick Look button look like link/button */
.klt-quick-look-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--klt-primary);
    color: var(--klt-white);
    text-align: center;
    border-radius: 5px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.klt-quick-look-btn:hover {
    background: var(--klt-accent);
}


.klt-quicklook-content ul, .klt-single-tour ul {
    list-style: circle !important;
    padding-left: 3% !important;
    padding-top: 1% !important;
}

.klt-tour-content {
    padding-left: 10%;
    padding-right: 10%;
}
