/*  ----------------------------- offer section -------------------- */
.offers-wrap {
  padding: 32px var(--page-padding-8) 64px var(--page-padding-8);
}
.offers {
  position: relative;
  display: flex;
  flex: 1;
}
.offers-float {
  /* background-color: green; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  flex: 1;
  gap: 16px;
}
.offer {
  border: solid 1px var(--color-border);
  border-radius: 16px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px;
  flex: 1;
  height: 80px;
  min-width: 380px;
  box-sizing: border-box;
  /* background-color: #e99b05; */
}
.offer:hover {
  background-color: #f5f7f9;
}
.offer-disc-box {
  display: flex;
  gap: 12px;
  align-items: center;
  flex: 1;
}
.offer-discription {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-primary-dark);
}
.offer-iconContainer {
  display: flex;
  min-width: 56px;
  min-height: 56px;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
}
.offer-iconContainer-date {
  background-color: #fcf3e1;
}
.offer-iconContainer-dairwave {
  background-color: #e8f4fd;
}
.offer-iconContainer-skiing {
  background-color: #faeaea;
}
.offer-icon-date {
  color: #e99b05;
}
.offer-icon-dairwave {
  color: #0172cb;
}
.offer-icon-skiing {
  color: #d21c1c;
}
.offer-iconContainer span {
  font-size: 24px;
}
.offer-btn {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  white-space: nowrap;
}
.offers-ellipse-bar {
  display: none;
}

/*------------------------- main Slider -----------------------------*/
.home-slider-wrap {
  padding: 0px var(--page-padding-8);

  height: 400px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
}
.home-slider-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: center;
}
.home-slide {
  background-color: #e8f4fd;
  display: flex;
  flex: 1;
}

/* ------------------------- Tur theme -------------------------------- */
.tur-theme-wrap {
  padding: 64px var(--page-padding-8);
}
.tur-theme-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.tur-theme {
  /* background-color: #e99b05; */
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
  margin-top: 20px;
}
.tur-theme-up {
  /* background-color: blue; */
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 24px;
  flex-wrap: wrap;
}
.tur-theme-up-left {
  /* background-color: green; */
  display: flex;
  flex: 1;
  gap: 0px;
  /* min-width: 500px; */
}
.tur-theme-up-right {
  /* background-color: blueviolet; */
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}
.tur-theme-down {
  /* background-color: #e99b05; */
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 24px;
  flex-wrap: wrap;
}

.tur-card-top {
  height: 400px;
  min-width: 320px;
  flex: 1;
  /* width: 580px; */
}
.tur-card-right {
  height: 188px;
  min-width: 320px;
  /* width: 580px; */
}
.tur-card-down {
  height: 300px;
  flex: 1;
  min-width: 250px;
  /* width: 382px; */
}

.tur-card-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
}

/*---------------------------- Elci tur --------------------------------*/

