/* Loading screen - Match PHP (GIF + logo stacked, not side by side) */
#loading .loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: none;
}
#loading .loader .sooty_logo {
  max-width: 160px;
  margin-left: 0 !important;
  animation: loadingPulse 1s ease-in-out infinite alternate;
}
@keyframes loadingPulse {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Accordion - remove color and background when active */
.accordion-button:not(.collapsed) {
  color: #00036A !important;
  background-color: unset !important;
}

/* Inner pages - Match PHP structure */
.inner_popular {
  padding-top: 0;
}

/* Tour card shape.png mask - ensure correct display */
.tg-listing-2-card-item .tg-listing-card-thumb.fix {
  overflow: visible;
}
.tg-listing-2-card-item .tg-listing-card-thumb .tg-listing-2-mask {
  z-index: 2;
  pointer-events: none;
}
/* Tour card wishlist: white circle + outline heart, top-right on image (match mobile card style) */
.tg-listing-2-card-item .tg-listing-item-wishlist.tour-card-wishlist {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
.tg-listing-2-card-item .tour-card-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: color 0.2s ease, box-shadow 0.2s ease;
}
.tg-listing-2-card-item .tour-card-wishlist-btn:hover:not(.tour-card-wishlist-btn--active) {
  color: #0e8c2f;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
}
.tg-listing-2-card-item .tour-card-wishlist-btn:focus-visible {
  outline: 2px solid #0e8c2f;
  outline-offset: 2px;
}
.tg-listing-2-card-item .tour-card-wishlist-btn--active {
  background: #0e8c2f;
  color: #fff;
}
.tg-listing-2-card-item .tour-card-wishlist-btn--active:hover {
  background: #0c7a29;
  color: #fff;
  box-shadow: 0 2px 8px rgba(14, 140, 47, 0.35);
}
.tg-listing-2-card-item .tg-listing-card-thumb .tg-listing-2-mask img {
  display: block;
  width: 100%;
  min-height: 24px;
  object-fit: fill;
  object-position: bottom;
}
/* Home page Top Destinations - responsive image height */
.tg-dest-thumb-img {
  height: 180px;
}
@media (max-width: 767px) {
  .tg-dest-thumb-img {
    height: 120px;
  }
}
@media (max-width: 575px) {
  .tg-dest-thumb-img {
    height: 100px;
  }
}

/* Home page Popular Tours - ensure shape mask visible on mobile */
@media (max-width: 575px) {
  .tg-listing-area .tg-listing-slider-2.swiper {
    overflow-x: hidden;
    overflow-y: visible;
  }
  .tg-listing-area .tg-listing-slider-2 .swiper-slide {
    overflow: visible;
  }
}

/* Tour Details - Mobile sticky cart bar (match tour_details.php)
   Visible by default, positioned at bottom above BottomNav (55px), no gap. */
.mobile-cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #f4faff;
  border-top: 1px solid #000369;
  padding: 18px 12px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0));
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.08);
}
@media (min-width: 769px) {
  .mobile-cart-bar {
    bottom: auto; /* Hidden by d-md-none anyway */
  }
}
@media (max-width: 768px) {
  .mobile-cart-bar {
    bottom: 0; /* Flush to bottom by default, no gap */
  }
  .mobile-cart-bar.above-nav {
    bottom: 0px; /* When BottomNav is visible, sit directly on top */
  }
}
.mobile-cart-bar .price-label {
  font-size: 15px;
  color: #6c757d;
}
.mobile-cart-bar .price {
  font-size: 17px ;
  font-weight: 500 !important;
  color: #000369;
}
.mobile-cart-bar .btn-cart {
  background: #2E9A0C;
  color: #fff;
  font-weight: 600;
  padding: 3px 4px;
  border-radius: 6px;
  text-decoration: none;
  display: block;
  text-align: center;
}
.mobile-cart-bar .btn-cart:hover {
  background: #000369;
  color: #fff;
}

/* Header - Match PHP font-family and font-size */
header,
.tg-header__area {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
}

/* Footer - Match PHP: headings bold, links/copyright regular weight (override body bold) */
/* Footer - Match footer.php font (Roboto, not inherited Archivo) */
.tg-footer-widget-title {
  font-family: "Roboto", sans-serif !important;
  font-size: 20px;
}
.tg-footer-link ul li a,
.tg-footer-info ul li a,
.tg-footer-info ul li,
.tg-footer-copyright .nav-link {
  font-family: "Roboto", sans-serif !important;
}
.tg-footer-link ul li a {
  font-size: 16px;
}
.tg-footer-copyright span,
.tg-footer-copyright span a {
  font-family: "Roboto", sans-serif !important;
  font-weight: 500;
  font-size: 16px;
}

/* CTA section - Match PHP */
.tg-cta-area-area .tg-cta-title,
.tg-cta-area-area .tg-section-subtitle {
  font-family: "Archivo", sans-serif;
}

/* Testimonials - pagination close to cards (like reference image) */
.tg-testimonial-area .tg-testimonial-2-pagination {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 8px;
  position: relative;
}

/* Group Tours - ensure nav buttons are clickable (above swiper/shapes) */
.tg-listing-area.tg-grey-bg .container > .row:first-of-type {
  overflow: visible;
  position: relative;
  z-index: 10;
}
.tg-listing-area.tg-grey-bg .tg-listing-5-slider-navigation {
  position: relative;
  z-index: 15;
}
.tg-listing-area.tg-grey-bg .tg-listing-5-slider-navigation button {
  position: relative;
  z-index: 20;
  cursor: pointer;
  pointer-events: auto;
  flex-shrink: 0;
}

/* Slider nav (View All + arrows) - mobile: compact layout like index.php */
@media (max-width: 767px) {
  .tg-listing-5-slider-navigation {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0px;
    justify-content: end;
  }
  .col-6.col-lg-6 .tg-listing-5-slider-navigation.home_page_justify {
    justify-content: start !important;
  }
  .tg-listing-5-slider-navigation .tg-btn.tg-btn-switch-animation {
    padding: 4px 12px 0px 12px !important;
    font-size: 11px;
    border: 1px solid #020615c2;
    background: #fff;
    color: #0c101e;
    border-radius: 6px;
    flex-shrink: 0;
    text-decoration: none;
    font-weight: 500 !important;
  }
  .tg-listing-5-slider-navigation .tg-btn .btn-text {
    /* margin-left: 0; */
  }
  .tg-listing-5-slider-navigation .tg-btn .btn-icon {
    margin-left: 4px;
    font-size: 12px;
  }
  .tg-listing-5-slider-navigation .tg-btn .btn-icon + .btn-icon {
    display: inline-block;
  }
  .tg-listing-5-slider-navigation .spacing {
    display: inline-block;
    width: 6px;
    margin-left: 0;
    flex-shrink: 0;
  }
  .tg-listing-5-slider-navigation button {
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    padding: 0;
    margin-right: 0;
    border: 1px solid #ddd;
    background: #fff;
    color: #0c101e;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-right: 5px;
  }
  .tg-listing-5-slider-navigation button:hover {
    background: #0e8c2f;
    color: #fff;
    border-color: #0e8c2f;
  }
  .tg-listing-5-slider-navigation button i {
    font-size: 14px;
  } 
  .print_btn{
    margin-bottom: 10px;
  }
  .about_tour_title, .tg-blog-standard-title, .tg-contact-title, .tg-tour-details-video-title{
    font-size: 20px !important;
    padding-top: 0px;
  }
  .tg-tour-about-list ul li .text{
    text-align: left !important;
  }
 



}

.accordion-button:focus {   
  box-shadow: none !important;
}
/* Group Tours - tg-image-slide overlay (same as index.php) */
.tg-image-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.tg-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tg-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 13px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: linear-gradient(to top, rgba(0,0,0,1), rgba(0,0,0,0));
    color: #fff;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.tg-country {
    font-size: 14px;
    font-weight: 500;
}
.tg-price {
    font-size: 14px;
    font-weight: 700;
}
.g_tour_img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
@media (max-width: 576px) {
    .tg-image-overlay {
        padding: 12px 14px;
        gap: 2px;
    }
    .tg-country {
        font-size: 14px;
        line-height: 1.2;
    }
    .tg-price {
        font-size: 14px;
        line-height: 1.2;
    }
}
@media (max-width: 575px) {
    .g_tour_img {
        height: 300px !important;
    }
    .tg-btn {
        font-size: 11px !important;
        padding: 4px 15px 0px 15px !important;
    }
}

