/** Shopify CDN: Minification failed

Line 833:0 Expected "}" to go with "{"

**/
/* ================================================================
   Homelife CPT — Huckberry UI Spec Implementation
   Font: Inter (sans-serif, NOT serif)
   Colors: #111111 / #FFFFFF / #666666 / #F5F5F5
   Border-radius: 0px or 4px
   Shadow: none
   ================================================================ */

/* ── Design Tokens ── */
:root {
  --hb-black:   #111111;
  --hb-white:   #ffffff;
  --hb-mid:     #666666;
  --hb-light:   #f5f5f5;
  --hb-border:  rgba(0,0,0,0.08);
  --hb-font:    'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing scale */
  --sp-1: 8px;
  --sp-2: 16px;
  --sp-3: 24px;
  --sp-4: 32px;
  --sp-5: 48px;
  --sp-6: 64px;
  --sp-7: 96px;
  --sp-8: 128px;
}

/* ── Global reset ── */
.shopify-section { margin-bottom: 0; }

body,
body * {
  font-family: var(--hb-font) !important;
}

/* ================================================================
   ANNOUNCEMENT BAR — height ~40px, dark background
   ================================================================ */
.utility-bar,
.announcement-bar {
  background-color: var(--hb-black) !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  min-height: 40px !important;
}

.announcement-bar__message,
.announcement-bar__message a {
  color: var(--hb-white) !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  font-weight: 400 !important;
  text-transform: none !important;
}

/* ================================================================
   HEADER — Sticky group
   Default: white background on all pages
   Homepage only: transparent overlay that fuses with hero
   ================================================================ */

/* Entire header group (announcement bar + header) sticks to top together */
.shopify-section-group-header-group {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
}

/* Let Dawn's section-header sit in normal flow inside the sticky group */
.section-header,
.section-header.shopify-section-header-sticky {
  position: relative !important;
  top: auto !important;
}

/* ── Default: always white, dark text ── */
.header-wrapper {
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  box-shadow: none !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
  min-height: 72px !important;
  display: flex !important;
  align-items: center !important;
  /* Override Dawn's color scheme variables so all internal nav/icon colours are dark */
  --color-foreground: 17, 17, 17 !important;
  --color-link: 17, 17, 17 !important;
}

.header {
  min-height: 72px !important;
  align-items: center !important;
  width: 100% !important;
}

/* ── Homepage only: transparent, becomes white on scroll/hover ── */
body.hb-has-hero .header-wrapper {
  background: transparent !important;
  border-bottom: none !important;
  padding-top: 24px !important;
  padding-bottom: 8px !important;
  --color-foreground: 255, 255, 255 !important;
  --color-link: 255, 255, 255 !important;
}

