/** Shopify CDN: Minification failed

Line 769:2 Expected ":"

**/
/* =============================================================================
   Premium Header — header.css
   CRO-focused, Shopify OS 2.0 compatible, mobile-first responsive
   ============================================================================= */

/* ─── Helpers ─────────────────────────────────────────────────────────────── */
.ph-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ─── Design Tokens (defaults; overridden via inline style per section) ────── */
:root {
  --ph-bg:              #ffffff;
  --ph-text:            #1a1a1a;
  --ph-nav-bg:          #ffffff;
  --ph-nav-text:        #2d2d2d;
  --ph-nav-hover:       #21283e;
  --ph-search-btn:      #21283e;
  --ph-search-btn-text: #ffffff;
  --ph-icon:            #1a1a1a;
  --ph-badge:           #21283e;
  --ph-logo-w:          140px;
  --ph-logo-w-mobile:   100px;
  --ph-pad-top:         16px;
  --ph-pad-bottom:      16px;
  --ph-search-h:        48px;
  --ph-search-r:        30px;
  --ph-icon-size:       22px;
  --ph-icon-gap:        16px;
  --ph-container:       1400px;
  --ph-border:          #e8e8e8;
  --ph-shadow-sm:       0 2px 8px rgba(0,0,0,.08);
  --ph-shadow-md:       0 8px 32px rgba(0,0,0,.12);
  --ph-radius-sm:       6px;
  --ph-radius-md:       10px;
  --ph-easing:          cubic-bezier(.25,.46,.45,.94);
  --ph-duration:        220ms;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER SHELL
   ═══════════════════════════════════════════════════════════════════════════ */
.ph {
  position: relative;
  z-index: 1000;
  background: var(--ph-bg);
  color: var(--ph-text);
  font-family: inherit;
  border-bottom: 1px solid var(--ph-border);
  transition:
    background   var(--ph-duration) var(--ph-easing),
    box-shadow   var(--ph-duration) var(--ph-easing),
    transform    var(--ph-duration) var(--ph-easing);
}

/* Sticky */
.ph--sticky {
  position: sticky;
  top: 0;
}
.ph--sticky.is-scrolled {
  box-shadow: var(--ph-shadow-sm);
}
.ph--sticky.is-hidden {
  transform: translateY(-100%);
}

/* Transparent (hero pages) */
.ph--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.ph--transparent.is-scrolled {
  position: fixed;
  background: var(--ph-bg);
  border-bottom-color: var(--ph-border);
  box-shadow: var(--ph-shadow-sm);
}

/* ─── Container ───────────────────────────────────────────────────────────── */
.ph-container {
  max-width: var(--ph-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ph-container--fw {
  max-width: 100%;
  padding: 0 32px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ROW 1 — Logo | Search | Icons
   ═══════════════════════════════════════════════════════════════════════════ */
.ph-row--main {
  background: var(--ph-bg);
  padding: var(--ph-pad-top) 0 var(--ph-pad-bottom);
}
.ph-row--main .ph-container,
.ph-row--main .ph-container--fw {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Column proportions */
.ph-col--logo {
  flex: 0 0 auto;
  width: 15%;
  min-width: var(--ph-logo-w);
  display: flex;
  align-items: center;
}
.ph-col--search {
  flex: 1 1 auto;
  min-width: 0;
}
.ph-col--icons {
  flex: 0 0 auto;
  width: 15%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ─── Logo ────────────────────────────────────────────────────────────────── */
.ph-logo__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: var(--ph-radius-sm);
  outline-offset: 4px;
}
.ph-logo__img {
  display: block;
  width: var(--ph-logo-w);
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.ph-logo__text {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ph-text);
  white-space: nowrap;
}

/* ─── Search Bar ──────────────────────────────────────────────────────────── */
.ph-search {
  position: relative;
  width: 100%;
}
.ph-search__form {
  position: relative;
}

/* Pill shape */
.ph-search__pill {
  display: flex;
  align-items: center;
  height: var(--ph-search-h);
  background: #fff;
  border: 1.5px solid var(--ph-border);
  border-radius: var(--ph-search-r);
  overflow: hidden;
  transition:
    border-color var(--ph-duration) var(--ph-easing),
    box-shadow   var(--ph-duration) var(--ph-easing);
}
.ph-search__pill:hover {
  border-color: #21283ec7;
}
.ph-search__pill:focus-within {
  border-color: var(--ph-search-btn);
  box-shadow: 0 0 0 2px #21283e98;
}

.ph-search__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  margin-left:10px;
  height: 100%;
  color: #aaa;
  pointer-events: none;
}
.ph-search__icon {
  display: block;
}

.ph-search__input {
  flex: 1 1 auto;
  height: 100%;
  padding: 0 8px;
  border: none;
  outline: none;
  background: transparent;
  font-size: .9375rem;
  font-family: inherit;
  color: var(--ph-text);
  min-width: 0;
  -webkit-appearance: none;
  appearance: none;
}
.ph-search__input::placeholder {
  color: #b0b0b0;
  font-size: .9rem;
}
.ph-search__input::-webkit-search-cancel-button { display: none; }

.ph-search__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: calc(var(--ph-search-h) - 8px);
  padding: 0 24px;
  margin: 4px 4px 4px 0;
  border: none;
  border-radius: calc(var(--ph-search-r) - 3px);
  background: #21283e;
  color: var(--ph-search-btn-text);
  font-size: 12px;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    filter        var(--ph-duration) ease,
    transform     120ms ease,
    opacity       var(--ph-duration) ease;
}
.ph-search__btn:hover  { filter: brightness(1.08); }
.ph-search__btn:active { transform: scale(.97); }

/* ─── Search Results Dropdown ─────────────────────────────────────────────── */
.ph-search__results {
  display: none !important;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 400;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-md);
  overflow: hidden;
  animation: ph-fadeSlide var(--ph-duration) var(--ph-easing);
}
.ph-search__results[hidden] { display: none; }

.ph-search__results-inner {
  max-height: 480px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ph-search__loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  color: #888;
  font-size: .875rem;
}
.ph-search__loading[hidden] { display: none; }

.ph-search__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--ph-border);
  border-top-color: var(--ph-search-btn);
  border-radius: 50%;
  animation: ph-spin .6s linear infinite;
  flex-shrink: 0;
}