.countries_scroll {
    position: relative;
    display: block;
    height: 320px;
    overflow-y: scroll;
    overflow-x: hidden;
}
 

.tg-search-input {
  height: 45px !important;
  padding: 0 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 14px;
  width: 220px;
  position: relative;
}
.width_search{
    /* width:80% !important; */
    width:100% !important;
}

.mr-10 {
  margin-right: 10px;
}
.blog{
    background-color: #d9eeff !important;
}
.tg-hero-slider-active .swiper-pagination-bullet {
    background: #ccc !important;
    opacity: 0.6;
}

.tg-hero-slider-active .swiper-pagination-bullet-active {
    background: #fff !important;
    opacity: 9;
}
.slde_indi button{
    height: 10px !important;
    width: 10px !important;
    border-radius: 50% !important;
    /* background-color: #000369 !important; */
     background-color: #fff !important;
}
/* Swiper pagination bullets in tour cards (match slde_indi) */
.tg-listing-card-thumb .swiper-pagination-bullet {
    height: 10px !important;
    width: 10px !important;
    border-radius: 50% !important;
    background-color: #fff !important;
    opacity: 0.6;
}
.tg-listing-card-thumb .swiper-pagination-bullet-active {
    opacity: 1;
}
 .tg-booking-form-search-input {
    position: relative;
}
#result {
    position: absolute;
    top: 100%;          /* input kinda open avvadaniki */
    left: 0;
    width: 100%;
    max-height: 200px;  /* ekkuva items vaste scroll */
    /* overflow-y: auto; */
    z-index: 9999;
}

.tg-checkout-payment label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.tg-checkout-payment .amount {
    font-weight: bold;
    color: #333;
}

 .hst{
    font-weight:400 !important;
    font-size: 16px !important;
 }
 .balance_row {
    display: none;
}
.product-total {
    text-align: right;
    white-space: nowrap;
    color: #000369 !important;
    font-size: 16px !important;
}

.review-heading {
    display: flex;
    align-items: center;
    justify-content: space-between; /* heading left, image right */
}
.review_border{
    border: 1px solid var(--tg-border-1);
    border-radius: 15px;
    padding: 0px 15px;
}

