html,
body {
  background: #f8dc3b;
  overflow-x: hidden;
}

.topbar {
  background: #f6d832 !important;
  box-shadow: none !important;
}

.topbar .left-header {
  position: relative;
  z-index: 3;
  min-width: 48px;
  overflow: visible;
}

.topbar .right-header {
  position: relative;
  z-index: 3;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.main-content {
  margin-top: 0 !important;
}

.stores-header-back {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  color: #111;
  animation: storesBounceLeft 2s infinite;
  z-index: 4;
}

.stores-header-back svg {
  width: 18px;
  height: 18px;
  display: block;
}

.stores-header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: inherit;
  text-decoration: none;
  line-height: 0;
}

.stores-header-link img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@media (min-width: 1025px) {
  .topbar {
    min-height: 90px;
    padding: 18px 32px;
  }

  .topbar .left-header,
  .topbar .right-header {
    flex: 0 0 88px;
    min-width: 88px;
  }

  .topbar .right-header {
    padding-right: 0;
  }

  .logo-header {
    height: 80px;
    width: auto;
    max-width: min(calc(100vw - 220px), 980px);
    object-fit: contain;
  }

  .stores-header-back {
    left: 18px;
  }
}

@keyframes storesBounceLeft {
  0%, 20%, 50%, 80%, 100% { transform: translateY(-50%) translateX(0); }
  40% { transform: translateY(-50%) translateX(-8px); }
  60% { transform: translateY(-50%) translateX(-4px); }
}


.footer-zone {
  background: #f8dc3b;
}

.footer-zone .socials img {
  filter: brightness(0) contrast(160%);
}

footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: left;
  font-size: 10px;
  margin-top: 0;
  margin-bottom: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
  overflow: hidden;
}

footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-sections.row {
  --bs-gutter-x: 0;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-sections strong {
  display: block;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

footer .footer-sections .col-6,
footer .footer-sections .col-md-3 {
  text-align: center;
}

footer .footer-sections a {
  color: #fff;
  text-decoration: none;
  display: table;
  margin: 5px auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  position: relative;
}

footer .footer-sections a[data-i18n="footer_help_returns"] {
  white-space: nowrap;
}

footer .footer-sections a[data-i18n="footer_gift_card_terms"] {
  white-space: nowrap;
}

footer .footer-sections a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

footer .footer-sections a:hover::after,
footer .footer-sections a.footer-link-active::after {
  transform: scaleX(1);
}

footer .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 8px;
}

footer .footer-bottom > div:first-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
}

footer .footer-lang {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer-lang span {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

footer .footer-lang .lang-separator {
  opacity: 0.85;
}

footer .footer-lang span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

footer .footer-lang span:hover::after,
footer .footer-lang span.lang-active::after {
  transform: scaleX(1);
}

@media (max-width: 825px) {
  footer {
    padding: 34px 16px 22px;
  }

  footer > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  footer .footer-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    max-width: 520px;
    margin: 0 auto;
    padding: 0 12px;
  }

  footer .footer-sections .col-6,
  footer .footer-sections .col-md-3 {
    padding: 0 4px;
  }

  footer .footer-sections strong {
    font-size: 14px;
  }

  footer .footer-sections a {
    margin: 5px auto;
    padding: 0 8px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
  }

  footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    align-items: center;
    margin-top: 30px !important;
    padding-top: 16px;
  }

  footer .footer-lang {
    justify-content: flex-end;
  }

  footer .footer-sections,
  .footer-zone footer .footer-cols {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
  }

  footer .footer-sections .col-6,
  footer .footer-sections .col-md-3,
  .footer-zone footer .footer-col {
    padding: 0 2px !important;
    text-align: center !important;
  }
}