.ph-search__group { padding: 8px 0; }
.ph-search__group:not(:last-child) { border-bottom: 1px solid #f3f3f3; }

.ph-search__group-label {
  display: block;
  padding: 6px 20px 4px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
}

.ph-search__result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--ph-text);
  font-size: .9rem;
  transition: background var(--ph-duration) ease;
  cursor: pointer;
  outline: none;
}
.ph-search__result-item:hover,
.ph-search__result-item[aria-selected="true"] { background: #f8fafb; }

.ph-search__result-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  background: #f5f5f5;
}
.ph-search__result-img-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.ph-search__result-info { flex: 1; min-width: 0; }
.ph-search__result-title {
  display: block;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ph-search__result-title mark {
  background: transparent;
  color: var(--ph-search-btn);
  font-weight: 700;
}
.ph-search__result-price {
  display: block;
  font-size: .8rem;
  color: #777;
  margin-top: 2px;
}
.ph-search__result-vendor {
  font-size: .75rem;
  color: #aaa;
}

.ph-search__view-all {
  display: block;
  padding: 14px 20px;
  text-align: center;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ph-search-btn);
  text-decoration: none;
  border-top: 1px solid #f3f3f3;
  transition: background var(--ph-duration) ease;
}
.ph-search__view-all:hover { background: #f8fafb; }

.ph-search__empty {
  padding: 24px 20px;
  text-align: center;
  color: #888;
  font-size: .9rem;
}

/* ─── Header Icons ────────────────────────────────────────────────────────── */
.ph-icons {
  display: flex;
  align-items: center;
  gap: var(--ph-icon-gap);
}
.ph-icons__item { display: flex; }

.ph-icon {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px;
  color: var(--ph-icon);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: var(--ph-radius-sm);
  transition:
    color      var(--ph-duration) ease,
    background var(--ph-duration) ease;
  -webkit-tap-highlight-color: transparent;
}
.ph-icon:hover {
  color: #21283e;
  background: #21283e18;
}
.ph-icon:focus-visible {
  outline: 2px solid var(--ph-nav-hover);
  outline-offset: 2px;
}

.ph-icon__svg {
  width: var(--ph-icon-size);
  height: var(--ph-icon-size);
  display: block;
  flex-shrink: 0;
}
.ph-icon__label {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .03em;
  white-space: nowrap;
}

/* Cart badge */
.ph-icon__badge-wrap { position: relative; }
.ph-icon__badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ph-badge);
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px;
  border: 2px solid var(--ph-bg);
  transition:
    transform  300ms var(--ph-easing),
    opacity    300ms ease;
}
.ph-icon__badge.is-empty {
  transform: scale(0);
  opacity: 0;
}
@keyframes ph-badge-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  70%  { transform: scale(.9); }
  100% { transform: scale(1); }
}
.ph-icon__badge.is-bumping { animation: ph-badge-bump 400ms var(--ph-easing); }