/* Fix tour review layout on mobile (avoid negative text shift) */
@media (max-width: 575px) {
  .tg-tour-about-cus-review {
    align-items: flex-start;
    gap: 12px;
  }

  .tg-tour-about-cus-review-thumb {
    margin-bottom: 0 !important;
    flex: 0 0 auto;
  }

  .tg-tour-about-cus-review-thumb img {
    margin-right: 12px !important;
  }

  .tg-tour-about-cus-review > div:last-child {
    flex: 1;
    min-width: 0;
  }

  .tg-tour-about-cus-name {
    flex-direction: column;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 4px;
  }

  .mbl_review_alghn {
    margin-left: 0 !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
.mybg_01{
    background-color:#f4faff !important;
}
.mybg_02 {
    background-color: #dbf1e0 !important;
}
.mybg_03{
    background-color: #f0effb;
}
.mybg_04{
    background-color: #eff5f0;
}

/* Tour Details sidebar - price, badge, Going Fast button (match tour_details.php) */
.tg-tour-about-sidebar .amt {
  text-decoration: line-through;
  font-size: 20px;
  font-weight: 700;
  color: #85878d;
}
.tg-tour-about-sidebar .percent {
  border-radius: 6px;
  font-size: 13px;
  background-color: #000369;
  padding: 1px 5px 0px;
  height: 26px;
  margin-left: 13px;
  margin-top: 5px;
}
.tg-tour-about-sidebar .sell_out {
  border-radius: 20px;
  padding: 5px 10px;
  color: #000369;
  font-size: 13px;
}
.violate_text{
    color:#000369 !important;
}
.violate_bg{
    background-color:#560ce3 !important;
}
.red_text{
    color:#000369 !important;
}
.red_bg{
    background-color: #f75229 !important;
}

.balance_border{
        border-bottom: 3px solid #e1e1e1 !important;
}
@media only screen and (max-width: 480px) {
   /* Inner pages only - not home (embedded search) */
   .width_search{
      width: 90% !important;
      margin-left: 15px;
      margin-top: 95px;
  }
  .col-lg-8.offset-lg-2 .width_search{
    margin-top: 32px !important;
    margin-bottom: 0px !important;
  }
  .sticky-search-inner .tg-search-input{
    height: 40px !important;
  }
}

/* Popular Tours Colums Responsive Start */

/* Desktop: 5 columns */
@media (min-width: 1200px) {
  .custom-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Tablet */
@media (max-width: 1199px) and (min-width: 768px) {
  .custom-col-5 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .custom-col-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Desktop: 5 columns */
@media (min-width: 1200px) {
  .custom-col-5 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/* Tablet: 3 columns */
@media (min-width: 768px) and (max-width: 1199px) {
  .custom-col-5 {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .custom-col-5 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .wish_list_section{
    margin-top: 50px;
  }
}

/* Popular Tours Colums Responsive End */

/* .top_detination_img{
    height: 180px;
    width: 234px;
} */

.btn_winter{
    /* background-color: #215E61;  */
    /* background-color: #1A3263; */
    padding: 3px !important;
    color: #000369;
    font-size: 17px;
    border: 1px solid #000369;
    border-radius: 6px;
    background-color: #fff;
    width: 30% !important;
}
.btn_winter:hover{
    background-color: #000369;
    color:#fff;
}
.btn_summer{
    /* background-color: #FD8A6B;  */
    /* background-color: #FA5C5C; */
    padding: 3px !important;
    color: #FD8A6B;
    font-size: 17px;
    border: 1px solid #FD8A6B;
    border-radius: 6px;
    background-color: #fff;
    width: 30% !important;
}
.btn_summer:hover{
    background-color: #FD8A6B;
    color:#fff;
}
.btn_monsoon{
    /* background-color: #628141;  */
    /* background-color: #6CA651; */
    padding: 3px !important;
    color: #0e8c2f;
    font-size: 17px;
    border: 1px solid #0e8c2f;
    border-radius: 6px;
    background-color: #fff;
    width: 30% !important;
}
.btn_monsoon:hover{
    background-color: #0e8c2f;
    color:#fff;
}




/*  Countrys animation Script Start  */
 #typeText.hidden {
    display: none;
}

    .input-wrapper {
    position: relative;
    width: 100%;
}

.tg-search-input {
    width: 100%;
    padding-right: 140px;   /* animated text kosam space */
}

#typeText {
    position: absolute;
    left: 150px;            /* input lopala right side */
    top: 50%;
    transform: translateY(-50%);
    color: #353844;
    font-size: 16px;
    pointer-events: none;
    white-space: nowrap;
}
/*  Countrys animation Script End  */

/*  Sticky Search  animation Script Start  */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-search {
    position: sticky;
    top: 80px; /* header height */
    z-index: 999;
    padding: 15px 0;
}
.red_border{
    border: 1px solid #72726f;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, .06);
}
@media (max-width: 575px) {
  .tg-footer-copyright {
    padding: 14px 10px 20px;
}
    .sticky-search {
    position: sticky;
    top: 66px; /* header height */
    /* z-index: 999; */
     z-index: 111;
    padding: 0px 0;
}
    .sticky-search-inner {
    margin-top: 0px;
}
.view_all_btn {
    padding: 3px 0px !important; 
}
.top_destinations_all{
    padding-bottom: 130px !important;
}
.mbl_container{
        width: 100% !important;
        margin: 0px !important;
        padding: 0px !important;
}
.filter-wrapper{
  padding-top: 2px;
  padding-bottom: 0px !important;
}
.sesonal_tours{
   padding: 10px 0px !important; 
}
.slt_cntr{
    width: 100% !important;
}
.tf_mail ul li a{
    padding-left: 0px !important;
}
.tg-footer-top{
    margin-top: 25px;
}
/* Footer mobile layout: Follow Us full width, centered */
@media (max-width: 575px) {
  .tg-footer-top .col-12.tg-footer-widget,
  .tg-footer-top .col-12 .tg-footer-widget {
    text-align: center;
  }
  /* .tg-footer-top .tg-footer-social {
    justify-content: center;
    flex-wrap: wrap;
  } */
  .tg-footer-top .tf_mail {
    justify-content: center;
  }
  .tg-footer-top .tf_mail .d-flex {
    justify-content: center;
  }
}
.globe {

    width: 100%;
    height: 120px !important;               /* 👈 fixed width */

}
.tg-tour-about-review-form-wrap{
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.ppl_tours{
  height: 140px;
}
.my_btn{
  padding: 0px;
}
 
}
/*  Sticky Search  animation Script End  */

.view_all_btn{
    background-color: #f75229 !important;
    color: #fff !important;
    border: 1px solid #f75229 !important;
}
.view_all {
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #0c101e;
    border-radius: 6px;
    /* padding: 12px 27px; */
    padding: 6px 18px;
    /* background: var(--tg-theme-primary); */
    /* background: #f75229; */
    display: inline-block;
    text-align: center;
    border: 1px solid #72726f;
}
 .search_tour_countrys{
    padding: 20px 30px 60px 30px !important;
 }
.sesonal_tours{
   padding: 20px 30px 16px 30px; 
}
.contact-shape {
    position: absolute;
    right: 0;
    top: -20px;
    z-index: -1;
    border-radius: 0 0 20px 0;
}
.footer-shape-circle {
    position: absolute;
    /* top: 250px; */
    right: 300px;
    z-index: -9;
    opacity: 0.2;
}

.tg-footer-widget ul li a{
    color: #fff;
}
.new-price {
    color: #aaa !important;
    font-size: 13px;
    text-decoration: line-through;
}
.my_btn{
    border: 1px solid #72726f;
    background-color: #fff;
    color: #0c101e;
}
.my_btn:hover{
    border: 1px solid #0e8c2f;
    background-color: #0e8c2f;
    color: #fff;
}
.book_now_btn {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--tg-common-white);
    border-radius: 6px;
    /* padding: 12px 27px; */
    padding: 6px 18px;
    background: var(--tg-theme-primary);
    /* background: #f75229; */
    display: inline-block;
    text-align: center;
}
.card::placeholder {
  color: #7f849794 !important;
}
.card {
  color: #7f849794 !important;
}
.date::placeholder {
  color: #000369 !important;
}
.date {
  color: #000369 !important;
}
.tf_mail ul li a{
    padding-left: 40px;
}


 
.globe {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);   /* center it */
    
    width: 1200px;                  /* 👈 fixed width */
    height: 320px;

    background: url("assets/img/location/globe.webp") no-repeat center bottom;
    background-size: contain;

    z-index: -1;
    filter: grayscale(100%) brightness(100%);
}


.filter_btn{
    background-color: #0e8c2f !important;
    border-radius: 6px;
    font-weight: 600;
}
.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.filter-modal {
  background: #fff;
  width: 40%;
  /* max-height: auto; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.filter-modal1 {
  background: #fff;
  width: 40%;
  /* max-height: auto; */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.filter-header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.close-btn {
  cursor: pointer;
  font-size: 18px;
}

.filter-body {
  padding: 20px;
  /* overflow-y: auto; */
}

.range-values {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 5px;
}

.range-slider {
  width: 100%;
  margin-bottom: 0px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.filter-footer {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
}

.cancel-btn {
  padding: 8px 20px;
  border: 1px solid #0e8c2f;
  background: white;
  border-radius: 6px;
}

.apply-btn {
  padding: 8px 20px;
  background: #0e8c2f;
  color: white;
  border: none;
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .filter-modal {
      width: 95%;
      height: 95vh;
      padding-bottom: 15px;
    }
  .filter-modal1 {
      width: 95%;
      height: 260px;
      padding-bottom: 15px;
    }
    .category-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .card_heading{
    color: #000000f7;
    font-weight: 400 !important;
  }
  .from_heading{
    color: #000000f7;
    font-weight: 400 !important;
  }
  .line_amt{
    color: #000000f7;
    font-weight: 400 !important;
  }
  .user_bk_dt{
    font-size: 13px;
    color: #000000f7;
    font-weight: 400 !important;
  }
  .none_mbl_cancel{
    display: none;
  }
  .tg-blog-title{
    font-size: 20px;
  }
  .tg-process-list .tg-chose-list-title {
      font-size: 20px;
  }
  .user_booking_details{
    padding-top: 10px;
  }
  .mbl_ctr{
    padding-top:25px;
    padding-bottom: 0px !important;
  }
  .mbl_desti{
    padding-bottom:0px !important;
  }
  .home_tour_name{
    font-size: 12px !important;
  }  
  .breadcrumb-scroll a{
    font-size: 12px !important;
  } 
  .country_btn {
      font-size: 12px;
  }
  .destination_btn {
    font-size: 12px;
  }
  .county_citys {
      font-size: 12px;
  }
  .scroll-section a{
    font-size: 12px;
  }
  .fixed-left .rj {
      height: 55px !important;
      /* margin: 2px 5px !important; */
      margin: -34px 5px 0px;
      border-right: 1px solid #000000f7;
  }
  .card_heading{
    font-size: 14px !important;
    font-weight: 400 !important;
  }
  .from_heading{
    font-size: 12px !important;
    font-weight: 400 !important;
  }
  .line_amt{
    font-size: 12px !important;
    font-weight: 400 !important;
  }
  .tg-shop-area {
    padding-top: 10px;
  }
  .country-select-dropdown .country-dropdown-btn{
    padding: 4px 8px !important;
    
  }
  .country-select-dropdown .dropdown-label{
    margin-bottom: 0px !important;
  }
  .tg-listing-card-title{
      font-size: 15px !important;
    /* font-family: "Aeonik Medium", sans-serif; */
  }
  .tg-listing-card-title a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tg-listing-card-duration-tour span{
    font-size: 12px !important;
  }

}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}



.custom-dropdown {
  position: relative;
  /* width: 250px;
  font-family: Arial, sans-serif; */
}

.dropdown-btn {
  width: 100%;
  padding: 6px 10px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius:6px;
  cursor: pointer;
  text-align: left;
  position: relative;
}

/* Down Arrow */
.dropdown-btn::after {
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
}

.country-dropdown-btn::after {
  display: none;
}

/* Rotate when open */
.dropdown-btn.active::after {
  content: "▲";
}

.dropdown-list {
  display: none;
  position: absolute;
  width: 100%;
  border: 1px solid #ccc;
  border-top: none;
  background: #fff;
  max-height: 200px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 1000;
}

.dropdown-list li {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

.dropdown-list li:hover {
  background-color: #f2f2f2;
}

.show {
  display: block;
}

/* Country Dropdown with Flags - Enhanced Design */
.country-select-dropdown {
  font-family: inherit;
}

.country-select-dropdown .dropdown-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.country-select-dropdown .country-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  /* padding: 10px 14px; */
  border: 1px solid #353844;
  background: #ffffff;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.country-select-dropdown .country-dropdown-btn:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.country-select-dropdown .country-dropdown-btn.active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
  border-radius: 10px 10px 0 0;
}

.country-select-dropdown .dropdown-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.country-select-dropdown .dropdown-flag-icon {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.country-select-dropdown .dropdown-placeholder-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.country-select-dropdown .dropdown-btn-text {
    font-size: 14px;
    font-weight: 500 !important;
    color: #0c101e;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.country-select-dropdown .dropdown-arrow {
  font-size: 10px;
  color: #0c101e;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.country-select-dropdown .country-dropdown-btn.active .dropdown-arrow {
  transform: rotate(180deg);
  color: #ffffff;
}

.country-select-dropdown .country-dropdown-list {
  border: 1px solid #d1d5db;
  border-top: none;
  border-radius: 0 0 10px 10px;
  max-height: 280px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 4px 0;
}

.country-select-dropdown .country-dropdown-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  /* padding: 10px 14px; */
  border: none;
  transition: all 0.15s ease;
}

.country-select-dropdown .country-dropdown-list li .flag-icon {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.country-select-dropdown .country-dropdown-list li span {
  font-size: 14px;
  color: #374151;
}

.country-select-dropdown .country-dropdown-list li:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.08), transparent);
}

.country-select-dropdown .country-dropdown-list::-webkit-scrollbar {
  width: 6px;
}

.country-select-dropdown .country-dropdown-list::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 3px;
}

.country-select-dropdown .country-dropdown-list::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

.country-select-dropdown .country-dropdown-list::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Checkout Country Dropdown - matches payment form inputs */
.tg-tour-about-review-form .country-select-dropdown.checkout-country-dropdown {
  position: relative;
  overflow: visible;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-list-wrapper {
  display: block;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-btn {
  background: #f5f5f5 !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  height: 50px !important;
  min-height: 50px !important;
  padding: 0 20px !important;
  box-shadow: none !important;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-btn:hover {
  border-color: rgba(14, 140, 47, 0.4) !important;
  background: #f8f8f8 !important;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-btn.active {
  border-color: var(--tg-theme-primary, #0e8c2f) !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(14, 140, 47, 0.15) !important;
  border-radius: 5px 5px 0 0 !important;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-btn-inner {
  justify-content: flex-start;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-btn-text {
  color: #353844;
  font-size: 15px;
  font-weight: 400;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-btn-text:empty::before {
  content: attr(data-placeholder);
  color: #7f849794;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-flag-icon {
  width: 28px;
  height: 20px;
  border-radius: 4px;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-arrow {
  color: #353844;
  font-size: 11px;
  opacity: 0.7;
}
.tg-tour-about-review-form .checkout-country-dropdown .dropdown-list-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1200;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 0 0 8px 8px;
  border-top: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin-top: -1px;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-search-input {
  width: 100%;
  padding: 10px 16px 10px 20px;
  border: none;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  color: #353844;
  outline: none;
  background: #fafafa;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-search-input::placeholder {
  color: #9ca3af;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list {
  display: block !important;
  max-height: 200px;
  overflow-y: auto;
  padding: 4px 0;
  list-style: none;
  margin: 0;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list li {
  padding: 12px 20px;
  cursor: pointer;
  font-size: 15px;
  color: #353844;
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  box-sizing: border-box;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list li:hover {
  background: rgba(14, 140, 47, 0.06);
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list li .flag-icon {
  width: 28px;
  height: 20px;
  border-radius: 4px;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list::-webkit-scrollbar {
  width: 6px;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list li.no-results {
  color: #9ca3af;
  cursor: default;
  justify-content: center;
  padding: 20px;
}
.tg-tour-about-review-form .checkout-country-dropdown .country-dropdown-list li.no-results:hover {
  background: transparent;
}

/* Country dropdown - mobile fixes (tap, z-index, overflow) */
@media (max-width: 1199px) {
  .country-select-dropdown {
    position: relative;
    -webkit-tap-highlight-color: transparent;
  }
  .country-select-dropdown .country-dropdown-btn {
    cursor: pointer;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
  }
  .country-select-dropdown .country-dropdown-list {
    z-index: 1100;
    max-height: min(280px, 60vh);
    -webkit-overflow-scrolling: touch;
  }
  .country-select-dropdown .country-dropdown-list li {
    padding: 12px 10px;
    min-height: 44px;
    display: flex;
    align-items: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .country_carousel_dropdown {
    overflow: visible !important;
  }
}
.book_tour_sticky{
    position: sticky; /* Makes it sticky */
    top: 20px;        /* Distance from the top when sticky */
}
.results_text{
  border: 1px solid #cccccc;
    text-align: center;
    padding: 5px;
    border-radius: 7px;
}
.active_btn_blue{
  background-color: #1A3263;
  color: #fff;
    border: 1px solid #000369;
}
.sooty_tours_heading {
    width: 645px;
    position: absolute;
    top: -110px;
    left: 0;
    z-index: -1;
}

.card-custom {
   border: 1px solid #ccc !important;
   border-radius: 10px;
    overflow: hidden;
}
.wishlist {
    position: absolute;
    top: 10px;
    right: 8px;
    width: 30px;
    height: 30px;
    z-index: 5;
    padding: 0;
    border: none;
    font-size: 15px;
    line-height: 1;
    color: #111;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.wishlist.wishlist--active {
    background-color: #0e8c2f !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(14, 140, 47, 0.35);
}
.wishlist.wishlist--active i {
    color: #fff !important;
}
.wishlist:hover:not(.wishlist--active) {
    color: #0e8c2f;
}
.special_offer{
    position: absolute;
    top: 8px;
    left: 5px;
    padding: 6px 8px;
    background-color: #eff5f0 !important;
    color: #000369 !important;
}
.card_heading{
  color: #000000f7;
  font-weight: 500 !important;
}
.card_text_heading {
    /* font-family: "Aeonik Medium", sans-serif; */
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    color: rgb(0, 0, 0);
    font-weight: 500;
    /* line-height: 20px; */
    line-height: 122%;
}
.from_heading{
  color: #000000f7;
  font-weight: 500 !important;
}
.line_amt{
  color: #000000f7;
  font-weight: 500 !important;
}
.user_bk_dt{
  color: #000000f7;
  font-weight: 400 !important;
}
.card_heading:hover{
  color: #0e8c2f;
}
.from_heading:hover{
  color: #0e8c2f;
}
.line_amt:hover{
  color: #0e8c2f;
}
.check_available{
 border-radius: 6px !important;
}
.check_available:hover {
    border: 1px solid #0e8c2f;
    background-color: #0e8c2f;
    color: #fff;
}
.card_amt{
  color : #000369;
  font-weight: 500;
  padding-left: 5px;
  font-size: 16px !important;
    letter-spacing: 0.5px;
}
.offer_card_amt{
  color : #000369;
  font-weight: 500;
  padding-left: 5px;
  font-size: 16px !important;
    letter-spacing: 0.5px;
}
.user_book_amt {
    color: #000369;
    padding-left: 5px;
}
.card_height{
  padding: 100px 50px 99px;
}
.active_tour_aountry{
  color : #0e8c2f !important;
}
.free_cancelation{
    position: absolute;
    top: -12px;
    right: 32%;
    z-index: -1;
    width: 36%;
    background-color: #2E9A0C;
    color: #fff;
    border-radius: 6px;
    padding: 0px 4px;
    font-size: 12px;
     letter-spacing: 1px;
}
.free_cancelation:hover{
 
    background-color: #2E9A0C !important;
    color: #fff !important;
    
}
.user_booking_details{
  padding-bottom: 130px;
}

/* Right Arrow Animation */
.carousel-control-next i {
    transition: transform 0.3s ease;
}

.carousel-control-next:hover i {
    transform: translateX(6px);
}

/* Left Arrow Animation */
.carousel-control-prev i {
    transition: transform 0.3s ease;
}

.carousel-control-prev:hover i {
    transform: translateX(-6px);
}
@keyframes moveRight {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

@keyframes moveLeft {
    0% { transform: translateX(0); }
    50% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

.carousel-control-next i {
    animation: moveRight 1.2s infinite;
}

.carousel-control-prev i {
    animation: moveLeft 1.2s infinite;
}
.carousel-control-next i,
.carousel-control-prev i {
    transition: all 0.3s ease;
}

.carousel-control-next:hover i,
.carousel-control-prev:hover i {
    transform: scale(1.2);
}
.your-class .shape-2{
    background-image: url(../img/listing/angle-2.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.tour_inner_heading {
    position: relative;
    display: inline-block;
}

/*.tour_inner_heading::after {*/
/*    content: "";*/
/*    display: block;*/
/*    width: 50px;*/
/*    height: 2px;*/
/*    background-color: #0e8c2f;*/
/*    margin-top:5px;*/
/*}*/
.results_numbers{
  font-size: 12px;
}
.about_tour_section{
  padding-bottom: 140px;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
    .tg-pagenation-wrap nav ul li a.p-btn1 {
        margin-right: 0px;
        margin-left: 0px;
    }
}

.tg-pagenation-wrap nav ul li a.p-btn1 {
    height: auto;
    width: auto;
    line-height: 1;
    padding: 12px 19px;
    border-radius: 8px;
}
.page_nation_number{
    font-weight: 500;
    font-size: 14px;
    color: var(--tg-common-black);
    background: #f1f3f5;
    height: 35px !important;
    width: 35px !important;
    text-align: center;
    line-height: 35px !important;
    transition: all 0.4s ease;
    display: inline-block;
    border-radius: 8px;
}
.page_next_li{
  margin-right:0px !important;
}
.has_border56{
  border: 1px solid #e9e9e9;
    border-radius: 12px;
    box-shadow: 0 0 15px 0 #efefef;
    background: var(--tg-common-white);
    padding: 25px 30px 30px 30px;
}
.profile_list a:hover{
  color:#0e8c2f !important;
}
 .bottom-bar {
  position: fixed;
  z-index: 999;
  left: 45%;
  bottom: 62px; /* navbar height ki adjust cheyyandi */
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
   width: max-content;
  height: 40px;
  padding: 0 10px;
  background: #0e8c2f;
  color: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
/* Hide bottom bar on home page in mobile view only */
@media (max-width: 767.98px) {
  .bottom-bar.hide-on-home-mobile {
    display: none !important;
  }
}
.bottom-bar2 {
  position: fixed;
  z-index: 999;
  right: 20%;
  bottom: 66px; /* navbar height ki adjust cheyyandi */
  background-color: #fff;
  color:red;
  border-radius: 50%;
  border: 1px solid #0e8c2f;
  height: 30px;
  width: 30px;
}

.bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 16px;
  height: 100%;
  /* padding: 0 12px; */
  padding: 0 5px;
}
 

.divider_line_bar {
  width: 2px;
  height: 20px;
  background: #fff;
  margin: 0 12px;
}

.icon_filter_sort {
  font-size: 20px;
}

.dot_filter {
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  margin-left: -10px;
  margin-bottom:10px;
}
 



.sigma_sm {
    display: flex;
   
   margin: 0px 5px;
    font-size: 14px;
    color: #5e5c5c;
}

.popover__wrapper {
    position: relative;
    display: inline-block;
}
.popover__wrapper a i{
  font-size: 20px;
  padding-top: 4px;
  color: #0e8c2f;
  font-weight: 300 !important;
}
.popover__content {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    margin-left: -100px;
    transform: translate(0, 10px);
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
    width: 210px;
    top: 0px;
    border-radius: 15px;
}
.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 30px);
  bottom: -8px;
  top: auto;
  border-style: solid;
  border-width: 10px 10px 0 10px; 
  border-color: #f0f0f0 transparent transparent transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}
/*Add My Css End */

.popover__wrapper:hover .popover__content {
    z-index: 10;
    opacity: 1;
    visibility: visible;
    transform: translate(0, -20px);
    transition: all 0.5s 
cubic-bezier(0.75, -0.02, 0.2, 0.97);
}


.mbl_ctr{
  padding-bottom:10px;
  padding-top:20px;
}
.mbl_desti{
  padding-bottom:10px;
}
.filter-wrapper {
  padding-bottom: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    /* padding: 0.5rem;
    gap: 1rem;
    background: #fff;
    border-bottom: 1px solid #ddd; */
    /* position: sticky; */
    top: 0;
    /* z-index: 1050; */
    z-index: 1;
  }

  .fixed-left {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .fixed-left .rj {
    height: 68px;
    /* margin: 5px 0px; */
   margin-top: -34px;
    border-right: 1px solid #ccc;
  }

  /* .scroll-section {
    display: flex;
    flex-grow: 1;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 0.5rem;
  } */
.scroll-section {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}

.scroll-section::-webkit-scrollbar {
  display: none; /* optional – scrollbar hide cheyyali ante */
}
#destinationsScroll {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
  cursor: grab;
}

#destinationsScroll:active {
  cursor: grabbing;
}
  .scroll-section .btn {
    flex-shrink: 0;
        font-weight: 600;
  }
.destination_btn{
    background-color: #0e8c2f;
    padding: 0px 20px !important;
    font-weight: 600;
    border-radius: 6px !important;
}
.country_btn{
   padding:0px 10px !important; 
   color: #000000f7;
   font-weight: 600;
   border-radius: 6px !important;
   /* margin-bottom: 5px; */
   margin: 4px 0px;
}
.county_citys{
    color: #000000f7;
    font-weight:600 !important;
}
.scroll-section a{
  color: #000000f7 !important;
  font-weight: 600;
}
.scroll-section a:hover{
    color: #000000f7 !important;
}
.home_tour_name{
  color: #000000f7;
  font-weight: 600;
}
.home_tour_name:hover{
  color: #000000f7;
}  

 


.breadcrumb-scroll {
    width: 100%;
    overflow-x: auto;   /* scrollbar visible */
    overflow-y: hidden;
    white-space: nowrap;
}

.breadcrumb-scroll a {
   color: #000000f7;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}
.breadcrumb-scroll a:hover{
  color: #000000f7;
}

/* Instagram Story Style */
.breadcrumb-scroll.story-strip {
    display: flex;
    gap: 16px;
    padding: 12px 0 16px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    user-select: none;
    scroll-behavior: smooth;
}
.breadcrumb-scroll.story-strip:active {
    cursor: grabbing;
}

.breadcrumb-scroll.story-strip .story-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #262626;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.breadcrumb-scroll.story-strip .story-item:hover {
    color: #262626;
    transform: scale(1.02);
}

.breadcrumb-scroll.story-strip .story-ring {
    width: 72px;
    height: 72px;
    padding: 2px;
    border-radius: 10px;
    background: #cccccc;
    flex-shrink: 0;
}

.breadcrumb-scroll.story-strip .story-img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #fff;
    background: #efefef;
}

.breadcrumb-scroll.story-strip .story-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.breadcrumb-scroll.story-strip .story-label {
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    text-align: center;
    max-width: 72px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Mobile: ~5 items visible with horizontal scroll */
@media (max-width: 767px) {
    .breadcrumb-scroll.story-strip {
        display: flex;
        /* gap: 12px; */
        gap: 0px;
        overflow-x: auto;
    }
    .breadcrumb-scroll.story-strip .story-item {
        flex: 0 0 calc((100% - 48px) / 5);
        min-width: 71px;
    }
    .breadcrumb-scroll.story-strip .story-ring {
        width: 61px;
        height: 61px;
    }
    .breadcrumb-scroll.story-strip .story-label {
        font-size: 14px;
        max-width: 100%;
    }

}

/* Hide scrollbar for story strip only */
/* Default ga scrollbar hide */
.breadcrumb-scroll::-webkit-scrollbar {
    display: none;
}

.breadcrumb-scroll {
    -ms-overflow-style: auto;
    scrollbar-width: auto;
}

.breadcrumb-scroll.story-strip::-webkit-scrollbar {
    display: none;
}

.breadcrumb-scroll.story-strip {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile view lo matrame show */
@media (max-width: 768px) {
  .breadcrumb-scroll {
    padding: 0px 0 0px !important;
}
  .breadcrumb-scroll.story-strip {
    padding: 0px 0 0px !important;

}
    .breadcrumb-scroll.story-strip::-webkit-scrollbar {
        display: block;
    }

    .breadcrumb-scroll.story-strip {
        -ms-overflow-style: auto;
        scrollbar-width: auto;
    }

    .breadcrumb-scroll {
    padding: 0px 0 0px !important;

}
    .breadcrumb-scroll::-webkit-scrollbar {
        display: block;
    }

    .breadcrumb-scroll {
        -ms-overflow-style: auto;
        scrollbar-width: auto;
    }
}

/* Scrollbar styling */
.breadcrumb-scroll::-webkit-scrollbar {
    height: 2px;   /* scrollbar thickness */
}

/* .breadcrumb-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
} */

.breadcrumb-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.breadcrumb-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}




.breadcrumb-arrow {
    display: inline-block;
    /* padding: 10px 25px; */
    padding: 0px 10px;
    font-size: 12px;
    background-color: #D02752; /* orange color */
    color: #fff;
    font-weight: 600;
    position: relative;
    top: -230px;
}

/* Right Arrow */
.breadcrumb-arrow::after {
    content: "";
    position: absolute;
    top: 0;
    /* right: -20px; */
    right: -10px;
    width: 0;
    height: 0;
    /* border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    border-left: 20px solid #f15a24; */
    border-top: 11px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 10px solid #D02752;
}

/* Optional Left Cut Effect */
.breadcrumb-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
}
.ribbon {
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}
.ribbon {
  position: absolute;
    top: 14px;
    left: 0;
    /* z-index: 2; */
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    --r: 0.8em;
    background: #D02752;
    padding-left: 8px;
    padding-right: calc(var(--r) + 0.25em);
    line-height: 1.8;
    clip-path: polygon(-100vw 0, 100% 0, calc(100% - var(--r)) 50%, 100% 100%, -100vw 100%);
    border-image: conic-gradient(#D02752 0 0) fill 0 / 100vw;
    width: 100px;
}
.carousel-control-next, .carousel-control-prev{
  z-index: 10 !important;
  opacity: 0.5;
}
.carousel-control-next:hover, .carousel-control-prev:hover {
  opacity: 1;
}
/* Destination card inner carousel - prev/next above image */
.tg-location-thumb .carousel-control-prev,
.tg-location-thumb .carousel-control-next {
  z-index: 10 !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  opacity: 0.5;
}
.tg-location-thumb .carousel-control-prev:hover,
.tg-location-thumb .carousel-control-next:hover {
  opacity: 1;
}
.tg-location-thumb .carousel-control-prev {
  left: 4px;
}
.tg-location-thumb .carousel-control-next {
  right: 4px;
}
.tg-location-thumb .carousel-control-prev i,
.tg-location-thumb .carousel-control-next i {
  color: #fff !important;
  font-size: 20px;
}
.tg-location-thumb .swiper-pagination {
  bottom: 8px !important;
}
.tg-location-thumb .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.8);
  opacity: 1;
}
.tg-location-thumb .swiper-pagination-bullet-active {
  background: #fff;
}

/* Top Destinations - tours count overlay on image (bottom-left, green) */
.tg-location-time-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 5;
  text-decoration: none;
}
.tg-location-time-overlay .tg-location-time {
  transform: none;
  background: rgba(46, 154, 12, 0.9);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: #fff;
  display: inline-block;
}

/* Top Destinations mobile - card box shadow & styling */
.top_destinations_all .bg-white.tg-round-25 {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border-radius: 25px;
}
/* Tour card & mobile carousel - prev/next minimal (no circular bg) */
.tg-listing-card-thumb .carousel-control-prev,
.tg-listing-card-thumb .carousel-control-next,
.mobile-carousel .carousel-control-prev,
.mobile-carousel .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10 !important;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  pointer-events: auto;
  cursor: pointer;
  padding: 8px;
}
.tg-listing-card-thumb .carousel-control-prev,
.mobile-carousel .carousel-control-prev {
  left: 4px;
}
.tg-listing-card-thumb .carousel-control-next,
.mobile-carousel .carousel-control-next {
  right: 4px;
}
.tg-listing-card-thumb .carousel-control-prev:hover,
.tg-listing-card-thumb .carousel-control-next:hover,
.mobile-carousel .carousel-control-prev:hover,
.mobile-carousel .carousel-control-next:hover {
  opacity: 1;
}
/* Tour card - white arrows, no animation */
.tg-listing-card-thumb .carousel-control-prev i,
.tg-listing-card-thumb .carousel-control-next i {
  color: #ffffff6e !important;
  font-size: 25px !important;
  animation: none !important;
  transition: none !important;
}
.tg-listing-card-thumb .carousel-control-prev:hover i,
.tg-listing-card-thumb .carousel-control-next:hover i {
  transform: none !important;
  color: #fff !important;
}
/* Mobile tour cards - hide left arrow only, keep right arrow with animation (match popular_tours.php) */
.mobile-carousel .carousel-control-prev {
  display: none !important;
}

/* Tour details carousel - hide arrows, show dots only (match tour_details.php) */
.tour-details-carousel .swiper-button-prev,
.tour-details-carousel .swiper-button-next {
  display: none !important;
}

/* Tour details carousel - uniform image height */
.tour-details-carousel .swiper {
  /* aspect-ratio: 15 / 9; */
  overflow: hidden;
}
.tour-details-carousel .swiper-wrapper,
.tour-details-carousel .swiper-slide {
  height: 100% !important;
}
.tour-details-carousel .swiper-slide a {
  display: block;
  height: 100%;
}
.tour-details-carousel .swiper-slide img {
  width: 100%;
  /* height: 100%; */
  height: 400px;
  object-fit: cover;
  display: block;
}
.mobile-carousel .carousel-control-next i {
  color: #000 !important;
  font-size: 2em !important;
  animation: moveRight 1.2s infinite;
  transition: transform 0.3s ease;
}
.mobile-carousel .carousel-control-next:hover i {
  transform: translateX(6px);
}
.country_carousel_dropdown {
    width: 200px;
    /* padding: 0px 0px 40px 6px; */
    padding: 0px 0px 0px 6px;
}
.cruise_banner_bg{
      background-color: #fff !important;
      background-image: none !important;
    }
    .cruise_banner_img1{
      background-image: url(../img/banner/cruise_banner1.png) !important;
    }
    .cruise_banner_img2{
      background-image: url(../img/banner/Cruse_01.png) !important;
    }
    .cruise_banner_img3{
      background-image: url(../img/banner/Cruse_02.png) !important;
    }
    .tg-banner-2-big-title h2{
      -webkit-text-stroke-color: #21788047;
    }
    .tg-ads-wrap-2{
      border: 1px solid #ccc;
    }

    @media (max-width: 767px) {
      .cruise_btn {
        margin-left: 90px;
      }
    }
    
@media (max-width: 767px) {
  .cruise_btn {
    margin-left: 90px !important;
  }
  
  .mbl_country_dropdown .country_carousel_dropdown {
    /* width: 140px !important; */
    width: 132px !important;
    /* padding: 12px 0px 12px 0px !important; */
    /* padding: 0px 0px 36px 0px !important; */
    padding: 0px 0px 0px 0px !important;
  }
  .mbl_country_dropdown {
      margin-right: 2px !important;
      /* margin-bottom: 33px !important; */
  }
}
.mbl_country_dropdown{
    border-radius: 10px;
    margin-right: 12px;
    /* border: 1px solid #cccccc;
    margin-bottom: 34px; */
}

.register-btn{
  padding: 2px 15px 0px 15px !important;background-color:#fff;color:#0c101e !important;border-radius:8px;border:1px solid #72726f !important;font-size:15px;
}
.select_desired{
  justify-content: left !important;
}
.seleft_d_c{
  font-weight: 700 !important;
}

.tour-head{

   color: #0e8c2f;
    font-size: 16px;
    white-space: nowrap;
    padding-bottom: 10px;
    /* margin-bottom: 20px; */
}
@media (max-width: 575px) {
   .tour-head{
    padding-bottom: 5px;

}  
}
.results_max{
  font-size: 11px;
    padding-top: 10px;
    font-weight: 400;
}
.tour-head{

   color: #0e8c2f;
    font-size: 16px;
    white-space: nowrap;
    padding-bottom: 10px;
    /* margin-bottom: 20px; */
}
@media (max-width: 575px) {
   .tour-head{
    padding-bottom: 5px;

}  
}
/*  Home Slider add Extra css Add Start  */

 /* .tg-hero-slider-active .swiper-slide-next {
    transform: translateY(-380px) scale(1.05) !important; 
}

.tg-hero-slider-active .swiper-slide-prev {
    transform: translateY(420px) scale(0.8) !important;  
    opacity: 0;
    filter: blur(4px);
}

.tg-hero-slider-active .swiper-slide {
    transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 1.6s ease,
                filter 1.6s ease;
}
.tg-hero-slider-active .swiper-slide-next {
    transform: translateY(-220px) scale(1.02) !important;
}

.tg-hero-slider-active .swiper-slide-prev {
    transform: translateY(260px) scale(0.9) !important;
    opacity: 0;
}

.tg-hero-slider-active .swiper-slide {
    transition: transform 2.2s cubic-bezier(0.25, 0.8, 0.25, 1),
                opacity 2.2s ease;
} */



/*  Home Slider add Extra css Add End  */

/* Dashboard pages - match PHP dashboard.php, personal_information.php, my_bookings.php, update_profile.php */
.go_back {
  color: #020615c2;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.go_back:hover {
  color: #020615c2;
  font-weight: 600;
}
.dashboard-box {
  background: #ffffff;
  border-radius: 12px;
}
.stat-card {
  border: none;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.icon-box {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.icon-box.green {
  background: #e8f7ef;
  color: #22a06b;
}
.icon-box.blue {
  background: #eaf1ff;
  color: #3b6ef5;
}
.icon-box.purple {
  background: #f3eaff;
  color: #9a5cff;
}
.quick-btn {
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  background: #fff;
  transition: 0.2s;
}
.quick-btn:hover {
  background: #f8f9fa;
}
.quick-icon {
  font-size: 22px;
  color: #28a745;
  margin-bottom: 5px;
}
.quick_heading {
  text-decoration: none;
  color: inherit;
}
.quick_heading:hover {
  color: #020615c2;
}
.orders-header {
  background: #eff5f0;
  padding: 15px 20px;
  border-radius: 10px 10px 0 0;
  font-weight: 800;
}
.order-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  margin-bottom: 15px;
  transition: 0.2s;
}
.order-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.order-id {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}
.order-id:hover {
  color: #000;
}
.tour-title {
  font-size: 14px;
  font-weight: 600;
}
.text-date-time {
  font-size: 12px;
  font-weight: 600;
}
.status-badge {
  background: #d4f5df;
  color: #0f5132;
  padding: 3px 13px;
  border-radius: 50px;
  font-weight: 500;
}
.total-price {
  font-weight: 700;
}
@media (max-width: 575px) {
  .user_image {
    width: 25%;
  }
  .edit-profile-image-section .user_image {
    width: 100px;
    height: 100px;
    min-width: 100px;
    min-height: 100px;
  }
}

/* =============================
   New Dashboard Design
=============================== */
.tg-dashboard-welcome {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}
.text-theme {
  color: var(--tg-theme-primary) !important;
}
.welcome-subtext {
  font-size: 0.95rem;
}

/* Dashboard Sidebar Navigation */
.dashboard-sidebar {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.dashboard-nav-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dashboard-nav .dashboard-nav-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 7px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dashboard-nav .dashboard-nav-item:hover:not(.active) {
  background: rgba(14, 140, 47, 0.08);
  color: var(--tg-theme-primary);
}
.dashboard-nav .dashboard-nav-item.active {
  background: rgba(14, 140, 47, 0.12);
  color: var(--tg-theme-primary);
}
.dashboard-nav .dashboard-nav-item.active .dashboard-nav-icon {
  color: var(--tg-theme-primary);
}
.dashboard-nav .dashboard-nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.dashboard-nav .dashboard-nav-label {
  flex: 1;
}
.dashboard-logout-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 7px 16px;
  border-radius: 10px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dashboard-logout-btn i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  font-size: 0.95rem;
}
.dashboard-logout-btn:hover {
  background: rgba(247, 74, 31, 0.1);
  color: var(--tg-theme-secondary);
}

/* New Dashboard Stat Cards */
.stat-card-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem;
  gap: 1rem;
}
.stat-card-content {
  flex: 1;
  min-width: 0;
}
.stat-card-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #000;
  margin-bottom: 0.35rem;
}
.stat-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 0.25rem 0;
  letter-spacing: -0.02em;
}
.stat-card-desc {
  font-size: 0.8rem;
  color: #9ca3af;
}
.stat-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.35rem;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.stat-card-icon.stat-trips {
  background: rgba(14, 140, 47, 0.12);
  color: var(--tg-theme-primary);
}
.stat-card-icon.stat-bookings {
  background: #2421611f;
  color: #242161;
}
.stat-card-icon.stat-payments {
  background: #f74a1f1a;
  color: #f74a1f;
}
.stat-card-icon.stat-logout {
  background: rgba(220, 53, 69, 0.12);
  color: #dc3545;
  width: 90px !important;
  font-size: 14px !important;
}
.stat-card-icon.stat-logout:hover {
  background: rgba(220, 53, 69, 0.2);
  color: #b02a37;
}
.tg-dashboard-area .stat-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.tg-dashboard-area .stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Quick Actions */
.quick-actions {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--tg-border-1);
}
.quick-actions-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #374151;
}
.quick-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--tg-border-1);
  border-radius: 10px;
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.quick-action-item i {
  font-size: 1.25rem;
  color: var(--tg-theme-primary);
  opacity: 0.9;
}
.quick-action-item:hover {
  background: rgba(14, 140, 47, 0.06);
  border-color: rgba(14, 140, 47, 0.3);
  color: var(--tg-theme-primary);
}
.quick-action-item:hover i {
  opacity: 1;
}

.profile-edit-icon,
.mobile-logout-icon {
  height: 40px;
  width: 40px;
  font-size: 20px;
  border-radius: 6px;
}

/* Order History */
.order-history-content {
  max-height: 70vh;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.order-history-content::-webkit-scrollbar {
  display: none;
}
.order-history-header {
  margin-bottom: 1.5rem;
}
.order-history-filters .filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.25rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--tg-border-1);
}
.order-history-filters .filter-tab {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #374151;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.order-history-filters .filter-tab:hover {
  color: var(--tg-theme-primary);
  background: rgba(14, 140, 47, 0.08);
}
.order-history-filters .filter-tab.active {
  background: #fff;
  color: var(--tg-theme-primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.order-history-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}
.booking-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(14, 140, 47, 0.2);
}
@media (min-width: 768px) {
  .booking-card {
    flex-direction: row;
  }
}
.booking-card-image {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .booking-card-image {
    width: 240px;
    height: auto;
    min-height: 200px;
  }
}
.booking-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.booking-card:hover .booking-card-image img {
  transform: scale(1.05);
}
.booking-status-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 1px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-radius: 8px;
}
.booking-status-badge.status-upcoming {
  background: #ffc107;
  color: #fff;
}
.booking-status-badge.status-completed {
  background: rgba(14, 140, 47, 0.95);
  color: #fff;
}
.booking-status-badge.status-cancelled {
  background: #dc3545;
  color: #fff;
}
.booking-id-number {
  font-size: 0.78rem;
  color: var(--tg-theme-primary);
  background: rgba(14, 140, 47, 0.1);
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.booking-date {
  font-size: 0.85rem;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 1px 12px;
  font-weight: 700;
}
.booking-date i {
  opacity: 0.8;
}
.booking-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}
.booking-title a {
  color: #111;
  text-decoration: none;
  transition: color 0.2s ease;
}
.booking-title a:hover {
  color: var(--tg-theme-primary);
}
.booking-location {
  font-size: 16px;
  color: #000;
  margin: 0;
}
.booking-location i {
  color: var(--tg-theme-primary);
  font-size: 0.85rem;
}
.booking-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.booking-meta .meta-item {
  color: #000;
}
.booking-meta .meta-divider {
  color: #d1d5db;
  font-size: 0.7rem;
}
.booking-meta .meta-price {
  font-weight: 700;
  color: var(--tg-theme-primary);
  font-size: 1rem;
}
.booking-card-body {
  flex: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .booking-card-body {
    padding: 1.5rem;
  }
}
.booking-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.booking-card-actions {
  display: flex;
  padding-top: 5px;
}
.btn-view-details {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.2s ease;
  padding: 3px 18px;
  font-size: 15px;
  border: 1px solid #72726f;
  border-radius: 6px;
}
.btn-view-details:hover {
  color: #fff;
  background: #0a6b24;
}
.btn-view-details i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}
.btn-view-details:hover i {
  transform: translateX(4px);
}
.order-history-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 14px;
  border: 2px dashed var(--tg-border-1);
}
.order-history-empty .empty-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 140, 47, 0.08);
  border-radius: 50%;
  color: var(--tg-theme-primary);
  font-size: 2rem;
}
.order-history-empty h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Dashboard Edit Profile - form inputs */
.dashboard-content .input {
  font-weight: 400;
  font-size: 15px;
  color: #333;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  width: 100%;
  height: 48px;
  background: #fff;
  padding: 12px 16px;
}
.dashboard-content .input:focus {
  outline: none;
  border-color: var(--tg-theme-primary);
}
.dashboard-content .input::placeholder {
  color: #9ca3af;
}

/* Dashboard Edit Profile - date input (legacy) */
.dashboard-content .tg-booking-form-parent-inner.tg-hero-quantity {
  width: 100%;
}
.dashboard-content .tg-booking-add-input-date {
  position: relative;
  width: 100%;
  display: block;
}
.dashboard-content .tg-booking-add-input-date .input {
  width: 100%;
  padding-left: 44px;
  padding-right: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  height: 48px;
  font-size: 15px;
  background: #fff;
}
.dashboard-content .tg-booking-add-input-date > span:first-of-type {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #353844;
  pointer-events: none;
}
.dashboard-content .tg-booking-add-input-date--no-chevron .input {
  padding-left: 16px !important;
  padding-right: 44px !important;
}

/* Dashboard date picker - prevent calendar icon from overlapping text */
.dashboard-content .tg-tour-about-date input {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Dashboard mobile */
@media (max-width: 768px) {
  .tg-dashboard-area .top-sticky {
    margin-bottom: 0 !important;
  }
  .tg-dashboard-area .tg-blog-categories.tg-blog-sidebar-box {
    margin-bottom: 0 !important;
    margin-top: 20px;
  }
  .quick-actions {
    display: none;
  }
  .dashboard_4_col {
    margin-top: 10px !important;
    padding: 4px;
  }
  .tg-dashboard-area .stat-card-body {
    padding: 12px;
    gap: 0.75rem;
  }
  .tg-dashboard-area .stat-card-label {
    font-size: 12px;
    margin-bottom: 0.25rem;
  }
  .tg-dashboard-area .stat-card-value {
    font-size: 16px;
  }
  .tg-dashboard-area .stat-card-desc {
    font-size: 13px;
    display: flex;
    line-height: 1.2;
    margin-top: 10px;
  }
  .tg-dashboard-area .stat-card-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
    border-radius: 6px;
  }
  .order-history-filters .filter-tab {
    padding: 2px 9px;
    font-size: 12px !important;
  }
  .tg-dashboard-area #sidebarSection {
    position: sticky;
    top: 80px;
    z-index: 10;
  }
  .dashboard-sidebar {
    padding: 1rem;
  }
  .dashboard-sidebar .tg-blog-sidebar-title {
    margin-bottom: 10px !important;
    font-size: 1rem;
  }
  .dashboard-nav-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
  }
  .dashboard-nav {
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    min-width: 0;
  }
  .dashboard-nav .dashboard-nav-item {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    padding: 2px 7px;
    margin-bottom: 0 !important;
    border-radius: 4px;
    white-space: nowrap;
  }
  .dashboard-nav .dashboard-nav-item .dashboard-nav-icon {
    display: none;
  }
  .dashboard-nav .dashboard-nav-item .dashboard-nav-label {
    flex: none;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
  }
  .dashboard-nav .dashboard-nav-item.active {
    background: rgba(14, 140, 47, 0.14);
    color: var(--tg-theme-primary);
  }
  .dashboard-logout-btn {
    display: none;
  }
  .tg-dashboard-welcome {
    font-size: 1.4rem;
  }
  /* Date input: 16px prevents iOS zoom on focus, improves mobile date picker */
  .dashboard-content input[type="date"] {
    font-size: 16px;
    min-height: 48px;
  }
  .stat-card{
    padding: 0px !important;
  }
  .tg-blog-ads img {
      width: 65% !important;
  }
  .side-header{
    padding: 4px 10px !important;
    font-size: 15px !important;
  }
  

}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {      
      margin-bottom: 13px !important;
  }
}

