/* HEADER WRAP -------------------------------------------------- */

/* base: sticky container */
.shell-header-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-bottom: 8px;
}

/* --- MOBILE FIRST (default layout) ---------------------------- */

header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 8px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

/* hide everything except the App Store button */
.brand,
.pill,
.nav-links {
  display: none !important;
}

.header-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* --- APP STORE BADGE (clean pill) ----------------------------- */

.nav-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid #000;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-store-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

/* Apple icon */
.nav-store-icon {
  font-size: 22px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

/* text stack */
.nav-store-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

/* "Download on the" */
.nav-store-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 2px;
}

/* "App Store" */
.nav-store-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* --- DESKTOP / LARGE SCREENS ---------------------------------- */
/* On desktop we keep the same minimal layout, just slightly bigger button */

@media (min-width: 769px) {
  header {
    justify-content: center;
    margin-bottom: 24px;
    padding: 10px 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .header-nav {
    justify-content: center;
  }

  .nav-store-btn {
    padding: 10px 26px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.55);
  }

  .nav-store-eyebrow {
    font-size: 10px;
  }

  .nav-store-label {
    font-size: 15px;
  }
}