body.hb-has-hero.hb-scrolled .header-wrapper,
body.hb-has-hero .header-wrapper.hb-hovering {
  background: #fff !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  --color-foreground: 17, 17, 17 !important;
  --color-link: 17, 17, 17 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Logo text — dark by default */
.header__heading-link .h2,
.header__heading-link span.h2 {
  font-family: var(--hb-font) !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  letter-spacing: -0.3px !important;
  color: var(--hb-black) !important;
  transition: color 0.3s ease !important;
}

/* Homepage: white until scrolled */
body.hb-has-hero .header__heading-link .h2,
body.hb-has-hero .header__heading-link span.h2 {
  color: var(--hb-white) !important;
}
body.hb-has-hero.hb-scrolled .header__heading-link .h2,
body.hb-has-hero.hb-scrolled .header__heading-link span.h2,
body.hb-has-hero .header-wrapper.hb-hovering .header__heading-link .h2,
body.hb-has-hero .header-wrapper.hb-hovering .header__heading-link span.h2 {
  color: var(--hb-black) !important;
}

/* Custom logo — dark by default */
.header__heading { mix-blend-mode: normal; }

.hb-custom-logo {
  width: 180px !important;
  height: auto !important;
  display: block;
  filter: none;
  transition: filter 0.3s ease;
}

/* Homepage: white until scrolled */
body.hb-has-hero .hb-custom-logo {
  filter: brightness(0) invert(1);
}
body.hb-has-hero.hb-scrolled .hb-custom-logo,
body.hb-has-hero .header-wrapper.hb-hovering .hb-custom-logo {
  filter: none;
}

/* Icons — dark by default */
.header__icon,
.header__icon svg,
.header-drawer__toggle svg {
  color: #111 !important;
  fill: #111 !important;
  transition: color 0.3s ease, fill 0.3s ease !important;
}

/* Homepage: white until scrolled */
body.hb-has-hero .header__icon,
body.hb-has-hero .header__icon svg,
body.hb-has-hero .header-drawer__toggle svg {
  color: var(--hb-white) !important;
  fill: var(--hb-white) !important;
}
body.hb-has-hero.hb-scrolled .header__icon,
body.hb-has-hero.hb-scrolled .header__icon svg,
body.hb-has-hero.hb-scrolled .header-drawer__toggle svg,
body.hb-has-hero .header-wrapper.hb-hovering .header__icon,
body.hb-has-hero .header-wrapper.hb-hovering .header__icon svg,
body.hb-has-hero .header-wrapper.hb-hovering .header-drawer__toggle svg {
  color: #111 !important;
  fill: #111 !important;
}

.header__icon:hover { opacity: 0.65; }

/* Desktop: Logo left · Nav centre · Icons right */
@media screen and (min-width: 990px) {
  .header--middle-left.dropdown-menu,
  .header--middle-left.mega-menu {
    grid-template-areas: 'heading navigation icons' !important;
    grid-template-columns: auto 1fr auto !important;
  }

  .header__inline-menu {
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
  }

  /* Nav links — static black by default (all pages), no color transition */
  .header-wrapper .header__menu-item,
  .header-wrapper .header__menu-item:hover,
  .header-wrapper .header__menu-item > span,
  .header-wrapper .header__menu-item:hover > span,
  .header-wrapper .header__menu-item > a,
  .header-wrapper .header__menu-item:hover > a {
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    text-transform: none !important;
    transition: opacity 0.2s ease !important;
    padding: 0 14px !important;
  }

  .header-wrapper .header__menu-item:hover {
    opacity: 0.65 !important;
  }

  /* Homepage only: white until scrolled */
  body.hb-has-hero .header-wrapper .header__menu-item,
  body.hb-has-hero .header-wrapper .header__menu-item:hover,
  body.hb-has-hero .header-wrapper .header__menu-item > span,
  body.hb-has-hero .header-wrapper .header__menu-item > a {
    color: #ffffff !important;
  }

  body.hb-has-hero.hb-scrolled .header-wrapper .header__menu-item,
  body.hb-has-hero.hb-scrolled .header-wrapper .header__menu-item:hover,
  body.hb-has-hero.hb-scrolled .header-wrapper .header__menu-item > span,
  body.hb-has-hero.hb-scrolled .header-wrapper .header__menu-item > a {
    color: #111111 !important;
  }

  .header__icons {
    justify-self: end !important;
  }
}

/* Mobile drawer nav — .link--text in Dawn uses rgb(--color-foreground) which can be white */
.menu-drawer .menu-drawer__menu-item,
.menu-drawer .menu-drawer__menu-item.link--text,
.menu-drawer .list-menu__item.link--text,
.menu-drawer .list-menu__item--link {
  color: #111111 !important;
}

/* Dropdown / mega-menu — clean flat list, no accordion */
.mega-menu__content,
.header__submenu {
  border: none !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.05) !important;
  border-radius: 2px !important;
  background: #fff !important;
}

/* Hide the group summary toggles (the ^ lines) */
.mega-menu__content details > summary,
.mega-menu__list details > summary {
  display: none !important;
}

/* Always show the group content */
.mega-menu__content details > ul,
.mega-menu__list details > ul {
  display: block !important;
  visibility: visible !important;
  height: auto !important;
  overflow: visible !important;
}

/* Remove dividers between groups */
.mega-menu__list li {
  border-top: none !important;
  border-bottom: none !important;
}

/* Style the links */
.mega-menu__link--level-2,
.mega-menu__link {
  color: var(--hb-black) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2px !important;
  padding: 5px 0 !important;
  transition: opacity 0.2s ease !important;
}

.mega-menu__link--level-2:hover,
.mega-menu__link:hover {
  opacity: 0.5 !important;
  text-decoration: none !important;
}

/* ================================================================
   HERO BANNER — 80vh, min-height 700px, text absolute bottom-left
   Pull the homepage hero up to sit behind the transparent header
   ================================================================ */
.hb-has-hero #MainContent {
  margin-top: calc(-1 * (var(--header-height, 120px) + 47px));

