/*
 Theme Name:   Travel Monster Child
 
 Description:  Child theme for Travel Monster

 
 Template:     travel-monster
 Version:      1.0.0
 Text Domain:  travel-monster-child
*/
    .custom-trips-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 30px;
        padding: 20px;
    }
    
    .custom-trip-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .custom-trip-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
    
    .trip-image {
        height: 200px;
        overflow: hidden;
    }
    
    .trip-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .custom-trip-card:hover .trip-image img {
        transform: scale(1.05);
    }
    
    .trip-content {
        padding: 20px;
    }
    
    .trip-title {
        
        font-size: 20px !important;
        font-weight: 700;
        margin: 0 0 10px;
        color: #333;
    }
        
    .trip-title a {
        color: inherit;
        text-decoration: none;
    }
    
    
    
    .trip-excerpt {
        color: #666;
        font-size: 14px;
        line-height: 1.5;
        margin: 0 0 15px;
    }
    
    .trip-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .meta-item {
   
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 600;
    }
    
    .meta-value {
        color: #555;
    }
    
    .trip-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }
    
    .trip-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: #C5A356;
    }
    
    .regular-price {
        text-decoration: line-through;
        color: #999;
        font-size: 14px;
    }
    
    .sale-price {
        
        font-size: 18px;
        font-weight: 700;
    }
    
    .book-now-btn {
        border:1px solid #013220;
        color:#013220;
        padding: 10px 20px;
        border-radius: 40px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.3s ease;
    }
     .trip-meta .meta-item {
                
    display: flex;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    gap: 10px;

                }
        /* Pagination wrapper */
.custom-trips-pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

/* Reset default ul from paginate_links */
.custom-trips-pagination ul {
    list-style: none;
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0;
}

/* Pagination items */
.custom-trips-pagination ul li {
    display: inline-block;
}

/* Links */
.custom-trips-pagination ul li a,
.custom-trips-pagination ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 8px; /* rounded corners */
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
}

/* Hover effect */
.custom-trips-pagination ul li a:hover {
    border-color: #013220; /* dark green */
    color: #013220;
}

/* Active page */
.custom-trips-pagination ul li span.current {
    background: #013220; /* dark green */
    color: #fff;
    border-color: #013220;
    font-weight: 600;
}
.custom-trips-pagination ul li a.prev::before {
    content: "\f104"; /* fa-chevron-left */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #333;
}
.custom-trips-pagination ul li a.next::before {
    content: "\f105"; /* fa-chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #333;
}


/* Hide original text completely */
.custom-trips-pagination ul li a.next,
.custom-trips-pagination ul li a.prev {
    color: transparent;
    font-size: 0;
}
.custom-trips-pagination ul li a.next:hover::before,
.custom-trips-pagination ul li a.prev:hover::before {
    color: #004d40;
}
.custom-trip-card .trip-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 8px 0 15px;
    min-height: 40px; /* keeps layout consistent */
}
.custom-trip-card .trip-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 8px 0 15px;
    min-height: 48px; /* keeps cards even */
}




.custom-wpte-auth {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 900px;
    margin: 50px auto;
}

.custom-wpte-auth-left {
    flex: 1;
    min-width: 400px;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-wpte-auth-left img {
    max-width: 100%;
    height: auto;
    display: block;
}

.custom-wpte-auth-right {
    flex: 1;
    padding: 40px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

.auth-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    color: #555;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 30px !important;
    border: 1px solid #ccc;
    font-size: 14px;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    background-color: #013220 !important;
    color: #fff;
    border: none;
    border-radius: 30px !important;
    font-size: 16px;
    cursor: pointer;
}

.auth-btn:hover {
    background-color: #e65b50;
}

.switch-form {
    text-align: center;
    margin-top: 20px;
}

.switch-form a {
    color: #ff6f61;
    font-weight: 600;
    text-decoration: none;
}

.switch-form a:hover {
    text-decoration: underline;
}


.custom-wpte-register-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.dob-fields .dob-inputs {
    display: flex;
    gap: 10px;
}

.dob-fields input {
    flex: 1;
    text-align: center;
}

.checkbox-group {
    margin: 15px 0;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
}

.auth-subtitle {
    margin-bottom: 20px;
    color: #666;
}

.wpte-thankyou__header {
    text-align: center;       /* Centers all content */
    margin: 40px auto;
    max-width: 600px;         /* Keeps layout neat */
}

.wpte-thankyou__image img {
    max-width: 120px;
    margin: 0 auto 20px auto; /* Centers image */
    display: block;
}

.wpte-thankyou__title {
    font-size: 30px;
    font-weight: bold;
    color: black;
    margin-bottom: 20px;
}

/* Center list block, align text inside to left */
.wpte-thankyou__description {
    display: inline-block;    /* Makes the list block itself center */
    text-align: left;         /* But text inside aligns left */
}

.wpte-thankyou__list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 auto;
}