/* Header main nav + mobile drawer only: current route accent (does not affect footer) */
.tg-header__area .tgmenu__navbar-wrap-2 ul.navigation > li > a.menu_under_line.active,
.tg-header__area.header-sticky .tgmenu__navbar-wrap-2 ul.navigation > li > a.menu_under_line.active {
  color: #0e8c2f !important;
}

header.tg-header-height .tgmobile__menu .navigation li > a.active {
  color: #0e8c2f !important;
}

header.tg-header-height .tgmobile__menu .navigation li > a.active::before {
  background: #0e8c2f;
}

header.tg-header-height .tgmobile__menu .navigation > li > a.active::before {
  height: 100%;
}

/* Cancellation & Refund Policy — layout to match brand page */
.cancellation-policy-outer {
  background: #fff;
}

.cancellation-policy-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem 2.5rem;
}

.cancellation-policy-page .cancellation-policy-main-title {
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2.25rem;
  text-align: center;
  line-height: 1.25;
}

.cancellation-policy-section {
  text-align: left;
  margin-bottom: 1.85rem;
}

.cancellation-policy-section h2 {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1a1a1a;
  margin-bottom: 1rem;
  line-height: 1.45;
}

.cancellation-policy-section ol {
  padding-left: 1.2rem;
  margin: 0;
  color: #454748;
  line-height: 1.7;
  font-size: 15px;
}