@media (max-width: 430px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  footer .footer-lang {
    justify-content: center;
  }

  footer .footer-sections,
  .footer-zone footer .footer-cols {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 92vw !important;
    gap: 32px 20px !important;
    padding: 0 12px !important;
    transform: scale(0.92);
    transform-origin: top center;
  }

  footer .footer-sections a,
  footer .footer-sections button {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}

#places-map {
  background: #f8dc3b;
  padding: 180px 16px 180px;
  position: relative;
  overflow-x: hidden;
}

#places-map h1 {
  font-size: 21px;
  margin-top: 20px;
  text-align: center;
}

#places-map .wu-logo {
  display: none;
  height: 62px;
  width: 181px;
}

#places-map img {
  height: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

#places-map .map {
  position: relative;
  width: min(100%, 1040px);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

#places-map .map-pins {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
}

#places-map .map-location-marker {
  background: url(https://jeffbridgforth.com/codepen/map-pin.png) no-repeat;
  cursor: pointer;
  position: absolute;
  height: 30px;
  margin-top: -30px;
  margin-left: -11px;
  width: 21px;
  z-index: 3;
}

#places-map .map-location-marker:hover,
#places-map .map-location-marker.marker-active {
  z-index: 60;
}

#places-map .marker-los-angeles {
  left: 10%;
  top: 35%;
  animation-delay: 0s;
}

#places-map .marker-new-york {
  left: 22%;
  top: 28%;
  animation-delay: 0.05s;
}

#places-map .marker-madrid {
  left: 43%;
  top: 30%;
  animation-delay: 0.1s;
}

#places-map .marker-barcelona {
  left: 45%;
  top: 28%;
  animation-delay: 0.15s;
}

#places-map .marker-paris {
  left: 48%;
  top: 25%;
  animation-delay: 0.2s;
}

#places-map .marker-berlin {
  left: 50%;
  top: 22%;
  animation-delay: 0.25s;
}

#places-map .marker-milan {
  left: 51%;
  top: 30%;
  animation-delay: 0.3s;
}

#places-map .marker-london {
  left: 44%;
  top: 23%;
  animation-delay: 0.35s;
}

#places-map .marker-argentina {
  left: 29.5%;
  bottom: 21.5%;
  animation-delay: 0.4s;
}

#places-map .marker-dubai {
  left: 64%;
  top: 42%;
  animation-delay: 0.5s;
}

#places-map .marker-singapore {
  left: 79%;
  bottom: 42%;
  animation-delay: 0.55s;
}

#places-map .marker-tokyo {
  left: 87%;
  top: 35%;
  animation-delay: 0.6s;
}

#places-map .marker-sydney {
  bottom: 14%;
  right: 7.5%;
  animation-delay: 0.65s;
}

#places-map .map-location-marker::after {
  animation: pulsate 2s ease-in-out infinite;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 30px;
  content: "";
  display: block;
  height: 31px;
  left: -7px;
  opacity: 0;
  position: absolute;
  top: -8px;
  transition: all 0.25s linear;
  width: 31px;
  z-index: 2;
}

#map-info {
  background: #000;
  color: #fff;
  position: absolute;
  width: 120px;
  padding: 4px 6px;
  box-sizing: border-box;
  border-radius: 3px;
  font-size: 11px;
  line-height: 1.1;
  text-align: center;
  z-index: 100;
  pointer-events: none;
  white-space: normal;
  transform: translate(-50%, 8px);
}

#map-info h1 {
  font-size: 14px;
  margin: 0;
  font-weight: bold;
}

#map-info p {
  font-size: 12px;
  line-height: 1.1;
  margin: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
  color: #ffdf1c;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes pulsate {
  0% {
    transform: scale(0.2);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@media (max-width: 599px) {
  #places-map .marker-san-francisco {
    left: 6%;
    top: 32%;
  }
}

@media (min-width: 600px) {
  #places-map h1 {
    font-size: 35px;
    margin-top: 33px;
  }
}

