.shop-site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  color: #172033;
  background: #fff;
  box-shadow: 0 4px 18px rgba(15, 31, 62, 0.08);
}

.shop-header-top {
  color: #fff;
  background: #0d1b4c;
}

.shop-header-top__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.shop-header-top p,
.shop-header-top a {
  margin: 0;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.shop-header-main {
  border-bottom: 1px solid #e5eaf0;
  background: #fff;
}

.shop-header-main__inner {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.25rem);
  align-items: center;
  min-height: 104px;
}

.shop-header-logo {
  display: inline-flex;
  align-items: center;
}

.shop-header-logo img {
  display: block;
  width: clamp(160px, 16vw, 220px);
  height: auto;
}

.shop-header-search {
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 2px solid #cbd8e6;
  border-radius: 999px;
  background: #fff;
}

.shop-header-search:focus-within {
  border-color: #0058a9;
  box-shadow: 0 0 0 4px rgba(0, 88, 169, 0.11);
}

.shop-header-search input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 0.75rem 1rem 0.75rem 1.2rem;
  border: 0;
  outline: 0;
  color: #172033;
  font: inherit;
  font-size: 0.95rem;
  background: transparent;
}

.shop-header-search button {
  display: inline-flex;
  min-width: 110px;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0 1rem;
  border: 0;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  background: #0058a9;
}

.shop-header-search button:hover {
  background: #003f7e;
}

.shop-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shop-header-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #172033;
  text-decoration: none;
  white-space: nowrap;
}

.shop-header-action__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  align-items: center;
  justify-content: center;
  color: #0058a9;
  border: 1px solid #d5e1ed;
  border-radius: 50%;
  background: #edf4fb;
}

.shop-header-action small,
.shop-header-action strong {
  display: block;
}

.shop-header-action small {
  color: #6b7280;
  font-size: 0.7rem;
  line-height: 1.1;
}

.shop-header-action strong {
  margin-top: 0.12rem;
  font-size: 0.84rem;
  line-height: 1.2;
}

.shop-header-menu-toggle {
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 0.9rem;
  color: #fff;
  font: inherit;
  font-weight: 800;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  background: #0d1b4c;
}

.shop-header-nav {
  background: #fff;
}

.shop-header-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  min-height: 50px;
}

.shop-header-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.72rem;
  color: #172033;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 8px;
}

.shop-header-nav a:hover,
.shop-header-nav a:focus-visible {
  color: #0058a9;
  background: #edf4fb;
}

.shop-header-nav a[aria-current="page"] {
  color: #fff;
  background: #0d1b4c;
}

.shop-mobile-nav {
  border-top: 1px solid #e5eaf0;
  background: #fff;
}

.shop-mobile-nav__inner {
  display: grid;
  gap: 0.4rem;
  padding-top: 0.8rem;
  padding-bottom: 1rem;
}

.shop-mobile-nav a {
  display: block;
  padding: 0.8rem 0.9rem;
  color: #172033;
  font-weight: 800;
  text-decoration: none;
  border-radius: 9px;
  background: #f5f7fa;
}

.shop-mobile-nav a[aria-current="page"] {
  color: #fff;
  background: #0d1b4c;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1120px) {
  .shop-header-main__inner {
    grid-template-columns: auto minmax(220px, 1fr) auto;
  }

  .shop-header-action:first-of-type {
    display: none;
  }

  .shop-header-nav a {
    padding-right: 0.52rem;
    padding-left: 0.52rem;
    font-size: 0.76rem;
  }
}


/* =========================================================
   MOBILE HEADER
   Larger text only on mobile/tablet
   ========================================================= */

@media (max-width: 860px) {
  .shop-header-top__inner {
    justify-content: center;
  }

  .shop-header-top__inner p {
    display: none;
  }

  .shop-header-main__inner {
    grid-template-columns: 1fr auto;
    min-height: 92px;
  }

  .shop-header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 0.9rem;
  }

  .shop-header-search input {
    min-height: 54px;
    padding: 0.9rem 1rem 0.9rem 1.2rem;
    font-size: 1.05rem;
  }

  .shop-header-search input::placeholder {
    font-size: 1rem;
  }

  .shop-header-search button {
    font-size: 1rem;
  }

  .shop-header-actions .shop-header-action {
    display: none;
  }

  .shop-header-menu-toggle {
    display: inline-flex;
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .shop-header-nav {
    display: none;
  }

  .shop-mobile-nav__inner {
    gap: 0.5rem;
    padding-top: 0.9rem;
    padding-bottom: 1.1rem;
  }

  .shop-mobile-nav a {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.25;
  }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 520px) {
  .shop-header-main__inner {
    gap: 0.9rem;
  }

  .shop-header-logo img {
    width: 165px;
  }

  .shop-header-search input {
    min-height: 56px;
    padding-left: 1rem;
    font-size: 1.05rem;
  }

  .shop-header-search input::placeholder {
    font-size: 1rem;
  }

  .shop-header-search button {
    min-width: 58px;
    padding: 0 0.9rem;
    font-size: 1.05rem;
  }

  .shop-header-menu-toggle {
    min-width: 50px;
    min-height: 50px;
    padding: 0.7rem 0.85rem;
    font-size: 1.1rem;
  }

  .shop-header-search button span:last-child,
  .shop-header-menu-toggle span:last-child {
    display: none;
  }

  .shop-mobile-nav a {
    padding: 1.05rem 1rem;
    font-size: 1.05rem;
    line-height: 1.3;
  }
}


/* =========================================================
   SHOP HEADER — SUMMER SALE ANNOUNCEMENT BAR
   ========================================================= */

.shop-header-top--summer {
  color: #4a2b00;
  background: linear-gradient(
    135deg,
    #ffe36e 0%,
    #f6ad45 100%
  );
  box-shadow: inset 0 -1px 0 rgba(131, 74, 0, 0.14);
}

.shop-header-top__inner--summer {
  min-height: 42px;
  justify-content: center;
}

.shop-summer-promo {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: #4a2b00;
  text-decoration: none;
  text-align: center;
}

.shop-summer-promo strong {
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.shop-summer-promo span {
  font-size: 0.88rem;
  font-weight: 800;
}

.shop-summer-promo b {
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.shop-summer-promo:hover b,
.shop-summer-promo:focus-visible b {
  text-decoration: underline;
}

.shop-summer-promo:focus-visible {
  outline: 2px solid #4a2b00;
  outline-offset: 3px;
}


/* =========================================================
   SUMMER SALE BAR — MOBILE
   Larger text on phones only
   ========================================================= */

@media (max-width: 620px) {
  .shop-header-top__inner--summer {
    min-height: 58px;
  }

  .shop-summer-promo {
    min-height: 58px;
    flex-wrap: wrap;
    gap: 0.2rem 0.65rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.25;
  }

  .shop-summer-promo strong {
    width: 100%;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .shop-summer-promo span {
    font-size: 0.95rem;
  }

  .shop-summer-promo b {
    font-size: 0.88rem;
  }
}