.banner.banner--large {
  min-height: max(80vh, 700px) !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Image fills container */
.banner__media {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.banner__media img,
.banner__media video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Dark gradient at bottom */
.banner__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.15) 45%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Content: position absolute, bottom-left */
.banner__content {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  padding: 0 !important;
  z-index: 2 !important;
  width: 100% !important;
  height: 100% !important;
}

/* Text box: no background, bottom-left, max-width 500px */
.banner__box {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 0 0 80px 80px !important;
  max-width: 500px !important;
}

/* Label / subheading above title */
.banner__text,
.banner__text p {
  font-size: 14px !important;
  font-weight: 500 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 12px !important;
  line-height: 1.5 !important;
}

/* Hero title: 56px bold sans-serif */
.banner__heading,
.banner__heading * {
  font-family: var(--hb-font) !important;
  font-size: 56px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--hb-white) !important;
  line-height: 1.05 !important;
  letter-spacing: -1px !important;
  margin-bottom: 24px !important;
}

/* CTA Button — hb-link-cta style scaled for hero */
.banner__buttons .button,
.banner__buttons .button--primary,
.banner__buttons .button--secondary {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.6rem !important;
  height: auto !important;
  padding: 2px 0 2px 14px !important;
  background: transparent !important;
  color: var(--hb-white) !important;
  /* clear all borders then set only left */
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: 2px solid rgba(255,255,255,0.8) !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  transition: opacity 0.2s ease !important;
  min-height: unset !important;
  -webkit-appearance: none !important;
}