@media (min-width: 768px) {
  #map-info {
    margin-left: 0;
    margin-top: 0;
  }

  #map-info.san-francisco {
    left: 11%;
    top: 23%;
  }

  #map-info.denver {
    left: 16%;
    top: 21.5%;
  }

  #map-info.argentina {
    left: 32.5%;
    bottom: 0;
    top: auto;
  }

  #map-info.argentina::before {
    top: 152px;
  }

  #map-info.costa-rica {
    bottom: 5%;
    left: 20%;
    top: auto;
  }

  #map-info.costa-rica::before {
    top: 45px;
  }

  #map-info.peterborough {
    top: 12.5%;
    left: 48%;
  }

  #map-info.vilnius {
    top: 10.5%;
    left: 54.5%;
  }

  #map-info.dubai {
    top: 35%;
    left: 66.5%;
  }

  #map-info.singapore,
  #map-info.manila,
  #map-info.sydney {
    left: auto;
    top: auto;
  }

  #map-info.singapore {
    bottom: 0;
    right: 24%;
  }

  #map-info.manila {
    bottom: 1.75%;
    right: 18.5%;
  }

  #map-info.sydney {
    right: 11.5%;
    bottom: 0;
  }

  #map-info.singapore::before,
  #map-info.manila::before,
  #map-info.sydney::before {
    border-width: 13px 0 13px 16px;
    border-color: transparent transparent transparent #000;
    left: auto;
    right: -16px;
  }

  #map-info.singapore::before {
    top: 55px;
  }

  #map-info.sydney::before {
    bottom: 50px;
  }
}

@media (min-width: 960px) {
  #places-map .wu-logo {
    background: url(https://jeffbridgforth.com/codepen/wu-logo.jpg) no-repeat;
    display: block;
    position: absolute;
    bottom: 30px;
    left: 32px;
  }

  #map-info {
    width: 284px;
  }
}

@media (min-width: 1400px) {
  #places-map .wu-logo {
    left: 50%;
    margin-left: -700px;
  }
}

/* ── Header móvil ──────────────────────────────────────── */
@media (max-width: 600px) {
  .topbar {
    height: 70px !important;
    padding: 12px 14px 8px !important;
  }

  .topbar .left-header,
  .topbar .right-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    min-width: 28px;
  }

  .topbar .left-header {
    overflow: visible;
  }

  .topbar .right-header {
    gap: 0;
    padding-right: 0;
  }

  .topbar.shrink {
    height: 54px !important;
    padding: 4px 12px !important;
  }

  .logo-header {
    height: 40px !important;
    max-width: calc(100% - 96px);
  }

  .topbar.shrink .logo-header {
    height: 28px !important;
  }

  .stores-header-back {
    left: 2px;
    width: 22px;
    height: 22px;
  }

  .stores-header-back svg {
    width: 18px;
    height: 18px;
  }

  .stores-header-link,
  .stores-header-link img {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-button {
    display: inline-block;
    width: 18px;
    height: 14px;
    overflow: visible;
    transform: scale(0.78);
    transform-origin: center;
  }

  .mobile-menu-button span {
    height: 2px;
    transform-origin: center;
  }

  .mobile-menu-button span:nth-child(1) {
    top: 0;
  }

  .mobile-menu-button span:nth-child(2) {
    top: 6px;
  }

  .mobile-menu-button span:nth-child(3) {
    top: auto;
    bottom: 0;
  }

  .mobile-menu-button.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
  }

  .mobile-menu-button.active span:nth-child(2) {
    width: 0%;
    opacity: 0;
    left: 0;
  }

  .mobile-menu-button.active span:nth-child(3) {
    top: auto;
    bottom: 6px;
    transform: rotate(-45deg);
  }

  .main-content {
    margin-top: 60px !important;
  }

  #places-map {
    padding: 40px 12px 72px;
  }

  #places-map .map {
    width: calc(100vw - 24px);
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .footer-zone footer .footer-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 12px;
  }
  .footer-zone footer .footer-sections .col-6,
  .footer-zone footer .footer-sections .col-md-3 {
    padding: 0 4px;
    text-align: center;
  }
}
