/** Shopify CDN: Minification failed

Line 31:17 Unexpected "{"
Line 31:26 Expected ":"

**/
/* ============================================
   HYVE FOOTER – GLOBAL LAYOUT + BACKGROUND
   ============================================ */

.footer {
  position: relative;
  background: #050505;
}

/* subtle gradient line at the top of footer */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 18px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45), transparent);
  pointer-events: none;
}

/* tighten overall spacing */
.section-footer-padding,
.footer.section-footer-padding,
.footer.section-{{ section.id }}-padding {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

/* ============================================
   TOP CONTENT AREA (LOGO / LINKS / POLICIES / SHIPPING / EMAIL)
   ============================================ */

/* center the whole block and control width */
.footer__content-top.page-width,
.footer__content-top .page-width {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 40px 40px 20px !important;
}

/* force a clean 5-column grid on desktop:
   [ Brand ] [ Quick Links ] [ Policies ] [ Shipping ] [ Email ] */
.footer__content-top .footer__blocks-wrapper.grid {
  display: grid !important;
  grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr !important;
  column-gap: 80px !important;
  row-gap: 50px !important;
  align-items: flex-start !important;
  width: 100%;
}

/* reset per-block spacing */
.footer-block.grid__item {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

/* brand column: allow readable paragraph width */
.footer-block__brand-info {
  max-width: 420px !important;
}

/* logo spacing */
.footer-block__brand-info .footer-block__image-wrapper {
  margin-bottom: 20px !important;
}

/* descriptive text (brand + shipping + email paragraphs) */
.footer-block__details-content,
.footer-block__brand-info .rte {
  color: rgba(255,255,255,0.78);
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* lists (quick links / policies) */
.footer-block__details-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-block__details-content li {
  margin-bottom: 6px;
}

/* links in footer columns */
.footer-block__details-content a {
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-block__details-content a:hover {
  color: #d9a84e !important;
  text-shadow: 0 0 6px rgba(217,168,78,0.5);
}

/* ============================================
   HEADINGS – GOLD UNDERLINES / ALIGNMENT
   ============================================ */

.footer-block__heading {
  margin: 0 0 14px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff !important;
  display: inline-block;
  position: relative;
}

/* gold underline accent */
.footer-block__heading::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9a84e 0%, #b8862b 100%);
}

/* keep social icons left-aligned under brand when present */
.footer-block__brand-info .footer__list-social.list-social {
  justify-content: flex-start;
}

/* ============================================
   MOBILE & TABLET BEHAVIOR
   ============================================ */

@media (max-width: 989px) {
  .footer__content-top.page-width,
  .footer__content-top .page-width {
    padding: 30px 20px 10px !important;
  }

  .footer__content-top .footer__blocks-wrapper.grid {
    grid-template-columns: 1fr 1fr !important;
    column-gap: 30px !important;
    row-gap: 40px !important;
  }

  /* brand column should still span full width on tablet */
  .footer__blocks-wrapper .footer-block.grid__item:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 749px) {
  .footer__content-top .footer__blocks-wrapper.grid {
    grid-template-columns: 1fr !important;
    row-gap: 36px !important;
  }

  .footer-block.grid__item,
  .footer-block__brand-info,
  .footer-block__details-content {
    text-align: center !important;
    max-width: 100% !important;
  }

  .footer-block__heading {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .footer-block__heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-block__brand-info .footer__list-social.list-social {
    justify-content: center;
  }
}

/* ============================================
   BOTTOM AREA – PAYMENTS / COPYRIGHT
   ============================================ */

.footer__content-bottom {
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  padding-top: 24px !important;
  padding-bottom: 24px !important;
  background: #050505;
}

.footer__content-bottom-wrapper {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 40px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

/* payment icons */
.footer__payment .list-payment {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* copyright + policies */
.footer__copyright {
  text-align: right;
  margin-top: 0 !important;
}

.copyright__content {
  font-size: 11px !important;
  color: rgba(255,255,255,0.6);
}

.copyright__content a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.copyright__content a:hover {
  color: #d9a84e;
}

/* policies separators already exist; just soften spacing */
.policies li::before {
  padding: 0 0.6rem;
}

/* center bottom content on small screens */
@media (max-width: 749px) {
  .footer__content-bottom-wrapper {
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 0 20px !important;
  }

  .footer__copyright {
    text-align: center;
  }
}

/* ============================================
   LEGAL DISCLAIMER BAR (Custom Liquid)
   ============================================ */

.bottom-footer-section {
  background: #020202 !important;
  padding: 40px 50px !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.14);
  display: flex;
  justify-content: center;
}

.bottom-footer-section p {
  max-width: 1180px;
  margin: 0 auto !important;
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.55) !important;
}

/* slightly tighten the very bottom so it doesn't feel “detached” */
.bottom-footer-section + .chat-widget,
.bottom-footer-section + div {
  margin-top: 0 !important;
}

/* ============================================
   1) GOLD UNDERLINE ANIMATION ON HEADINGS
   ============================================ */

/* make sure headings are positioned correctly */
.footer-block__heading {
  position: relative;
  padding-bottom: 4px;
}

/* base underline – partially visible */
.footer-block__heading::after {
  content: "";
  position: relative;
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d9a84e 0%, #b8862b 100%);
  transform-origin: left;
  transform: scaleX(0.35);          /* small base underline */
  transition: transform 0.28s ease-out;
}

/* on hover or keyboard focus, grow the underline to full width */
.footer-block:hover .footer-block__heading::after,
.footer-block:focus-within .footer-block__heading::after {
  transform: scaleX(1);
}

/* ============================================
   2) SHIPPING DAYS COLUMN REFINEMENT
   (assumes it's the 4th footer block: Brand, Quick Links,
    Policies, Shipping Days, Email)
   ============================================ */

.footer__blocks-wrapper .footer-block.grid__item:nth-child(4) {
  max-width: 260px;
}

/* improve readability of the shipping text */
.footer__blocks-wrapper .footer-block.grid__item:nth-child(4)
  .footer-block__details-content {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.78);
}

/* slight breathing room between lines */
.footer__blocks-wrapper .footer-block.grid__item:nth-child(4)
  .footer-block__details-content p {
  margin: 0 0 4px;
}

/* ============================================
   3) EMAIL COLUMN CLEANUP (5th block)
   ============================================ */

/* keep the email address on a single line and aligned nicely */
.footer__blocks-wrapper .footer-block.grid__item:nth-child(5)
  .footer-block__details-content a {
  white-space: nowrap;
  font-size: 14px;
}

/* tiny spacing tweak so EMAIL column visually lines up with others */
.footer__blocks-wrapper .footer-block.grid__item:nth-child(5)
  .footer-block__details-content {
  margin-top: 4px;
}

/* ============================================
   4) MICRO TWEAK: COLUMN BODY TEXT
   ============================================ */

.footer-block__details-content {
  font-size: 14px;
  line-height: 1.6;
}