/* Mobile hamburger hidden on desktop */
.ph-icons__item--mobile { display: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   ROW 2 — Navigation | Trust Badges
   ═══════════════════════════════════════════════════════════════════════════ */
.ph-row--nav {
  background: var(--ph-nav-bg);
  border-top: 1px solid var(--ph-border);
}
.ph-row--nav .ph-container,
.ph-row--nav .ph-container--fw {
  display: flex;
  align-items: stretch;
  min-height: 46px;
}

/* ─── Nav ─────────────────────────────────────────────────────────────────── */
.ph-nav { flex: 1 1 auto; min-width: 0; }


/* Ensure absolutely-positioned dropdowns/mega-menus are never clipped */
.ph-row--nav,
.ph-row--nav .ph-container,
.ph-row--nav .ph-container--fw,
.ph-nav,
.ph-nav__list,
.ph-nav__item { overflow: visible; }


.ph-nav__list {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  position: relative;
}

.ph-nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.ph-nav__item.has-mega {
  position: static;
}

.ph-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 16px;
  height: 100%;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ph-nav-text);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .01em;
  position: relative;
  transition: color var(--ph-duration) ease;
}
.ph-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--ph-nav-hover);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ph-duration) var(--ph-easing);
}
.ph-nav__item:hover > .ph-nav__link,
.ph-nav__link.is-active,
.ph-nav__link:focus-visible {
  color: #21283E;
}
.ph-nav__item:hover > .ph-nav__link::after,
.ph-nav__link.is-active::after { transform: scaleX(1); }

.ph-nav__chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform var(--ph-duration) var(--ph-easing);
}
.ph-nav__item:hover .ph-nav__chevron { transform: rotate(180deg); }

/* ─── Standard Dropdown ───────────────────────────────────────────────────── */
.ph-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-md);
  z-index: 300;
  padding: 8px 0;
  
}


/* Invisible bridge fills the seam between nav item and panel */
.ph-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 8px;
}


.ph-nav__item:hover > .ph-dropdown,
.ph-nav__item:focus-within > .ph-dropdown,
.ph-nav__item.is-open > .ph-dropdown {
 display: block;
 
}

.ph-dropdown__list { list-style: none; margin: 0; padding: 0; }
.ph-dropdown__item { position: relative; }

.ph-dropdown__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-size: 12px;
  color: var(--ph-nav-text);
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--ph-duration) ease,
    color      var(--ph-duration) ease;
}
.ph-dropdown__link:hover,
.ph-dropdown__link.is-active {
  background: #21283e33;
  color: #21283E;
}

/* Level-3 flyout */
.ph-dropdown__sub {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-md);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  z-index: 301;
  
}
.ph-dropdown__item.has-sub:hover > .ph-dropdown__sub,
.ph-dropdown__item.has-sub:focus-within > .ph-dropdown__sub {
 display: block;
  
}
.ph-dropdown__sub-link {
  display: block;
  padding: 9px 20px;
  font-size: 12px;
  color: var(--ph-nav-text);
  text-decoration: none;
  transition: background var(--ph-duration) ease, color var(--ph-duration) ease;
}
.ph-dropdown__sub-link:hover,
.ph-dropdown__sub-link.is-active {
  background: #21283e33;
  color: #21283E;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MEGA MENU
   ═══════════════════════════════════════════════════════════════════════════ */
.mega-menu {
   display: none;
  position: absolute;
 top: 100%;
  left: 50%;
 transform: translateX(-50%);
  width: max(760px, 60vw);
  max-width: calc(var(--ph-container) - 48px);
  background: #fff;
  border: 1px solid var(--ph-border);
  border-radius: var(--ph-radius-md);
  box-shadow: var(--ph-shadow-md);
  z-index: 300;
}
.ph-nav__item:hover > .mega-menu,
.ph-nav__item:focus-within > .mega-menu,
.ph-nav__item.is-open > .mega-menu {
  display: block;
  
}

.mega-menu__inner {
  display: flex;
  gap: 0;
  padding: 28px;
}

/* ─── Link Columns ────────────────────────────────────────────────────────── */
.mega-menu__cols {
  display: flex;
  flex: 1;
  gap: 32px;
  min-width: 0;
}
.mega-menu__col { flex: 1; min-width: 0; }


/* ─── Section (one heading + its items, stacked inside a column) ──────────── */
.mega-menu__section {
  margin-bottom: 24px;
}
.mega-menu__section:last-child {
  margin-bottom: 0;
}

/* Section heading = the sub-link title (e.g. "Theology") */
.mega-menu__section-heading {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ph-text);
  text-decoration: none;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  transition: color .2s ease;
}
.mega-menu__section-heading:hover {
  color: var(--ph-nav-hover);
}