@media screen and (max-width: 600px) {
  /* Hide scrollbar for chrome, safari and opera */
  .hero-tabs::-webkit-scrollbar {
    display: none;
  }

  /* --------------------------- offer section ------------------------ */
  .offers-wrap {
    padding: 48px 16px;
  }
  .offers {
    position: relative;
    overflow: hidden;
    overflow-x: scroll;
    height: 120px;
    display: flex;
    flex: 1;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;

    /* background-color: blue */
  }
  .offers-float {
    position: absolute;
    display: flex;
    flex: 1;
    left: 0px;
    top: 0px;
    flex-wrap: nowrap;
    /* background-color: yellow; */
  }
  .offer {
    /* flex-wrap: wrap; */
    height: 120px;
    min-width: auto;
    padding-top: 10px;
    padding-bottom: 10px;
    gap: 0px;
    flex-direction: column;
    align-items: end;
  }
  .offer-disc-box {
    width: 100%;
  }

  /* ----------------------- */

  .theme-title-container {
    text-align: center;
  }

  /* --------------------------- Tur theme --------------------------- */
  .tur-theme-wrap {
    padding: 20px 0;
  }
  .tur-theme {
    flex-direction: row;
    gap: 24px;

    overflow-y: hidden;
    overflow-x: scroll;
    padding-left: 16px;
    padding-right: 16px;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;
  }
  /* Hide scrollbar for chrome, safari and opera */
  .tur-theme::-webkit-scrollbar {
    display: none;
  }
  .tur-theme-up,
  .tur-theme-up-left,
  .tur-theme-down {
    flex-wrap: nowrap;
  }
  .tur-theme-up-right {
    flex-direction: row;
  }
  .tur-card-top,
  .tur-card-right,
  .tur-card-down {
    width: 320px;
    height: 200px;
  }

  /* --------- Elci tur theme ----------- */
  .elci-tur-wrap {
    padding: 48px 0px;
  }
  .elci-tur-slider {
    overflow-y: hidden;
    overflow-x: scroll;

    /* Hide scrollbar for firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Edge- IE */
    -ms-overflow-style: none;
  }
  /* Hide scrollbar for chrome, safari and opera */
  .elci-tur-slider::-webkit-scrollbar {
    display: none;
  }
  .elci-tur-slider-float {
    padding-left: 16px;
    padding-right: 16px;
  }
  .elci-tur-slider-nav-btn {
    display: none;
  }
  .elci-tur-card {
    width: 320px;
    /* background-color: red; */
  }
  .elci-tur-card-img {
    width: 296px;
    height: 132px;
  }
  .elci-tur-context {
    padding: 0px 16px 48px 16px;
  }
}

/* ========================== Kampanya Slider Section ========================== */
.campains-slider-section {
  width: 100%;
  padding: 10px var(--page-padding-8) 5px;
  background: linear-gradient(180deg,rgba(28, 43, 61, 1) 0%, rgba(75, 115, 163, 1) 100%);
  position: relative;
  overflow: hidden;
}

.campains-slider-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1460px;
}
.campains-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 30px;
  color: #fff;
  margin: 15px 0;
}

/* Slider Wrapper */
.campains-slider-wrap {
  position: relative;
  width: 100%;
}

.campains-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 10px 25px;
}

.campains-slider::-webkit-scrollbar {
  display: none;
}

/* Arrow Buttons */
.campains-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.2s;
}

.campains-arrow:hover {
  background-color: #f5f5f5;
  transform: translateY(-50%) scale(1.05);
}

.campains-arrow:active {
  background-color: #e8e8e8;
  transform: translateY(-50%) scale(0.98);
}

.campains-arrow .material-symbols-outlined {
  font-size: 28px;
  color: #1c2b3d;
}

.campains-arrow-left {
  left: -60px;
}

.campains-arrow-right {
  right: -60px;
}

/* ========================== campains Card ========================== */
.campains-card {
  flex: 0 0 auto;
  width: calc(28% - 16px);
  cursor: pointer;
  transition: transform 0.2s;
}

.campains-card:hover {
  transform: translateY(-4px);
}

.campains-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);
  border: 1px solid #E7EBF0;
}

/* Card Image */
.campains-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.campains-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Card Bubble - White rounded overlay */
.campains-card-bubble {
  position: absolute;
  top: 0;
  right: 10%;
  transform: translateY(0%);
  width: 200px;
  background-color: #ffffffb0;
  border-radius: 0 0 150px 150px;
  padding: 10px 15px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: 0;
  text-align: center;
  height: 200px;
  backdrop-filter: blur(15px);
}

.campains-card-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  color: #1c2b3d;
  margin-bottom: 0;
}

.campains-card-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #4b5563;
}

/* ========================== Compains  ========================== */
/* ========================== Son Gezdiklerin Section ========================== */
.recent-visits-section {
  width: 100%;
  padding: 20px var(--page-padding-8) 40px;
  position: relative;
  background: linear-gradient(180deg,rgba(252, 243, 225, 1) 0%, rgba(255, 255, 255, 1) 100%);

}

.recent-visits-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1460px;
}

.recent-visits-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 30px;
  color: #1c2b3d;
  margin: 15px 0;
}

/* Carousel Wrapper */
.recent-visits-carousel-wrap {
  position: relative;
  width: 100%;
}

.recent-visits-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 10px 25px;
}