.wpte-thankyou__list li {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 8px;
}
header.entry-header {
    display: none;
}


.wpte-dashboard-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

/* Sidebar */
.wpte-dashboard-sidebar {
    flex: 0 0 250px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

/* Tabs */
.wpte-dashboard-sidebar .wpte-ud-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wpte-dashboard-sidebar .wpte-ud-tab {
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
  
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.wpte-dashboard-sidebar .wpte-ud-tab:hover {
    background: #eee;
}

.wpte-dashboard-sidebar .wpte-ud-tab.active {
    background: #C5A356 !important;
    color: #fff;
}

/* Logout button */
.lrf-userprofile-logout {
    margin-top: 20px;
    display: block;
    text-align: center;
    padding: 12px 15px;
    border-radius: 40px;
    background: #fff;
    border: 1px solid #013220;
   
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.wpte-lrf-wrap a {
    color: #013220;
     text-decoration: none; 
}
.lrf-userprofile-logout:hover {
    background: #f2f2f2;
}

/* Content Area */
.wpte-dashboard-content {
    flex: 1;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-height: 500px;
}

/* Tab Content */
.wpte-ud-tab-content { display: none; }
.wpte-ud-tab-content.active { display: block; }

 .wpte-bookings-tabmenu {
    display: none !important;
}
input.wpte-lrf-btn {
    background-color: #042604 !important;
    border-radius: 40px !important;
}

button.wpte-bf-btn.wte-book-now.btn-loading {
    background-color: #013220 !important;
    border-radius: 30px !important;
}
.page-header-wrap {
    display: none !important;
}
.custom-trip-archive-header {
        text-align: center;
    margin-bottom: 50px;
}
.related-trip-btn{
    color:white;
    background-color: #013220;
    font-size: 18px;
    font-weight: 500;
    border-radius: 162px 162px 162px 162px;
    padding: 20px 50px 16px 50px;
}
.related-trip-header{
    display: flex;
    justify-content: space-between;
}

.wpte-thankyou__buttons-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
}
a.button.wte-dashboard-btn {
    padding: 16px 60px 16px 60px;
    background-color: #013220;
    color: white;
    border-radius: 30px;
}
a.button.wte-home-btn {
    border-radius: 30px;
    color: #666666;
    padding: 16px 60px 16px 60px;
    border: 1px solid #666666;
}

.wpte-booking-footer-text{
    display: none !important;
}
form#wp-travel-engine-new-checkout-form {
        display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
}

.wpte-bf-field.wpte-bf-radio.wpte-bf-user-type {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: start;
}


.guest-aignup-btn{
    display: flex;
    flex-direction: row-reverse;
    width: 430px;
}

.guest-heading{
    font-size: 25px;
    font-weight: bold;
    columns: black;
}
.sign-up-label {
    width: 200px;
    cursor: pointer;
}
.guest-label{
    cursor: pointer;
}

.sign-up-check{
    color: #c8a356 !important;
    text-decoration: underline !important;
}
#wpte-show-login-form{
    color: #c8a356 !important;
}

.wptravelengine-alert {
    padding: 12px 16px;
    border-radius: 4px;
    border: 1px solid #ede9e5 !important; 
    display: flex;
    gap: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #202636;
    background-color: #e9e8e6 !important;
    margin-bottom: 16px;
}
.wte-process-tab-content-wrapper .flatpickr-calendar .flatpickr-innerContainer .flatpickr-rContainer .dayContainer .flatpickr-day.flatpickr-disabled {
    color: rgb(133, 130, 130) !important; 
    background: none !important;
}
span.flatpickr-day {
    color: black !important;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper .toggle-password:hover {
    opacity: 1;
}
.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px; /* space for eye icon */
}

.password-wrapper .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 2;         /* ensure it sits above input */
    pointer-events: auto;
    width: 26px;
    height: 26px;
    
   filter: invert(85%) sepia(25%) saturate(2000%) hue-rotate(327deg) brightness(112%) contrast(54%);
}


.expand-all-button {
    display: none !important;
   
}

.wte-process-tab-content-wrapper .wte-package-type .wte-check-button.checked {
    border: 1px solid #013220 !important;
    font-weight: 600;
    background-color: #013220;
    color: #fff !important;
}