/* ─── Split Column (kept for optional use) ────────────────────────────────── */
.mega-menu__col--split {
  display: flex;
  gap: 24px;
  flex-direction: column;
}

.mega-menu__col-group {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ─── Sub-links (third level, indented beneath a column link) ─────────────── */
.mega-menu__sub-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 6px 10px;
  border-left: 2px solid #f0f0f0;
}

.mega-menu__sub-link {
  display: block;
  padding: 5px 8px;
  font-size: .825rem;
  color: #888;
  text-decoration: none;
  border-radius: 4px;
  transition: color .2s ease, background .15s ease;
}
.mega-menu__sub-link:hover {
  color: var(--ph-nav-hover);
  background: #f8fafb;
}




.mega-menu__col-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
 f color: #aaa;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.mega-menu__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__link {
  display: block;
  padding: 8px 0;
  font-size: .9rem;
  color: var(--ph-nav-text);
  text-decoration: none;
  border-radius: 4px;
  transition:
    color         var(--ph-duration) ease,
    padding-left  var(--ph-duration) var(--ph-easing);
}
.mega-menu__link:hover,
.mega-menu__link.is-active {
  color: #21283E;
  padding-left: 6px;
}

/* ─── Featured Products Panel ─────────────────────────────────────────────── */
.mega-menu__featured-panel {
  flex: 0 0 300px;
  padding-left: 28px;
  border-left: 1px solid #f0f0f0;
  min-width: 0;
}
.mega-menu__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mega-menu__panel-heading {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #aaa;
  margin: 0;
}
.mega-menu__panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ph-nav-hover);
  text-decoration: none;
  transition: gap var(--ph-duration) ease;
}
.mega-menu__panel-cta:hover { gap: 8px; }

.mega-menu__product-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu__product-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ph-text);
  padding: 8px;
  margin: -8px;
  border-radius: var(--ph-radius-sm);
  transition: background var(--ph-duration) ease;
}
.mega-menu__product-card:hover { background: #f8fafb; }

.mega-menu__product-img-wrap {
  flex-shrink: 0;
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.mega-menu__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 300ms var(--ph-easing);
}
.mega-menu__product-card:hover .mega-menu__product-img { transform: scale(1.06); }

.mega-menu__product-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.mega-menu__product-badge {
  position: absolute;
  top: 4px;
  left: 4px;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 2px 5px;
  background: var(--ph-badge);
  color: #fff;
  border-radius: 3px;
}

.mega-menu__product-meta { flex: 1; min-width: 0; }

.mega-menu__product-title {
  font-size: .875rem;
  font-weight: 500;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color var(--ph-duration) ease;
}
.mega-menu__product-card:hover .mega-menu__product-title { color: var(--ph-nav-hover); }

.mega-menu__product-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}
.mega-menu__price {
  font-size: .875rem;
  font-weight: 600;
  color: var(--ph-text);
}
.mega-menu__price.is-sale { color: #c0392b; }
.mega-menu__price-compare {
  font-size: .8rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
}

/* ─── Promo Banner Panel ──────────────────────────────────────────────────── */
.mega-menu__promo-panel {
  flex: 0 0 270px;
  padding-left: 28px;
  border-left: 1px solid #f0f0f0;
  min-width: 0;
}

.mega-menu__promo-card {
  display: block;
  text-decoration: none;
  border-radius: var(--ph-radius-md);
  overflow: hidden;
  position: relative;
  height: 240px;
  background: #f0f0f0;
  transition:
    transform   300ms var(--ph-easing),
    box-shadow  300ms var(--ph-easing);
}
.mega-menu__promo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,.16);
}