.recent-visits-carousel::-webkit-scrollbar {
  display: none;
}

/* Arrow Buttons */
.recent-visits-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0077ff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0px 4px 12px rgba(0, 119, 255, 0.3);
  transition: all 0.2s;
}

.recent-visits-arrow:hover {
  background-color: #0066dd;
  transform: translateY(-50%) scale(1.05);
}

.recent-visits-arrow:active {
  background-color: #0055bb;
  transform: translateY(-50%) scale(0.98);
}

.recent-visits-arrow .material-symbols-outlined {
  font-size: 28px;
  color: #ffffff;
}

.recent-visits-arrow-left {
  left: -65px;
}

.recent-visits-arrow-right {
  right: -65px;
}

/* ========================== Card ========================== */
.recent-visit-card {
  flex: 0 0 auto;
  width: 270px;
  background-color: #ffffff;
  border: 1px solid #e7ecf1;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.recent-visit-card:hover {
  box-shadow: 0px 8px 24px rgba(28, 43, 61, 0.12);
  transform: translateY(-4px);
}

/* Card Image */
.recent-visit-card-image {
  position: relative;
  width: 100%;
  height: 170px;
}





.recent-visit-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Type Badge */
.recent-visit-card-type {
  position: absolute;
  top: -10px;
  padding: 3px 16px;
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  left: 50%;
  transform: translate(-50%, 0);
  border: 1px solid #E7EBF0;
  font-size: 12px;
  font-weight: 400;
  line-height: 11px;
  min-width: 100px;
  text-align: center;
}

.recent-visit-type-tur {
  color: #1c2b3d;
}

.recent-visit-type-otel {
  color: #1c2b3d;
}

.recent-visit-type-umre {
  color: #1c2b3d;
}

/* Card Content */
.recent-visit-card-content {
  padding: 12px;
}
.recent-visit-card-content .rvcc{
  min-height: 110px;
}

.recent-visit-card-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: #1c2b3d;
  margin: 4px 0 10px;
  min-height: 30px;
}
.recent-visit-card a {
  color: #1c2b3d;
  text-decoration: none;
}

.recent-visit-card-subtit{
  font-size: 10px;
}

/* Meta Info */
.recent-visit-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-direction: row;
  flex-wrap: wrap;
}

.recent-visit-card-duration {
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  color: #000000;
  padding: 4px 4px;
  background: #f7f8fa;
  border-radius: 6px;
}

.recent-visit-card-label {
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: #0077ff;
  background: #e5f1ff;
  padding: 4px 4px;
  border-radius: 6px;
}

.recent-visit-card-badge {
  padding: 4px 4px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
}

.recent-visit-badge-room {
  background-color: #fff7e6;
  color: #d97706;
}

/* Features */
.recent-visit-card-features {
  margin-bottom: 8px;
}

/* Distance (for Umre) */
.recent-visit-card-distance {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 6px;
}

