:root {
    --p-main-color: #16a34a;
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary-color: #059669;
    --accent-color: #eab308;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --border-color: #e5e7eb;
    --bg-light: #f9fafb;
}


.icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f3f4f6;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.icon-btn:hover {
    background: var(--p-main-color);
    color: white;
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.6875rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid var(--p-main-color);
    color: var(--p-main-color);
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--p-main-color);
    color: white;
    transform: translateY(-2px);
}

.trial-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--p-main-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.3);
}

.trial-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.4);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22, 163, 74, 0.85) 0%, rgba(5, 150, 105, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.breadcrumb-link {
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.breadcrumb-link:hover {
    opacity: 0.8;
}

.breadcrumb-current {
    font-weight: 700;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    font-weight: 500;
}

/* Quick Search Bar */
.quick-search-bar {
    background: white;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    padding: 0 12px;
}

.search-input {
    border: none;
    outline: none;
    font-size: 0.9375rem;
    color: #1f2937;
    font-weight: 500;
    width: 100%;
    background: transparent;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-divider {
    width: 1px;
    height: 40px;
    background: #e5e7eb;
}

.search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--p-main-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.4);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.5);
}

/* Main Content */
.camp-archive-one {
    padding: 110px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 32px;
}

/* Filter Sidebar */
.filter-sidebar {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.filter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.clear-filters {
    color: var(--p-main-color);
    font-weight: 600;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.clear-filters:hover {
    color: var(--primary-dark);
}

.filter-section {
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

/* Price Range */
.price-range-container {
    padding: 12px 0;
}

.price-range-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
    background: #e5e7eb;
    margin-bottom: 8px;
}

.price-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--p-main-color);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--p-main-color);
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
}

.price-display-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}

.price-display {
    text-align: center;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.price-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 8px;
}

.filter-checkbox:hover {
    background: #f3f4f6;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    accent-color: var(--p-main-color);
    margin-right: 12px;
}

.checkbox-label {
    flex: 1;
    font-size: 0.9375rem;
    color: #4b5563;
    font-weight: 500;
}

.checkbox-count {
    font-size: 0.8125rem;
    color: #9ca3af;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 600;
}

.see-more-btn {
    margin-top: 12px;
    color: var(--p-main-color);
    font-weight: 600;
    font-size: 0.875rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    opacity: 0.8;
}

/* Results Header */
.results-header {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.results-info h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.results-info p {
    color: var(--text-gray);
    line-height: 22px;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.view-toggle {
    display: flex;
    background: #f3f4f6;
    border-radius: 10px;
    padding: 4px;
}

.view-btn {
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.view-btn.active {
    background: white;
    color: var(--p-main-color);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.sort-dropdown {
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #4b5563;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.sort-dropdown:hover {
    border-color: var(--p-main-color);
}

.sort-dropdown:focus {
    border-color: var(--p-main-color);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    transition: all 0.3s ease;
}

/* Tour Card */
.tour-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%);
}

.tour-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card:hover .tour-image {
    transform: scale(1.1);
}

/* Wishlist Button */
.tour-wishlist-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: #4b5563;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tour-wishlist-btn:hover {
    background: #ef4444;
    color: white;
}

.tour-wishlist-btn.active {
    background: #ef4444;
    color: white;
}

.tour-wishlist-btn:hover .woosw-btn-icon {
    color: #fff;
}

.tour-wishlist-btn i {
    font-size: 1.125rem;
}

.tour-card .woosw-btn-has-icon .woosw-btn-icon {
    font-size: 20px;
}

/* Tour Badges */
.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
}

.discount-badge {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.popular-badge {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

/* Tour Content */

.tour-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 16px;
}

.tour-header-left {
    flex: 1;
    min-width: 0;
}

.tour-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.tour-location i {
    color: var(--p-main-color);
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fef3c7;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #92400e;
    white-space: nowrap;
}

.tour-rating i {
    color: #fbbf24;
}

/* Tour Meta */
.tour-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 16px 0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 500;
}