.banner__buttons .button:hover,
.banner__buttons .button:focus {
  opacity: 0.65 !important;
  background: transparent !important;
  color: var(--hb-white) !important;
  border-top: none !important;
  border-right: none !important;
  border-bottom: none !important;
  border-left: 2px solid rgba(255,255,255,0.8) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Kill the box-shadow "border" Dawn draws via ::before / ::after */
.banner__buttons .button::before,
.banner__buttons .button::after {
  display: none !important;
  box-shadow: none !important;
}

/* Mobile */
@media (max-width: 749px) {
  .header-wrapper {
    min-height: 56px !important;
  }
  body.hb-has-hero .header-wrapper {
    padding-top: 10px !important;
    padding-bottom: 4px !important;
  }
  body.hb-has-hero.hb-scrolled .header-wrapper,
  body.hb-has-hero .header-wrapper.hb-hovering {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .header {
    min-height: 56px !important;
  }
  .hb-custom-logo {
    width: 120px !important;
  }

  /* Hero */
  .banner.banner--large {
    min-height: max(70vh, 500px) !important;
  }
  .banner__box {
    padding: 0 0 48px 24px !important;
    max-width: 90% !important;
  }
  .banner__heading,
  .banner__heading * {
    font-size: 36px !important;
  }
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.title-wrapper { padding-bottom: var(--sp-4); }
.title-wrapper::after { display: none !important; }

.title-wrapper .title,
h2.title {
  font-family: var(--hb-font) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--hb-black) !important;
  letter-spacing: -0.5px !important;
  line-height: 1.1 !important;
}

.collection__description,
.title-wrapper .title + .collection__description {
  color: var(--hb-mid) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  margin-top: 12px !important;
}

/* ================================================================
   PRODUCT CARDS — 4:5 image ratio, scale(1.02) hover
   ================================================================ */
.card__media,
.card .media {
  aspect-ratio: 4 / 5 !important;
  background-color: var(--hb-light) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.card__media img,
.card .media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.card-wrapper {
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.card-wrapper:hover .card__media img,
.card-wrapper:hover .card .media img {
  transform: scale(1.02) !important;
}

.card-wrapper:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* Brand name */
.card__vendor {
  font-size: 12px !important;
  font-weight: 400 !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
  color: var(--hb-mid) !important;
  margin-bottom: 4px !important;
}

/* Product name */
.card__heading,
.card__heading a {
  font-family: var(--hb-font) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  color: var(--hb-black) !important;
  letter-spacing: 0 !important;
  line-height: 1.4 !important;
}

.card__heading a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Price */
.price .price-item,
.price .price-item--regular {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--hb-mid) !important;
}

.price .price-item--sale {
  color: var(--hb-black) !important;
  font-weight: 600 !important;
}

/* Quick add */
.quick-add__submit {
  background: var(--hb-black) !important;
  color: var(--hb-white) !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: 12px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

.quick-add__submit:hover {
  background: #333 !important;
}

/* ================================================================
   COLLECTION LIST (Category nav / Shop by Category)
   ================================================================ */
.collection-list-wrapper,
.collection-list {
  background: var(--hb-white) !important;
}

.collection-list-item { transition: none; }

.collection-list-item .media {
  background: var(--hb-light) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

.collection-list-item .media img {
  transition: transform 0.4s ease;
}

.collection-list-item:hover .media img {
  transform: scale(1.02);
}

.collection-list-item__title {
  font-family: var(--hb-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: var(--hb-black) !important;
  padding-top: 12px !important;
}

/* ================================================================
   GLOBAL BUTTONS
   ================================================================ */
.button--primary {
  background: var(--hb-black) !important;
  border-color: var(--hb-black) !important;
  color: var(--hb-white) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.button--primary:hover {
  background: #333 !important;
  border-color: #333 !important;
}

.button--secondary {
  background: transparent !important;
  border-color: var(--hb-black) !important;
  color: var(--hb-black) !important;
  border-radius: 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.button--secondary:hover {
  background: var(--hb-black) !important;
  color: var(--hb-white) !important;
}

/* ================================================================
   SECTION BACKGROUNDS — alternate white / light
   ================================================================ */
.featured-collection { background: var(--hb-white); }
.multicolumn { background: var(--hb-light) !important; }
.rich-text { background: var(--hb-light); }
.image-with-text { background: var(--hb-white); }

/* ================================================================
   MULTICOLUMN — value props / brand story
   Override --color-foreground so links/headings render black not navy
   ================================================================ */
.multicolumn {
  --color-foreground: 17, 17, 17 !important;
  --color-link: 17, 17, 17 !important;
}

.multicolumn-list__item-title {
  font-family: var(--hb-font) !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  font-style: normal !important;
  color: var(--hb-black) !important;
  letter-spacing: -0.2px !important;
  margin-bottom: 8px !important;
}

.multicolumn-list__item-text,
.multicolumn-list__item-text p {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--hb-mid) !important;
  line-height: 1.65 !important;
}

/* ================================================================
   HB CUSTOM SECTIONS (product row + editorial)
   ================================================================ */

/* Override serif in custom sections */
.hb-product-row__heading,
.hb-editorial__heading {
  font-family: var(--hb-font) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  font-style: normal !important;
  color: var(--hb-black) !important;
  letter-spacing: -0.5px !important;
}

.hb-product-card__name {
  font-family: var(--hb-font) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  font-style: normal !important;
}

.hb-product-card__img-link {
  aspect-ratio: 4 / 5 !important;
  border-radius: 0 !important;
}

.hb-product-card:hover .hb-product-card__img {
  transform: scale(1.02) !important;
}

.hb-link-cta {
  color: var(--hb-black) !important;
  border-left-color: var(--hb-black) !important;
  font-family: var(--hb-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
}

/* ================================================================
   FOOTER — dark background, white text
   Override Dawn's --color-foreground so every internal rule turns white
   ================================================================ */
.footer {
  --color-foreground: 255, 255, 255 !important;
  --color-background: 17, 17, 17 !important;
  --color-link: 255, 255, 255 !important;
  background: var(--hb-black) !important;
  color: rgba(255,255,255,0.6) !important;
}

/* Section headings: Quick Links, About Us, Home Life, Subscribe… */
.footer-block__heading,
.footer-block__heading * {
  font-family: var(--hb-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: var(--hb-white) !important;
  margin-bottom: 16px !important;
}

/* Body copy & nav links */
.footer a,
.footer li a,
.footer .link,
.footer .link--text,
.footer .list-menu__item--link,
.footer .footer-block__details-content,
.footer .footer-block__details-content p,
.footer .rte,
.footer .rte p {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
}

.footer a:hover,
.footer li a:hover,
.footer .link--text:hover,
.footer .list-menu__item--link:hover {
  color: var(--hb-white) !important;
}

/* Newsletter input */
.footer .field__input,
.footer .field__label {
  color: var(--hb-black) !important;
}

/* Country / language selectors */
.footer .localization-form__select,
.footer .disclosure__button {
  color: rgba(255,255,255,0.55) !important;
  border-color: rgba(255,255,255,0.2) !important;
}

/* Payment icons & copyright */
.footer__content-bottom {
  border-top-color: rgba(255,255,255,0.1) !important;
}

.footer__copyright,
.footer__copyright *,
.copyright__content,
.copyright__content * {
  font-size: 12px !important;
  color: rgba(255,255,255,0.3) !important;
}

/* Policy links in footer bottom */
.footer .policies a,
.footer .policies small {
  color: rgba(255,255,255,0.35) !important;
  font-size: 12px !important;
}

.footer .policies a:hover {
  color: rgba(255,255,255,0.7) !important;
}