.recent-visit-distance-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 400;
  color: #000000;
  background: #f7f8fa;
  padding: 4px 8px;
  border-radius: 12px;
}
.recent-visit-distance-icon-h {
  width: 12px;
  height: 14px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10"><path d="M5 0L0 1.38889V9.44444L5 10L10 9.44444V1.38889L5 0Z" fill="black"/><path d="M5 10L10 9.44444V1.38889L5 0V10Z" fill="%23292F33"/><path d="M6.23722 4.02972V4.97611L7.41194 5.14611V4.22777L6.23722 4.02972ZM8.18167 4.35777V5.2575L9.09806 5.39027V4.51222L8.18167 4.35777ZM5 3.82111V4.79694L5.4675 4.86472V3.89999L5 3.82111ZM10 4.66444L9.85028 4.63916V5.49916L10 5.52083V4.66444Z" fill="%23FFD983"/><path d="M0 4.66444V5.52083L0.149722 5.49916V4.63916L0 4.66444ZM4.5325 3.89999V4.86472L5 4.79694V3.82111L4.5325 3.89999ZM0.901944 4.51222V5.39027L1.81833 5.2575V4.35777L0.901944 4.51222ZM2.58806 4.22777V5.14611L3.76278 4.97611V4.02972L2.58806 4.22777Z" fill="%23FFAC33"/><path d="M5.94118 4.20298V4.19131C5.94118 4.07437 5.90146 3.97937 5.8523 3.97937C5.80313 3.97937 5.76341 4.07437 5.76341 4.19131V4.20298C5.70563 4.26326 5.66479 4.37548 5.66479 4.50937C5.66479 4.65187 5.7098 4.77298 5.77396 4.82937C5.79174 4.88354 5.81924 4.92104 5.8523 4.92104C5.88535 4.92104 5.91285 4.88354 5.93063 4.82937C5.9948 4.77298 6.0398 4.65187 6.0398 4.50937C6.03952 4.37548 5.99896 4.26326 5.94118 4.20298ZM7.88535 4.49993V4.48826C7.88535 4.37131 7.84563 4.27631 7.79646 4.27631C7.7473 4.27631 7.70757 4.37131 7.70757 4.48826V4.49993C7.64979 4.5602 7.60896 4.67243 7.60896 4.80631C7.60896 4.94881 7.65396 5.06993 7.71813 5.12631C7.73591 5.18048 7.76341 5.21798 7.79646 5.21798C7.82952 5.21798 7.85702 5.18048 7.8748 5.12631C7.93896 5.06993 7.98396 4.94881 7.98396 4.80631C7.98396 4.6727 7.94313 4.56048 7.88535 4.49993ZM9.55674 4.78604V4.7752C9.55674 4.66604 9.51952 4.57743 9.47368 4.57743C9.42785 4.57743 9.39063 4.66604 9.39063 4.7752V4.78604C9.33674 4.84243 9.29868 4.94715 9.29868 5.07215C9.29868 5.2052 9.34063 5.31826 9.40063 5.37104C9.41702 5.42159 9.44285 5.45659 9.47368 5.45659C9.50452 5.45659 9.53007 5.42159 9.54674 5.37104C9.60646 5.31854 9.64868 5.2052 9.64868 5.07215C9.64868 4.94715 9.61091 4.84243 9.55674 4.78604Z" fill="%23FFD983"/><path d="M4.05861 4.20305V4.19138C4.05861 4.07443 4.09833 3.97943 4.1475 3.97943C4.19667 3.97943 4.23639 4.07443 4.23639 4.19138V4.20305C4.29417 4.26332 4.335 4.37555 4.335 4.50943C4.335 4.65193 4.29 4.77305 4.22583 4.82943C4.20806 4.8836 4.18056 4.9211 4.1475 4.9211C4.11444 4.9211 4.08694 4.8836 4.06917 4.82943C4.005 4.77305 3.96 4.65193 3.96 4.50943C3.96028 4.37555 4.00083 4.26332 4.05861 4.20305ZM2.11444 4.49999V4.48832C2.11444 4.37138 2.15417 4.27638 2.20333 4.27638C2.2525 4.27638 2.29222 4.37138 2.29222 4.48832V4.49999C2.35 4.56027 2.39083 4.67249 2.39083 4.80638C2.39083 4.94888 2.34583 5.06999 2.28167 5.12638C2.26389 5.18055 2.23639 5.21805 2.20333 5.21805C2.17028 5.21805 2.14278 5.18055 2.125 5.12638C2.06083 5.06999 2.01583 4.94888 2.01583 4.80638C2.01583 4.67277 2.05667 4.56055 2.11444 4.49999ZM0.443056 4.7861V4.77527C0.443056 4.6661 0.480278 4.57749 0.526111 4.57749C0.571944 4.57749 0.609167 4.6661 0.609167 4.77527V4.7861C0.663056 4.84249 0.701111 4.94721 0.701111 5.07221C0.701111 5.20527 0.659167 5.31832 0.599167 5.3711C0.582778 5.42166 0.556944 5.45666 0.526111 5.45666C0.495278 5.45666 0.469444 5.42138 0.452778 5.3711C0.393056 5.3186 0.350833 5.20527 0.350833 5.07221C0.351111 4.94721 0.388889 4.84249 0.443056 4.7861ZM0 3.0961V4.06832L5 3.16055V2.11499L0 3.0961Z" fill="%23FFAC33"/><path d="M5 2.11499V3.16055L10 4.06832V3.0961L5 2.11499Z" fill="%23FFD983"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.recent-visit-distance-icon-u {
  width: 14px;
  height: 16px;
  background-image: url("../assets/hac/icon1.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}

/* Price Box (with discount) */
.recent-visit-card-price-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  justify-content: flex-end;
}

.recent-visit-card-discount {
  padding: 4px;
  background-color: #e9f6eb;
  color: #16a34a;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
}

.recent-visit-card-price-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-end;
}