.mega-menu__promo-img-wrap { position: absolute; inset: 0; }
.mega-menu__promo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms var(--ph-easing);
}
.mega-menu__promo-card:hover .mega-menu__promo-img { transform: scale(1.04); }

.mega-menu__promo-overlay { position: absolute; inset: 0; }

.mega-menu__promo-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff;
}
.mega-menu__promo-heading {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 4px;
  line-height: 1.3;
}
.mega-menu__promo-subtext {
  font-size: .8rem;
  opacity: .85;
  margin: 0 0 12px;
}
.mega-menu__promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  letter-spacing: .02em;
  transition:
    background var(--ph-duration) ease,
    gap        var(--ph-duration) ease;
}
.mega-menu__promo-card:hover .mega-menu__promo-btn {
  background: rgba(255,255,255,.35);
  gap: 8px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════════════════════════════════════════ */
.ph-trust {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 0 0 24px;
  border-left: 1px solid var(--ph-border);
}
.ph-trust__badge {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}
.ph-trust__svg,
.ph-trust__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ph-nav-hover);
}
.ph-trust__icon { object-fit: contain; }
.ph-trust__text {
  font-size: 10px;
  font-weight: 500;
  color: var(--ph-nav-text);
  line-height: 1.2;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */
.ph-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
}
.ph-drawer[aria-hidden="false"] { pointer-events: auto; }

.ph-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0;
  transition: opacity 300ms ease;
  backdrop-filter: blur(2px);
}
.ph-drawer[aria-hidden="false"] .ph-drawer__overlay { opacity: 1; }

.ph-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(360px, 88vw);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 320ms var(--ph-easing);
  box-shadow: 8px 0 40px rgba(0,0,0,.15);
}
.ph-drawer[aria-hidden="false"] .ph-drawer__panel { transform: translateX(0); }

.ph-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ph-border);
  flex-shrink: 0;
}
.ph-drawer__brand { text-decoration: none; }
.ph-drawer__logo { width: var(--ph-logo-w-mobile); height: auto; display: block; }
.ph-drawer__logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ph-text);
}

.ph-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ph-text);
  flex-shrink: 0;
  transition: background var(--ph-duration) ease;
}
.ph-drawer__close:hover { background: #eee; }
.ph-drawer__close svg { width: 18px; height: 18px; }

/* Drawer search */
.ph-drawer__search {
  padding: 14px 20px;
  border-bottom: 1px solid var(--ph-border);
  flex-shrink: 0;
}
.ph-drawer__search-wrap {
  display: flex;
  align-items: center;
  height: 42px;
  background: #f5f5f5;
  border-radius: 100px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition: border-color var(--ph-duration) ease, background var(--ph-duration) ease;
}
.ph-drawer__search-wrap:focus-within {
  border-color: var(--ph-search-btn);
  background: #fff;
}
.ph-drawer__search-input {
  flex: 1;
  height: 100%;
  padding: 0 14px;
  border: none;
  background: transparent;
  font-size: .9rem;
  font-family: inherit;
  outline: none;
  color: var(--ph-text);
  -webkit-appearance: none;
}
.ph-drawer__search-input::placeholder { color: #b0b0b0; }
.ph-drawer__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 38px;
  border: none;
  background: none;
  color: #999;
  cursor: pointer;
  flex-shrink: 0;
  transition: color var(--ph-duration) ease;
}
.ph-drawer__search-btn:hover { color: var(--ph-nav-hover); }
.ph-drawer__search-btn svg { width: 18px; height: 18px; }

/* Drawer nav */
.ph-drawer__nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.ph-drawer__list { list-style: none; margin: 0; padding: 8px 0; }
.ph-drawer__item { border-bottom: 1px solid #f5f5f5; }

.ph-drawer__item-row { display: flex; align-items: center; }

.ph-drawer__link {
  flex: 1;
  display: block;
  padding: 15px 20px;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ph-nav-text);
  text-decoration: none;
  transition: color var(--ph-duration) ease;
}
.ph-drawer__link.is-active,
.ph-drawer__link:hover { color: var(--ph-nav-hover); }

.ph-drawer__expand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  cursor: pointer;
  color: #bbb;
  transition: color var(--ph-duration) ease;
}
.ph-drawer__expand:hover { color: var(--ph-nav-hover); }
.ph-drawer__expand svg {
  width: 20px;
  height: 20px;
  transition: transform var(--ph-duration) var(--ph-easing);
}
.ph-drawer__expand[aria-expanded="true"] svg { transform: rotate(180deg); }