.meta-item i {
    color: var(--p-main-color);
}

/* Tour Features */
.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 600;
}

.feature-tag i {
    color: var(--p-main-color);
    font-size: 0.875rem;
}

/* Tour Footer */
.tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.75rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--p-main-color);
    line-height: 1;
}

.price-original {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-top: 4px;
}

.tour-book-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--p-main-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    box-shadow: 0 4px 6px -1px rgba(22, 163, 74, 0.3);
}

.tour-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(22, 163, 74, 0.4);
}

.tour-book-btn i {
    transition: transform 0.3s ease;
}

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

/* Pagination */
.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.pagination-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-btn:hover:not(:disabled) {
    border-color: var(--p-main-color);
    color: var(--p-main-color);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-number {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: white;
    border: 2px solid #e5e7eb;
    color: #4b5563;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-number:hover {
    border-color: var(--p-main-color);
    color: var(--p-main-color);
}

.page-number.active {
    background: var(--p-main-color);
    border-color: var(--p-main-color);
    color: white;
}

.page-dots {
    color: #9ca3af;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--p-main-color);
    transform: translateY(-4px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #d1d5db;
}

.contact-info i {
    color: var(--primary-light);
    width: 20px;
}



/* Enhanced Tour Card Layout */
.tours-grid.list-view {
    grid-template-columns: 1fr;
}

.tours-grid.list-view .tour-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    /* max-height: 335px; */
}


/* .tours-grid.list-view .tour-image-wrapper {
    height: 335px;
}

.tours-grid.list-view .tour-image-wrapper .img-box img {
    height: 340px;
    object-fit: cover;
} */

.tours-grid.list-view .tour-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 32px;
}

.tours-grid.list-view .tour-header {
    flex-direction: row;
    align-items: flex-start;
}

.tours-grid.list-view .tour-meta {
    border-top: none;
    border-bottom: none;
    padding: 12px 0;
    margin: 12px 0;
}

.tours-grid.list-view .tour-features {
    margin-bottom: 16px;
}

.tours-grid.list-view .tour-footer {
    border-top: 1px solid #e5e7eb;
    padding-top: 16px;
    margin-top: auto;
}

.tours-grid.list-view .tour-title {
    font-size: 1.5rem;
    -webkit-line-clamp: 1;
}

.tours-grid.list-view .tour-location {
    margin-bottom: 0;
}

.bottom-meta-campie-archive {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    justify-content: space-between;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    width: -webkit-fill-available;
}

.hot-title-archive {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(245, 87, 108, 0.18);
    animation: pulse 2s infinite;
}

.card-category-archive {
    background: rgba(255, 255, 255, 0.95);
    padding: 7px 15px;
    gap: 2px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 3;
}


/* Tour Cards */
.tours-grid .tour-card,
.archive_ajax_result .tour-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tours-grid .tour-card:hover,
.archive_ajax_result .tour-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tour-image-wrapper {
    position: relative;
    overflow: hidden;
    /* height: 250px; */
}

.tour-image-wrapper .img-box {
    width: 100%;
  
}

.tours-grid.list-view .img-box {
    height: 100%;
}

.tour-card:hover .tour-image {
    transform: scale(1.05);
}

.tour-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, transparent 50%);
    z-index: 1;
}

.tour-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 3;
}


.tour-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);

     background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.bottom-meta-campie-archive {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    z-index: 3;
}

.card-category-archive {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    gap: 2px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.card-category-archive a {
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
}

.hot-deals {
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    display: inline-block;
}

.tour-content {
    padding: 24px;
}

.tour-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.tour-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.tour-location {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 0;
}

.tour-location i {
    margin-right: 6px;
    color: #059669;
}

.tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 14px;
}

.meta-item i {
    margin-right: 6px;
    color: #059669;
}

.tour-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f3f4f6;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 600;
}