.recent-visit-card-price-old {
  font-size: 10px;
  font-weight: 300;
  color: #1C2B3D;
  text-decoration: line-through;
}

.recent-visit-card-price-value {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #1c2b3d;
  padding-top: 5px;
  text-align: right;
}

/* Price (simple) */
.recent-visit-card-price {
  padding: 0 10px;
  display: grid;
  justify-content: end;
  margin-top: 4px;
}

.recent-visit-card-price .recent-visit-card-price-value {
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  color: #1C2B3D;
}

.recent-visit-card-price-note {
  font-size: 11px;
  font-weight: 300;
  color: #1C2B3D;
  margin-left: 4px;
  text-align: right;
  font-style: italic;
}

/* ========================== Responsive ========================== */

/* Tablet */
@media screen and (max-width: 1200px) {
  .recent-visits-carousel {
    gap: 20px;
  }
  .recent-visit-card-duration {
    font-size: 10px;
  }
  .recent-visit-card {
    width: 240px;
  }
  .recent-visit-card-image {
    height: 160px;
  }

  .recent-visits-arrow {
    width: 48px;
    height: 48px;
  }

  .recent-visits-arrow .material-symbols-outlined {
    font-size: 24px;
  }

  .recent-visits-arrow-left {
    left: -24px;
  }

  .recent-visits-arrow-right {
    right: -24px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .recent-visit-card-price-old {
    font-size: 11px;
  }
  .recent-visit-card-price-value {
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    color: #1c2b3d;
  }
  .recent-visits-section {
    padding: 15px 0;
  }

  .recent-visits-container {
    padding: 0;
  }

  .recent-visits-title, .campains-title, .last-searches-title {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 14px;
    padding-left: 16px;
  }

  .recent-visits-carousel {
    gap: 12px;
    padding-left: 16px;
    padding-right: 0;
  }

  .recent-visit-card {
    width: 230px;
  }

  .recent-visit-card-image {
    height: 150px;
  }

  .recent-visit-card-content {
    padding: 10px;
  }

  .recent-visit-card-title {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 5px;
    min-height: auto;
    font-weight: 600;
  }

  .recent-visit-card-meta {
    gap: 8px;
    margin-bottom: 4px;
  }

  .recent-visit-card-duration,
  .recent-visit-card-label {
    font-size: 10px;
  }

  .recent-visit-card-price .recent-visit-card-price-value {
    font-size: 13px;
    line-height: 15px;
  }

  /* Hide arrows on mobile */
  .recent-visits-arrow {
    display: none;
  }
  .recent-visit-card-label {
    line-height: 15px;
  }
  .recent-visit-card-duration {
    line-height: 15px;
  }
  .recent-visit-distance-item {
    gap: 6px;
    font-size: 10px;
    padding: 2px 4px;
  }
}

/* Very Small Mobile */
@media screen and (max-width: 480px) {
  .recent-visit-card-duration, .recent-visit-card-label, .recent-visit-card-badge {
    font-size: 10px;
    padding: 5px 5px;
    line-height: 10px;

  }
  .recent-visit-card {
    width: 165px;
  }

  .recent-visit-card-image {
    height: 100px;
  }
  .recent-visit-card-meta {
    gap: 2px;
  }
  .recent-visit-card-content {
    padding: 6px;
  }
  .recent-visit-card-title {
    font-size: 12px;
    line-height: 16px;
  }
  .recent-visit-card-distance {
    margin-bottom: 4px;
    gap: 6px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }
  .recent-visit-card-discount {
    padding: 4px;
    font-size: 10px;
  }
  .recent-visit-card-price-box {
    gap: 6px;
  }

  .recent-visit-card-type {
    font-size: 11px;
  }
  .recent-visit-distance-icon-h {
    height: 14px;
  }
  .recent-visit-distance-icon-u {
    width: 14px;
    height: 14px;
  }
  .recent-visit-card-content .rvcc{
    min-height: 70px;
  }
  .recent-visit-card-distance{
    margin-bottom: 0;
  }
  .recent-visit-card-subtit{
    font-size: 10px;
  }
  .recent-visits-carousel {
    gap: 12px;
    padding-left: 16px;
  }
  .recent-visits-container {
    padding: 0;
  }
  .recent-visits-title, .campains-title, .last-searches-title {
    padding-left: 16px;
  }


}



/* ========================== COMPAINS ========================== */
/* ========================== Responsive ========================== */

/* Tablet */
@media screen and (max-width: 1200px) {

  .campains-card {
    width: calc(42% - 12px);
    min-width: 360px;
  }

  .campains-card-inner {
    height: 360px;
  }

  .campains-card-bubble {
    width: 200px;
    padding: 20px 10px;
    right: 24px;
  }

  .campains-card-title {
    font-size: 16px;
    line-height: 20px;
  }

  .campains-card-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .campains-arrow {
    width: 48px;
    height: 48px;
  }

  .campains-arrow .material-symbols-outlined {
    font-size: 24px;
  }

  .campains-arrow-left {
    left: -24px;
  }

  .campains-arrow-right {
    right: -24px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .campains-slider-wrap {

  }
  .campains-slider-section {
    padding: 10px 0 5px;
  }

  .campains-slider-container {
    padding: 0;
  }

  .campains-slider {
    gap: 16px;
    padding-left: 16px;
  }

  .campains-card {
    width: 100%;
    min-width: 310px;
    max-width: 310px;
  }

  .campains-card-inner {
    height: 310px;
  }

  .campains-card-bubble {
    width: 170px;
    padding: 20px 10px;
    right: 5%;
    top: 0;
    height: 170px;
  }

  .campains-card-title {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 10px;
  }

  .campains-card-desc {
    font-size: 12px;
    line-height: 18px;
  }

  /* Hide arrows on mobile */
  .campains-arrow {
    display: none;
  }
}

/* Very Small Mobile */
@media screen and (max-width: 480px) {
  .campains-card {
    min-width: 240px;
    max-width: 240px;
  }

  .campains-card-inner {
    height: 240px;
    border-radius: 20px;
  }

  .campains-card-bubble {
    width: 140px;
    padding: 10px 5px;
    border-radius: 0 0 150px 150px;
    right: 5%;
    height: 140px;
  }

  .campains-card-title {
    font-size: 12px;
    line-height: 16px;
  }

  .campains-card-desc {
    font-size: 10px;
    line-height: 14px;
    margin: 0;
  }
}


/* ========================== Popüler Turlar Section ========================== */
.popular-tours-section {
  width: 100%;
  padding: 20px var(--page-padding-8) 40px;
  background-color: #ffffff;
}

.popular-tours-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1460px;
}
/* ========================== Filter Tabs ========================== */
.popular-tours-filters-wrap {
  overflow: hidden;
}

.popular-tours-filters {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  user-select: none; /* Prevent text selection while dragging */
}

.popular-tours-filters::-webkit-scrollbar {
  display: none;
}
.popular-tours-filter-btn {
  flex: 0 0 auto;
  padding: 6px 20px;
  border-radius: 16px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  height: 37px;
}

.popular-tours-filter-btn {
  background-color: #ffffff;
  color: #1c2b3d;
  border: 1px solid #e7ecf1;
}

.popular-tours-filter-btn:hover {
  background-color: #f5f7f9;
  border-color: #d1d5db;
}

.popular-tours-filter-btn.active {
  background-color: #0077ff;
  color: #ffffff;
  border-color: #0077ff;
}
/* ========================== Carousel ========================== */
.popular-tours-carousel-wrap {
  position: relative;
  width: 100%;
}

.popular-tours-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 15px 10px 25px;
}

