@media (max-width: 767px) {
/* MOBILE UTILITIES CONTAINER 😎📱 */
/* =====================================================
   MOBILE HEADER UTILITIES 😎📱
===================================================== */

.header-custom-mobile-data {
  display: flex;
  align-items: flex-start;   /* 👈 aligns text nicely */
  gap: 14px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.15;
  flex-wrap: nowrap;        /* 👈 prevents stacking */
}

/* Buttons behave like header utilities Prevent weird stretching*/
.header-custom-mobile-data > * {
  flex: 0 0 auto;           /* 👈 prevents stretch */
}

.custom-hd-buttons-hlb-mb,
.custom-hd-buttons-ro-mb,
.custom-wpml-dropdown {
  width: auto !important;
}


/* =========================
   SHIPPING BUTTON
========================= */

.custom-hd-buttons-hlb-mb {
  display: flex;
  flex-direction: column;
  max-width: 140px;          /* 👈 prevents overflow madness */
}

.custom-hd-buttons-hlb-mb .child-hlb-mb:first-child {
  font-size: 11px;
  opacity: 0.7;
}

.custom-hd-buttons-hlb-mb .child-hlb-mb:last-child {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* =========================
   RETURNS & ORDERS
========================= */

.custom-hd-buttons-ro-mb {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.custom-hd-buttons-ro-mb .child-ro-mb:first-child {
  font-size: 11px;
  opacity: 0.7;
}

.custom-hd-buttons-ro-mb .child-ro-mb:last-child {
  font-weight: 600;
  white-space: nowrap;
}

/* =========================
   WPML
========================= */

.custom-wpml-dropdown {
  display: flex;
  align-items: center;
  gap: 4px;    
  left: 25px; /*Move right*/
  top: 7.5px; /*Move down*/
  font-size: 13px;
  position: relative;
}




/* =====================================================
   MOBILE WPML DROPDOWN 😎
===================================================== */

.custom-wpml-dropdown img {
  width: 18px;
  height: auto;
}

.wpml-current {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.wpml-list {
  display: none;
  position: absolute;
  top: 28px;
  left: 0;
  background: white;
  padding: 6px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  z-index: 9999;
}

.wpml-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  text-decoration: none;
  color: inherit;
}
}
