
.pulse-global-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.pulse-global-topbar {
  overflow: hidden;
  white-space: nowrap;
  background: linear-gradient(90deg, #0874c9 0%, #045ca8 100%);
  color: #fff;
  border-bottom: 4px solid #a8e600;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.pulse-global-topbar-track {
  display: inline-flex;
  min-width: 200%;
  justify-content: space-around;
  gap: 110px;
  padding-inline: 50px;
  font-weight: 700;
  font-size: 16px;
  animation: pulse-global-scroll 26s linear infinite;
}

@keyframes pulse-global-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.pulse-global-header {
  background: #fff;
  border-bottom: 1px solid #dce8ef;
}

.pulse-global-header-inner {
  min-height: 118px;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 30px;
}

.pulse-global-logo,
.pulse-global-footer-logo {
  display: inline-flex;
  align-items: center;
}

.pulse-global-logo-image {
  max-width: 275px;
  max-height: 92px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.pulse-global-logo-text {
  font-size: 28px;
  font-weight: 800;
  color: #0b2942;
}

.pulse-global-nav {
  display: flex;
  justify-content: flex-end;
  gap: 38px;
  flex-wrap: wrap;
}

.pulse-global-nav a {
  color: #182e43;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: none;
}

.pulse-global-nav a:hover {
  color: #a8e600;
}

.pulse-global-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pulse-global-account {
  font-size: 21px;
  text-decoration: none;
}

.pulse-global-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  border: 2px solid #0874c9;
  color: #0874c9;
  text-decoration: none;
}

.pulse-global-cart span {
  position: absolute;
  right: -8px;
  top: -10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #a8e600;
  color: #0b2942;
  font-size: 12px;
  font-weight: 800;
}

.pulse-global-trustbar {
  background: #0b2942;
  color: #fff;
  border-bottom: 3px solid #a8e600;
}

.pulse-global-trustbar .pulse-global-container {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  font-weight: 700;
  font-size: 13px;
}

.pulse-global-trustbar span::before {
  content: "•";
  color: #a8e600;
  margin-right: 8px;
}

.pulse-global-footer {
  margin-top: 60px;
  background: #081f33;
  color: #fff;
  border-top: 4px solid #a8e600;
}

.pulse-global-footer-inner {
  padding: 28px 0 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 40px;
  align-items: start;
}

.pulse-global-footer-logo .pulse-global-logo-image {
  max-width: 230px;
  max-height: 88px;
}

.pulse-global-footer-brand p {
  margin: 8px 0 0;
  color: #c7d4df;
  font-size: 15px;
  line-height: 1.6;
}

.pulse-global-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-end;
}

.pulse-global-footer-nav a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.pulse-global-footer-nav a:hover {
  color: #a8e600;
}

.pulse-global-footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 12px;
  color: #a9bdcb;
  font-size: 15px;
}

@media (max-width: 980px) {
  .pulse-global-header-inner {
    grid-template-columns: 1fr auto;
  }

  .pulse-global-nav {
    grid-column: 1 / -1;
    justify-content: center;
    padding-bottom: 22px;
    gap: 20px;
  }

  .pulse-global-trustbar .pulse-global-container {
    flex-wrap: wrap;
    padding: 12px 0;
    gap: 16px 28px;
  }
}

@media (max-width: 620px) {
  .pulse-global-container {
    width: min(100% - 24px, 1180px);
  }

  .pulse-global-logo-image {
    max-width: 190px;
  }

  .pulse-global-nav {
    display: grid;
    grid-template-columns: repeat(3, auto);
  }

  .pulse-global-footer-inner {
    grid-template-columns: 1fr;
  }

  .pulse-global-footer-nav {
    justify-content: flex-start;
  }
}