.popular-tours-carousel::-webkit-scrollbar {
  display: none;
}

/* Arrow Buttons */
.popular-tours-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #0077ff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0px 4px 12px rgba(0, 119, 255, 0.3);
  transition: all 0.2s;
}

.popular-tours-arrow:hover {
  background-color: #0066dd;
  transform: translateY(-50%) scale(1.05);
}

.popular-tours-arrow .material-symbols-outlined {
  font-size: 28px;
  color: #ffffff;
}

.popular-tours-arrow-left {
  left: -65px;
}

.popular-tours-arrow-right {
  right: -65px;
}

/* ========================== Tour Cards ========================== */
.popular-tour-card {
  flex: 0 0 auto;
  width: 320px;
  background-color: #ffffff;
  border: 1px solid #e7ecf1;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.popular-tour-card:hover {
  box-shadow: 0px 8px 24px rgba(28, 43, 61, 0.12);
  transform: translateY(-4px);
}


/* Card Image */
.popular-tour-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
}

/* Image Slider Container */
.popular-tour-image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.popular-tour-image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.popular-tour-image-slider img.active {
  opacity: 1;
  z-index: 1;
}

.popular-tour-card:hover .popular-tour-image-slider img.active {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* Image Bullets */
.popular-tour-image-bullets {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  opacity: .5;
  transition: opacity 0.3s ease;
}

.popular-tour-card-image:hover .popular-tour-image-bullets {
  opacity: 1;
}

.image-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.image-bullet:hover,
.image-bullet.active {
  background-color: #ffffff;
  transform: scale(1.3);
}

.popular-tour-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Favorite Button */
.popular-tour-favorite {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 50%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
  backdrop-filter: blur(8px);
}

.popular-tour-favorite:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.popular-tour-favorite .material-symbols-outlined {
  font-size: 20px;
  color: #6b7280;
  font-variation-settings: 'FILL' 0;
}

.popular-tour-favorite:hover .material-symbols-outlined {
  color: #ef4444;
}

.popular-tour-favorite.active .material-symbols-outlined {
  color: #ef4444;
  font-variation-settings: 'FILL' 1;
}

/* Card Content */
.popular-tour-card-content {
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.popular-tour-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
.popular-tour-card-h {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.popular-tour-card-v {
  display: flex;
  flex-direction: column;
}
.popular-tour-card-o {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.popular-tour-card-pg {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-direction: row;
  justify-content: space-between;
}

.popular-tour-card-duration {
  font-size: 10px;
  font-weight: 300;
  color: #1C2B3D;
  margin-top: 4px;
  font-style: italic;
}

.popular-tour-card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 24px;
  color: #1c2b3d;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px;
}

.popular-tour-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  line-height: 14px;
  color: #0077ff;
  background: #e5f1ff;
  padding: 4px 4px;
  border-radius: 6px;
  width: fit-content;
}
.popular-otelcard{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
}

.popular-otelcard .red{
   background-color: #E964051A;
   color: #E96405;
  padding: 4px 4px;
  border-radius: 6px;
  line-height: 14px;
  font-size: 11px;
}
.popular-otelcard .light{
  color: #1C2B3D;
  background: #f7f8fa;
  padding: 4px 4px;
  border-radius: 6px;
}
.popular-otelcard .blue{
  color: #0077ff;
  background: #e5f1ff;
  padding: 4px 4px;
  border-radius: 6px;
}
.popular-otelcard .text{
  padding: 4px 4px;
  color: #1C2B3D;

}


/* Distances (Umre/Hac only) */
.popular-tour-card-distances {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  flex-direction: row;
}

.popular-tour-distance-item strong{
  font-weight: 500;
}
.popular-tour-distance-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 10px;
  font-weight: 300;
  color: #1C2B3D;
}
.popular-tour-distance-item i {
  font-style: italic !important;
}

.popular-tour-distance-icon {
  font-size: 12px;
}

/* Price */
.popular-tour-card-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.popular-tour-price-value {
  font-size: 14px;
  font-weight: 600;
  line-height: 24px;
  color: #1c2b3d;
}

.popular-tour-price-note {
  font-size: 11px;
  font-weight: 300;
  color: #1C2B3D;
  margin-left: 4px;
  font-style: italic;
}

/* ========================== Large/Featured Card ========================== */
.popular-tour-card-large {
  width: 320px;
}

.popular-tour-card-large .popular-tour-card-image {
  height: 100%;
  min-height: 330px;
}

.popular-tour-card-large .popular-tour-card-content {
  display: none;
}

/* Large Card Overlay */
.popular-tour-large-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  min-height: 60px;
}

