/** Shopify CDN: Minification failed

Line 89:15 Expected identifier but found whitespace
Line 89:21 Unexpected "!"
Line 103:0 Unexpected "}"

**/
/* ========== BASE HEADER ========== */
.hims-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  width: 100%;
}

.hims-header__container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ========== DESKTOP WRAPPER ========== */
.hims-header__desktop-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-height: 80px;
  width: 100%;
}
@media (min-width: 901px) {
  .hims-header__desktop-wrapper .hims-header__logo {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    margin: 10px !important;
    padding-left: 0 !important;
    height: auto !important; /* ← CHANGED */
    min-height: 50px !important; /* ← ADDED to keep container size */
    display: flex !important;
    align-items: center !important;
    z-index: 2000 !important;
    background: #fff !important;
    box-shadow: none !important;
    padding: 10px !important; /* ← ADDED for breathing room */
  }
  
  /* Force the IMAGE itself to be small */
  .hims-header__desktop-wrapper .hims-header__logo .logo-image {
    height: 28px !important;
    max-height: 28px !important;
    width: auto !important;
    object-fit: contain !important;
  }
  
  .hims-header__desktop-wrapper .hims-header__actions {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding-right: 0 !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    z-index: 2000 !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  
  .hims-header__desktop-wrapper .hims-header__nav {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 80px !important;
    width: 100vw !important;
    position: relative !important;
    z-index: 1000 !important;
    background: transparent !important;
  }
}

    background: #fff !important;
    box-shadow: none !important;
  }
  .hims-header__desktop-wrapper .hims-header__nav {
    margin: 0 auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 80px !important;
    width: 100vw !important;
    position: relative !important;
    z-index: 1000 !important;
    background: transparent !important;
  }
}

/* ========== LOGO ========== */
.logo-image {
  height: 56px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ========== DESKTOP NAVIGATION ========== */
.hims-header__nav {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hims-nav__list {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: -0.05em;
}

.hims-nav__item {
  position: relative;
}

.hims-nav__link {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: block;
  white-space: nowrap;
  background: none;
  border: none;
  font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: -0.05em;
}

.hims-nav__link:hover {
  background-color: #f8f8f8;
  color: #000;
}

.shop-button {
  color: #B4A488 !important;
  font-weight: 700 !important;
  font-size: 18px !important;
}

.shop-button:hover {
  background-color: #f8f8f8 !important;
  color: #B4A488 !important;
}

/* ========== DESKTOP ACTIONS ========== */
.hims-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.chat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #000;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.chat-icon:hover {
  background-color: #f8f8f8;
}

.hims-header__hamburger {
  display: flex;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hims-header__hamburger:hover {
  background-color: #f8f8f8;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* ========== MOBILE WRAPPER ========== */
@media (max-width: 900px) {
  .hims-header__desktop-wrapper {
    display: none !important;
  }
  .hims-header__mobile-wrapper {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }
}

/* ========== MOBILE LAYER 1 ========== */
@media (max-width: 900px) {
  .hims-header__top-layer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 0 8px;
    background: #fff;
    position: relative;
    z-index: 2;
  }
  .hims-header__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }
  .logo-image {
    height: 46px;
    max-width: 140px;
  }
  .hims-header__mobile-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mobile-chat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #000;
    border-radius: 16px;
    transition: background 0.2s;
  }
  .mobile-chat-icon:hover {
    background: #f8f8f8;
  }
  .hims-header__mobile-hamburger {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    gap: 3px;
    border-radius: 4px;
    transition: background 0.2s;
  }
  .hims-header__mobile-hamburger:hover {
    background: #f8f8f8;
  }
  .hims-header__mobile-hamburger .hamburger-line {
    width: 20px;
    height: 2px;
    background: #000;
  }
}

/* ========== MOBILE LAYER 2 ========== */
@media (max-width: 900px) {
  .hims-header__bottom-nav {
    width: 100%;
    background: #fff;
    padding: 4px 0 6px 0;
    border: none;
    display: flex;
    justify-content: center;
  }
  .hims-bottom-nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0 8px;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: -0.05em;
  }
  .hims-bottom-nav__link {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 4px 8px;
    white-space: nowrap;
    display: block;
    background: none;
    border: none;
  }
  .hims-bottom-nav__link.shop-button {
    color: #B4A488 !important;
    font-size: 18px;
  }
}

/* ========== MOBILE XS ========== */
@media (max-width: 480px) {
  .logo-image {
    height: 38px;
    max-width: 110px;
  }
  .hims-header__top-layer {
    height: 44px;
    padding: 0 4px;
  }
  .hims-header__mobile-actions {
    gap: 8px;
  }
  .mobile-chat-icon {
    width: 28px;
    height: 28px;
  }
  .hims-bottom-nav__list {
    gap: 10px;
    padding: 0 4px;
  }
  .hims-bottom-nav__link {
    font-size: 15px;
    padding: 3px 6px;
  }
  .hims-bottom-nav__link.shop-button {
    font-size: 16px;
  }
}
/* Hide mobile wrapper on desktop, show only on mobile */
.hims-header__mobile-wrapper {
  display: none !important;
}

@media (max-width: 900px) {
  .hims-header__mobile-wrapper {
    display: flex !important;
    flex-direction: column;
    width: 100%;
  }
}