.ph-drawer__children {
  list-style: none;
  margin: 0;
  padding: 0 0 6px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}
.ph-drawer__children[hidden] { display: none; }

.ph-drawer__child-link {
  display: block;
  padding: 11px 20px 11px 32px;
  font-size: .875rem;
  color: #555;
  text-decoration: none;
  transition:
    color        var(--ph-duration) ease,
    padding-left var(--ph-duration) ease;
}
.ph-drawer__child-link.is-active,
.ph-drawer__child-link:hover {
  color: var(--ph-nav-hover);
  padding-left: 38px;
}

.ph-drawer__grandchildren { list-style: none; margin: 0; padding: 0; }
.ph-drawer__grandchild-link {
  display: block;
  padding: 8px 20px 8px 44px;
  font-size: .8rem;
  color: #777;
  text-decoration: none;
  transition: color var(--ph-duration) ease;
}
.ph-drawer__grandchild-link:hover { color: var(--ph-nav-hover); }

/* Drawer footer */
.ph-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid var(--ph-border);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ph-drawer__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--ph-nav-text);
  text-decoration: none;
  background: #f5f5f5;
  border-radius: var(--ph-radius-sm);
  transition:
    background var(--ph-duration) ease,
    color      var(--ph-duration) ease;
}
.ph-drawer__footer-link:hover {
  background: #edf8f2;
  color: var(--ph-nav-hover);
}
.ph-drawer__footer-link svg { width: 18px; height: 18px; }
.ph-drawer__cart-count { color: #888; font-weight: 400; }

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@keyframes ph-fadeSlide {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Standard nav dropdown */
@keyframes ph-dropFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Level-3 sub-flyout */
@keyframes ph-subFadeIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
/* Mega menu — includes the horizontal centering transform */
@keyframes ph-megaFadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes ph-spin {
  to { transform: rotate(360deg); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Tablet ≤ 1024px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ph-container  { padding: 0 20px; }
  .ph-nav__link  { padding: 0 12px; font-size: .85rem; }
  .ph-trust      { gap: 14px; padding-left: 16px; }
  .ph-trust__text{ font-size: .75rem; }
  .mega-menu     { width: max(600px, 80vw); }
  .mega-menu__featured-panel,
  .mega-menu__promo-panel { flex: 0 0 230px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile ≤ 767px
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  /* Show hamburger */
  .ph-icons__item--mobile { display: flex; }

  /* Simplify row 1 */
  .ph-row--main .ph-container,
  .ph-row--main .ph-container--fw {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .ph-col--logo {
    width: auto;
    min-width: 0;
    flex: 0 0 auto;
  }
  .ph-logo__img { width: var(--ph-logo-w-mobile); }

  /* Move search below header row on mobile */
  .ph-col--search { display: none; }

  .ph-col--icons { width: auto; flex: 1 0 auto; }

  /* Slim down: account + wishlist accessible via drawer */
  .ph-icon--account,
  .ph-icon--wishlist { display: none; }

  /* Hide desktop nav row — navigation is inside mobile drawer */
  .ph-row--nav { display: none; }
}

/* Mobile inline search bar (appended below header by JS) */
.ph-mobile-search-bar {
  padding: 10px 16px 12px;
  background: var(--ph-bg);
  border-top: 1px solid var(--ph-border);
}
.ph-mobile-search-bar .ph-search__pill { height: 42px; }
.ph-mobile-search-bar .ph-search__btn  { padding: 0 16px; font-size: .85rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOCUS & A11Y
   ═══════════════════════════════════════════════════════════════════════════ */
.ph a:focus-visible,
.ph button:focus-visible {
  outline: 2px solid var(--ph-nav-hover);
  outline-offset: 2px;
}

/* Shopify theme editor — keep dropdowns visible when block selected */
.shopify-design-mode .ph-nav__item.has-mega .mega-menu,
.shopify-design-mode .ph-nav__item.has-dropdown .ph-dropdown {
 display: block;
  animation: none;
}







a.ph-nav__link {
    font-size: 14px;
}
a.mega-menu__link {
    font-size: 14px !important;
}

a.mega-menu__sub-link {
    font-size: 12px !important;
}