.cancellation-policy-section li + li {
  margin-top: 0.85rem;
}

.cancellation-policy-callout {
  text-align: left;
  background: #e4edf3;
  border: 1px solid #6ba3c7;
  border-radius: 14px;
  padding: 1.35rem 1.5rem 1.5rem;
  margin-top: 2rem;
}

.cancellation-policy-callout h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: #1a1a1a;
  text-transform: capitalize;
}

.cancellation-policy-callout > p:first-of-type {
  margin: 0 0 1rem;
}

.cancellation-policy-callout p {
  color: #454748;
  line-height: 1.65;
  font-size: 15px;
}

.cancellation-policy-callout .cancellation-policy-note {
  margin: 0;
  padding-top: 1rem;
  margin-top: 0.25rem;
  border-top: 1px solid rgba(0, 80, 120, 0.12);
}

.cancellation-policy-callout .cancellation-policy-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #1a1a1a;
}

/* Wishlist toast — desktop: bottom-right; mobile overrides to top-right */
.wishlist-toast {
  position: fixed;
  top: auto;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  left: auto;
  z-index: 10050;
  padding: 7px 30px;
  max-width: min(380px, calc(100vw - 32px));
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  line-height: 1.35;
  pointer-events: none;
  border: 1px solid transparent;
}

