:root {
  --ije-wishlist-blue: #042c91;
  --ije-wishlist-navy: #071827;
  --ije-wishlist-gold: #ffc107;
  --ije-wishlist-orange: #f97316;
  --ije-wishlist-soft: #f8fbff;
  --ije-wishlist-muted: #667085;
  --ije-wishlist-line: rgba(15, 23, 42, .10);
}

.ije-wishlist-btn {
  cursor: pointer;
  z-index: 8;
}

.ije-wishlist-btn.is-active {
  background: linear-gradient(135deg, var(--ije-wishlist-orange), #dc2626) !important;
  border-color: rgba(255, 255, 255, .96) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(220, 38, 38, .32);
}

.ije-wishlist-btn.is-loading {
  pointer-events: none;
  opacity: .72;
}

.ije-wishlist-btn.is-loading i {
  animation: ijeWishlistPulse .8s ease-in-out infinite alternate;
}

.ije-single-wishlist-wrap {
  margin: 14px 0 0;
}

.ije-wishlist-btn-inline {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-height: 44px;
  padding: 10px 16px;
  gap: 8px;
  border-radius: 999px;
  background: #fff;
  color: var(--ije-wishlist-navy);
  border: 1px solid var(--ije-wishlist-line);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.ije-wishlist-btn-inline:hover,
.ije-wishlist-btn-inline:focus {
  color: #fff;
  background: var(--ije-wishlist-blue);
}

.ije-wishlist-page {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.ije-wishlist-page a {
  text-decoration: none;
}

.ije-wishlist-page .container {
  position: relative;
  z-index: 2;
}

.ije-wishlist-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 193, 7, .20), transparent 25%),
    radial-gradient(circle at 98% 88%, rgba(255, 255, 255, .18) 0, rgba(255, 255, 255, .18) 12%, transparent 12.4%),
    linear-gradient(115deg, #071827 0%, #08284e 27%, #042c91 64%, #063a99 100%);
}

.ije-wishlist-hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  pointer-events: none;
}

.ije-wishlist-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 300px;
  padding: 54px 0 58px;
}

.ije-wishlist-hero-copy {
  max-width: 760px;
}

.ije-wishlist-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 0 22px;
  padding: 6px 13px;
  border-radius: 999px;
  color: #fff !important;
  background: linear-gradient(135deg, #ffe082, var(--ije-wishlist-gold));
  font-size: .78rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(255, 193, 7, .22);
}

.ije-wishlist-title,
.ije-wishlist-page h1.ije-wishlist-title {
  margin: 0 0 14px;
  color: #fff !important;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.ije-wishlist-subtitle,
.ije-wishlist-page p.ije-wishlist-subtitle {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .92) !important;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.45;
}

.ije-wishlist-actions {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex: 0 0 auto;
}

.ije-wishlist-count-pill {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  color: #071827 !important;
  background: #fff !important;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
}

.ije-wishlist-count-pill [data-ije-wishlist-count] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #071827 !important;
  font-weight: 900;
}

.ije-wishlist-clear,
.ije-wishlist-page .btn.ije-wishlist-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px !important;
  border: 1px solid rgba(255, 255, 255, .38) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .11) !important;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(6px);
  transition: transform .16s ease, color .16s ease, border-color .16s ease, background .16s ease;
}

.ije-wishlist-clear:hover,
.ije-wishlist-clear:focus,
.ije-wishlist-page .btn.ije-wishlist-clear:hover,
.ije-wishlist-page .btn.ije-wishlist-clear:focus {
  transform: translateY(-1px);
  color: #071827 !important;
  border-color: #fff !important;
  background: #fff !important;
}

.ije-wishlist-content {
  padding: 48px 0 68px;
  background: #fff;
}

.ije-wishlist-grid {
  align-items: stretch;
}

.ije-wishlist-grid > [class*="col-"] {
  display: flex;
}

.ije-wishlist-item {
  height: 100%;
}

.ije-wishlist-item .ije-tour-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0 !important;
  border-radius: 24px !important;
  background: #fff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .10) !important;
  transition: transform .18s ease, box-shadow .18s ease;
}

.ije-wishlist-item .ije-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(15, 23, 42, .14) !important;
}

.ije-wishlist-item .ije-tour-image-wrap {
  position: relative;
  overflow: hidden;
  background: #e5e7eb;
}

.ije-wishlist-item .ije-tour-image-link {
  display: block;
}

