/** Shopify CDN: Minification failed

Line 190:0 Unexpected "}"

**/
/* ================================================
   GIFT HUB MART – Custom Header Styles
   File: assets/gifthub-header.css
   ================================================ */

/* ── TOP ORANGE BAR ── */
.ghm-top-bar {
  background: linear-gradient(90deg, #D4820A 0%, #E8940C 50%, #D4820A 100%);
  height: 25px;
  width: 100%;
}

/* ── MAIN HEADER ── */
.ghm-header {
  background: #FAFAF8;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* ── BRAND / LOGO ── */
.ghm-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ghm-brand a { text-decoration: none; }
.ghm-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: -10px;
}
.ghm-logo-text {
  font-size: 26px;
  font-weight: 900;
  color: #2E7D32;
}
.ghm-tagline {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #888;
  text-transform: uppercase;
}

/* ── ICONS ROW ── */
.ghm-icons-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}
.ghm-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  flex: 1;
  padding: 6px 4px;
  border-radius: 12px;
  transition: background 0.2s;
}
.ghm-icon-btn:hover { background: #f5f0e8; }
.ghm-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s, transform 0.2s;
}
.ghm-icon-btn:hover .ghm-icon-wrap {
  background: #fff0cc;
  transform: scale(1.08);
}
.ghm-icon-label {
  font-size: 10px;
  font-weight: 600;
  color: #444;
}
.ghm-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  background: #D4820A;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #FAFAF8;
}

/* ── PILL BUTTONS ── */
.ghm-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex: 1;
  transition: opacity 0.2s;
}
.ghm-pill:hover { opacity: 0.88; }
.ghm-pill--green {
  background: #123930;
  color: #fff;
  box-shadow: 0 3px 10px rgba(46,125,50,0.3);
}

/* ── SEARCH BAR ── */
.ghm-search-bar {
  width: 100%;
  display: flex;
  align-items: center;
  background: #f2f2f0;
  border-radius: 30px;
  padding: 0 6px 0 16px;
  border: 1.5px solid #e0e0dc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ghm-search-bar:focus-within {
  border-color: #D4820A;
  box-shadow: 0 0 0 3px rgba(212,130,10,0.12);
}
.ghm-search-bar input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  color: #1a1a1a;
  padding: 11px 0;
  outline: none;
  font-family: inherit;
}
.ghm-search-bar input::placeholder { color: #bbb; }
.ghm-search-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #D4820A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.ghm-search-btn:hover { background: #B56A05; }

/* ── GREEN CATEGORY BAR ── */
.ghm-cat-bar {
  background: #123930;
  padding: 10px 6px;
  overflow-x: auto;
  display: flex;
  gap: 4px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

}
.ghm-cat-bar::-webkit-scrollbar { display: none; }
.ghm-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 64px;
  text-decoration: none;
  transition: background 0.2s;
}
.ghm-cat-item:hover,
.ghm-cat-active { background: rgba(255,255,255,0.25); }
.ghm-cat-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1; /* FIX 2: icon vertical alignment */
  transition: transform 0.2s;
}
.ghm-cat-item:hover .ghm-cat-icon { transform: scale(1.1); }
.ghm-cat-label {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

/* ── Hide original Shopify header ── */
.shopify-section-header { display: none !important; }
#shopify-section-header { display: none !important; }

/* ================================================
   DESKTOP STYLES (768px and above)
   ================================================ */
@media (min-width: 768px) {
  .ghm-top-bar { height: 32px; }

  .ghm-header {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    gap: 20px;
    max-width: 100%;
  }

  .ghm-brand { flex-shrink: 0; }

  .ghm-logo-img {
    height: 60px;
    margin-bottom: -8px;
  }

  .ghm-tagline { font-size: 8px; }

  .ghm-icons-row {
    flex: 1;
    max-width: 500px;
    justify-content: flex-end;
    gap: 12px;
    padding: 0;
  }

  .ghm-pill {
    flex: 0 0 auto;
    padding: 10px 20px;
    font-size: 14px;
  }

  .ghm-icon-btn { flex: 0 0 auto; }

  .ghm-search-bar {
    flex: 1;
    max-width: 400px;
  }

  .ghm-cat-bar {
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 40px;
    overflow-x: visible;
    flex-wrap: nowrap;
  }

  .ghm-cat-item {
    min-width: auto;
    padding: 8px 16px;
  }

  .ghm-cat-icon {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }

  .ghm-cat-label { font-size: 10px; }
}

/* ================================================
   STICKY HEADER - DESKTOP
   ================================================ */
@media (min-width: 768px) {
  .ghm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FAFAF8;
  }

  .ghm-cat-bar {
    position: fixed;
    top: 102px; /* FIX 1: was 90px, increased to clear header */
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 1px solid #fff;
  }

  body {
    padding-top: 170px;
  }
}

/* ================================================
   STICKY HEADER - MOBILE
   ================================================ */
@media (max-width: 767px) {
  .ghm-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #FAFAF8;
  }

  .ghm-cat-bar {
    display: flex !important;
    position: fixed;
    top: 190px;
    left: 0;
    right: 0;
    z-index: 1001;
    overflow-x: auto;
    padding: 8px 6px;
    background: #123930;
  }

  body {
    padding-top: 260px;
  }

  .video-hero {
    width: 100%;
    overflow: visible;
    height: auto;
  }

  .video-hero video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
}