/* Add — red highlight */
.wishlist-toast--add {
  background:  #e8f5e9;
  color: #1b5e20;
  border-color: #1b5e20;
  box-shadow: 0 10px 30px rgba(27, 94, 32, 0.35);
}

/* Removed — light green background + dark green text */
.wishlist-toast--remove {
  background: #da8e8e;
  color: #8e0000;
  border-color: #8e0000;
  box-shadow: 0 10px 28px rgba(27, 94, 32, 0.15);
}

/* Mobile: top-right (below notch/status), flush to safe-area inset */
@media (max-width: 767px) {
  .wishlist-toast {
    top: calc(env(safe-area-inset-top, 0px) + 10px);
    bottom: auto;
    right: max(12px, env(safe-area-inset-right, 0px));
    left: auto;
    transform: none;
    max-width: min(320px, calc(100vw - 24px));
    padding: 7px 15px;
    text-align: left;
  }
  .tg-blog-standard-item p{
    text-align: left;
  }
  .tg-blog-standard-title {
    font-size: 20px !important;
  }
  .day_tour_of_locations{
    font-size: 12px !important;
  }
  .ul.tg-bulleted-list > li, li, .tg-tour-about-inner.mb-20 h5{
    line-height: 23px !important;
  }
  .tour-details-carousel .swiper-slide img {
    height: 220px !important;
  }  
}

.tg-tour-details-wishlist-btn {
  border: none;
  background: transparent;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: var(--tg-common-black);
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tg-tour-details-wishlist-btn:hover {
  color: var(--tg-theme-primary);
}

/* Restore bullets for explicit bulleted lists (global li has list-style: none) */
ul.tg-bulleted-list {
  padding-left: 1.25rem;
  margin: 0.25rem 0 1rem;
}

ul.tg-bulleted-list > li {
  list-style: disc;
}
.day_tour_of_locations{
  font-size: 14px;
}
.tg-tour-details-video-title small{
  font-size: .7em !important;
}
.cancellation_policy_title{
  font-size: 17px;
  font-weight: 600;
}
.policy-page .tg-tour-details-video-title{
  font-size: 21px !important;
  font-weight: 600 !important;
}