.ije-wishlist-item .ije-tour-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.ije-wishlist-item .ije-wishlist-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 3px solid rgba(255, 255, 255, .96);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ije-wishlist-orange), #dc2626);
  box-shadow: 0 12px 28px rgba(7, 24, 39, .18);
}

.ije-wishlist-item .ije-wishlist-btn i {
  font-size: 1.45rem;
  line-height: 1;
}

.ije-wishlist-item .ije-tour-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.ije-wishlist-item .ije-tour-title,
.ije-wishlist-page h3.ije-tour-title {
  margin: 0 0 12px;
  min-height: 3.2rem;
  color: var(--ije-wishlist-navy) !important;
  font-size: clamp(1.18rem, 1.4vw, 1.45rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.ije-wishlist-item .ije-tour-title a {
  display: -webkit-box;
  color: var(--ije-wishlist-navy) !important;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ije-wishlist-item .ije-tour-from {
  margin: 0 0 16px;
  min-height: 3.25rem;
  color: var(--ije-wishlist-muted);
}

.ije-wishlist-item .ije-tour-from a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--ije-wishlist-muted) !important;
  font-size: .94rem;
  line-height: 1.35;
}

.ije-wishlist-item .ije-tour-from i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--ije-wishlist-gold);
}

.ije-wishlist-item .ije-rating-row {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 1.6rem;
  margin: 0 0 18px;
  color: var(--ije-wishlist-muted);
  font-size: .9rem;
  line-height: 1.2;
}

.ije-wishlist-item .ije-rating-row--new i {
  color: var(--ije-wishlist-gold);
}

.ije-wishlist-item .ije-stars .star-rating,
.ije-wishlist-item .ije-stars .star-rating::before,
.ije-wishlist-item .ije-stars .star-rating span::before {
  color: var(--ije-wishlist-gold);
}

.ije-wishlist-item .ije-card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--ije-wishlist-line);
}

.ije-wishlist-item .ije-price {
  flex: 1 1 120px;
}

.ije-wishlist-item .ije-price span {
  display: block;
  margin-bottom: 2px;
  color: var(--ije-wishlist-muted);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ije-wishlist-item .ije-price strong {
  display: block;
  color: var(--ije-wishlist-navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.1;
}

.ije-wishlist-item .ije-check-btn,
.ije-wishlist-page .btn.ije-check-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 10px 15px;
  border: 0;
  border-radius: 999px;
  color: #071827 !important;
  background: linear-gradient(135deg, #ffe082, var(--ije-wishlist-gold));
  font-size: .9rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(255, 193, 7, .20);
}

.ije-wishlist-item .ije-check-btn:hover,
.ije-wishlist-item .ije-check-btn:focus,
.ije-wishlist-page .btn.ije-check-btn:hover,
.ije-wishlist-page .btn.ije-check-btn:focus {
  color: #fff !important;
  background: linear-gradient(135deg, var(--ije-wishlist-blue), #021d61);
}

.ije-wishlist-item .ije-wishlist-remove,
.ije-wishlist-page .btn.ije-wishlist-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 38px;
  margin-top: 16px !important;
  padding: 9px 14px !important;
  border: 1px solid rgba(220, 38, 38, .22) !important;
  border-radius: 999px !important;
  color: #dc2626 !important;
  background: #fff !important;
  font-size: .84rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  transition: transform .16s ease, color .16s ease, border-color .16s ease, background .16s ease;
}

.ije-wishlist-item .ije-wishlist-remove:hover,
.ije-wishlist-item .ije-wishlist-remove:focus,
.ije-wishlist-page .btn.ije-wishlist-remove:hover,
.ije-wishlist-page .btn.ije-wishlist-remove:focus {
  transform: translateY(-1px);
  color: #fff !important;
  border-color: #dc2626 !important;
  background: #dc2626 !important;
}

.ije-wishlist-item .ije-card-bottom-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--ije-wishlist-gold), var(--ije-wishlist-orange), var(--ije-wishlist-blue));
}

.ije-wishlist-empty {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 32px;
  overflow: hidden;
  border-radius: 28px;
  text-align: center;
  background:
    radial-gradient(circle at top left, rgba(255, 193, 7, .14), transparent 28%),
    linear-gradient(135deg, #fff, var(--ije-wishlist-soft));
  box-shadow: 0 16px 40px rgba(15, 23, 42, .10);
}

.ije-wishlist-empty-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--ije-wishlist-blue), #0077cc);
  box-shadow: 0 16px 34px rgba(4, 44, 145, .22);
  font-size: 1.75rem;
}