.feature-tag i {
    margin-right: 4px;
    font-size: 12px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.tour-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.tour-book-btn:hover {
    transform: translateY(0);
    box-shadow: none;
}

.price-original-main {
    font-size: 32px;
    font-weight: 700;
    color: #2E7D32;
    line-height: 40px;
}

.price-value {
    font-size: 15px;
    color: #9da0a7;
    text-decoration: line-through;
    margin-bottom: 4px;
    font-weight: 500;
    padding-top: 4px;
}

.tour-book-btn {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}


.tour-book-btn i {
    font-size: 12px;
}

.tour-title .title {
    font-size: 24px;
    font-weight: 700;
    color: #222E48;
}


/* Grid Layout */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Content Grid Layout */

.camp-archive-one {
    background-color: #EFEEEA;
}

.camp-archive-one .content-grid {
    display: grid;
    grid-template-columns: 325px 1fr;
    gap: 30px;
    max-width: 1340px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .camp-archive-one .content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        gap: 30px;
    }
    
    .tour-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .tour-book-btn {
        width: 100%;
        justify-content: center;
    }
}

.tf-details-right {
    background: #fff;
    padding-top: 28px;
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 15px;
    border-radius: 16px;
    position: sticky;
    top: 135px;
}

.tf-section-title {
    font-size: 22px;
    font-weight: 600;
}

.al-range-slider__grid {
    background: #e5e7eb;
    border-radius: 5px;
}

.tf_widget .al-range-slider__track {
    height: 8px;
}

.tf_widget .tf-tour-result-price-range {
    padding-bottom: 20px;
    padding-top: 20px;
    padding-left: 28px;
    padding-right: 28px;
}

.tf_widget .al-range-slider__knob {
    height: 16px;
    width: 16px;
    border: none;
    background: #16a34a;
}

.tf_widget .al-range-slider_dark .al-range-slider__bar {
    background: #e5e7eb;
}

.tf-filter-title {
    display: flex;
    justify-content: space-between;
    padding-bottom: 35px;
}

.tf-close-sidebar {
    display: none;
}

.tf-section-title i {
    padding-right: 10px;
    font-size: 18px;
    line-height: 24px;
}

.filter-reset-btn {
    background-color: transparent;
    border: 1px solid #e2e2e2; 
    color: #1e293b;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-reset-btn:hover {
  background-color: #16a34a;
  color: #fff;
  border-color: #16a34a; 
}

.hero-search-section {
    background-color: #EFEEEA;
}

.tf-archive-booking-form__style-2 .tf-booking-form {
    border-radius: 14px;
    background-color: #fff;
}

.tf-archive-ordering {
    position: relative;
}

.tf-archive-ordering i {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    color: var(--tf-text-paragraph);
    font-size: 14px;
}

.tf-archive-ordering select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap input {
    margin-bottom: 0;
}

.post-type-archive-tf_tours .main-contain #content {
    padding-top: 0;
    padding-bottom: 0;
}

.tf-archive-booking-form__style-2 .tf-booking-form {
    border-radius: 65px;
    background-color: #fff;
    position: absolute;
    width: 68%;
    top: -53px;
    left: 16%;
    padding-right: 20px;
    padding-left: 20px;
}

.tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-submit {
    width: auto;
}


.tf-archive-booking-form__style-2 .tf-booking-form span.tf-booking-form-title {
    margin-bottom: 2px;
}


.hero-search-section {
    position: relative;
}

.tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap #tf-destinationautocomplete-list {
    border: 1px solid #aaa;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.tf-archive-booking-form__style-2 .tf_acrselection-wrap.tf-show {
    border: 1px solid #cbcbcb;
    border-radius: 8px;
}

.tf-sorting-selection-warper select {
    height: 48px !important;
    margin: 0;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
}

.tf_widget {
    border: 1px solid #d8d8d8;
    border-radius: 8px;
}

.tf_widget .tf-widget-title {
    border: none;
    border-bottom: 1px solid #d8d8d8!important;
}