.popular-tour-large-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #ffffff;
  margin: 0;
  max-width: 70%;
}

.popular-tour-large-count {
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 16px;
}

/* ========================== Responsive ========================== */

/* Tablet */
@media screen and (max-width: 1200px) {
  .popular-tours-container {
    padding: 0 5%;
  }

  .popular-tour-card {
    width: 300px;
  }

  .popular-tour-card-large {
    width: 380px;
  }

  .popular-tours-arrow {
    width: 48px;
    height: 48px;
  }

  .popular-tours-arrow-left {
    left: -24px;
  }

  .popular-tours-arrow-right {
    right: -24px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .popular-otelcard{
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 15px;
    justify-content: space-between;
  }
  .popular-tours-section {
    padding: 16px 0;
  }

  .popular-tours-container {
    padding: 0;
  }

  .popular-tours-filters-wrap {
    padding: 0 16px;
  }

  .popular-tours-filters {
    gap: 8px;
    margin: 0 -10px 0 -16px;
    padding-left: 16px;
  }

  .popular-tours-filter-btn {
    padding: 4px 20px;
    font-size: 14px;
  }

  .popular-tours-carousel {
    gap: 16px;
    padding-left: 16px;
  }

  .popular-tour-card {
    width: 260px;
  }

  .popular-tour-card-large {
    width: 340px;
  }

  .popular-tour-card-large .popular-tour-card-image {
    min-height: 230px;
  }

  .popular-tour-card-image {
    height: 120px;
  }

  .popular-tour-card-content {
    padding: 8px;
    gap: 6px;
  }

  .popular-tour-card-title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
  }

  .popular-tour-large-title {
    font-size: 14px;
    line-height: 18px;
    max-width: 70%;
  }

  /* Hide arrows on mobile */
  .popular-tours-arrow {
    display: none;
  }
  .popular-tour-card-v {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }
  .popular-tour-card-o {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
  }

  .popular-tour-card-h {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
  }

  .popular-tour-card-distances {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 4px;
    flex-direction: column;
  }
  .popular-tour-card-pg {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-direction: column;
    margin-top: 10px;
    justify-content: space-between;
  }
  .popular-tour-card-badge {
    display: inline-block;
    font-weight: 500;
    color: #0077ff;
    background: #e5f1ff;
    border-radius: 6px;
    width: fit-content;
    padding: 5px 5px;
    line-height: 10px;
  }
  .popular-tour-large-count {
    bottom: 24px;
    right: 24px;
    font-size: 12px;
  }
  .popular-otelcard .text {
    background: #f7f8fa;
  }
  .popular-otelcard .text, .popular-otelcard .blue, .popular-otelcard .red, .popular-tour-card-badge{
  font-size: 10px;
  }
  .popular-tour-price-value{
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    color: #1c2b3d;
  }
  .popular-tour-price-note{font-size: 11px}
  .popular-tour-card-duration{
    font-size: 10px;
  }
  .popular-tour-distance-item {
    font-size: 10px;
  }
}

/* Very Small Mobile */
@media screen and (max-width: 480px) {
  .popular-tour-card {
    width: 200px;
  }

  .popular-tour-card-large {
    width: 200px;
  }

  .popular-tour-card-large .popular-tour-card-image {
    min-height: 240px;
  }
  .popular-tour-large-overlay {
    padding: 14px 14px;
  }
}

/* ========================== Animations ========================== */
.popular-tour-card {
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

