/* Mobile merged header — single row that mirrors the desktop utility cluster.
   The Horizontal2 plugin lays the mobile bar out via absolute positioning on
   `.animated-arrow` (left) and the old `.btn-post-listing-mobile` (right) with
   text-align:center on `.horizontal-header`. We override to flexbox so we can
   pin wishlist + profile + Post Ad icons inline on the right. */
@media (max-width: 991.98px) {
  .horizontal-header {
    height: 50px !important;
    text-align: left;
  }
  .horizontal-header .smllogo {
    margin-top: 0 !important;
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  .horizontal-header .smllogo img {
    max-height: 30px;
    width: auto;
  }

  .mobile-header-row {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 48px; /* room for the absolute-positioned hamburger */
    gap: 8px;
  }

  /* Re-center the absolute-positioned hamburger toggle for the slimmer
     50px header. Plugin defaults assume 54px (margin-top:11px + padding 16px
     puts the middle line at y=27, which sits 2px below center now). */
  .animated-arrow {
    top: 50% !important;
    margin: 0 0 0 15px !important;
    padding: 10px 35px 10px 0 !important;
    transform: translateY(-50%);
  }

  .mobile-utilities {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Normalize every direct trigger in the utility cluster to a consistent
     34px square so flags, hearts, avatars and the + icon all sit on the
     same baseline. Without this the lang flag (~26px tall) reads as floating
     up relative to the 34px wishlist/post-ad pills next to it. */
  .mobile-utilities > * {
    display: inline-flex;
    align-items: center;
    height: 34px;
  }

  /* Profile trigger on mobile — pill shape with avatar + small caret so it
     matches the lang/wishlist dropdown affordance. Name is still hidden;
     just the avatar and the down-arrow are visible. */
  .profile-dropdown-trigger--mobile {
    padding: 3px 8px 3px 4px !important;
    gap: 4px !important;
    border-radius: 18px !important;
    background: transparent;
  }
  .profile-dropdown-trigger--mobile:hover,
  .profile-dropdown-trigger--mobile[aria-expanded="true"] {
    background: #f0f0f8;
  }
  .profile-dropdown-trigger--mobile .profile-dropdown-avatar {
    width: 28px;
    height: 28px;
    border: none;
  }
  .profile-dropdown-trigger--mobile .profile-dropdown-name {
    display: none !important;
  }
  .profile-dropdown-trigger--mobile .profile-dropdown-caret {
    display: inline-block !important;
    font-size: 0.6rem;
  }

  /* Guest auth icon on mobile (circular link) */
  .mobile-auth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #4a4866;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .mobile-auth-icon:hover {
    background: #f0f0f8;
    color: #3D38D6;
  }

  /* Mobile Post Ad — circular icon-only pill to save horizontal space */
  .btn-post-ad--mobile {
    padding: 0 !important;
    width: 34px;
    height: 34px;
    border-radius: 50% !important;
    justify-content: center;
    gap: 0 !important;
    background: #3D38D6 !important;
    box-shadow: 0 2px 6px rgba(61, 56, 214, 0.28) !important;
  }
  .btn-post-ad--mobile i {
    font-size: 0.85rem !important;
    margin: 0;
    color: #fff;
  }

  /* Wishlist on mobile — keep container compact, just make the heart
     glyph itself larger so it visually matches the avatar/lang trigger size.
     The caret next to the heart keeps its own small size. */
  .mobile-utilities .wishlist-shortcut > .fa-heart,
  .mobile-utilities .wishlist-shortcut > .fa-heart-o {
    font-size: 1.25rem;
  }

  /* Language dropdown inline in the mobile utilities cluster (flag-only) */
  .mobile-utilities-lang {
    display: inline-flex;
    align-items: center;
  }
  .mobile-utilities-lang .country-selector {
    height: 34px;
  }
  .mobile-utilities-lang .country-selector .dropdown-toggle {
    width: 34px;
    height: 34px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.15s ease;
  }
  .mobile-utilities-lang .country-selector .dropdown-toggle:hover,
  .mobile-utilities-lang .country-selector .dropdown-toggle[aria-expanded="true"] {
    background: #f0f0f8;
  }
  .mobile-utilities-lang .country-selector .dropdown-toggle img {
    margin: 0 !important;
  }
  /* The blade renders an empty `<div></div>` next to the flag as a spacer
     for desktop label alignment — hide it on mobile so the flag is centered
     in its 34×34 circle. */
  .mobile-utilities-lang .country-selector .dropdown-toggle > div:empty {
    display: none;
  }

  /* ===== Slide-out (hamburger) menu — visual polish to match new desktop look.
     The Horizontal2 plugin renders the list as a 240px white panel with harsh
     1px black-rgba borders between items and centered text. We widen, soften
     the dividers, switch text to left-align, and apply the same purple pill
     hover/active state used on the desktop nav. */
  .horizontalMenu > .horizontalMenu-list {
    width: 240px !important;
    margin-left: -240px;
    background: #fff;
    box-shadow: 4px 0 24px rgba(29, 28, 46, 0.12);
    padding: 12px 8px !important;
  }
  .active .horizontalMenu > .horizontalMenu-list {
    margin-left: 0;
  }

  /* Plugin default `width: calc(100% - 240px)` assumes the original 240px
     sidebar; since we widened it to 240px the overlay was bleeding ~40px
     over the right edge of the panel. Match the new width. */
  .overlapblackbg {
    width: calc(100% - 240px) !important;
  }

  /* Plugin gives `.active .horizontalMenu` z-index:1000, but the mobile
     header sits inside `.sticky` which becomes `.sticky-pin` (z-index:9999)
     once the user scrolls — so the slide-out and its dark overlay slipped
     beneath the header bar. Push the active menu (and overlay) above. */
  .active .horizontalMenu {
    z-index: 10000 !important;
  }
  .horizontalMenu > .horizontalMenu-list > li > a {
    padding: 11px 14px !important;
    font-size: 0.95rem !important;
    color: #4a4866 !important;
    border-bottom: none !important;
    border-radius: 8px;
    font-weight: 500;
    line-height: 1.3 !important;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .horizontalMenu > .horizontalMenu-list > li:hover > a,
  .horizontalMenu > .horizontalMenu-list > li.active > a {
    background: #3D38D6 !important;
    color: #fff !important;
  }

  /* Nested submenu (Categories) inside slide-out */
  .horizontalMenu > .horizontalMenu-list > li > ul.sub-menu {
    background: #fafafd !important;
    padding: 4px 6px !important;
    margin: 4px 0 !important;
    border-radius: 8px;
  }
  .horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > a,
  .horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu > li > a {
    padding: 8px 12px !important;
    font-size: 0.85rem !important;
    color: #4a4866 !important;
    border-bottom: none !important;
    border-radius: 6px !important;
    line-height: 1.3 !important;
  }
  .horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li:hover > a,
  .horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu > li:hover > a {
    background: #f0f0f8 !important;
    color: #3D38D6 !important;
  }

  /* Plugin default margin-top: 14px on the expander arrow pushed it almost
     to the bottom of our compact (~42px tall) mobile nav items. Pull it up
     so the chevron sits vertically centered in the link row. */
  .horizontalMenu > .horizontalMenu-list > li > .horizontalMenu-click > i {
    margin-top: 8px !important;
    font-size: 18px !important;
    height: 20px !important;
  }

  /* Post Ad button at the bottom of the slide-out — make it a full-width
     branded pill (same red gradient as the desktop CTA) so it reads as the
     primary action at the end of the menu. */
  .horizontalMenu > .horizontalMenu-list > li.d-lg-none.mt-4 {
    padding: 12px 8px 8px 8px !important;
  }
  .horizontalMenu > .horizontalMenu-list > li.d-lg-none.mt-4 > .btn-pill.btn-danger {
    display: block !important;
    width: 100% !important;
    padding: 11px 16px !important;
    background: linear-gradient(135deg, #d63043 0%, #ee4d5e 100%) !important;
    border: none !important;
    border-radius: 24px !important;
    color: #fff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 6px rgba(214, 48, 67, 0.28);
    text-align: center;
  }
}

/* Language dropdown is always anchored on the right side of the navbar
   (mobile + desktop utility cluster). Force the menu to right-align with the
   trigger so it can't drift off-screen, and disable Popper's transform-based
   placement which collides with our flex parent (`.country-selector.d-flex`). */
.country-selector .dropdown-menu {
  right: 0 !important;
  left: auto !important;
  top: 100% !important;
  transform: none !important;
  margin-top: 6px !important;
  border: 1px solid #e0dfef !important;
  border-radius: 10px !important;
  box-shadow: 0 6px 24px rgba(29, 28, 46, 0.08) !important;
}

/* Desktop merged header — compact sizing overrides (smaller than the
   Horizontal2 plugin defaults so the bar reads as a slim utility strip,
   not a hero band). */
.desktoplogo {
  padding: 0.35rem 0 !important;
}
.desktoplogo img {
  max-width: 190px;
  height: auto;
}
.horizontal-mainwrapper {
  min-height: 48px;
}

/* Plugin defaults make `.horizontalMenu-list` width:100% with `float:left`
   children and 1.5rem vertical padding on each <li>. In our merged single-row
   layout that fights the parent flex container and inflates header height.
   Force flex layout on the list, drop the float-induced gaps, and zero the
   per-item vertical padding so total bar height is driven by the link itself. */
@media (min-width: 992px) {
  .horizontalMenu > .horizontalMenu-list {
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    width: auto !important;
  }
  .horizontalMenu > .horizontalMenu-list > li {
    float: none !important;
    padding: 0 !important;
    flex: 0 0 auto;
  }
  .horizontalMenu {
    flex: 0 1 auto;
    min-width: 0;
  }
}

/* Tight desktop range (lg–xl, ~992–1199px): everything fits in one row
   only if we squeeze paddings, hide name labels next to icons, and drop
   the logo a touch. Above xl the defaults breathe normally. */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .desktoplogo img {
    max-width: 150px;
  }
  .horizontalMenu > .horizontalMenu-list > li > a {
    padding: 8px 9px !important;
    font-size: 0.82rem !important;
    margin: 0 1px;
  }
  .header-utilities {
    gap: 6px;
  }
  .header-utilities .auth-icons a span {
    display: none;
  }
  .header-utilities .auth-icons a i {
    margin-right: 0 !important;
  }
  .profile-dropdown-name {
    display: none;
  }
  .btn-post-ad {
    padding: 5px 10px;
    font-size: 0.78rem;
  }
}
.horizontalMenu > .horizontalMenu-list > li > a {
  padding: 9px 14px !important;
  font-size: 0.86rem !important;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #4a4866 !important;
  border-radius: 8px;
  margin: 0 2px;
  transition: background 0.15s ease, color 0.15s ease;
}
.horizontalMenu > .horizontalMenu-list > li:hover > a,
.horizontalMenu > .horizontalMenu-list > li.active > a {
  background: #3D38D6 !important;
  color: #fff !important;
}
.horizontalMenu > .horizontalMenu-list > li > a > .fa-caret-down {
  font-size: 0.65rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
  color: inherit !important;
}
.horizontalMenu > .horizontalMenu-list > li:hover > a > .fa-caret-down {
  transform: rotate(180deg);
}

/* Categories submenu — refine plugin defaults */
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu {
  top: 100% !important;
  border-radius: 10px !important;
  border: 1px solid #e0dfef !important;
  box-shadow: 0 6px 24px rgba(29, 28, 46, 0.08) !important;
  padding: 4px !important;
  min-width: 220px !important;
  margin-top: 0 !important;
}
/* Invisible hover bridge so the cursor can travel from the trigger to the
   panel without crossing a dead zone that would close the dropdown. */
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li,
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu > li {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > a,
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu > li > a {
  padding: 5px 10px !important;
  font-size: 0.84rem !important;
  line-height: 1.35 !important;
  border-radius: 6px !important;
  color: #4a4866 !important;
  transition: background 0.12s ease, color 0.12s ease !important;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li:hover > a,
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu > li:hover > a {
  background: #f7f7fc !important;
  color: #3D38D6 !important;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > a > .fa {
  color: #a8a6c4 !important;
  font-size: 0.75rem;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li:hover > a > .fa {
  color: #3D38D6 !important;
}
.horizontalMenu > .horizontalMenu-list > li > ul.sub-menu > li > ul.sub-menu {
  border-radius: 10px !important;
  border: 1px solid #e0dfef !important;
  box-shadow: 0 6px 24px rgba(29, 28, 46, 0.08) !important;
  padding: 4px !important;
  min-width: 200px !important;
}

/* Utility cluster on the right of horizontal-mainwrapper */
.header-utilities {
  list-style: none;
  padding-left: 0;
  gap: 10px;
}
.btn-post-ad {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #d63043 0%, #ee4d5e 100%);
  color: #fff;
  border-radius: 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(214, 48, 67, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-post-ad:hover {
  color: #fff;
  filter: brightness(1.05);
  box-shadow: 0 3px 10px rgba(214, 48, 67, 0.38);
  transform: translateY(-1px);
}
.btn-post-ad:active {
  transform: translateY(0);
  box-shadow: 0 1px 3px rgba(214, 48, 67, 0.3);
}
.btn-post-ad i {
  font-size: 0.7rem;
}
.header-utilities > li {
  display: flex;
  align-items: center;
}
.header-utilities .auth-icons a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1d1c2e;
  text-decoration: none;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 18px;
  transition: background 0.15s ease, color 0.15s ease;
}
.header-utilities .auth-icons a:hover {
  background: #f0f0f8;
  color: #3D38D6;
}

.profile-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 8px;
  border-radius: 18px;
  color: #1d1c2e;
  text-decoration: none;
  transition: background 0.15s ease;
}
.profile-dropdown-trigger:hover,
.profile-dropdown-trigger[aria-expanded="true"] {
  background: #f0f0f8;
  color: #3D38D6;
}
.profile-dropdown-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #e0dfef;
  flex-shrink: 0;
}
.profile-dropdown-name {
  font-weight: 500;
  font-size: 0.82rem;
  max-width: 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.profile-dropdown-caret {
  font-size: 0.65rem;
  color: #a8a6c4;
}
.profile-dropdown-menu {
  min-width: 260px;
  padding: 0;
  border: 1px solid #e0dfef;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(29, 28, 46, 0.08);
  overflow: hidden;
  margin-top: 6px !important;
}
.profile-dropdown-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f7f7fc 0%, #ece9ff 100%);
  border-bottom: 1px solid #e0dfef;
}
.profile-dropdown-header-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  flex-shrink: 0;
}
.profile-dropdown-header-text { min-width: 0; flex: 1; }
.profile-dropdown-header-name {
  font-weight: 600;
  color: #1d1c2e;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-dropdown-header-email {
  font-size: 0.75rem;
  color: #8a87a8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.profile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  color: #4a4866;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}
.profile-dropdown-item i {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
  color: #a8a6c4;
}
.profile-dropdown-item:hover {
  background: #f7f7fc;
  color: #3D38D6;
}
.profile-dropdown-item:hover i { color: #3D38D6; }
.profile-dropdown-item.is-admin i { color: #d4a017; }
.profile-dropdown-item-danger:hover { color: #d04a6a; background: #fdecf0; }
.profile-dropdown-item-danger:hover i { color: #d04a6a; }
.profile-dropdown-divider {
  height: 1px;
  background: #f0f0f8;
  margin: 4px 0;
}
.wishlist-shortcut {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #1d1c2e;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.wishlist-shortcut:hover {
  background: #fdecf0;
  color: #d04a6a;
}
.wishlist-shortcut i { font-size: 1.25rem; }
.wishlist-shortcut-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #d04a6a;
  color: #fff;
  border-radius: 10px;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 2px solid #fff;
  box-sizing: content-box;
}
.wishlist-dd { position: relative; display: inline-block; }
[x-cloak] { display: none !important; }
.wishlist-dd-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1050;
  width: 340px;
  max-width: 92vw;
  margin-top: 6px;
  padding: 0;
  background: #fff;
  border: 1px solid #e0dfef;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(29, 28, 46, 0.08);
  overflow: hidden;
}
/* On mobile keep the menu glued below the trigger (top: 100% of .wishlist-dd
   wrapper) but slide it horizontally via a negative `left` computed from the
   trigger's viewport offset so the full-width menu fits inside the 12px
   gutters and can't spill off-screen. */
@media (max-width: 575.98px) {
  .wishlist-dd-menu {
    right: auto !important;
    left: var(--wishlist-dd-menu-left, 0) !important;
    width: var(--wishlist-dd-menu-width, calc(100vw - 24px)) !important;
    max-width: none !important;
  }
}
.wishlist-dd-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, #f7f7fc 0%, #ece9ff 100%);
  border-bottom: 1px solid #e0dfef;
  color: #1d1c2e;
  font-size: 0.88rem;
}
.wishlist-dd-empty {
  padding: 28px 16px;
  text-align: center;
}
.wishlist-dd-list {
  max-height: 360px;
  overflow-y: auto;
}
.wishlist-dd-item {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #f4f3fa;
  color: #1d1c2e;
  transition: background 0.12s ease;
  position: relative;
}
.wishlist-dd-item:last-child { border-bottom: none; }
.wishlist-dd-item:hover { background: #f7f7fc; }
.wishlist-dd-item:hover .wishlist-dd-item-link { color: #3D38D6; }
.wishlist-dd-item:hover .wishlist-dd-remove { opacity: 1; }
.wishlist-dd-item-link {
  display: flex;
  gap: 10px;
  padding: 10px 6px 10px 14px;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.wishlist-dd-remove {
  flex-shrink: 0;
  width: 28px;
  margin: 8px 8px 8px 0;
  border: none;
  background: transparent;
  color: #a8a6c4;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.12s ease, background 0.12s ease, color 0.12s ease;
  font-size: 0.85rem;
}
.wishlist-dd-remove:hover {
  background: #fdecf0;
  color: #d04a6a;
  opacity: 1;
}
.wishlist-dd-remove:disabled { cursor: wait; }
.wishlist-dd-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f0f0f8;
}
.wishlist-dd-info { min-width: 0; flex: 1; }
.wishlist-dd-title {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 4px;
}
.wishlist-dd-meta {
  font-size: 0.75rem;
  color: #6b6890;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.wishlist-dd-price { color: #1d1c2e; font-weight: 600; }
.wishlist-dd-price.text-success { color: #1f8a4c !important; }
.wishlist-dd-old-price {
  color: #a8a6c4;
  text-decoration: line-through;
  font-size: 0.7rem;
}
.wishlist-dd-drop-badge {
  background: #e8f7ee;
  color: #1f8a4c;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 10px;
}
.wishlist-dd-item.has-drop {
  background: linear-gradient(90deg, rgba(31, 138, 76, 0.06) 0%, transparent 60%);
}
.wishlist-dd-item.is-sold .wishlist-dd-thumb,
.wishlist-dd-item.is-sold .wishlist-dd-title { opacity: 0.55; }
.wishlist-dd-price-sold {
  color: #a8a6c4 !important;
  text-decoration: line-through;
  font-weight: 500;
}
.wishlist-dd-sold-badge {
  background: rgba(255, 160, 0, 0.18);
  color: #b76b00;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 10px;
}
.wishlist-dd-drop-pill {
  background: #e8f7ee;
  color: #1f8a4c;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 10px;
}
.wishlist-dd-footer {
  padding: 10px 14px;
  border-top: 1px solid #f0f0f8;
  background: #fafafd;
}

/* Force language dropdown to open to the left (right-align under trigger).
   Needed because `dropdown-menu-end` doesn't take effect when Popper is
   disabled via `data-bs-popper="none"`. */
.country-selector .dropdown-menu {
  right: -50px !important;
  left: auto !important;
}