.ije-wishlist-empty h2,
.ije-wishlist-page .ije-wishlist-empty h2 {
  margin: 0 0 10px;
  color: var(--ije-wishlist-navy) !important;
  font-size: 1.35rem;
  font-weight: 900;
}

.ije-wishlist-empty p,
.ije-wishlist-page .ije-wishlist-empty p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--ije-wishlist-muted) !important;
}

.ije-wishlist-browse-btn,
.ije-wishlist-page .btn.ije-wishlist-browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 0;
  border-radius: 999px;
  color: #071827 !important;
  background: linear-gradient(135deg, #ffe082, var(--ije-wishlist-gold));
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(255, 193, 7, .24);
}

.ije-wishlist-browse-btn:hover,
.ije-wishlist-browse-btn:focus,
.ije-wishlist-page .btn.ije-wishlist-browse-btn:hover,
.ije-wishlist-page .btn.ije-wishlist-browse-btn:focus {
  color: #fff !important;
  background: linear-gradient(135deg, var(--ije-wishlist-blue), #021d61);
}

.ije-wishlist-empty-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.ije-wishlist-empty-link,
.ije-wishlist-page .ije-wishlist-empty-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid rgba(4, 44, 145, .14);
  border-radius: 999px;
  color: #071827 !important;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
  transition: transform .16s ease, color .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.ije-wishlist-empty-link i {
  color: var(--ije-wishlist-orange);
  font-size: 1rem;
  line-height: 1;
}

.ije-wishlist-empty-link:hover,
.ije-wishlist-empty-link:focus,
.ije-wishlist-page .ije-wishlist-empty-link:hover,
.ije-wishlist-page .ije-wishlist-empty-link:focus {
  transform: translateY(-1px);
  color: #fff !important;
  border-color: var(--ije-wishlist-blue);
  background: linear-gradient(135deg, var(--ije-wishlist-blue), #021d61);
  box-shadow: 0 16px 32px rgba(4, 44, 145, .22);
}

.ije-wishlist-empty-link:hover i,
.ije-wishlist-empty-link:focus i,
.ije-wishlist-page .ije-wishlist-empty-link:hover i,
.ije-wishlist-page .ije-wishlist-empty-link:focus i {
  color: #fff;
}

.ije-wishlist-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999999;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(420px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 18px;
  color: #fff;
  background: rgba(7, 24, 39, .95);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.ije-wishlist-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ije-wishlist-toast span {
  font-weight: 800;
}

.ije-wishlist-toast a {
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  white-space: nowrap;
}

@keyframes ijeWishlistPulse {
  from { transform: scale(1); }
  to { transform: scale(1.18); }
}

@media (max-width: 991.98px) {
  .ije-wishlist-hero-inner {
    align-items: flex-start;
    flex-direction: column;
    min-height: 260px;
    padding: 42px 0 46px;
  }

  .ije-wishlist-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .ije-wishlist-content {
    padding: 36px 0 54px;
  }
}

@media (max-width: 575.98px) {
  .ije-wishlist-hero-inner {
    min-height: auto;
    padding: 34px 0 38px;
  }

  .ije-wishlist-kicker {
    margin-bottom: 16px;
  }

  .ije-wishlist-actions,
  .ije-wishlist-count-pill,
  .ije-wishlist-clear,
  .ije-wishlist-page .btn.ije-wishlist-clear {
    width: 100%;
  }

  .ije-wishlist-count-pill,
  .ije-wishlist-clear,
  .ije-wishlist-page .btn.ije-wishlist-clear {
    justify-content: center;
  }

  .ije-wishlist-item .ije-tour-body {
    padding: 20px 18px 18px;
  }

  .ije-wishlist-item .ije-card-footer-row {
    align-items: stretch;
    flex-direction: column;
  }

  .ije-wishlist-item .ije-check-btn,
  .ije-wishlist-page .btn.ije-check-btn,
  .ije-wishlist-item .ije-wishlist-remove,
  .ije-wishlist-page .btn.ije-wishlist-remove {
    width: 100%;
    justify-content: center;
  }

  .ije-wishlist-empty {
    padding: 36px 22px;
  }

  .ije-wishlist-empty-links {
    align-items: stretch;
    flex-direction: column;
  }

  .ije-wishlist-empty-link,
  .ije-wishlist-page .ije-wishlist-empty-link {
    width: 100%;
  }

  .ije-wishlist-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
    justify-content: space-between;
  }
}