.post-type-archive-tf_tours .themephi-breadcrumbs.porfolio-details {
    margin-bottom: -17px;
}

.post-type-archive-tf_tours .themephi-breadcrumbs .breadcrumbs-inner {
    padding-bottom: 195px;
}

.tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap {
    padding: 0;
}

.tours-grid .img-box {
    height: 305px;
}

@media (max-width: 530px) {
    .results-controls {
        flex-wrap: wrap;
    }

    .results-header {
        flex-wrap: wrap;
        gap: 20px !important;
    }
}

@media (max-width: 700px) {
    .tours-grid.list-view .tour-card {
        grid-template-columns: 1fr;
        max-height: 100%;
    }
}



@media (max-width: 475px) {
    .tf-details-right {
        margin-top: 65px;
    }
}

@media (min-width: 476px) and (max-width: 766px) {
    .tf-details-right {
        margin-top: 165px;
    }
}

@media (min-width: 767px) and (max-width: 768px) {
     .tf-details-right {
        margin-top: 230px;
    }
}


@media (min-width: 476px) and (max-width: 768px) {
   
    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields {
        display: grid;
        padding-bottom: 8px;
        gap: 12px;
     }

}


@media (min-width: 769px) and (max-width: 1335px) {
    .tf-archive-booking-form__style-2 .tf-booking-form {
        width: 95%;
        left: 20px;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
        padding-right: 3px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-submit {
        width: auto;
    }

}

@media (max-width: 768px) {
    .camp-archive-one {
        padding: 50px 0;
    }

    /* .post-type-archive-tf_tours .themephi-breadcrumbs .breadcrumbs-inner {
        padding-bottom: 99px;
    } */
}


@media (max-width: 500px) {
    .tours-grid.list-view .tour-meta {
        padding: 6px 0;
    }

    .tours-grid.list-view .tour-title {
        -webkit-line-clamp: 3;
    }

    .tour-title .title {
        font-size: 20px;
        line-height: 25px;
    }

    .tours-grid.list-view .tour-content {
        padding: 16px 18px;
        padding-top: 22px;
        padding-bottom: 22px;
    }

    .tour-title {
        line-height: 26px;
    }

    .tour-location {
        gap: 4px;
    }

    .tour-location i {
        font-size: 16px;
    }

    .tour-header {
        flex-direction: column;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf_archive_search_result .tf-booking-form-submit {
        width: 100%;
        margin-top: 15px;
    }

    .tours-grid.list-view .tour-header {
        flex-direction: column;
    }

    .tours-grid.list-view .tour-location {
        line-height: 20px;
    }

    .tour-rating {
        padding: 4px 13px;
    }

    .tour-rating i {
        font-size: 13px;
    }

    .tour-rating {
        font-size: 15px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-location span {
        line-height: 19px;
    }

    .flatpickr-calendar {
        right: 14px !important;
        top: 427.5px !important;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-checkin .tf-tour-searching-date-block {
        line-height: 25px;
    }

}


@media only screen and (max-width: 768px) {
    .tf-archive-booking-form__style-2.tf-archive-search-form .tf_archive_search_result {
        padding: 16px;
        display: contents;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form {
        background: #ffff;
        padding: 22px;
        position: absolute;
        top: -105px;
        left: 20px;
        right: 20px;
        width: -webkit-fill-available;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields {
        padding-bottom: 12px;
    }

    .camp-archive-one .content-grid {
        padding: 100px 20px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form span.tf-booking-form-title {
        margin-bottom: 0px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-guest-and-room-wrap {
        margin-top: 0px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-date {
        font-size: 18px;
    }

    .tf-filter-title {
        display: flex;
        justify-content: space-between;
        padding-bottom: 24px;
    }


    /* .search-bar background cs
    } */
    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-guest-and-room {
        background: #ededed;
        padding: 8px 12px;
        border-radius: 8px;
        width: 100%;
    }
    
    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-checkin {
        background: #ededed;
        padding: 8px 12px;
        border-radius: 8px;
        width: 100%;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields.tf-tour-archive-block .tf-booking-form-location {
        background: #ededed;
        padding: 8px 12px;
        padding-top: 10px;
        border-radius: 8px;
        width: 100%;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location .tf-booking-location-wrap {
        padding: 0 0;
        background: #ededed;
    }

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields .tf-booking-form-location {
        margin-bottom: 0;
    }

}


@media (max-width: 475px) {

    .tf-archive-booking-form__style-2.tf-archive-search-form .tf-booking-form .tf-booking-form-fields {
        display: grid;
        padding-bottom: 8px;
        gap: 12px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-fields>div {
        border: none;
    }

    .tf-archive-booking-form__style-2 .tf_acrselection-wrap.tf-show {
        left: 0px;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-submit button {
        border-radius: 8px;
    }


}

@media (min-width: 476px) {
    .camp-archive-one .content-grid {
        padding: 0px 20px;
    }

}


#tf_posts_navigation_bar {
    padding-top: 50px;
    text-align: center;
}

/* Pagination Container */
#tf_posts_navigation_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 30px 0;
}

/* Common Styles for Page Links */
#tf_posts_navigation_bar .page-numbers {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #dcdcdc;
    border-radius: 8px;
    background-color: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 44px;
    height: 44px;
    line-height: 42px;
}

/* Hover */
#tf_posts_navigation_bar .page-numbers:hover {
  border-color: #E44D30;
}

/* Active Page */
#tf_posts_navigation_bar .page-numbers.current {
  background-color: #E44D30;
  border-color: #E44D30;
  color: #fff;
  font-weight: 600;
}

/* Previous/Next Buttons */
#tf_posts_navigation_bar .prev,
#tf_posts_navigation_bar .next {
  color: #2E7D32;
  border: 2px solid #e5e7eb;
  background-color: #fff;
  font-weight: 500;
  width: 85px;
}

#tf_posts_navigation_bar .prev {
    width: 105px;
}

#tf_posts_navigation_bar .prev:hover,
#tf_posts_navigation_bar .next:hover {
  background-color: #E44D30;
  color: #fff;
}

/* Disabled State (Optional) */
#tf_posts_navigation_bar .prev.disabled,
#tf_posts_navigation_bar .next.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #ddd;
  color: #aaa;
}

/* Responsive */
@media (max-width: 600px) {
  #tf_posts_navigation_bar {
    flex-wrap: wrap;
    gap: 6px;
  }

  #tf_posts_navigation_bar .page-numbers {
    padding: 6px 10px;
    font-size: 14px;
  }

    #tf_posts_navigation_bar {
        padding-top: 30px;
    }

    .camp-archive-one .content-grid {
        padding-bottom: 10px;
    }

}

.tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-submit button {
    height: 75px;
    width: 75px;
    padding: 0;
    line-height: 81%;
    border-radius: 50%;
    margin-top: 15px;
    padding-top: 5px;
}


.tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-fields {
    width: 100%;
}

.tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-fields {
    display: flex;
    width: 78%;
    padding: 21px 20px;
    padding-right: 0;
}

.tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-fields {
    padding: 21px 20px;
    width: 100%;
}

@media (max-width: 766px) {
    .camp-archive-one .content-grid {
        margin-top: 80px;
    }
}

@media (max-width: 699px) {
    .results-header .view-toggle {
        display: none;
    }
}

@media (min-width: 769px) {
    .archive-mobile-search-btn-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .archive-mobile-search-btn-icon {
        display: none;
    }

    .tf-archive-booking-form__style-2 .tf-booking-form .tf-booking-form-submit button {
        height: 60px;
        width: 100%;
        padding: 0;
        line-height: 78%;
        border-radius: 8px;
        margin-top: 8px;
        padding-top: 3px;
    }
}