/** Shopify CDN: Minification failed

Line 95:2 Unexpected "{"
Line 95:3 Expected identifier but found "%"
Line 96:20 Unexpected "{"
Line 96:29 Expected ":"
Line 96:36 Unexpected "{"
Line 99:2 Unexpected "{"
Line 99:3 Expected identifier but found "%"
Line 106:20 Unexpected "{"
Line 106:29 Expected ":"
Line 106:36 Unexpected "{"
... and 287 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:4) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:5) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-section (INDEX:6) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:footer (INDEX:7) */
footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  footer a {
    text-decoration: none;
    color: var(--color-foreground);
  }
  footer .footer__links,
  footer .footer__payment {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:8) */
/* Home page uses its own hero/header. Hide this global header there. */
  {% if request.page_type == 'index' %}
  #shopify-section-{{ section.id }} {
    display: none !important;
  }
  {% endif %}

  /* =========================================================
     NOVA NON-HOME HEADER
     Hero-inspired glass navigation + announcement bar
     ========================================================= */

  #shopify-section-{{ section.id }} {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  #shopify-section-{{ section.id }} .nova-announcement,
  #shopify-section-{{ section.id }} .nova-header {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  /* ANNOUNCEMENT */
  #shopify-section-{{ section.id }} .nova-announcement {
    position: relative;
    z-index: 100;
    background: var(--nova-announcement-color, #000);
    color: var(--nova-announcement-text-color, #fff);
    text-align: center;
  }

  #shopify-section-{{ section.id }} .nova-announcement__inner {
    min-height: 36px;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #shopify-section-{{ section.id }} .nova-announcement a,
  #shopify-section-{{ section.id }} .nova-announcement span {
    color: inherit;
    text-decoration: none;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  #shopify-section-{{ section.id }} .nova-announcement a:hover {
    text-decoration: underline;
  }

  /* HEADER */
  #shopify-section-{{ section.id }} .nova-header {
    position: relative;
    z-index: 90;
    min-height: var(--nova-header-height, 85px);
    color: var(--nova-header-text, #fff);
    background:
      linear-gradient(
        180deg,
        color-mix(in srgb, var(--nova-header-bg, #111) 86%, transparent),
        color-mix(in srgb, var(--nova-header-bg, #111) 72%, transparent)
      );
    border-bottom: 1px solid color-mix(in srgb, var(--nova-border, #fff) 22%, transparent);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
  }

  #shopify-section-{{ section.id }} .nova-header--sticky {
    position: sticky;
    top: 0;
  }

  #shopify-section-{{ section.id }} .nova-header__inner {
    width: min(calc(100% - 48px), 1800px);
    min-height: var(--nova-header-height, 85px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
  }

  /* LOGO */
  #shopify-section-{{ section.id }} .nova-header__logo {
    justify-self: start;
    display: flex;
    align-items: center;
  }

  #shopify-section-{{ section.id }} .nova-header__logo-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
  }

  #shopify-section-{{ section.id }} .nova-header__logo-image {
    display: block;
    width: min(var(--nova-logo-width, 120px), 100%);
    height: auto;
    max-height: 60px;
    object-fit: contain;
  }

  #shopify-section-{{ section.id }} .nova-header__text-logo {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.05em;
  }

  /* DESKTOP NAV */
  #shopify-section-{{ section.id }} .nova-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--nova-menu-gap, 30px);
    height: 100%;
  }

  #shopify-section-{{ section.id }} .nova-nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  #shopify-section-{{ section.id }} .nova-nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .94;
    transition: color 180ms ease, opacity 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-nav-link:hover {
    color: var(--nova-accent, #ff2d7e);
    opacity: 1;
  }

  #shopify-section-{{ section.id }} .nova-chevron {
    width: 13px;
    height: 13px;
    transition: transform 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-nav-item:hover .nova-chevron {
    transform: rotate(180deg);
  }

  /* DROPDOWNS */
  #shopify-section-{{ section.id }} .nova-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    color: var(--nova-header-text, #111);
    background: color-mix(in srgb, var(--nova-header-bg, #fff) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--nova-border, #eee) 65%, transparent);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-nav-item:hover > .nova-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  #shopify-section-{{ section.id }} .nova-dropdown__item {
    position: relative;
  }

  #shopify-section-{{ section.id }} .nova-dropdown__link {
    min-height: 42px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition: background 180ms ease, color 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-dropdown__link:hover {
    background: color-mix(in srgb, var(--nova-accent, #ff2d7e) 8%, transparent);
    color: var(--nova-accent, #ff2d7e);
  }

  #shopify-section-{{ section.id }} .nova-dropdown__link svg {
    width: 14px;
    height: 14px;
  }

  #shopify-section-{{ section.id }} .nova-dropdown__sub {
    position: absolute;
    top: -10px;
    left: calc(100% + 10px);
    min-width: 200px;
    padding: 10px;
    color: var(--nova-header-text, #111);
    background: color-mix(in srgb, var(--nova-header-bg, #fff) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--nova-border, #eee) 65%, transparent);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-dropdown__item:hover > .nova-dropdown__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  #shopify-section-{{ section.id }} .nova-dropdown__sub-link {
    display: block;
    padding: 11px 12px;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
  }

  #shopify-section-{{ section.id }} .nova-dropdown__sub-link:hover {
    background: color-mix(in srgb, var(--nova-accent, #ff2d7e) 8%, transparent);
    color: var(--nova-accent, #ff2d7e);
  }

  /* ACTIONS */
  #shopify-section-{{ section.id }} .nova-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #shopify-section-{{ section.id }} .nova-header__icon-link,
  #shopify-section-{{ section.id }} .nova-header__account {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-header__icon-link:hover,
  #shopify-section-{{ section.id }} .nova-header__account:hover {
    color: var(--nova-accent, #ff2d7e);
    background: color-mix(in srgb, #fff 10%, transparent);
    border-color: color-mix(in srgb, #fff 18%, transparent);
    transform: translateY(-1px);
  }

  #shopify-section-{{ section.id }} .nova-header__icon-link svg,
  #shopify-section-{{ section.id }} .nova-account-avatar svg {
    width: var(--nova-icon-size, 21px);
    height: var(--nova-icon-size, 21px);
    display: block;
  }

  #shopify-section-{{ section.id }} .nova-account-component {
    display: block;
    width: 40px;
    height: 40px;
    --shopify-account-color-accent: var(--nova-accent, #ff2d7e);
    --shopify-account-color-background: transparent;
    --shopify-account-color-text: var(--nova-header-text, #fff);
    --shopify-account-radius-base: 14px;
  }

  #shopify-section-{{ section.id }} .nova-account-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    cursor: pointer;
  }

  #shopify-section-{{ section.id }} .nova-cart-count {
    position: absolute;
    top: -1px;
    right: -1px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nova-accent, #ff2d7e);
    color: #fff;
    border-radius: 999px;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
  }

  /* MOBILE TOGGLE */
  #shopify-section-{{ section.id }} .nova-header__mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  #shopify-section-{{ section.id }} .nova-header__mobile-toggle span {
    width: 21px;
    height: 1.5px;
    background: currentColor;
    display: block;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  #shopify-section-{{ section.id }} .nova-header__mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  #shopify-section-{{ section.id }} .nova-header__mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  #shopify-section-{{ section.id }} .nova-header__mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* MOBILE MENU */
  #shopify-section-{{ section.id }} .nova-mobile-menu {
    display: none;
  }

  @media screen and (max-width: 990px) {
    #shopify-section-{{ section.id }} .nova-header__inner {
      width: calc(100% - 32px);
      gap: 18px;
    }

    #shopify-section-{{ section.id }} .nova-header__nav {
      gap: 16px;
    }

    #shopify-section-{{ section.id }} .nova-nav-link {
      font-size: 9px;
      letter-spacing: .10em;
    }

    #shopify-section-{{ section.id }} .nova-header__actions {
      gap: 4px;
    }
  }

  @media screen and (max-width: 749px) {
    #shopify-section-{{ section.id }} .nova-announcement,
    #shopify-section-{{ section.id }} .nova-header {
      width: 100vw !important;
      margin-left: calc(50% - 50vw) !important;
      margin-right: calc(50% - 50vw) !important;
    }

    #shopify-section-{{ section.id }} .nova-header {
      min-height: var(--nova-mobile-header-height, 70px);
    }

    #shopify-section-{{ section.id }} .nova-header__inner {
      width: calc(100% - 28px);
      min-height: var(--nova-mobile-header-height, 70px);
      grid-template-columns: 42px 1fr auto;
      gap: 10px;
    }

    #shopify-section-{{ section.id }} .nova-header__mobile-toggle {
      display: flex;
    }

    #shopify-section-{{ section.id }} .nova-header__logo {
      justify-self: center;
    }

    #shopify-section-{{ section.id }} .nova-header__logo-image {
      max-width: var(--nova-logo-width, 120px);
      max-height: 48px;
    }

    #shopify-section-{{ section.id }} .nova-header__text-logo {
      font-size: 21px;
    }

    #shopify-section-{{ section.id }} .nova-header__nav {
      display: none;
    }

    #shopify-section-{{ section.id }} .nova-header__actions {
      gap: 2px;
    }

    #shopify-section-{{ section.id }} .nova-header__actions .nova-header__icon-link:not(.nova-header__cart) {
      display: none;
    }

    #shopify-section-{{ section.id }} .nova-header__icon-link,
    #shopify-section-{{ section.id }} .nova-header__account,
    #shopify-section-{{ section.id }} .nova-account-component,
    #shopify-section-{{ section.id }} .nova-account-avatar {
      width: 38px;
      height: 38px;
    }

    #shopify-section-{{ section.id }} .nova-header__icon-link svg,
    #shopify-section-{{ section.id }} .nova-account-avatar svg {
      width: 20px;
      height: 20px;
    }

    #shopify-section-{{ section.id }} .nova-announcement__inner {
      min-height: 32px;
      padding: 8px 12px;
    }

    #shopify-section-{{ section.id }} .nova-announcement a,
    #shopify-section-{{ section.id }} .nova-announcement span {
      font-size: 9px;
      letter-spacing: .11em;
    }

    #shopify-section-{{ section.id }} .nova-mobile-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      display: block;
      max-height: calc(100vh - 100%);
      overflow-y: auto;
      color: var(--nova-header-text, #fff);
      background: color-mix(in srgb, var(--nova-header-bg, #111) 94%, transparent);
      border-top: 1px solid color-mix(in srgb, var(--nova-border, #fff) 18%, transparent);
      box-shadow: 0 24px 50px rgba(0,0,0,.20);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    #shopify-section-{{ section.id }} .nova-mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    #shopify-section-{{ section.id }} .nova-mobile-menu__inner {
      padding: 18px 18px 24px;
    }

    #shopify-section-{{ section.id }} .nova-mobile-item {
      border-bottom: 1px solid color-mix(in srgb, var(--nova-border, #fff) 15%, transparent);
    }

    #shopify-section-{{ section.id }} .nova-mobile-link {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: inherit;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    #shopify-section-{{ section.id }} .nova-mobile-plus {
      color: var(--nova-accent, #ff2d7e);
      font-size: 20px;
      font-weight: 400;
    }

    #shopify-section-{{ section.id }} .nova-mobile-submenu {
      padding: 0 0 12px 12px;
    }

    #shopify-section-{{ section.id }} .nova-mobile-sub-link {
      display: block;
      padding: 9px 0;
      color: color-mix(in srgb, var(--nova-header-text, #fff) 70%, transparent);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
    }

    #shopify-section-{{ section.id }} .nova-mobile-grandchild {
      padding-left: 14px;
    }

    #shopify-section-{{ section.id }} .nova-mobile-grandchild a {
      display: block;
      padding: 7px 0;
      color: color-mix(in srgb, var(--nova-header-text, #fff) 52%, transparent);
      text-decoration: none;
      font-size: 12px;
    }

    #shopify-section-{{ section.id }} .nova-mobile-actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 18px;
    }

    #shopify-section-{{ section.id }} .nova-mobile-actions a {
      padding: 13px 8px;
      background: color-mix(in srgb, #fff 9%, transparent);
      border: 1px solid color-mix(in srgb, #fff 12%, transparent);
      border-radius: 10px;
      color: inherit;
      text-align: center;
      text-decoration: none;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    #shopify-section-{{ section.id }} *,
    #shopify-section-{{ section.id }} .nova-mobile-menu,
    #shopify-section-{{ section.id }} .nova-dropdown,
    #shopify-section-{{ section.id }} .nova-dropdown__sub {
      transition: none !important;
    }
  }
/* END_SECTION:header */

/* START_SECTION:header2 (INDEX:9) */
/* ============================================
   NOVA HEADER — FULL BLEED SECTION
   ============================================ */

#shopify-section-{{ section.id }} {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

#shopify-section-{{ section.id }} .nova-announcement,
#shopify-section-{{ section.id }} .nova-header {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

  /* ============================================
     NOVA ANNOUNCEMENT BAR
     ============================================ */

  .nova-announcement {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;

  background: var(--nova-announcement-color, #000000);

  color: var(--nova-announcement-text-color, #ffffff);
  text-align: center;
  position: relative;
  z-index: 100;
}

  .nova-announcement__inner {
    min-height: 36px;
    padding: 9px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nova-announcement a,
  .nova-announcement span {
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nova-announcement a:hover {
    text-decoration: underline;
  }


  /* ============================================
     HEADER
     ============================================ */

  .nova-header {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    min-height: var(--nova-header-height, 85px);
    background: var(--nova-header-bg, #ffffff);
    color: var(--nova-header-text, #111111);
    border-bottom: 1px solid var(--nova-border, #eeeeee);
    position: relative;
    z-index: 90;
  }

  .nova-header--sticky {
    position: sticky;
    top: 0;
  }

  .nova-header__inner {
    width: calc(100% - 48px);
    max-width: 1800px;
    min-height: var(--nova-header-height, 85px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
  }


  /* ============================================
     LOGO
     ============================================ */

  .nova-header__logo {
    justify-self: start;
    display: flex;
    align-items: center;
  }

  .nova-header__logo-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
  }

  .nova-header__logo-image {
    display: block;
    width: min(var(--nova-logo-width, 120px), 100%);
    height: auto;
    max-height: 60px;
    object-fit: contain;
  }

  .nova-header__text-logo {
    color: inherit;
    text-decoration: none;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
  }


  /* ============================================
     DESKTOP NAVIGATION
     ============================================ */

  .nova-header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--nova-menu-gap, 30px);
    height: 100%;
  }

  .nova-nav-item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
  }

  .nova-nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
      color 180ms ease,
      opacity 180ms ease;
  }

  .nova-nav-link:hover {
    color: var(--nova-accent, #ff2d7e);
  }

  .nova-chevron {
    width: 14px;
    height: 14px;
    transition: transform 180ms ease;
  }

  .nova-nav-item:hover .nova-chevron {
    transform: rotate(180deg);
  }


  /* ============================================
     DESKTOP DROPDOWN
     ============================================ */

  .nova-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    min-width: 220px;
    padding: 10px;
    background: var(--nova-header-bg, #ffffff);
    border: 1px solid var(--nova-border, #eeeeee);
    border-radius: 16px;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.10);
    transform: translate(-50%, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nova-nav-item:hover > .nova-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .nova-dropdown__item {
    position: relative;
  }

  .nova-dropdown__link {
    min-height: 42px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    transition:
      background 180ms ease,
      color 180ms ease;
  }

  .nova-dropdown__link:hover {
    background: #f8f8f8;
    color: var(--nova-accent, #ff2d7e);
  }

  .nova-dropdown__link svg {
    width: 14px;
    height: 14px;
  }

  .nova-dropdown__sub {
    position: absolute;
    top: -10px;
    left: calc(100% + 10px);
    min-width: 200px;
    padding: 10px;
    background: var(--nova-header-bg, #ffffff);
    border: 1px solid var(--nova-border, #eeeeee);
    border-radius: 16px;
    box-shadow:
      0 20px 50px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nova-dropdown__item:hover > .nova-dropdown__sub {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .nova-dropdown__sub-link {
    display: block;
    padding: 11px 12px;
    color: inherit;
    text-decoration: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
  }

  .nova-dropdown__sub-link:hover {
    background: #f8f8f8;
    color: var(--nova-accent, #ff2d7e);
  }


  /* ============================================
     ACTION ICONS
     ============================================ */

  .nova-header__actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nova-header__icon-link {
    width: 40px;
    height: 40px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    text-decoration: none;
    border-radius: 50%;
    transition:
      background 180ms ease,
      color 180ms ease,
      transform 180ms ease;
  }

  .nova-header__icon-link:hover {
    color: var(--nova-accent, #ff2d7e);
    background: #f7f7f7;
    transform: translateY(-1px);
  }

  .nova-header__icon-link svg {
    width: var(--nova-icon-size, 21px);
    height: var(--nova-icon-size, 21px);
    display: block;
  }

  /* ============================================
     SHOPIFY CUSTOMER ACCOUNT
     ============================================ */

  .nova-header__account {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    border-radius: 50%;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .nova-header__account:hover {
    color: var(--nova-accent, #ff2d7e);
    background: #f7f7f7;
    transform: translateY(-1px);
  }

  .nova-account-component {
    display: block;
    width: 40px;
    height: 40px;
    --shopify-account-color-accent: var(--nova-accent, #ff2d7e);
    --shopify-account-color-background: var(--nova-header-bg, #ffffff);
    --shopify-account-color-text: var(--nova-header-text, #111111);
    --shopify-account-radius-base: 14px;
  }

  .nova-account-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
    cursor: pointer;
  }

  .nova-account-avatar svg {
    width: var(--nova-icon-size, 21px);
    height: var(--nova-icon-size, 21px);
    display: block;
  }

  .nova-cart-count {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nova-accent, #ff2d7e);
    color: #ffffff;
    border-radius: 999px;
    font-size: 9px;
    line-height: 1;
    font-weight: 900;
  }


  /* ============================================
     MOBILE TOGGLE
     ============================================ */

  .nova-header__mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .nova-header__mobile-toggle span {
    width: 21px;
    height: 1.5px;
    background: currentColor;
    display: block;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .nova-header__mobile-toggle.is-open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nova-header__mobile-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nova-header__mobile-toggle.is-open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }


  /* ============================================
     MOBILE MENU
     ============================================ */

  .nova-mobile-menu {
    display: none;
  }


  /* ============================================
     TABLET
     ============================================ */

  @media screen and (max-width: 990px) {

    .nova-header__inner {
      width: calc(100% - 32px);
      max-width: none;
    }

    .nova-header__nav {
      gap: 18px;
    }

    .nova-nav-link {
      font-size: 10px;
      letter-spacing: 0.11em;
    }

    .nova-header__actions {
      gap: 7px;
    }

    .nova-header__icon-link {
      width: 36px;
      height: 36px;
    }

  }


  /* ============================================
     MOBILE
     ============================================ */

  @media screen and (max-width: 749px) {

    .nova-announcement,
    .nova-header {
      width: 100vw !important;
      margin-left: calc(50% - 50vw) !important;
      margin-right: calc(50% - 50vw) !important;
    }

    .nova-header {
      min-height: var(--nova-mobile-header-height, 70px);
    }

    .nova-header__inner {
      width: calc(100% - 28px);
      min-height: var(--nova-mobile-header-height, 70px);
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 12px;
    }

    .nova-header__mobile-toggle {
      display: flex;
    }

    .nova-header__logo {
      justify-self: center;
    }

    .nova-header__logo-image {
      max-width: var(--nova-logo-width, 120px);
      max-height: 48px;
    }

    .nova-header__text-logo {
      font-size: 21px;
    }

    .nova-header__nav {
      display: none;
    }

    .nova-header__actions {
      gap: 2px;
    }

    .nova-header__actions .nova-header__icon-link:not(.nova-header__cart) {
      display: none;
    }

    .nova-header__account {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nova-header__icon-link {
      width: 38px;
      height: 38px;
    }

    .nova-header__icon-link svg {
      width: 20px;
      height: 20px;
    }

    .nova-header__account,
    .nova-account-component,
    .nova-account-avatar {
      width: 38px;
      height: 38px;
    }

    .nova-account-avatar svg {
      width: 20px;
      height: 20px;
    }

    .nova-announcement__inner {
      min-height: 32px;
      padding: 8px 12px;
    }

    .nova-announcement a,
    .nova-announcement span {
      font-size: 9px;
      letter-spacing: 0.12em;
    }

    .nova-mobile-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      display: block;
      max-height: calc(100vh - 100%);
      overflow-y: auto;
      background: var(--nova-header-bg, #ffffff);
      border-top: 1px solid var(--nova-border, #eeeeee);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.10);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(-8px);
      transition:
        opacity 180ms ease,
        transform 180ms ease,
        visibility 180ms ease;
    }

    .nova-mobile-menu.is-open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nova-mobile-menu__inner {
      padding: 18px 18px 24px;
    }

    .nova-mobile-item {
      border-bottom: 1px solid var(--nova-border, #eeeeee);
    }

    .nova-mobile-link {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: inherit;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .nova-mobile-plus {
      color: var(--nova-accent, #ff2d7e);
      font-size: 20px;
      font-weight: 400;
    }

    .nova-mobile-submenu {
      padding: 0 0 12px 12px;
    }

    .nova-mobile-sub-link {
      display: block;
      padding: 9px 0;
      color: #555555;
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
    }

    .nova-mobile-grandchild {
      padding-left: 14px;
    }

    .nova-mobile-grandchild a {
      display: block;
      padding: 7px 0;
      color: #888888;
      text-decoration: none;
      font-size: 12px;
    }

    .nova-mobile-actions {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 18px;
    }

    .nova-mobile-actions a {
      padding: 13px 8px;
      background: #f7f7f7;
      border-radius: 10px;
      color: inherit;
      text-align: center;
      text-decoration: none;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

  }


  /* ============================================
     REDUCED MOTION
     ============================================ */

  @media (prefers-reduced-motion: reduce) {

    .nova-header *,
    .nova-mobile-menu,
    .nova-dropdown,
    .nova-dropdown__sub {
      transition: none !important;
    }

  }
/* END_SECTION:header2 */

/* START_SECTION:main-account (INDEX:11) */
/* =========================================================
   NOVA CUSTOMER ACCOUNT
   ========================================================= */

.nova-account {
  width: 100%;

  padding: 70px 0 110px;

  background: var(--nova-account-bg);

  color: var(--nova-account-text);
}

.nova-account *,
.nova-account *::before,
.nova-account *::after {
  box-sizing: border-box;
}

.nova-account__container {
  width: min(
    calc(100% - 48px),
    var(--nova-account-width)
  );

  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.nova-account__header {
  padding: 35px 0 45px;

  text-align: center;
}

.nova-account__eyebrow {
  display: block;

  margin-bottom: 15px;

  color: var(--nova-account-accent);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nova-account__header h1 {
  margin: 0;

  font-size: clamp(45px, 7vw, 80px);

  line-height: 0.9;

  font-weight: 900;

  letter-spacing: -0.07em;
}

.nova-account__header p {
  max-width: 500px;

  margin: 18px auto 0;

  color: var(--nova-account-muted);

  font-size: 12px;

  line-height: 1.7;
}


/* =========================================================
   NAV
   ========================================================= */

.nova-account__nav {
  min-height: 54px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  margin-bottom: 45px;

  border-top: 1px solid var(--nova-account-border);
  border-bottom: 1px solid var(--nova-account-border);
}

.nova-account__nav a {
  min-height: 34px;

  padding: 0 14px;

  display: inline-flex;
  align-items: center;

  color: var(--nova-account-muted);

  text-decoration: none;

  border-radius: 999px;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    color 160ms ease,
    background 160ms ease;
}

.nova-account__nav a:hover,
.nova-account__nav a.is-active {
  background: var(--nova-account-card);

  color: var(--nova-account-text);
}


/* =========================================================
   LAYOUT
   ========================================================= */

.nova-account__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, 0.6fr);

  gap: 65px;

  align-items: start;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.nova-account__section-heading {
  min-height: 70px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  padding-bottom: 18px;

  border-bottom: 1px solid var(--nova-account-border);
}

.nova-account__section-label {
  display: block;

  margin-bottom: 8px;

  color: var(--nova-account-accent);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-account__section-heading h2 {
  margin: 0;

  font-size: 30px;

  line-height: 1;

  font-weight: 900;

  letter-spacing: -0.05em;
}

.nova-account__orders-count {
  flex-shrink: 0;

  color: var(--nova-account-muted);

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   ORDERS
   ========================================================= */

.nova-account__order {
  min-height: 100px;

  padding: 22px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;

  border-bottom: 1px solid var(--nova-account-border);
}

.nova-account__order-main {
  display: flex;
  flex-wrap: wrap;

  gap: 40px;
}

.nova-account__order-number,
.nova-account__order-date {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.nova-account__order-number span,
.nova-account__order-date span {
  color: var(--nova-account-muted);

  font-size: 8px;
  font-weight: 700;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-account__order-number strong,
.nova-account__order-date strong {
  font-size: 11px;
  font-weight: 900;
}

.nova-account__order-status {
  display: flex;
  align-items: center;

  gap: 16px;
}

.nova-account__status {
  padding: 6px 9px;

  border-radius: 999px;

  background: var(--nova-account-card);

  color: var(--nova-account-muted);

  font-size: 7px;
  font-weight: 900;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-account__status--fulfilled {
  background: rgba(45, 180, 110, 0.12);

  color: #258c58;
}

.nova-account__status--partial {
  background: rgba(255, 180, 60, 0.14);

  color: #a76b00;
}

.nova-account__order-total {
  min-width: 70px;

  font-size: 11px;
  font-weight: 900;

  text-align: right;
}

.nova-account__order-link {
  width: 31px;
  height: 31px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--nova-account-border);

  border-radius: 50%;

  color: var(--nova-account-text);

  text-decoration: none;

  font-size: 12px;

  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nova-account__order-link:hover {
  background: var(--nova-account-accent);

  border-color: var(--nova-account-accent);

  color: #ffffff;

  transform: translateX(2px);
}


/* =========================================================
   SIDEBAR CARDS
   ========================================================= */

.nova-account__sidebar {
  display: flex;

  flex-direction: column;

  gap: 15px;

  position: sticky;
  top: 110px;
}

.nova-account__card {
  padding: 24px;

  background: var(--nova-account-card);

  border-radius: var(--nova-account-radius);
}

.nova-account__card-label {
  display: block;

  margin-bottom: 20px;

  color: var(--nova-account-accent);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* =========================================================
   PROFILE
   ========================================================= */

.nova-account__profile {
  display: flex;

  align-items: center;

  gap: 13px;
}

.nova-account__avatar {
  width: 42px;
  height: 42px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nova-account-text);

  color: var(--nova-account-bg);

  font-size: 13px;
  font-weight: 900;
}

.nova-account__profile h3 {
  margin: 0;

  font-size: 13px;

  font-weight: 900;
}

.nova-account__profile p {
  margin: 4px 0 0;

  color: var(--nova-account-muted);

  font-size: 9px;

  overflow-wrap: anywhere;
}

.nova-account__card-link {
  min-height: 42px;

  margin-top: 20px;

  padding-top: 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-top: 1px solid var(--nova-account-border);

  color: var(--nova-account-text);

  text-decoration: none;

  font-size: 9px;
  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.nova-account__card-link:hover {
  color: var(--nova-account-accent);
}


/* =========================================================
   QUICK LINKS
   ========================================================= */

.nova-account__quick-links {
  display: flex;

  flex-direction: column;

  gap: 0;
}

.nova-account__quick-links a {
  min-height: 45px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-bottom: 1px solid var(--nova-account-border);

  color: var(--nova-account-text);

  text-decoration: none;

  font-size: 9px;
  font-weight: 800;
}

.nova-account__quick-links a:last-child {
  border-bottom: 0;
}

.nova-account__quick-links a:hover {
  color: var(--nova-account-accent);
}


/* =========================================================
   MESSAGE
   ========================================================= */

.nova-account__message {
  padding: 25px;

  background: var(--nova-account-text);

  color: var(--nova-account-bg);

  border-radius: var(--nova-account-radius);
}

.nova-account__message-star {
  display: block;

  margin-bottom: 18px;

  color: var(--nova-account-accent);

  font-size: 18px;
}

.nova-account__message h3 {
  margin: 0;

  font-size: 24px;

  line-height: 0.98;

  font-weight: 900;

  letter-spacing: -0.045em;
}

.nova-account__message p {
  margin: 12px 0 0;

  opacity: 0.6;

  font-size: 10px;

  line-height: 1.6;
}


/* =========================================================
   EMPTY ORDERS
   ========================================================= */

.nova-account__empty {
  min-height: 390px;

  padding: 50px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-bottom: 1px solid var(--nova-account-border);
}

.nova-account__empty-icon {
  width: 60px;
  height: 60px;

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--nova-account-card);

  color: var(--nova-account-accent);
}

.nova-account__empty-icon svg {
  width: 26px;
  height: 26px;
}

.nova-account__empty > span {
  color: var(--nova-account-accent);

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}

.nova-account__empty h3 {
  max-width: 450px;

  margin: 9px 0 10px;

  font-size: 31px;

  line-height: 0.98;

  font-weight: 900;

  letter-spacing: -0.05em;
}

.nova-account__empty p {
  max-width: 400px;

  margin: 0 0 22px;

  color: var(--nova-account-muted);

  font-size: 10px;

  line-height: 1.6;
}

.nova-account__empty a {
  min-height: 44px;

  padding: 0 18px;

  display: inline-flex;
  align-items: center;

  gap: 18px;

  border-radius: 999px;

  background: var(--nova-account-text);

  color: var(--nova-account-bg);

  text-decoration: none;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.nova-account__empty a:hover {
  background: var(--nova-account-accent);

  color: #ffffff;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1050px) {

  .nova-account__layout {
    gap: 35px;
  }

  .nova-account__order {
    align-items: flex-start;

    flex-direction: column;
  }

  .nova-account__order-status {
    width: 100%;

    justify-content: space-between;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .nova-account {
    padding: 35px 0 70px;
  }

  .nova-account__container {
    width: calc(100% - 28px);
  }

  .nova-account__header {
    padding: 30px 0 35px;
  }

  .nova-account__header h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .nova-account__header p {
    font-size: 11px;
  }

  .nova-account__nav {
    justify-content: flex-start;

    overflow-x: auto;

    margin-bottom: 30px;

    scrollbar-width: none;
  }

  .nova-account__nav::-webkit-scrollbar {
    display: none;
  }

  .nova-account__nav a {
    flex-shrink: 0;

    padding: 0 11px;

    font-size: 7px;
  }

  .nova-account__layout {
    display: flex;

    flex-direction: column;

    gap: 30px;
  }

  .nova-account__orders {
    width: 100%;
  }

  .nova-account__section-heading {
    min-height: 60px;
  }

  .nova-account__section-heading h2 {
    font-size: 25px;
  }

  .nova-account__order {
    padding: 20px 0;
  }

  .nova-account__order-main {
    width: 100%;

    justify-content: space-between;

    gap: 15px;
  }

  .nova-account__order-status {
    gap: 10px;
  }

  .nova-account__order-total {
    min-width: auto;
  }

  .nova-account__sidebar {
    width: 100%;

    position: static;
  }

  .nova-account__card {
    padding: 20px;
  }

  .nova-account__message {
    padding: 22px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 430px) {

  .nova-account__container {
    width: calc(100% - 20px);
  }

  .nova-account__order-main {
    flex-direction: column;

    gap: 13px;
  }

  .nova-account__order-status {
    flex-wrap: wrap;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-account *,
  .nova-account *::before,
  .nova-account *::after {
    transition: none !important;
  }

}
/* END_SECTION:main-account */

/* START_SECTION:main-addresses (INDEX:12) */
.nova-addresses {
  width: 100%;
  padding: 70px 0 110px;
  background: var(--nova-addresses-bg);
  color: var(--nova-addresses-text);
}

.nova-addresses *,
.nova-addresses *::before,
.nova-addresses *::after {
  box-sizing: border-box;
}

.nova-addresses__container {
  width: min(
    calc(100% - 48px),
    var(--nova-addresses-width)
  );

  margin: 0 auto;
}


/* HEADER */

.nova-addresses__header {
  padding: 35px 0 45px;
  text-align: center;
}

.nova-addresses__eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--nova-addresses-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nova-addresses__header h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.07em;
}

.nova-addresses__header p {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--nova-addresses-muted);
  font-size: 12px;
  line-height: 1.7;
}

.nova-addresses__back {
  display: inline-flex;
  margin-top: 20px;
  color: var(--nova-addresses-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-addresses__back:hover {
  color: var(--nova-addresses-accent);
}


/* TOOLBAR */

.nova-addresses__toolbar {
  min-height: 78px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--nova-addresses-border);
}

.nova-addresses__section-label,
.nova-addresses__card-label {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-addresses-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nova-addresses__toolbar h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-addresses__add-button,
.nova-addresses__primary-button,
.nova-addresses__secondary-button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--nova-addresses-button-radius);
  font-family: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nova-addresses__add-button,
.nova-addresses__primary-button {
  border: 1px solid var(--nova-addresses-text);
  background: var(--nova-addresses-text);
  color: var(--nova-addresses-bg);
}

.nova-addresses__add-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nova-addresses__add-button span {
  font-size: 15px;
  line-height: 1;
}

.nova-addresses__add-button:hover,
.nova-addresses__primary-button:hover {
  border-color: var(--nova-addresses-accent);
  background: var(--nova-addresses-accent);
  color: #ffffff;
}

.nova-addresses__secondary-button {
  border: 1px solid var(--nova-addresses-border);
  background: transparent;
  color: var(--nova-addresses-text);
}

.nova-addresses__secondary-button:hover {
  border-color: var(--nova-addresses-text);
}


/* ADD / EDIT PANELS */

.nova-addresses__add-panel {
  margin-top: 24px;
}

.nova-addresses__add-panel[hidden],
.nova-addresses__edit-panel[hidden] {
  display: none;
}

.nova-addresses__card {
  padding: 26px;
  border: 1px solid var(--nova-addresses-border);
  border-radius: var(--nova-addresses-radius);
  background: var(--nova-addresses-card);
}

.nova-addresses__card--form {
  margin-bottom: 30px;
}

.nova-addresses__card-heading,
.nova-addresses__edit-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.nova-addresses__card-heading h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nova-addresses__close {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-addresses-border);
  border-radius: 50%;
  background: transparent;
  color: var(--nova-addresses-text);
  font-family: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.nova-addresses__close:hover {
  border-color: var(--nova-addresses-accent);
  color: var(--nova-addresses-accent);
}


/* FORM */

.nova-addresses__form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.nova-addresses__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.nova-addresses__field-grid--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.nova-addresses__field label {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-addresses-text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-addresses__field input,
.nova-addresses__field select {
  width: 100%;
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--nova-addresses-border);
  border-radius: 9px;
  outline: none;
  background: var(--nova-addresses-bg);
  color: var(--nova-addresses-text);
  font-family: inherit;
  font-size: 11px;
}

.nova-addresses__field select {
  appearance: auto;
}

.nova-addresses__field input::placeholder {
  color: var(--nova-addresses-muted);
  opacity: .7;
}

.nova-addresses__field input:focus,
.nova-addresses__field select:focus {
  border-color: var(--nova-addresses-accent);
  box-shadow: 0 0 0 3px rgba(255,45,126,.10);
}

.nova-addresses__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--nova-addresses-text);
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.nova-addresses__checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--nova-addresses-accent);
}

.nova-addresses__form-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 5px;
}


/* ADDRESS GRID */

.nova-addresses__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 28px;
}

.nova-addresses__grid > .nova-addresses__card {
  min-width: 0;
}

.nova-addresses__default-badge {
  display: inline-flex;
  margin-top: 4px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--nova-addresses-accent);
  color: #ffffff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nova-addresses__edit-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--nova-addresses-muted);
  font-family: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nova-addresses__edit-button:hover {
  color: var(--nova-addresses-accent);
}

.nova-addresses__details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 145px;
  color: var(--nova-addresses-muted);
  font-size: 11px;
  line-height: 1.5;
}

.nova-addresses__details strong {
  margin-bottom: 3px;
  color: var(--nova-addresses-text);
  font-size: 13px;
  font-weight: 900;
}

.nova-addresses__card-actions {
  min-height: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--nova-addresses-border);
}

.nova-addresses__inline-form {
  margin: 0;
}

.nova-addresses__text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--nova-addresses-text);
  font-family: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
}

.nova-addresses__text-button:hover {
  color: var(--nova-addresses-accent);
}

.nova-addresses__delete-button {
  color: var(--nova-addresses-muted);
}

.nova-addresses__edit-panel {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--nova-addresses-border);
}

.nova-addresses__edit-heading {
  margin-bottom: 20px;
}

.nova-addresses__edit-heading .nova-addresses__card-label {
  margin: 0;
}


/* EMPTY */

.nova-addresses__empty {
  min-height: 390px;
  padding: 55px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--nova-addresses-border);
}

.nova-addresses__empty-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nova-addresses-card);
  color: var(--nova-addresses-accent);
}

.nova-addresses__empty-icon svg {
  width: 27px;
  height: 27px;
}

.nova-addresses__empty > span {
  color: var(--nova-addresses-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nova-addresses__empty h3 {
  max-width: 500px;
  margin: 10px 0;
  font-size: 32px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-addresses__empty p {
  max-width: 420px;
  margin: 0 0 22px;
  color: var(--nova-addresses-muted);
  font-size: 10px;
  line-height: 1.6;
}


/* RESPONSIVE */

@media screen and (max-width: 900px) {
  .nova-addresses__container {
    width: calc(100% - 32px);
  }

  .nova-addresses__grid {
    grid-template-columns: 1fr;
  }

  .nova-addresses__field-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .nova-addresses {
    padding: 40px 0 70px;
  }

  .nova-addresses__container {
    width: calc(100% - 28px);
  }

  .nova-addresses__header {
    padding: 25px 0 35px;
  }

  .nova-addresses__header h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .nova-addresses__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .nova-addresses__add-button {
    width: 100%;
    justify-content: center;
  }

  .nova-addresses__field-grid,
  .nova-addresses__field-grid--three {
    grid-template-columns: 1fr;
  }

  .nova-addresses__card {
    padding: 20px;
  }

  .nova-addresses__details {
    min-height: 0;
    padding-bottom: 20px;
  }

  .nova-addresses__form-actions {
    flex-direction: column-reverse;
  }

  .nova-addresses__form-actions button {
    width: 100%;
  }
}

@media screen and (max-width: 430px) {
  .nova-addresses__container {
    width: calc(100% - 20px);
  }

  .nova-addresses__toolbar h2 {
    font-size: 26px;
  }

  .nova-addresses__card-heading {
    gap: 12px;
  }

  .nova-addresses__card-actions {
    flex-wrap: wrap;
    gap: 12px;
    padding: 13px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-addresses *,
  .nova-addresses *::before,
  .nova-addresses *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-addresses */

/* START_SECTION:main-article-comments (INDEX:13) */
.nova-comments {
  width: 100%;
  padding: var(--nova-comments-top) 0 var(--nova-comments-bottom);
  background: var(--nova-comments-bg);
  color: var(--nova-comments-text);
}

.nova-comments *,
.nova-comments *::before,
.nova-comments *::after {
  box-sizing: border-box;
}

.nova-comments__container {
  width: min(
    calc(100% - 48px),
    var(--nova-comments-width)
  );
  margin: 0 auto;
}

.nova-comments__header {
  max-width: var(--nova-comments-content-width);
  margin: 0 auto 40px;
  text-align: center;
}

.nova-comments__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--nova-comments-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nova-comments__header h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 52px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-comments__count {
  color: var(--nova-comments-muted);
  font-size: .45em;
  vertical-align: middle;
  letter-spacing: -.02em;
}

.nova-comments__header p,
.nova-comments__form-heading p,
.nova-comments__empty p,
.nova-comments__disabled p {
  margin: 13px 0 0;
  color: var(--nova-comments-muted);
  font-size: 11px;
  line-height: 1.7;
}

.nova-comments__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: start;
}

.nova-comments__list {
  min-width: 0;
}

.nova-comments__comment {
  padding: 24px 0;
  border-bottom: 1px solid var(--nova-comments-border);
}

.nova-comments__comment:first-child {
  padding-top: 0;
}

.nova-comments__comment-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nova-comments__avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nova-comments-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nova-comments__comment-top strong {
  display: block;
  font-size: 11px;
  font-weight: 900;
}

.nova-comments__comment-top time {
  display: block;
  margin-top: 3px;
  color: var(--nova-comments-muted);
  font-size: 8px;
}

.nova-comments__comment-body {
  margin: 17px 0 0 50px;
  color: var(--nova-comments-text);
  font-size: 12px;
  line-height: 1.75;
}

.nova-comments__comment-body p {
  margin: 0 0 10px;
}

.nova-comments__comment-body p:last-child {
  margin-bottom: 0;
}

.nova-comments__form-card {
  position: sticky;
  top: 25px;
  padding: 28px;
  border: 1px solid var(--nova-comments-border);
  border-radius: var(--nova-comments-radius);
  background: var(--nova-comments-card);
}

.nova-comments__form-heading {
  padding-bottom: 20px;
}

.nova-comments__form-heading h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-comments__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nova-comments__field {
  margin-top: 15px;
}

.nova-comments__field label {
  display: block;
  margin-bottom: 7px;
  color: var(--nova-comments-text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-comments__field input,
.nova-comments__field textarea {
  width: 100%;
  border: 1px solid var(--nova-comments-border);
  border-radius: 10px;
  outline: none;
  background: var(--nova-comments-bg);
  color: var(--nova-comments-text);
  font: inherit;
  font-size: 11px;
}

.nova-comments__field input {
  height: 45px;
  padding: 0 13px;
}

.nova-comments__field textarea {
  min-height: 130px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}

.nova-comments__field input::placeholder,
.nova-comments__field textarea::placeholder {
  color: var(--nova-comments-muted);
  opacity: .7;
}

.nova-comments__field input:focus,
.nova-comments__field textarea:focus {
  border-color: var(--nova-comments-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--nova-comments-accent) 12%, transparent);
}

.nova-comments__privacy {
  margin: 13px 0 0;
  color: var(--nova-comments-muted);
  font-size: 8px;
  line-height: 1.6;
}

.nova-comments__submit {
  width: 100%;
  min-height: 46px;
  margin-top: 17px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--nova-comments-text);
  border-radius: var(--nova-comments-button-radius);
  background: var(--nova-comments-text);
  color: var(--nova-comments-bg);
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nova-comments__submit:hover {
  border-color: var(--nova-comments-accent);
  background: var(--nova-comments-accent);
  color: #fff;
}

.nova-comments__submit span {
  font-size: 13px;
}

.nova-comments__message {
  margin-bottom: 15px;
  padding: 12px 14px;
  border: 1px solid var(--nova-comments-border);
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.6;
}

.nova-comments__message--success {
  border-color: var(--nova-comments-accent);
  color: var(--nova-comments-accent);
}

.nova-comments__message--error {
  color: var(--nova-comments-text);
}

.nova-comments__message ul {
  margin: 7px 0 0;
  padding-left: 17px;
}

.nova-comments__empty,
.nova-comments__disabled {
  min-height: 330px;
  padding: 50px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-comments-border);
  border-radius: var(--nova-comments-radius);
  text-align: center;
}

.nova-comments__empty-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nova-comments-card);
  color: var(--nova-comments-accent);
  font-size: 18px;
}

.nova-comments__empty h3,
.nova-comments__disabled h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-comments__empty p,
.nova-comments__disabled p {
  max-width: 450px;
}

.nova-comments__pagination {
  max-width: var(--nova-comments-content-width);
  margin: 35px auto 0;
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--nova-comments-border);
}

.nova-comments__pagination > a,
.nova-comments__pages a,
.nova-comments__pages span {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-comments-border);
  border-radius: 999px;
  color: var(--nova-comments-muted);
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
}

.nova-comments__pagination > a:hover,
.nova-comments__pages a:hover,
.nova-comments__pages span.is-current {
  border-color: var(--nova-comments-accent);
  background: var(--nova-comments-accent);
  color: #fff;
}

.nova-comments__pages {
  display: flex;
  gap: 5px;
}


/* RESPONSIVE */

@media screen and (max-width: 900px) {
  .nova-comments__layout {
    grid-template-columns: 1fr;
  }

  .nova-comments__form-card {
    position: static;
  }
}

@media screen and (max-width: 749px) {
  .nova-comments {
    padding-top: calc(var(--nova-comments-top) * .7);
    padding-bottom: calc(var(--nova-comments-bottom) * .7);
  }

  .nova-comments__container {
    width: calc(100% - 28px);
  }

  .nova-comments__field-grid {
    grid-template-columns: 1fr;
  }

  .nova-comments__form-card {
    padding: 22px;
  }

  .nova-comments__pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 430px) {
  .nova-comments__container {
    width: calc(100% - 20px);
  }

  .nova-comments__comment-body {
    margin-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-comments *,
  .nova-comments *::before,
  .nova-comments *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-article-comments */

/* START_SECTION:main-article (INDEX:14) */
.nova-article {
  width: 100%;
  padding: var(--nova-article-top) 0 var(--nova-article-bottom);
  background: var(--nova-article-bg);
  color: var(--nova-article-text);
}

.nova-article *,
.nova-article *::before,
.nova-article *::after {
  box-sizing: border-box;
}

.nova-article__container {
  width: min(
    calc(100% - 48px),
    var(--nova-article-width)
  );
  margin: 0 auto;
}


/* HEADER */

.nova-article__back {
  display: inline-flex;
  margin-bottom: 35px;
  color: var(--nova-article-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-article__back:hover {
  color: var(--nova-article-accent);
}

.nova-article__header {
  max-width: 1000px;
  margin: 0 auto 45px;
  text-align: center;
}

.nova-article__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--nova-article-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.nova-article__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 15px;
}

.nova-article__tags a,
.nova-article__bottom-tags a {
  color: var(--nova-article-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-article__header h1 {
  max-width: 1050px;
  margin: 0 auto;
  font-size: var(--nova-article-title-size);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.075em;
}

.nova-article__meta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px 17px;
  color: var(--nova-article-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.nova-article__meta span::before {
  content: "•";
  margin-right: 17px;
  color: var(--nova-article-border);
}

.nova-article__read-time {
  display: inline-flex;
}


/* HERO IMAGE */

.nova-article__hero-image {
  width: 100%;
  margin: 0 auto 65px;
}

.nova-article__hero-image img {
  width: 100%;
  max-height: 720px;
  display: block;
  object-fit: cover;
  border-radius: var(--nova-article-radius);
}

.nova-article__hero-image figcaption {
  margin-top: 8px;
  color: var(--nova-article-muted);
  font-size: 8px;
  text-align: right;
}


/* BODY */

.nova-article__body-layout {
  display: grid;
  grid-template-columns: 100px minmax(0, var(--nova-article-content-width));
  gap: 25px;
  justify-content: center;
  align-items: start;
}

.nova-article__share {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-top: 5px;
}

.nova-article__share > span {
  margin-bottom: 3px;
  color: var(--nova-article-muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.nova-article__share a {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-article-border);
  border-radius: 50%;
  color: var(--nova-article-text);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.nova-article__share a:hover {
  border-color: var(--nova-article-accent);
  background: var(--nova-article-accent);
  color: #fff;
}

.nova-article__content {
  min-width: 0;
}

.nova-article__intro {
  margin-bottom: 35px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--nova-article-border);
  color: var(--nova-article-muted);
  font-size: calc(var(--nova-article-body-size) + 3px);
  line-height: 1.65;
  font-weight: 500;
}

.nova-article__richtext {
  color: var(--nova-article-text);
  font-size: var(--nova-article-body-size);
  line-height: 1.85;
}

.nova-article__richtext > *:first-child {
  margin-top: 0;
}

.nova-article__richtext h2 {
  margin: 45px 0 15px;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-article__richtext h3 {
  margin: 35px 0 13px;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nova-article__richtext h4 {
  margin: 28px 0 10px;
  font-size: 18px;
  font-weight: 900;
}

.nova-article__richtext p {
  margin: 0 0 22px;
}

.nova-article__richtext a {
  color: var(--nova-article-accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nova-article__richtext strong {
  font-weight: 900;
}

.nova-article__richtext ul,
.nova-article__richtext ol {
  margin: 0 0 25px;
  padding-left: 25px;
}

.nova-article__richtext li {
  margin-bottom: 8px;
}

.nova-article__richtext blockquote {
  margin: 35px 0;
  padding: 5px 0 5px 25px;
  border-left: 3px solid var(--nova-article-accent);
  color: var(--nova-article-muted);
  font-size: 1.15em;
  line-height: 1.65;
}

.nova-article__richtext img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  display: block;
  border-radius: var(--nova-article-radius);
}

.nova-article__richtext figure {
  margin: 30px 0;
}

.nova-article__richtext iframe,
.nova-article__richtext video {
  max-width: 100%;
}

.nova-article__richtext table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}

.nova-article__richtext th,
.nova-article__richtext td {
  padding: 10px;
  border: 1px solid var(--nova-article-border);
  text-align: left;
}

.nova-article__richtext code {
  padding: 2px 5px;
  border-radius: 4px;
  background: var(--nova-article-card);
  font-size: .85em;
}

.nova-article__richtext pre {
  max-width: 100%;
  margin: 30px 0;
  padding: 18px;
  overflow-x: auto;
  border-radius: var(--nova-article-radius);
  background: var(--nova-article-card);
}


/* TAGS / SHARE */

.nova-article__bottom-tags,
.nova-article__bottom-share {
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--nova-article-border);
}

.nova-article__bottom-tags > span,
.nova-article__bottom-share > span {
  display: block;
  margin-bottom: 12px;
  color: var(--nova-article-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nova-article__bottom-tags > div,
.nova-article__bottom-share > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.nova-article__bottom-share a {
  color: var(--nova-article-text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-article__bottom-share a:hover {
  color: var(--nova-article-accent);
}


/* ARTICLE NAVIGATION */

.nova-article__navigation {
  max-width: var(--nova-article-content-width);
  margin: 75px auto 0;
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 25px;
  align-items: center;
  border-top: 1px solid var(--nova-article-border);
  border-bottom: 1px solid var(--nova-article-border);
}

.nova-article__navigation-item {
  min-width: 0;
}

.nova-article__navigation-item--next {
  text-align: right;
}

.nova-article__navigation-item > span {
  display: block;
  margin-bottom: 7px;
  color: var(--nova-article-muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.nova-article__navigation-item a,
.nova-article__all-posts {
  color: var(--nova-article-text);
  font-size: 9px;
  font-weight: 900;
  text-decoration: none;
}

.nova-article__navigation-item a:hover,
.nova-article__all-posts:hover {
  color: var(--nova-article-accent);
}

.nova-article__all-posts {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-article-border);
  border-radius: var(--nova-article-button-radius);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nova-article__all-posts:hover {
  border-color: var(--nova-article-accent);
}


/* RELATED */

.nova-article__related {
  margin-top: 90px;
}

.nova-article__related-heading {
  margin-bottom: 25px;
  text-align: center;
}

.nova-article__related-heading h2 {
  margin: 0;
  font-size: clamp(30px, 5vw, 48px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-article__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.nova-article__related-card {
  overflow: hidden;
  border: 1px solid var(--nova-article-border);
  border-radius: var(--nova-article-radius);
  background: var(--nova-article-card);
}

.nova-article__related-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--nova-article-border);
}

.nova-article__related-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}

.nova-article__related-image:hover img {
  transform: scale(1.025);
}

.nova-article__related-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-article-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
}

.nova-article__related-content {
  padding: 20px;
}

.nova-article__related-content time {
  color: var(--nova-article-muted);
  font-size: 8px;
  text-transform: uppercase;
}

.nova-article__related-content h3 {
  margin: 10px 0 0;
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nova-article__related-content h3 a {
  text-decoration: none;
}

.nova-article__related-content h3 a:hover {
  color: var(--nova-article-accent);
}

.nova-article__read-more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--nova-article-text);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-article__read-more:hover {
  color: var(--nova-article-accent);
}


/* FOOTER */

.nova-article__footer {
  display: flex;
  justify-content: center;
  padding-top: 55px;
}

.nova-article__back-button {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-article-text);
  border-radius: var(--nova-article-button-radius);
  background: var(--nova-article-text);
  color: var(--nova-article-bg);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-article__back-button:hover {
  border-color: var(--nova-article-accent);
  background: var(--nova-article-accent);
  color: #fff;
}


/* RESPONSIVE */

@media screen and (max-width: 900px) {
  .nova-article__body-layout {
    grid-template-columns: 1fr;
  }

  .nova-article__share {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    padding: 0 0 20px;
    border-bottom: 1px solid var(--nova-article-border);
  }

  .nova-article__share > span {
    writing-mode: initial;
    transform: none;
    margin: 0 8px 0 0;
  }

  .nova-article__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .nova-article {
    padding-top: calc(var(--nova-article-top) * .7);
    padding-bottom: calc(var(--nova-article-bottom) * .7);
  }

  .nova-article__container {
    width: calc(100% - 28px);
  }

  .nova-article__header {
    margin-bottom: 32px;
  }

  .nova-article__header h1 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .nova-article__hero-image {
    margin-bottom: 40px;
  }

  .nova-article__hero-image img {
    max-height: 500px;
  }

  .nova-article__navigation {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .nova-article__navigation-item--next {
    text-align: center;
  }

  .nova-article__all-posts {
    order: -1;
    justify-self: center;
  }

  .nova-article__related {
    margin-top: 65px;
  }

  .nova-article__related-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 430px) {
  .nova-article__container {
    width: calc(100% - 20px);
  }

  .nova-article__header h1 {
    font-size: 42px;
  }

  .nova-article__meta {
    gap: 7px 10px;
  }

  .nova-article__meta span::before {
    margin-right: 10px;
  }

  .nova-article__richtext {
    font-size: calc(var(--nova-article-body-size) - 1px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-article *,
  .nova-article *::before,
  .nova-article *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-article */

/* START_SECTION:main-blog (INDEX:15) */
.nova-blog {
  width: 100%;
  padding: var(--nova-blog-section-top) 0 var(--nova-blog-section-bottom);
  background: var(--nova-blog-bg);
  color: var(--nova-blog-text);
}

.nova-blog *,
.nova-blog *::before,
.nova-blog *::after {
  box-sizing: border-box;
}

.nova-blog a {
  color: inherit;
}

.nova-blog__container {
  width: min(
    calc(100% - 48px),
    var(--nova-blog-width)
  );
  margin: 0 auto;
}


/* HERO */

.nova-blog__hero {
  max-width: 900px;
  margin: 0 auto 55px;
}

.nova-blog__hero--left {
  text-align: left;
  margin-left: 0;
}

.nova-blog__hero--center {
  text-align: center;
}

.nova-blog__hero--right {
  text-align: right;
  margin-right: 0;
}

.nova-blog__eyebrow,
.nova-blog__section-label {
  display: block;
  margin-bottom: 13px;
  color: var(--nova-blog-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .2em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nova-blog__hero h1 {
  margin: 0;
  font-size: var(--nova-blog-title-size);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.07em;
}

.nova-blog__hero p,
.nova-blog__description {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--nova-blog-muted);
  font-size: 13px;
  line-height: 1.7;
}

.nova-blog__hero--left p,
.nova-blog__hero--left .nova-blog__description {
  margin-left: 0;
}

.nova-blog__hero--right p,
.nova-blog__hero--right .nova-blog__description {
  margin-right: 0;
}

.nova-blog__description a {
  color: var(--nova-blog-accent);
}


/* TAGS */

.nova-blog__tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  padding-bottom: 13px;
  overflow-x: auto;
  scrollbar-width: none;
  border-bottom: 1px solid var(--nova-blog-border);
}

.nova-blog__tags::-webkit-scrollbar {
  display: none;
}

.nova-blog__tag {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--nova-blog-border);
  border-radius: 999px;
  color: var(--nova-blog-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: .18s ease;
}

.nova-blog__tag:hover,
.nova-blog__tag.is-active {
  border-color: var(--nova-blog-accent);
  background: var(--nova-blog-accent);
  color: #fff;
}


/* FEATURED */

.nova-blog__featured {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
  min-height: 500px;
  margin-bottom: 70px;
  overflow: hidden;
  border: 1px solid var(--nova-blog-border);
  border-radius: var(--nova-blog-radius);
  background: var(--nova-blog-card-bg);
}

.nova-blog__featured-media {
  position: relative;
  min-height: 500px;
  display: block;
  overflow: hidden;
  background: var(--nova-blog-border);
}

.nova-blog__featured-media img,
.nova-blog__card-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.nova-blog__featured-media:hover img,
.nova-blog__card-media:hover img {
  transform: scale(1.025);
}

.nova-blog__featured-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--nova-blog-accent);
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-blog__featured-content {
  min-width: 0;
  padding: 55px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nova-blog__meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 11px;
}

.nova-blog__meta-tags a {
  color: var(--nova-blog-accent);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-blog__featured-content time,
.nova-blog__card-meta {
  color: var(--nova-blog-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nova-blog__featured-content h2 {
  margin: 12px 0 0;
  font-size: var(--nova-blog-feature-title-size);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-blog__featured-content h2 a,
.nova-blog__card h3 a {
  text-decoration: none;
}

.nova-blog__featured-content h2 a:hover,
.nova-blog__card h3 a:hover {
  color: var(--nova-blog-accent);
}

.nova-blog__author {
  margin-top: 12px;
  color: var(--nova-blog-muted);
  font-size: 9px;
}

.nova-blog__featured-excerpt {
  max-width: 520px;
  margin-top: 20px;
  color: var(--nova-blog-muted);
  font-size: var(--nova-blog-excerpt-size);
  line-height: 1.7;
}

.nova-blog__read-more {
  width: fit-content;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--nova-blog-text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-blog__read-more span {
  font-size: 13px;
  transition: transform .18s ease;
}

.nova-blog__read-more:hover {
  color: var(--nova-blog-accent);
}

.nova-blog__read-more:hover span {
  transform: translateX(3px);
}


/* PLACEHOLDER */

.nova-blog__image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nova-blog-border);
  color: var(--nova-blog-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}


/* LIST HEADING */

.nova-blog__listing-heading {
  min-height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--nova-blog-border);
}

.nova-blog__listing-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-blog__count {
  color: var(--nova-blog-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* GRID */

.nova-blog__grid {
  display: grid;
  gap: var(--nova-blog-card-gap);
  padding-top: 28px;
}

.nova-blog__grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nova-blog__grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nova-blog__grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.nova-blog__card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--nova-blog-border);
  border-radius: var(--nova-blog-radius);
  background: var(--nova-blog-card-bg);
}

.nova-blog__card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--nova-blog-border);
  text-decoration: none;
}

.nova-blog__card-content {
  padding: 22px;
}

.nova-blog__card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.nova-blog__card h3 {
  margin: 11px 0 0;
  font-size: var(--nova-blog-card-title-size);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.045em;
}

.nova-blog__excerpt {
  margin-top: 13px;
  color: var(--nova-blog-muted);
  font-size: var(--nova-blog-excerpt-size);
  line-height: 1.65;
}


/* EMPTY */

.nova-blog__empty {
  min-height: 400px;
  padding: 70px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid var(--nova-blog-border);
}

.nova-blog__empty-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--nova-blog-card-bg);
  color: var(--nova-blog-accent);
  font-size: 20px;
}

.nova-blog__empty h2 {
  margin: 4px 0 12px;
  font-size: 36px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.055em;
}

.nova-blog__empty p {
  max-width: 450px;
  margin: 0;
  color: var(--nova-blog-muted);
  font-size: 11px;
  line-height: 1.7;
}


/* PAGINATION */

.nova-blog__pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 35px;
}

.nova-blog__pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nova-blog__page,
.nova-blog__pagination-button {
  min-width: 34px;
  height: 34px;
  padding: 0 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-blog-border);
  border-radius: 999px;
  color: var(--nova-blog-muted);
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-blog__page.is-current,
.nova-blog__page:hover,
.nova-blog__pagination-button:hover {
  border-color: var(--nova-blog-accent);
  background: var(--nova-blog-accent);
  color: #fff;
}


/* RESPONSIVE */

@media screen and (max-width: 1100px) {
  .nova-blog__featured {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  }

  .nova-blog__featured-content {
    padding: 40px 32px;
  }

  .nova-blog__grid--4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 900px) {
  .nova-blog__featured {
    grid-template-columns: 1fr;
  }

  .nova-blog__featured-media {
    min-height: 430px;
  }

  .nova-blog__grid--3,
  .nova-blog__grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .nova-blog {
    padding-top: calc(var(--nova-blog-section-top) * .7);
    padding-bottom: calc(var(--nova-blog-section-bottom) * .7);
  }

  .nova-blog__container {
    width: calc(100% - 28px);
  }

  .nova-blog__hero {
    margin-bottom: 38px;
  }

  .nova-blog__hero h1 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .nova-blog__featured {
    margin-bottom: 50px;
  }

  .nova-blog__featured-media {
    min-height: 320px;
  }

  .nova-blog__featured-content {
    padding: 32px 25px;
  }

  .nova-blog__listing-heading h2 {
    font-size: 25px;
  }

  .nova-blog__grid--2,
  .nova-blog__grid--3,
  .nova-blog__grid--4 {
    grid-template-columns: 1fr;
  }

  .nova-blog__pagination {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media screen and (max-width: 430px) {
  .nova-blog__container {
    width: calc(100% - 20px);
  }

  .nova-blog__featured-media {
    min-height: 260px;
  }

  .nova-blog__card-content {
    padding: 19px;
  }

  .nova-blog__pagination-button {
    min-width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-blog *,
  .nova-blog *::before,
  .nova-blog *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-blog */

/* START_SECTION:main-contact (INDEX:16) */
.nova-contact {
  width: 100%;
  padding: var(--nova-contact-top) 0 var(--nova-contact-bottom);
  background: var(--nova-contact-bg);
  color: var(--nova-contact-text);
}

.nova-contact *,
.nova-contact *::before,
.nova-contact *::after {
  box-sizing: border-box;
}

.nova-contact__container {
  width: min(
    calc(100% - 48px),
    var(--nova-contact-width)
  );
  margin: 0 auto;
}

.nova-contact__hero {
  max-width: 850px;
  margin: 0 auto 55px;
}

.nova-contact__hero--left {
  margin-left: 0;
  text-align: left;
}

.nova-contact__hero--center {
  text-align: center;
}

.nova-contact__hero--right {
  margin-right: 0;
  text-align: right;
}

.nova-contact__eyebrow {
  display: block;
  margin-bottom: 11px;
  color: var(--nova-contact-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .19em;
  text-transform: uppercase;
}

.nova-contact__hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.075em;
}

.nova-contact__hero p {
  max-width: 650px;
  margin: 19px auto 0;
  color: var(--nova-contact-muted);
  font-size: 13px;
  line-height: 1.7;
}

.nova-contact__hero--left p {
  margin-left: 0;
}

.nova-contact__hero--right p {
  margin-right: 0;
}

.nova-contact__layout {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.nova-contact__details {
  padding-top: 10px;
}

.nova-contact__intro {
  max-width: 450px;
  margin-bottom: 40px;
  color: var(--nova-contact-muted);
  font-size: 13px;
  line-height: 1.75;
}

.nova-contact__detail {
  padding: 20px 0;
  border-top: 1px solid var(--nova-contact-border);
}

.nova-contact__detail:last-of-type {
  border-bottom: 1px solid var(--nova-contact-border);
}

.nova-contact__detail-label {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-contact-muted);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.nova-contact__detail a,
.nova-contact__detail address,
.nova-contact__detail > div {
  color: var(--nova-contact-text);
  font-size: 12px;
  font-style: normal;
  line-height: 1.7;
  text-decoration: none;
}

.nova-contact__detail a:hover {
  color: var(--nova-contact-accent);
}

.nova-contact__socials {
  padding-top: 25px;
}

.nova-contact__social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.nova-contact__social-links a {
  padding: 8px 11px;
  border: 1px solid var(--nova-contact-border);
  border-radius: 999px;
  color: var(--nova-contact-text);
  font-size: 8px;
  font-weight: 900;
  text-decoration: none;
}

.nova-contact__social-links a:hover {
  border-color: var(--nova-contact-accent);
  background: var(--nova-contact-accent);
  color: #fff;
}

.nova-contact__form-card {
  max-width: var(--nova-contact-form-width);
  margin-left: auto;
  padding: 35px;
  border: 1px solid var(--nova-contact-border);
  border-radius: var(--nova-contact-radius);
  background: var(--nova-contact-card);
}

.nova-contact__form-heading {
  margin-bottom: 22px;
}

.nova-contact__form-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-contact__form-heading p {
  margin: 13px 0 0;
  color: var(--nova-contact-muted);
  font-size: 11px;
  line-height: 1.7;
}

.nova-contact__field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.nova-contact__field {
  margin-top: 15px;
}

.nova-contact__field label {
  display: block;
  margin-bottom: 7px;
  color: var(--nova-contact-text);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-contact__field input,
.nova-contact__field textarea {
  width: 100%;
  border: 1px solid var(--nova-contact-border);
  border-radius: 10px;
  outline: none;
  background: var(--nova-contact-bg);
  color: var(--nova-contact-text);
  font: inherit;
  font-size: 11px;
}

.nova-contact__field input {
  height: 45px;
  padding: 0 13px;
}

.nova-contact__field textarea {
  min-height: 140px;
  padding: 13px;
  resize: vertical;
  line-height: 1.6;
}

.nova-contact__field input::placeholder,
.nova-contact__field textarea::placeholder {
  color: var(--nova-contact-muted);
  opacity: .7;
}

.nova-contact__field input:focus,
.nova-contact__field textarea:focus {
  border-color: var(--nova-contact-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--nova-contact-accent) 12%, transparent);
}

.nova-contact__privacy {
  margin: 13px 0 0;
  color: var(--nova-contact-muted);
  font-size: 8px;
  line-height: 1.6;
}

.nova-contact__submit {
  width: 100%;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--nova-contact-text);
  border-radius: var(--nova-contact-button-radius);
  background: var(--nova-contact-text);
  color: var(--nova-contact-bg);
  font: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
}

.nova-contact__submit:hover {
  border-color: var(--nova-contact-accent);
  background: var(--nova-contact-accent);
  color: #fff;
}

.nova-contact__submit span {
  font-size: 13px;
}

.nova-contact__message {
  margin-bottom: 17px;
  padding: 13px 15px;
  border: 1px solid var(--nova-contact-border);
  border-radius: 9px;
  font-size: 9px;
  line-height: 1.6;
}

.nova-contact__message--success {
  border-color: var(--nova-contact-accent);
  color: var(--nova-contact-accent);
}

.nova-contact__message--error {
  color: var(--nova-contact-text);
}

.nova-contact__message ul {
  margin: 7px 0 0;
  padding-left: 17px;
}

.nova-contact__map {
  margin-top: 80px;
}

.nova-contact__map-heading {
  margin-bottom: 22px;
  text-align: center;
}

.nova-contact__map-heading h2 {
  margin: 0;
  font-size: 36px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-contact__map-frame {
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--nova-contact-border);
  border-radius: var(--nova-contact-radius);
  background: var(--nova-contact-card);
}

.nova-contact__map-frame iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
}

.nova-contact__bottom-note {
  max-width: 750px;
  margin: 55px auto 0;
  color: var(--nova-contact-muted);
  font-size: 10px;
  line-height: 1.7;
  text-align: center;
}

@media screen and (max-width: 900px) {
  .nova-contact__layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .nova-contact__form-card {
    max-width: none;
    margin-left: 0;
  }
}

@media screen and (max-width: 749px) {
  .nova-contact {
    padding-top: calc(var(--nova-contact-top) * .7);
    padding-bottom: calc(var(--nova-contact-bottom) * .7);
  }

  .nova-contact__container {
    width: calc(100% - 28px);
  }

  .nova-contact__hero {
    margin-bottom: 38px;
  }

  .nova-contact__hero h1 {
    font-size: clamp(45px, 13vw, 70px);
  }

  .nova-contact__field-grid {
    grid-template-columns: 1fr;
  }

  .nova-contact__form-card {
    padding: 24px;
  }

  .nova-contact__map {
    margin-top: 55px;
  }
}

@media screen and (max-width: 430px) {
  .nova-contact__container {
    width: calc(100% - 20px);
  }

  .nova-contact__form-card {
    padding: 20px;
  }

  .nova-contact__form-heading h2 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-contact *,
  .nova-contact *::before,
  .nova-contact *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-contact */

/* START_SECTION:main-login (INDEX:17) */
.nova-login {
  width: 100%;
  min-height: 720px;
  padding: var(--nova-login-padding) 0;
  background: var(--nova-login-bg);
  color: var(--nova-login-text);
}

.nova-login *,
.nova-login *::before,
.nova-login *::after {
  box-sizing: border-box;
}

.nova-login__container {
  width: min(calc(100% - 48px), 1500px);
  margin: 0 auto;
}

.nova-login__layout {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 560px);
  overflow: hidden;
  border: 1px solid var(--nova-login-border);
  border-radius: var(--nova-login-radius);
  background: var(--nova-login-card-bg);
}

.nova-login__panel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--nova-login-accent);
  color: #ffffff;
}

.nova-login__image {
  position: absolute;
  inset: 0;
}

.nova-login__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.55));
}

.nova-login__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nova-login__panel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nova-login-accent);
}

.nova-login__panel-placeholder span {
  font-size: clamp(60px, 9vw, 130px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -.08em;
}

.nova-login__panel-content {
  position: absolute;
  right: 55px;
  bottom: 55px;
  left: 55px;
  z-index: 2;
}

.nova-login__side-eyebrow,
.nova-login__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--nova-login-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.nova-login__side-eyebrow {
  color: #ffffff;
  margin-bottom: 14px;
}

.nova-login__panel-content h2 {
  max-width: 600px;
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.065em;
}

.nova-login__panel-content p {
  max-width: 480px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  line-height: 1.7;
}

.nova-login__form-area {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 55px;
  background: var(--nova-login-card-bg);
}

.nova-login__form-area--centered {
  min-height: 650px;
}

.nova-login__card {
  width: min(100%, var(--nova-login-card-width));
  margin: 0 auto;
}

.nova-login__heading {
  margin-bottom: 35px;
  text-align: center;
}

.nova-login__heading h1 {
  margin: 0;
  color: var(--nova-login-text);
  font-size: clamp(34px, 5vw, 52px);
  line-height: .95;
  font-weight: 900;
  letter-spacing: -.06em;
}

.nova-login__subtitle {
  max-width: 430px;
  margin: 15px auto 0;
  color: var(--nova-login-muted);
  font-size: 12px;
  line-height: 1.7;
}

.nova-login__errors {
  margin-bottom: 22px;
  padding: 15px 17px;
  border: 1px solid #e5a4a4;
  border-radius: 10px;
  background: #fff5f5;
  color: #8c2020;
  font-size: 11px;
  line-height: 1.6;
}

.nova-login__errors ul {
  margin: 0;
  padding-left: 17px;
}

.nova-login__form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.nova-login__field label {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-login-text);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-login__field input {
  width: 100%;
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--nova-login-border);
  border-radius: 9px;
  outline: none;
  background: transparent;
  color: var(--nova-login-text);
  font-family: inherit;
  font-size: 12px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.nova-login__field input::placeholder {
  color: var(--nova-login-muted);
  opacity: .7;
}

.nova-login__field input:focus {
  border-color: var(--nova-login-accent);
  box-shadow: 0 0 0 3px rgba(255,45,126,.12);
}

.nova-login__password-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nova-login__password-row label {
  margin-bottom: 8px;
}

.nova-login__forgot {
  color: var(--nova-login-muted);
  font-size: 9px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.nova-login__forgot:hover,
.nova-login__register a:hover,
.nova-login__back:hover {
  color: var(--nova-login-accent);
}

.nova-login__submit {
  width: 100%;
  min-height: 54px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--nova-login-button-radius);
  background: var(--nova-login-accent);
  color: #ffffff;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nova-login__submit:hover {
  transform: translateY(-1px);
}

.nova-login__submit:active {
  transform: translateY(0);
}

.nova-login__submit:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.nova-login__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 27px 0;
}

.nova-login__divider::before,
.nova-login__divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--nova-login-border);
}

.nova-login__divider span {
  color: var(--nova-login-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-login__register {
  text-align: center;
  color: var(--nova-login-muted);
  font-size: 11px;
  line-height: 1.6;
}

.nova-login__register a {
  color: var(--nova-login-text);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nova-login__recovery {
  display: none;
}

.nova-login.is-recovering .nova-login__login {
  display: none;
}

.nova-login.is-recovering .nova-login__recovery {
  display: block;
}

.nova-login__back {
  display: inline-flex;
  margin-top: 22px;
  color: var(--nova-login-muted);
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.nova-login__success {
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid #b9d8c1;
  border-radius: 9px;
  background: #f3fbf5;
  color: #245c35;
  font-size: 11px;
  line-height: 1.5;
}

@media screen and (max-width: 899px) {
  .nova-login {
    min-height: auto;
    padding: 50px 0;
  }

  .nova-login__container {
    width: calc(100% - 32px);
  }

  .nova-login__layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nova-login__panel {
    min-height: 330px;
  }

  .nova-login__panel-content {
    right: 30px;
    bottom: 30px;
    left: 30px;
  }

  .nova-login__panel-content h2 {
    font-size: clamp(36px, 10vw, 55px);
  }

  .nova-login__form-area {
    padding: 55px 30px;
  }

  .nova-login__form-area--centered {
    min-height: 0;
  }
}

@media screen and (max-width: 549px) {
  .nova-login {
    padding: 30px 0 40px;
  }

  .nova-login__container {
    width: calc(100% - 20px);
  }

  .nova-login__layout {
    border-radius: calc(var(--nova-login-radius) * .75);
  }

  .nova-login__panel {
    min-height: 270px;
  }

  .nova-login__panel-content {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .nova-login__panel-content p {
    margin-top: 12px;
    font-size: 11px;
  }

  .nova-login__form-area {
    padding: 42px 20px;
  }

  .nova-login__heading {
    margin-bottom: 28px;
  }

  .nova-login__heading h1 {
    font-size: 38px;
  }

  .nova-login__field input {
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-login *,
  .nova-login *::before,
  .nova-login *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-login */

/* START_SECTION:main-order (INDEX:18) */
.nova-order {
  width: 100%;
  padding: 65px 0 100px;
  background: var(--nova-order-bg);
  color: var(--nova-order-text);
}

.nova-order *,
.nova-order *::before,
.nova-order *::after {
  box-sizing: border-box;
}

.nova-order__container {
  width: min(
    calc(100% - 48px),
    var(--nova-order-width)
  );
  margin: 0 auto;
}


/* HEADER */

.nova-order__header {
  padding: 10px 0 45px;
  text-align: center;
}

.nova-order__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--nova-order-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-order__back:hover {
  color: var(--nova-order-accent);
}

.nova-order__eyebrow,
.nova-order__section-label,
.nova-order__status-label {
  display: block;
  color: var(--nova-order-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.nova-order__eyebrow {
  margin-bottom: 13px;
}

.nova-order__header h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .9;
  font-weight: 900;
  letter-spacing: -.07em;
}

.nova-order__date {
  margin: 15px 0 0;
  color: var(--nova-order-muted);
  font-size: 11px;
}


/* NOVA ORDER JOURNEY */

.nova-order__journey {
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--nova-order-border);
  border-radius: var(--nova-order-radius);
  background: var(--nova-order-card);
}

.nova-order__journey-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 32px;
}

.nova-order__journey-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-order__journey-current {
  min-width: 130px;
  text-align: right;
}

.nova-order__journey-current span,
.nova-order__journey-message-label {
  display: block;
  color: var(--nova-order-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nova-order__journey-current strong {
  display: block;
  margin-top: 5px;
  color: var(--nova-order-accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nova-order__timeline {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

.nova-order__step {
  flex: 0 0 auto;
  width: 110px;
  text-align: center;
}

.nova-order__step-marker {
  width: 36px;
  height: 36px;
  margin: 0 auto 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-order-border);
  border-radius: 50%;
  background: var(--nova-order-bg);
  color: var(--nova-order-muted);
  font-size: 11px;
  font-weight: 900;
}

.nova-order__step--complete .nova-order__step-marker {
  border-color: var(--nova-order-accent);
  background: var(--nova-order-accent);
  color: #fff;
}

.nova-order__step--current .nova-order__step-marker {
  border: 2px solid var(--nova-order-accent);
  background: var(--nova-order-bg);
}

.nova-order__step--current .nova-order__step-marker span {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: var(--nova-order-accent);
}

.nova-order__step-content strong {
  display: block;
  color: var(--nova-order-text);
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.nova-order__step--upcoming .nova-order__step-content strong {
  color: var(--nova-order-muted);
}

.nova-order__step-content span {
  display: block;
  margin-top: 6px;
  color: var(--nova-order-muted);
  font-size: 8px;
  line-height: 1.4;
}

.nova-order__step--current .nova-order__step-content span {
  color: var(--nova-order-text);
}

.nova-order__step-line {
  flex: 1 1 auto;
  height: 1px;
  margin-top: 18px;
  background: var(--nova-order-border);
}

.nova-order__step-line--complete {
  background: var(--nova-order-accent);
}

.nova-order__journey-message {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: calc(var(--nova-order-radius) / 2);
  background: var(--nova-order-bg);
}

.nova-order__journey-message strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 900;
}

.nova-order__journey-message p {
  margin: 6px 0 0;
  color: var(--nova-order-muted);
  font-size: 10px;
  line-height: 1.6;
}

.nova-order__journey--cancelled {
  border-color: var(--nova-order-accent);
}

.nova-order__journey--cancelled h2 {
  margin: 7px 0 5px;
  font-size: 28px;
  font-weight: 900;
}

.nova-order__journey--cancelled p {
  margin: 0;
  color: var(--nova-order-muted);
  font-size: 10px;
}

.nova-order__journey--cancelled .nova-order__section-label {
  color: var(--nova-order-accent);
}


/* STATUS */

.nova-order__status-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.nova-order__status-card {
  min-height: 105px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--nova-order-border);
  border-radius: var(--nova-order-radius);
  background: var(--nova-order-card);
}

.nova-order__status-card strong {
  color: var(--nova-order-text);
  font-size: 14px;
  font-weight: 900;
}


/* MAIN LAYOUT */

.nova-order__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 24px;
  align-items: start;
}

.nova-order__main,
.nova-order__sidebar {
  min-width: 0;
}

.nova-order__section-heading {
  min-height: 68px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--nova-order-border);
}

.nova-order__section-heading h2 {
  margin: 7px 0 0;
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
}

.nova-order__item-count {
  color: var(--nova-order-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}


/* ITEMS */

.nova-order__items {
  border-bottom: 1px solid var(--nova-order-border);
}

.nova-order__item {
  min-height: 145px;
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--nova-order-border);
}

.nova-order__item:last-child {
  border-bottom: 0;
}

.nova-order__item-image {
  width: 105px;
  height: 125px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--nova-order-card);
}

.nova-order__item-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nova-order__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-order-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .1em;
}

.nova-order__item-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 0;
}

.nova-order__item-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.nova-order__product-title {
  display: block;
  color: var(--nova-order-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.3;
  text-decoration: none;
}

.nova-order__product-title:hover {
  color: var(--nova-order-accent);
}

.nova-order__variant {
  display: block;
  margin-top: 5px;
  color: var(--nova-order-muted);
  font-size: 9px;
}

.nova-order__item-price {
  flex-shrink: 0;
  color: var(--nova-order-text);
  font-size: 12px;
  font-weight: 900;
}

.nova-order__item-bottom {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--nova-order-muted);
  font-size: 9px;
}

.nova-order__item-discount {
  color: var(--nova-order-accent);
  font-weight: 900;
  text-transform: uppercase;
}

.nova-order__fulfillment-note {
  color: var(--nova-order-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}


/* SUMMARY */

.nova-order__sidebar {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nova-order__summary-card,
.nova-order__address-card {
  padding: 24px;
  border: 1px solid var(--nova-order-border);
  border-radius: var(--nova-order-radius);
  background: var(--nova-order-card);
}

.nova-order__section-heading--small {
  min-height: 0;
  padding-bottom: 20px;
}

.nova-order__section-heading--small h2 {
  font-size: 25px;
}

.nova-order__summary-lines {
  display: flex;
  flex-direction: column;
}

.nova-order__summary-lines > div {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid var(--nova-order-border);
  color: var(--nova-order-muted);
  font-size: 10px;
}

.nova-order__summary-lines > div strong {
  color: var(--nova-order-text);
  font-size: 10px;
}

.nova-order__summary-lines .nova-order__summary-discount,
.nova-order__summary-lines .nova-order__summary-discount strong {
  color: var(--nova-order-accent);
}

.nova-order__summary-lines .nova-order__summary-total {
  min-height: 62px;
  border-bottom: 0;
  color: var(--nova-order-text);
}

.nova-order__summary-total strong {
  font-size: 16px !important;
  font-weight: 900;
}


/* ADDRESS */

.nova-order__address-card h3 {
  margin: 7px 0 20px;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nova-order__address {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--nova-order-muted);
  font-size: 10px;
  line-height: 1.5;
}

.nova-order__address strong {
  margin-bottom: 3px;
  color: var(--nova-order-text);
  font-size: 11px;
  font-weight: 900;
}


/* NOTE / CANCELLED */

.nova-order__note-card,
.nova-order__alert-card {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--nova-order-border);
  border-radius: var(--nova-order-radius);
  background: var(--nova-order-card);
}

.nova-order__note-card p,
.nova-order__alert-card p {
  margin: 10px 0 0;
  color: var(--nova-order-muted);
  font-size: 10px;
  line-height: 1.7;
}

.nova-order__alert-card {
  border-color: rgba(255,45,126,.25);
}

.nova-order__alert-card strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
}

.nova-order__alert-card span:last-child {
  display: block;
  margin-top: 10px;
  color: var(--nova-order-muted);
  font-size: 9px;
}


/* TRACKING */

.nova-order__tracking {
  margin-top: 65px;
}

.nova-order__tracking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding-top: 22px;
}

.nova-order__tracking-card {
  padding: 22px;
  border: 1px solid var(--nova-order-border);
  border-radius: var(--nova-order-radius);
  background: var(--nova-order-card);
}

.nova-order__tracking-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}

.nova-order__tracking-top span,
.nova-order__tracking-number span {
  color: var(--nova-order-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nova-order__tracking-top strong {
  color: var(--nova-order-accent);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.nova-order__tracking-number {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nova-order__tracking-number a,
.nova-order__tracking-number strong {
  color: var(--nova-order-text);
  font-size: 12px;
  font-weight: 900;
  word-break: break-word;
}

.nova-order__tracking-number a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nova-order__tracking-number a:hover {
  color: var(--nova-order-accent);
}

.nova-order__carrier {
  display: block;
  margin-top: 14px;
  color: var(--nova-order-muted);
  font-size: 9px;
}


/* FOOTER */

.nova-order__footer {
  display: flex;
  justify-content: center;
  padding-top: 55px;
}

.nova-order__account-button {
  min-height: 46px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--nova-order-text);
  border-radius: var(--nova-order-button-radius);
  background: var(--nova-order-text);
  color: var(--nova-order-bg);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.nova-order__account-button:hover {
  border-color: var(--nova-order-accent);
  background: var(--nova-order-accent);
  color: #ffffff;
}


/* RESPONSIVE */

@media screen and (max-width: 1000px) {
  .nova-order__layout {
    grid-template-columns: 1fr;
  }

  .nova-order__sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .nova-order__summary-card {
    grid-column: 1 / -1;
  }
}

@media screen and (max-width: 749px) {
  .nova-order__journey {
    padding: 22px 18px;
  }

  .nova-order__journey-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .nova-order__journey-current {
    text-align: left;
  }

  .nova-order__timeline {
    display: block;
  }

  .nova-order__step {
    width: 100%;
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 13px;
    text-align: left;
  }

  .nova-order__step-marker {
    margin: 0;
  }

  .nova-order__step-content {
    padding-top: 9px;
  }

  .nova-order__step-line {
    width: 1px;
    height: 22px;
    margin: 0 0 0 17px;
  }

  .nova-order__step-line--complete {
    background: var(--nova-order-accent);
  }

  .nova-order {

    padding: 40px 0 70px;
  }

  .nova-order__container {
    width: calc(100% - 28px);
  }

  .nova-order__header {
    padding-bottom: 35px;
  }

  .nova-order__header h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .nova-order__status-row {
    grid-template-columns: 1fr;
  }

  .nova-order__status-card {
    min-height: 85px;
  }

  .nova-order__section-heading h2 {
    font-size: 25px;
  }

  .nova-order__sidebar {
    display: flex;
  }

  .nova-order__tracking-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 520px) {
  .nova-order__container {
    width: calc(100% - 20px);
  }

  .nova-order__item {
    grid-template-columns: 75px minmax(0, 1fr);
    gap: 13px;
  }

  .nova-order__item-image {
    width: 75px;
    height: 95px;
  }

  .nova-order__item-top {
    flex-direction: column;
    gap: 9px;
  }

  .nova-order__item-price {
    font-size: 11px;
  }

  .nova-order__item-info {
    min-width: 0;
  }

  .nova-order__summary-card,
  .nova-order__address-card,
  .nova-order__tracking-card,
  .nova-order__note-card,
  .nova-order__alert-card {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-order *,
  .nova-order *::before,
  .nova-order *::after {
    transition: none !important;
  }
}
/* END_SECTION:main-order */

/* START_SECTION:nova-cart-drawer (INDEX:24) */
html.nova-cart-open,
body.nova-cart-open {
  overflow: hidden;
}
/* =========================================================
   NOVA CART DRAWER
   ========================================================= */

.nova-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
}

.nova-cart-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.nova-cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  transition: opacity 260ms ease;
  backdrop-filter: blur(3px);
}

.nova-cart-drawer.is-open .nova-cart-drawer__overlay {
  opacity: 1;
}


/* =========================================================
   PANEL
   ========================================================= */

.nova-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 470px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  color: #111111;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-cart-drawer.is-open .nova-cart-drawer__panel {
  transform: translateX(0);
}


/* =========================================================
   HEADER
   ========================================================= */

.nova-cart-drawer__header {
  min-height: 92px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ededed;
  flex-shrink: 0;
}

.nova-cart-drawer__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nova-cart-drawer__eyebrow {
  color: #ff2d7e;
  font-size: 9px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nova-cart-drawer__title {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-size: 27px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.nova-cart-drawer__count {
  color: #777777;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.nova-cart-drawer__close {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  background: #ffffff;
  color: #111111;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.nova-cart-drawer__close:hover {
  background: #f7f7f7;
  border-color: #d8d8d8;
  transform: rotate(90deg);
}

.nova-cart-drawer__close span {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: currentColor;
}

.nova-cart-drawer__close span:first-child {
  transform: rotate(45deg);
}

.nova-cart-drawer__close span:last-child {
  transform: rotate(-45deg);
}


/* =========================================================
   BODY
   ========================================================= */

.nova-cart-drawer__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}


/* =========================================================
   FREE SHIPPING
   ========================================================= */

.nova-cart-shipping {
  margin: 20px 22px 8px;
  padding: 15px 16px;
  background: #faf7f9;
  border-radius: 13px;
}

.nova-cart-shipping__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.nova-cart-shipping__message {
  font-size: 11px;
  line-height: 1.45;
  color: #444444;
}

.nova-cart-shipping__message strong {
  color: #111111;
  font-weight: 900;
}

.nova-cart-shipping__sparkle {
  color: #ff2d7e;
  font-size: 15px;
}

.nova-cart-shipping__track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: #e7dfe3;
  border-radius: 999px;
}

.nova-cart-shipping__progress {
  height: 100%;
  background: #ff2d7e;
  border-radius: inherit;
  transition: width 350ms ease;
}


/* =========================================================
   CART ITEMS
   ========================================================= */

.nova-cart-drawer__items {
  padding: 8px 22px 24px;
}

.nova-cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #ededed;
}

.nova-cart-item:first-child {
  padding-top: 12px;
}

.nova-cart-item__image {
  width: 92px;
  height: 112px;
  overflow: hidden;
  display: block;
  background: #f5f5f5;
  border-radius: 11px;
}

.nova-cart-item__image-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 350ms ease;
}

.nova-cart-item__image:hover .nova-cart-item__image-img {
  transform: scale(1.04);
}

.nova-cart-item__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: #cccccc;
}

.nova-cart-item__details {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.nova-cart-item__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.nova-cart-item__vendor {
  display: block;
  margin-bottom: 5px;
  color: #ff2d7e;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nova-cart-item__title {
  display: block;
  color: #111111;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
}

.nova-cart-item__title:hover {
  color: #ff2d7e;
}

.nova-cart-item__variant {
  display: block;
  margin-top: 5px;
  color: #777777;
  font-size: 10px;
  line-height: 1.4;
}

.nova-cart-item__properties {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 6px;
  color: #888888;
  font-size: 9px;
}

.nova-cart-item__remove {
  flex-shrink: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #999999;
  cursor: pointer;
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nova-cart-item__remove:hover {
  color: #ff2d7e;
}

.nova-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nova-cart-item__price {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
}

.nova-cart-item__price-sale {
  color: #ff2d7e;
}

.nova-cart-item__price s {
  color: #999999;
  font-size: 10px;
  font-weight: 500;
}


/* =========================================================
   QUANTITY
   ========================================================= */

.nova-cart-quantity {
  height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 999px;
  overflow: hidden;
}

.nova-cart-quantity__button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nova-cart-quantity__button:hover {
  background: #f5f5f5;
}

.nova-cart-quantity__value {
  min-width: 24px;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.nova-cart-empty {
  min-height: 430px;
  padding: 60px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nova-cart-empty__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #faf7f9;
  color: #ff2d7e;
  border-radius: 50%;
}

.nova-cart-empty__icon svg {
  width: 27px;
  height: 27px;
}

.nova-cart-empty__eyebrow {
  margin-bottom: 10px;
  color: #ff2d7e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nova-cart-empty h3 {
  margin: 0;
  color: #111111;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nova-cart-empty p {
  max-width: 290px;
  margin: 13px auto 24px;
  color: #777777;
  font-size: 12px;
  line-height: 1.6;
}

.nova-cart-empty__button {
  min-height: 46px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.nova-cart-empty__button:hover {
  background: #ff2d7e;
  transform: translateY(-1px);
}


/* =========================================================
   FOOTER
   ========================================================= */

.nova-cart-drawer__footer {
  padding: 0 22px 20px;
  border-top: 1px solid #ededed;
  background: #ffffff;
  flex-shrink: 0;
}

.nova-cart-drawer__footer[hidden] {
  display: none;
}


/* =========================================================
   CART NOTE
   ========================================================= */

.nova-cart-note {
  border-bottom: 1px solid #ededed;
}

.nova-cart-note summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  color: #333333;
  font-size: 10px;
  font-weight: 800;
}

.nova-cart-note summary::-webkit-details-marker {
  display: none;
}

.nova-cart-note__plus {
  font-size: 18px;
  font-weight: 400;
}

.nova-cart-note[open] .nova-cart-note__plus {
  transform: rotate(45deg);
}

.nova-cart-note__content {
  padding: 0 0 15px;
}

.nova-cart-note textarea {
  width: 100%;
  min-height: 75px;
  padding: 12px;
  resize: vertical;
  border: 1px solid #dedede;
  border-radius: 9px;
  background: #fafafa;
  color: #111111;
  font-family: inherit;
  font-size: 11px;
  outline: none;
}

.nova-cart-note textarea:focus {
  border-color: #ff2d7e;
}

.nova-cart-note__save {
  margin-top: 8px;
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: #ff2d7e;
  cursor: pointer;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}


/* =========================================================
   SUMMARY
   ========================================================= */

.nova-cart-summary {
  padding: 17px 0 13px;
}

.nova-cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nova-cart-summary__row span {
  color: #555555;
  font-size: 11px;
}

.nova-cart-summary__row strong {
  color: #111111;
  font-size: 16px;
  font-weight: 900;
}

.nova-cart-summary__note {
  margin: 5px 0 0;
  color: #999999;
  font-size: 9px;
  line-height: 1.4;
}


/* =========================================================
   CHECKOUT
   ========================================================= */

.nova-cart-checkout-form {
  margin: 0;
}

.nova-cart-checkout {
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nova-cart-checkout:hover {
  background: #ff2d7e;
  transform: translateY(-1px);
}

.nova-cart-checkout span:last-child {
  font-size: 11px;
  letter-spacing: 0;
}


.nova-cart-view,
.nova-cart-continue {
  display: block;
  width: 100%;
  padding: 12px 0 0;
  border: 0;
  background: transparent;
  color: #555555;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-cart-view:hover,
.nova-cart-continue:hover {
  color: #ff2d7e;
}


/* =========================================================
   LOADING
   ========================================================= */

.nova-cart-drawer.is-loading .nova-cart-drawer__body {
  opacity: 0.55;
  pointer-events: none;
}

.nova-cart-drawer.is-loading .nova-cart-checkout {
  opacity: 0.6;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 990px) {

  .nova-cart-drawer__panel {
    width: min(100%, 440px);
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .nova-cart-drawer__panel {
    width: 100%;
  }

  .nova-cart-drawer__header {
    min-height: 78px;
    padding: 18px 18px;
  }

  .nova-cart-drawer__title {
    font-size: 24px;
  }

  .nova-cart-drawer__items {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nova-cart-shipping {
    margin-left: 16px;
    margin-right: 16px;
  }

  .nova-cart-item {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
  }

  .nova-cart-item__image {
    width: 78px;
    height: 96px;
  }

  .nova-cart-item__details {
    gap: 14px;
  }

  .nova-cart-item__title {
    font-size: 12px;
  }

  .nova-cart-drawer__footer {
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 14px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-cart-drawer *,
  .nova-cart-drawer {
    transition: none !important;
  }

}
/* END_SECTION:nova-cart-drawer */

/* START_SECTION:nova-cart (INDEX:25) */
/* =========================================================
   NOVA CART PAGE
   ========================================================= */

.nova-cart-page {
  width: 100%;
  padding: 70px 0 110px;
  background: var(--nova-cart-bg);
  color: var(--nova-cart-text);
}

.nova-cart-page *,
.nova-cart-page *::before,
.nova-cart-page *::after {
  box-sizing: border-box;
}

.nova-cart-page__container {
  width: min(
    calc(100% - 48px),
    var(--nova-cart-width)
  );
  margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.nova-cart-page__header {
  padding: 35px 0 45px;
  text-align: center;
}

.nova-cart-page__eyebrow {
  display: block;
  margin-bottom: 15px;
  color: var(--nova-cart-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nova-cart-page__title {
  margin: 0;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.nova-cart-page__count {
  display: block;
  margin-top: 16px;
  color: var(--nova-cart-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   SHIPPING
   ========================================================= */

.nova-cart-shipping {
  margin-bottom: 35px;
  padding: 18px 20px;
  background: var(--nova-cart-card);
  border-radius: var(--nova-cart-radius);
}

.nova-cart-shipping__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
  color: var(--nova-cart-muted);
  font-size: 11px;
  line-height: 1.5;
}

.nova-cart-shipping__top strong {
  color: var(--nova-cart-text);
  font-weight: 900;
}

.nova-cart-shipping__icon {
  color: var(--nova-cart-accent);
  font-size: 17px;
}

.nova-cart-shipping__track {
  width: 100%;
  height: 5px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}

.nova-cart-shipping__progress {
  height: 100%;
  background: var(--nova-cart-accent);
  border-radius: inherit;
  transition: width 400ms ease;
}


/* =========================================================
   LAYOUT
   ========================================================= */

.nova-cart-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: start;
}


/* =========================================================
   ITEMS
   ========================================================= */

.nova-cart-page__items-header {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nova-cart-border);
  color: var(--nova-cart-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nova-cart-line {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  padding: 25px 0;
  border-bottom: 1px solid var(--nova-cart-border);

  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.nova-cart-line.is-updating {
  opacity: 0.55;
  pointer-events: none;
}

.nova-cart-line.is-removing {
  opacity: 0;
  transform: translateX(-15px);
}

.nova-cart-line__image {
  width: 170px;
  aspect-ratio: 0.85;
  display: block;
  overflow: hidden;
  background: var(--nova-cart-card);
  border-radius: var(--nova-cart-radius);
}

.nova-cart-line__image-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-cart-line__image:hover .nova-cart-line__image-img {
  transform: scale(1.035);
}

.nova-cart-line__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-cart-muted);
  font-size: 35px;
  font-weight: 900;
}

.nova-cart-line__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 4px 0;
}

.nova-cart-line__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.nova-cart-line__vendor {
  display: block;
  margin-bottom: 7px;
  color: var(--nova-cart-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-cart-line__title {
  display: block;
  color: var(--nova-cart-text);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nova-cart-line__title:hover {
  color: var(--nova-cart-accent);
}

.nova-cart-line__variant {
  display: block;
  margin-top: 7px;
  color: var(--nova-cart-muted);
  font-size: 10px;
}

.nova-cart-line__properties {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: var(--nova-cart-muted);
  font-size: 9px;
}

.nova-cart-line__remove {
  flex-shrink: 0;
  color: var(--nova-cart-muted);
  font-size: 9px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nova-cart-line__remove:hover {
  color: var(--nova-cart-accent);
}

.nova-cart-line__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nova-cart-line__price {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--nova-cart-text);
  font-size: 13px;
  font-weight: 900;
}

.nova-cart-line__price-current {
  color: var(--nova-cart-accent);
}

.nova-cart-line__price s {
  color: var(--nova-cart-muted);
  font-size: 10px;
  font-weight: 500;
}


/* =========================================================
   QUANTITY
   ========================================================= */

.nova-cart-line__quantity {
  height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--nova-cart-border);
  border-radius: 999px;
  overflow: hidden;
}

.nova-cart-line__quantity-button {
  width: 39px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--nova-cart-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nova-cart-line__quantity-button:hover {
  background: var(--nova-cart-card);
}

.nova-cart-line__quantity-value {
  width: 38px;
  height: 40px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nova-cart-text);
  text-align: center;
  font-family: inherit;
  font-size: 11px;
  font-weight: 900;
  appearance: textfield;
}

.nova-cart-line__quantity-value::-webkit-outer-spin-button,
.nova-cart-line__quantity-value::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}


/* =========================================================
   NOTE
   ========================================================= */

.nova-cart-note {
  padding-top: 25px;
}

.nova-cart-note label {
  display: block;
  margin-bottom: 9px;
  color: var(--nova-cart-text);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-cart-note textarea {
  width: 100%;
  min-height: 90px;
  padding: 14px;
  resize: vertical;
  border: 1px solid var(--nova-cart-border);
  border-radius: 12px;
  outline: none;
  background: var(--nova-cart-card);
  color: var(--nova-cart-text);
  font-family: inherit;
  font-size: 11px;
  line-height: 1.5;
}

.nova-cart-note textarea:focus {
  border-color: var(--nova-cart-accent);
}


/* =========================================================
   CONTINUE SHOPPING
   ========================================================= */

.nova-cart-continue {
  margin-top: 25px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--nova-cart-text);
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-cart-continue:hover {
  color: var(--nova-cart-accent);
}


/* =========================================================
   SUMMARY
   ========================================================= */

.nova-cart-summary {
  position: sticky;
  top: 110px;
}

.nova-cart-summary__card {
  padding: 30px;
  background: var(--nova-cart-card);
  border-radius: calc(var(--nova-cart-radius) + 4px);
}

.nova-cart-summary__eyebrow {
  margin-bottom: 8px;
  color: var(--nova-cart-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nova-cart-summary h2 {
  margin: 0 0 28px;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.045em;
}

.nova-cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--nova-cart-muted);
  font-size: 11px;
}

.nova-cart-summary__row strong {
  color: var(--nova-cart-text);
  font-size: 14px;
  font-weight: 900;
}

.nova-cart-summary__discounts {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.nova-cart-summary__discount {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--nova-cart-accent);
  font-size: 9px;
}

.nova-cart-summary__discount strong {
  font-weight: 900;
}

.nova-cart-summary__divider {
  height: 1px;
  margin: 23px 0;
  background: var(--nova-cart-border);
}

.nova-cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nova-cart-summary__total span {
  font-size: 12px;
  font-weight: 800;
}

.nova-cart-summary__total strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.nova-cart-summary__note {
  margin: 8px 0 22px;
  color: var(--nova-cart-muted);
  font-size: 9px;
  line-height: 1.5;
}

.nova-cart-checkout {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  border-radius: 999px;
  background: var(--nova-cart-text);
  color: var(--nova-cart-bg);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nova-cart-checkout:hover {
  background: var(--nova-cart-accent);
  transform: translateY(-1px);
}
.nova-cart-checkout.is-loading {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

.nova-cart-checkout span:last-child {
  font-size: 11px;
  letter-spacing: 0;
}

.nova-cart-payments {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--nova-cart-border);
  text-align: center;
}

.nova-cart-payments > span {
  display: block;
  margin-bottom: 10px;
  color: var(--nova-cart-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-cart-payments__icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
}

.nova-cart-payments__icons svg {
  max-width: 38px;
  max-height: 24px;
}


/* =========================================================
   EMPTY CART
   ========================================================= */

.nova-cart-empty {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nova-cart-empty__icon {
  width: 74px;
  height: 74px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--nova-cart-card);
  color: var(--nova-cart-accent);
  border-radius: 50%;
}

.nova-cart-empty__icon svg {
  width: 31px;
  height: 31px;
}

.nova-cart-empty__eyebrow {
  margin-bottom: 10px;
  color: var(--nova-cart-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nova-cart-empty h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(38px, 6vw, 62px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.nova-cart-empty p {
  max-width: 420px;
  margin: 17px 0 26px;
  color: var(--nova-cart-muted);
  font-size: 12px;
  line-height: 1.7;
}

.nova-cart-empty__button {
  min-height: 48px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--nova-cart-text);
  color: var(--nova-cart-bg);
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nova-cart-empty__button:hover {
  background: var(--nova-cart-accent);
  transform: translateY(-1px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1050px) {

  .nova-cart-page__layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 35px;
  }

  .nova-cart-line {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 18px;
  }

  .nova-cart-line__image {
    width: 135px;
  }

  .nova-cart-summary__card {
    padding: 24px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .nova-cart-page {
    padding: 35px 0 70px;
  }

  .nova-cart-page__container {
    width: calc(100% - 28px);
  }

  .nova-cart-page__header {
    padding: 30px 0 35px;
  }

  .nova-cart-page__title {
    font-size: clamp(42px, 14vw, 60px);
  }

  .nova-cart-page__layout {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .nova-cart-page__items {
    width: 100%;
  }

  .nova-cart-line {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }

  .nova-cart-line__image {
    width: 92px;
  }

  .nova-cart-line__content {
    gap: 16px;
  }

  .nova-cart-line__title {
    font-size: 12px;
  }

  .nova-cart-line__variant {
    font-size: 9px;
  }

  .nova-cart-line__remove {
    font-size: 8px;
  }

  .nova-cart-line__price {
    font-size: 10px;
  }

  .nova-cart-line__quantity {
    height: 36px;
  }

  .nova-cart-line__quantity-button {
    width: 31px;
    height: 34px;
    font-size: 15px;
  }

  .nova-cart-line__quantity-value {
    width: 28px;
    height: 34px;
    font-size: 10px;
  }

  .nova-cart-summary {
    position: static;
  }

  .nova-cart-summary__card {
    padding: 22px;
    border-radius: 16px;
  }

  .nova-cart-summary h2 {
    font-size: 24px;
  }

  .nova-cart-empty {
    min-height: 470px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 430px) {

  .nova-cart-page__container {
    width: calc(100% - 20px);
  }

  .nova-cart-line {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 10px;
  }

  .nova-cart-line__image {
    width: 78px;
  }

  .nova-cart-line__top {
    gap: 8px;
  }

  .nova-cart-line__title {
    font-size: 11px;
  }

  .nova-cart-line__bottom {
    gap: 8px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-cart-page *,
  .nova-cart-page *::before,
  .nova-cart-page *::after {
    transition: none !important;
  }

}
/* END_SECTION:nova-cart */

/* START_SECTION:nova-collection (INDEX:26) */
/* =========================================================
   NOVA COLLECTION
   ========================================================= */

.nova-collection {
  width: 100%;
  padding: 0 0 110px;
  background: var(--nova-bg);
  color: var(--nova-text);
}

.nova-collection *,
.nova-collection *::before,
.nova-collection *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nova-collection__hero {
  width: 100%;
  padding: 95px 24px 85px;
  text-align: center;
  border-bottom: 1px solid var(--nova-border);
}

.nova-collection__hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.nova-collection__eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--nova-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nova-collection__title {
  margin: 0;
  color: var(--nova-text);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.nova-collection__description {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.8;
}

.nova-collection__description p {
  margin: 0 0 10px;
}

.nova-collection__description p:last-child {
  margin-bottom: 0;
}

.nova-collection__product-count {
  display: block;
  margin-top: 18px;
  color: var(--nova-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.nova-collection__container {
  width: min(
    calc(100% - 48px),
    var(--nova-section-width)
  );

  max-width: var(--nova-section-width);
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.nova-collection__toolbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--nova-border);
}

.nova-collection__toolbar-left,
.nova-collection__toolbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nova-collection__toolbar-count {
  color: var(--nova-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-collection__filter-button {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--nova-border);
  border-radius: 999px;
  background: transparent;
  color: var(--nova-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-collection__filter-button:hover {
  border-color: var(--nova-text);
}

.nova-collection__filter-button svg {
  width: 17px;
  height: 17px;
}

.nova-collection__sort {
  position: relative;
  display: flex;
  align-items: center;
}

.nova-collection__sort-label {
  margin-right: 7px;
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-collection__sort select {
  min-height: 40px;
  padding: 0 30px 0 5px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nova-text);
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
}

.nova-collection__sort > svg {
  width: 14px;
  height: 14px;
  margin-left: -26px;
  pointer-events: none;
}


/* =========================================================
   ACTIVE FILTERS
   ========================================================= */

.nova-collection__active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}

.nova-filter-chip {
  min-height: 31px;
  padding: 0 11px 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--nova-border);
  border-radius: 999px;
  color: var(--nova-text);
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
}

.nova-filter-chip strong {
  color: var(--nova-muted);
  font-size: 15px;
  font-weight: 400;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.nova-collection__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  padding-top: 38px;
}


/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

.nova-collection--single-product .nova-collection__layout {
  display: block;
}

.nova-collection--single-product .nova-collection__sidebar {
  display: none;
}

.nova-collection--single-product .nova-product-grid {
  width: 100%;
  grid-template-columns: repeat(
    var(--nova-columns-desktop),
    minmax(0, 1fr)
  );
  justify-content: start;
}

.nova-collection--single-product .nova-product-card {
  width: 100%;
  max-width: 300px;
}


/* =========================================================
   FILTER SIDEBAR
   ========================================================= */

.nova-collection__sidebar {
  min-width: 0;
}

.nova-filters {
  position: sticky;
  top: 110px;
}

.nova-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nova-border);
}

.nova-filters__header > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-filters__header a {
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nova-filter {
  border-bottom: 1px solid var(--nova-border);
}

.nova-filter summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 800;
}

.nova-filter summary::-webkit-details-marker {
  display: none;
}

.nova-filter__icon {
  color: var(--nova-muted);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.nova-filter[open] .nova-filter__icon {
  transform: rotate(45deg);
}

.nova-filter__content {
  padding: 0 0 18px;
}

.nova-filter__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nova-filter__option {
  min-height: 20px;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nova-filter__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nova-filter__checkbox {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.nova-filter__option input:checked + .nova-filter__checkbox {
  border-color: var(--nova-accent);
  background: var(--nova-accent);
}

.nova-filter__option input:checked + .nova-filter__checkbox::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  left: 5px;
  top: 2px;
  border: solid #ffffff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.nova-filter__option input:disabled + .nova-filter__checkbox {
  opacity: 0.35;
}

.nova-filter__option-name {
  color: var(--nova-text);
  font-size: 10px;
  line-height: 1.4;
}

.nova-filter__option-count {
  color: var(--nova-muted);
  font-size: 9px;
}

.nova-filter__price-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 7px;
}

.nova-filter__price-fields > div {
  min-width: 0;
}

.nova-filter__price-fields span {
  display: block;
  margin-bottom: 5px;
  color: var(--nova-muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nova-filter__price-fields input {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--nova-border);
  border-radius: 7px;
  background: transparent;
  color: var(--nova-text);
  font-family: inherit;
  font-size: 10px;
  outline: none;
}

.nova-filter__price-fields input:focus {
  border-color: var(--nova-accent);
}

.nova-filter__price-dash {
  padding-bottom: 10px;
  color: var(--nova-muted);
}

.nova-filter__apply {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--nova-text);
  color: var(--nova-bg);
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.nova-product-grid {
  display: grid;
  grid-template-columns: repeat(
    var(--nova-columns-desktop),
    minmax(0, 1fr)
  );
  gap: 48px 22px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.nova-product-card {
  min-width: 0;
}

.nova-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--nova-image-ratio);
  background: var(--nova-card-bg);
  border-radius: var(--nova-radius);
}

.nova-product-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.nova-product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 350ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nova-product-card:hover
.nova-product-card__image--primary {
  transform: scale(1.025);
}

.nova-product-card:hover
.nova-product-card__image--secondary {
  opacity: 1;
  transform: scale(1.025);
}

.nova-product-card__placeholder {
  width: 100%;
  height: 100%;
}

.nova-product-card__placeholder svg {
  width: 100%;
  height: 100%;
}


/* =========================================================
   BADGES
   ========================================================= */

.nova-product-card__badges {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
}

.nova-product-badge {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.nova-product-badge--sale {
  background: var(--nova-accent);
  color: #ffffff;
}

.nova-product-badge--sold {
  background: #111111;
  color: #ffffff;
}

.nova-product-badge--low-stock {
  background: #111111;
  color: #ffffff;
}


/* =========================================================
   QUICK ADD
   ========================================================= */

.nova-product-card__quick-add {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px 0 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nova-product-card:hover
.nova-product-card__quick-add,
.nova-product-card__quick-add:focus-visible,
.nova-product-card__quick-add:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.nova-product-card__quick-add:hover {
  background: var(--nova-accent);
  border-color: var(--nova-accent);
  color: #ffffff;
}

.nova-product-card__quick-add button {
  width: 100%;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nova-product-card__quick-add-icon {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nova-product-card__quick-add:hover
.nova-product-card__quick-add-icon {
  transform: rotate(90deg);
}

.nova-product-card__quick-add--options:hover
.nova-product-card__quick-add-icon {
  transform: translateX(2px);
}


/* =========================================================
   SOLD OUT
   ========================================================= */

.nova-product-card__sold-out-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.nova-product-card__info {
  padding: 15px 2px 0;
}

.nova-product-card__vendor {
  display: block;
  margin-bottom: 6px;
  color: var(--nova-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-product-card__title {
  display: block;
  color: var(--nova-text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.nova-product-card__title:hover {
  color: var(--nova-accent);
}

.nova-product-card__excerpt {
  margin: 6px 0 0;
  color: var(--nova-muted);
  font-size: 10px;
  line-height: 1.5;
}

.nova-product-card__price {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--nova-text);
  font-size: 11px;
  font-weight: 800;
}

.nova-product-card__price-current {
  color: var(--nova-accent);
}

.nova-product-card__price s {
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 500;
}


/* =========================================================
   MOBILE FILTER DRAWER
   ========================================================= */

.nova-mobile-filters {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.nova-mobile-filters.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nova-mobile-filters__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nova-mobile-filters.is-open
.nova-mobile-filters__overlay {
  opacity: 1;
}

.nova-mobile-filters__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90%, 430px);
  height: 100%;
  overflow-y: auto;
  background: var(--nova-bg);
  color: var(--nova-text);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-mobile-filters.is-open
.nova-mobile-filters__panel {
  transform: translateX(0);
}

.nova-mobile-filters__header {
  min-height: 75px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nova-border);
}

.nova-mobile-filters__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nova-mobile-filters__header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--nova-border);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.nova-mobile-filters__form {
  padding: 0 20px 20px;
}

.nova-mobile-filters__actions {
  position: sticky;
  bottom: 0;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  background: var(--nova-bg);
  border-top: 1px solid var(--nova-border);
}

.nova-mobile-filters__clear,
.nova-mobile-filters__apply {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-mobile-filters__clear {
  border: 1px solid var(--nova-border);
  color: var(--nova-text);
}

.nova-mobile-filters__apply {
  border: 0;
  background: var(--nova-text);
  color: var(--nova-bg);
  cursor: pointer;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.nova-pagination {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nova-pagination__number,
.nova-pagination__arrow,
.nova-pagination__ellipsis {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-text);
  text-decoration: none;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.nova-pagination__number:hover,
.nova-pagination__arrow:hover {
  background: var(--nova-card-bg);
}

.nova-pagination__number--active {
  background: var(--nova-text);
  color: var(--nova-bg);
}


/* =========================================================
   EMPTY COLLECTION
   ========================================================= */

.nova-collection__empty {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nova-collection__empty > span {
  color: var(--nova-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nova-collection__empty h2 {
  max-width: 600px;
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.nova-collection__empty p {
  margin: 0 0 24px;
  color: var(--nova-muted);
  font-size: 12px;
}

.nova-collection__empty a {
  min-height: 45px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nova-text);
  color: var(--nova-bg);
  border-radius: 999px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   VISUALLY HIDDEN
   ========================================================= */

.nova-collection .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1099px) {

   .nova-collection__container {
    width: calc(100% - 48px);
    max-width: var(--nova-section-width);
    margin-left: auto;
    margin-right: auto;
  }

  .nova-collection__layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 25px;
  }

  .nova-product-grid {
    grid-template-columns:
      repeat(
        var(--nova-columns-tablet),
        minmax(0, 1fr)
      );
    gap: 35px 15px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__card {
    max-width: none;
  }


  .nova-collection {
    padding-bottom: 65px;
  }

  .nova-collection__hero {
    padding: 60px 18px 55px;
  }

  .nova-collection__title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .nova-collection__description {
    font-size: 12px;
  }

  .nova-collection__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nova-collection__toolbar {
    min-height: 68px;
  }

  .nova-collection__toolbar-count {
    display: none;
  }

  .nova-collection__toolbar-left,
  .nova-collection__toolbar-right {
    gap: 8px;
  }

  .nova-collection__filter-button {
    min-height: 38px;
  }

  .nova-collection__sort-label {
    display: none;
  }

  .nova-collection__sort select {
    min-height: 38px;
    font-size: 9px;
  }

  .nova-collection__layout {
    display: block;
    padding-top: 22px;
  }

  .nova-collection__sidebar {
    display: none;
  }

  .nova-mobile-filters {
    display: block;
  }

  .nova-product-grid {
    grid-template-columns:
      repeat(
        var(--nova-columns-mobile),
        minmax(0, 1fr)
      );
    gap: 35px 10px;
  }

  .nova-collection--single-product .nova-product-grid {
    grid-template-columns: 1fr;
  }

  .nova-product-card__media {
    border-radius: calc(var(--nova-radius) * 0.75);
  }

  .nova-product-card__badges {
    top: 8px;
    left: 8px;
  }

  .nova-product-badge {
    min-height: 23px;
    padding: 0 8px;
    font-size: 7px;
  }

  .nova-product-card__quick-add {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 34px;
    padding: 0 9px 0 10px;
    opacity: 1;
    transform: none;
    font-size: 7px;
  }

  .nova-product-card__quick-add button {
    min-height: 34px;
  }

  .nova-product-card__info {
    padding-top: 11px;
  }

  .nova-product-card__title {
    font-size: 11px;
  }

  .nova-product-card__excerpt {
    display: none;
  }

  .nova-product-card__price {
    margin-top: 6px;
    font-size: 10px;
  }

  .nova-pagination {
    margin-top: 45px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 430px) {

  .nova-collection__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nova-product-grid {
    gap: 28px 8px;
  }

  .nova-product-card__quick-add {
    letter-spacing: 0.05em;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-collection *,
  .nova-mobile-filters * {
    transition: none !important;
  }

}




/* =========================================================
   NOVA RECENTLY VIEWED
   Lives inside NOVA Collection — no separate section needed.
   ========================================================= */

#NovaCollection-{{ section.id }} .nova-recently-viewed {
  width: 100%;
  margin-top: 92px;
  padding: 64px 0 0;
  border-top: 1px solid var(--nova-border);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__inner {
  width: 100%;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--nova-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title {
  margin: 0;
  color: var(--nova-text);
  font-family: var(--nova-hero-title-font, inherit);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__subtitle {
  margin: 11px 0 28px;
  color: var(--nova-muted);
  font-size: 12px;
  line-height: 1.6;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 18px;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__card {
  min-width: 0;
  max-width: 220px;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--nova-image-ratio, .8);
  border-radius: var(--nova-radius);
  background: var(--nova-card-bg);
  border: var(--nova-card-border, 0 solid var(--nova-border));
  box-shadow: var(--nova-card-shadow, none);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-link {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--nova-image-fit, cover);
  transition: transform 550ms cubic-bezier(.22,1,.36,1);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-link:hover .nova-recently-viewed__image {
  transform: scale(var(--nova-image-hover-scale, 1.025));
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__info {
  padding: var(--nova-info-spacing, 15px) 2px 0;
  text-align: var(--nova-recent-text-align, left);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title-link {
  display: block;
  color: var(--nova-text);
  text-decoration: none;
  font-family: var(--nova-product-title-font, inherit);
  font-size: var(--nova-product-title-size, 13px);
  font-weight: var(--nova-product-title-weight, 800);
  line-height: 1.35;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title-link:hover {
  color: var(--nova-accent);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__price {
  margin-top: 8px;
  color: var(--nova-text);
  font-family: var(--nova-price-font, inherit);
  font-size: var(--nova-price-size, 11px);
  font-weight: var(--nova-price-weight, 800);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 35px 20px;
  text-align: center;
  border: 1px dashed var(--nova-border);
  border-radius: var(--nova-radius);
  color: var(--nova-muted);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty-icon {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-accent);
  font-size: 30px;
  line-height: 1;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty p {
  margin: 0;
  font-size: 11px;
}

@media screen and (max-width: 1099px) {
  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  #NovaCollection-{{ section.id }} .nova-recently-viewed {
    margin-top: 65px;
    padding-top: 44px;
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--nova-mobile-grid-horizontal-gap, 10px);
    row-gap: var(--nova-mobile-grid-vertical-gap, 35px);
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__title-link {
    font-size: var(--nova-product-title-mobile-size, 11px);
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__price {
    font-size: var(--nova-price-mobile-size, 10px);
  }
}
/* END_SECTION:nova-collection */

/* START_SECTION:nova-collection2 (INDEX:27) */
/* =========================================================
   NOVA COLLECTION
   ========================================================= */

.nova-collection {
  width: 100%;
  padding: 0 0 110px;
  background: var(--nova-bg);
  color: var(--nova-text);
}

.nova-collection *,
.nova-collection *::before,
.nova-collection *::after {
  box-sizing: border-box;
}


/* =========================================================
   HERO
   ========================================================= */

.nova-collection__hero {
  width: 100%;
  padding: 95px 24px 85px;
  text-align: center;
  border-bottom: 1px solid var(--nova-border);
}

.nova-collection__hero-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.nova-collection__eyebrow {
  display: block;
  margin-bottom: 17px;
  color: var(--nova-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nova-collection__title {
  margin: 0;
  color: var(--nova-text);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: -0.065em;
}

.nova-collection__description {
  max-width: 680px;
  margin: 26px auto 0;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.8;
}

.nova-collection__description p {
  margin: 0 0 10px;
}

.nova-collection__description p:last-child {
  margin-bottom: 0;
}

.nova-collection__product-count {
  display: block;
  margin-top: 18px;
  color: var(--nova-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.nova-collection__container {
  width: min(
    calc(100% - 48px),
    var(--nova-section-width)
  );

  max-width: var(--nova-section-width);
  margin-left: auto;
  margin-right: auto;
}


/* =========================================================
   TOOLBAR
   ========================================================= */

.nova-collection__toolbar {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--nova-border);
}

.nova-collection__toolbar-left,
.nova-collection__toolbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nova-collection__toolbar-count {
  color: var(--nova-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-collection__filter-button {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--nova-border);
  border-radius: 999px;
  background: transparent;
  color: var(--nova-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-collection__filter-button:hover {
  border-color: var(--nova-text);
}

.nova-collection__filter-button svg {
  width: 17px;
  height: 17px;
}

.nova-collection__sort {
  position: relative;
  display: flex;
  align-items: center;
}

.nova-collection__sort-label {
  margin-right: 7px;
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-collection__sort select {
  min-height: 40px;
  padding: 0 30px 0 5px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nova-text);
  appearance: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
}

.nova-collection__sort > svg {
  width: 14px;
  height: 14px;
  margin-left: -26px;
  pointer-events: none;
}


/* =========================================================
   ACTIVE FILTERS
   ========================================================= */

.nova-collection__active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
}

.nova-filter-chip {
  min-height: 31px;
  padding: 0 11px 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--nova-border);
  border-radius: 999px;
  color: var(--nova-text);
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
}

.nova-filter-chip strong {
  color: var(--nova-muted);
  font-size: 15px;
  font-weight: 400;
}


/* =========================================================
   MAIN LAYOUT
   ========================================================= */

.nova-collection__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 40px;
  padding-top: 38px;
}


/* =========================================================
   SINGLE PRODUCT
   ========================================================= */

.nova-collection--single-product .nova-collection__layout {
  display: block;
}

.nova-collection--single-product .nova-collection__sidebar {
  display: none;
}

.nova-collection--single-product .nova-product-grid {
  width: 100%;
  grid-template-columns: repeat(
    var(--nova-columns-desktop),
    minmax(0, 1fr)
  );
  justify-content: start;
}

.nova-collection--single-product .nova-product-card {
  width: 100%;
  max-width: 300px;
}


/* =========================================================
   FILTER SIDEBAR
   ========================================================= */

.nova-collection__sidebar {
  min-width: 0;
}

.nova-filters {
  position: sticky;
  top: 110px;
}

.nova-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--nova-border);
}

.nova-filters__header > span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nova-filters__header a {
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nova-filter {
  border-bottom: 1px solid var(--nova-border);
}

.nova-filter summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 11px;
  font-weight: 800;
}

.nova-filter summary::-webkit-details-marker {
  display: none;
}

.nova-filter__icon {
  color: var(--nova-muted);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.nova-filter[open] .nova-filter__icon {
  transform: rotate(45deg);
}

.nova-filter__content {
  padding: 0 0 18px;
}

.nova-filter__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nova-filter__option {
  min-height: 20px;
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nova-filter__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nova-filter__checkbox {
  width: 16px;
  height: 16px;
  display: block;
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.nova-filter__option input:checked + .nova-filter__checkbox {
  border-color: var(--nova-accent);
  background: var(--nova-accent);
}

.nova-filter__option input:checked + .nova-filter__checkbox::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  left: 5px;
  top: 2px;
  border: solid #ffffff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.nova-filter__option input:disabled + .nova-filter__checkbox {
  opacity: 0.35;
}

.nova-filter__option-name {
  color: var(--nova-text);
  font-size: 10px;
  line-height: 1.4;
}

.nova-filter__option-count {
  color: var(--nova-muted);
  font-size: 9px;
}

.nova-filter__price-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 7px;
}

.nova-filter__price-fields > div {
  min-width: 0;
}

.nova-filter__price-fields span {
  display: block;
  margin-bottom: 5px;
  color: var(--nova-muted);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.nova-filter__price-fields input {
  width: 100%;
  height: 38px;
  padding: 0 9px;
  border: 1px solid var(--nova-border);
  border-radius: 7px;
  background: transparent;
  color: var(--nova-text);
  font-family: inherit;
  font-size: 10px;
  outline: none;
}

.nova-filter__price-fields input:focus {
  border-color: var(--nova-accent);
}

.nova-filter__price-dash {
  padding-bottom: 10px;
  color: var(--nova-muted);
}

.nova-filter__apply {
  width: 100%;
  min-height: 38px;
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--nova-text);
  color: var(--nova-bg);
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.nova-product-grid {
  display: grid;
  grid-template-columns: repeat(
    var(--nova-columns-desktop),
    minmax(0, 1fr)
  );
  gap: 48px 22px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.nova-product-card {
  min-width: 0;
}

.nova-product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--nova-image-ratio);
  background: var(--nova-card-bg);
  border-radius: var(--nova-radius);
}

.nova-product-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.nova-product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 350ms ease,
    transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nova-product-card:hover
.nova-product-card__image--primary {
  transform: scale(1.025);
}

.nova-product-card:hover
.nova-product-card__image--secondary {
  opacity: 1;
  transform: scale(1.025);
}

.nova-product-card__placeholder {
  width: 100%;
  height: 100%;
}

.nova-product-card__placeholder svg {
  width: 100%;
  height: 100%;
}


/* =========================================================
   BADGES
   ========================================================= */

.nova-product-card__badges {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
}

.nova-product-badge {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.nova-product-badge--sale {
  background: var(--nova-accent);
  color: #ffffff;
}

.nova-product-badge--sold {
  background: #111111;
  color: #ffffff;
}


/* =========================================================
   QUICK ADD
   ========================================================= */

.nova-product-card__quick-add {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px 0 13px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  text-decoration: none;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(10px);
  cursor: pointer;
  font-family: inherit;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nova-product-card:hover
.nova-product-card__quick-add,
.nova-product-card__quick-add:focus-visible,
.nova-product-card__quick-add:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.nova-product-card__quick-add:hover {
  background: var(--nova-accent);
  border-color: var(--nova-accent);
  color: #ffffff;
}

.nova-product-card__quick-add button {
  width: 100%;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nova-product-card__quick-add-icon {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 400;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nova-product-card__quick-add:hover
.nova-product-card__quick-add-icon {
  transform: rotate(90deg);
}

.nova-product-card__quick-add--options:hover
.nova-product-card__quick-add-icon {
  transform: translateX(2px);
}


/* =========================================================
   SOLD OUT
   ========================================================= */

.nova-product-card__sold-out-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 4;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  color: #ffffff;
  backdrop-filter: blur(10px);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.nova-product-card__info {
  padding: 15px 2px 0;
}

.nova-product-card__vendor {
  display: block;
  margin-bottom: 6px;
  color: var(--nova-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-product-card__title {
  display: block;
  color: var(--nova-text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.nova-product-card__title:hover {
  color: var(--nova-accent);
}

.nova-product-card__excerpt {
  margin: 6px 0 0;
  color: var(--nova-muted);
  font-size: 10px;
  line-height: 1.5;
}

.nova-product-card__price {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--nova-text);
  font-size: 11px;
  font-weight: 800;
}

.nova-product-card__price-current {
  color: var(--nova-accent);
}

.nova-product-card__price s {
  color: var(--nova-muted);
  font-size: 9px;
  font-weight: 500;
}


/* =========================================================
   MOBILE FILTER DRAWER
   ========================================================= */

.nova-mobile-filters {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  visibility: hidden;
}

.nova-mobile-filters.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nova-mobile-filters__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 220ms ease;
}

.nova-mobile-filters.is-open
.nova-mobile-filters__overlay {
  opacity: 1;
}

.nova-mobile-filters__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(90%, 430px);
  height: 100%;
  overflow-y: auto;
  background: var(--nova-bg);
  color: var(--nova-text);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-mobile-filters.is-open
.nova-mobile-filters__panel {
  transform: translateX(0);
}

.nova-mobile-filters__header {
  min-height: 75px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--nova-border);
}

.nova-mobile-filters__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nova-mobile-filters__header button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--nova-border);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 23px;
  line-height: 1;
}

.nova-mobile-filters__form {
  padding: 0 20px 20px;
}

.nova-mobile-filters__actions {
  position: sticky;
  bottom: 0;
  padding: 15px 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 10px;
  background: var(--nova-bg);
  border-top: 1px solid var(--nova-border);
}

.nova-mobile-filters__clear,
.nova-mobile-filters__apply {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-mobile-filters__clear {
  border: 1px solid var(--nova-border);
  color: var(--nova-text);
}

.nova-mobile-filters__apply {
  border: 0;
  background: var(--nova-text);
  color: var(--nova-bg);
  cursor: pointer;
}


/* =========================================================
   PAGINATION
   ========================================================= */

.nova-pagination {
  margin-top: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.nova-pagination__number,
.nova-pagination__arrow,
.nova-pagination__ellipsis {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nova-text);
  text-decoration: none;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.nova-pagination__number:hover,
.nova-pagination__arrow:hover {
  background: var(--nova-card-bg);
}

.nova-pagination__number--active {
  background: var(--nova-text);
  color: var(--nova-bg);
}


/* =========================================================
   EMPTY COLLECTION
   ========================================================= */

.nova-collection__empty {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.nova-collection__empty > span {
  color: var(--nova-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.nova-collection__empty h2 {
  max-width: 600px;
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.nova-collection__empty p {
  margin: 0 0 24px;
  color: var(--nova-muted);
  font-size: 12px;
}

.nova-collection__empty a {
  min-height: 45px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--nova-text);
  color: var(--nova-bg);
  border-radius: 999px;
  text-decoration: none;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   VISUALLY HIDDEN
   ========================================================= */

.nova-collection .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1099px) {

   .nova-collection__container {
    width: calc(100% - 48px);
    max-width: var(--nova-section-width);
    margin-left: auto;
    margin-right: auto;
  }

  .nova-collection__layout {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 25px;
  }

  .nova-product-grid {
    grid-template-columns:
      repeat(
        var(--nova-columns-tablet),
        minmax(0, 1fr)
      );
    gap: 35px 15px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__card {
    max-width: none;
  }


  .nova-collection {
    padding-bottom: 65px;
  }

  .nova-collection__hero {
    padding: 60px 18px 55px;
  }

  .nova-collection__title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .nova-collection__description {
    font-size: 12px;
  }

  .nova-collection__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nova-collection__toolbar {
    min-height: 68px;
  }

  .nova-collection__toolbar-count {
    display: none;
  }

  .nova-collection__toolbar-left,
  .nova-collection__toolbar-right {
    gap: 8px;
  }

  .nova-collection__filter-button {
    min-height: 38px;
  }

  .nova-collection__sort-label {
    display: none;
  }

  .nova-collection__sort select {
    min-height: 38px;
    font-size: 9px;
  }

  .nova-collection__layout {
    display: block;
    padding-top: 22px;
  }

  .nova-collection__sidebar {
    display: none;
  }

  .nova-mobile-filters {
    display: block;
  }

  .nova-product-grid {
    grid-template-columns:
      repeat(
        var(--nova-columns-mobile),
        minmax(0, 1fr)
      );
    gap: 35px 10px;
  }

  .nova-collection--single-product .nova-product-grid {
    grid-template-columns: 1fr;
  }

  .nova-product-card__media {
    border-radius: calc(var(--nova-radius) * 0.75);
  }

  .nova-product-card__badges {
    top: 8px;
    left: 8px;
  }

  .nova-product-badge {
    min-height: 23px;
    padding: 0 8px;
    font-size: 7px;
  }

  .nova-product-card__quick-add {
    right: 8px;
    bottom: 8px;
    left: 8px;
    min-height: 34px;
    padding: 0 9px 0 10px;
    opacity: 1;
    transform: none;
    font-size: 7px;
  }

  .nova-product-card__quick-add button {
    min-height: 34px;
  }

  .nova-product-card__info {
    padding-top: 11px;
  }

  .nova-product-card__title {
    font-size: 11px;
  }

  .nova-product-card__excerpt {
    display: none;
  }

  .nova-product-card__price {
    margin-top: 6px;
    font-size: 10px;
  }

  .nova-pagination {
    margin-top: 45px;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 430px) {

  .nova-collection__container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nova-product-grid {
    gap: 28px 8px;
  }

  .nova-product-card__quick-add {
    letter-spacing: 0.05em;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-collection *,
  .nova-mobile-filters * {
    transition: none !important;
  }

}




/* =========================================================
   NOVA RECENTLY VIEWED
   Lives inside NOVA Collection — no separate section needed.
   ========================================================= */

#NovaCollection-{{ section.id }} .nova-recently-viewed {
  width: 100%;
  margin-top: 92px;
  padding: 64px 0 0;
  border-top: 1px solid var(--nova-border);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__inner {
  width: 100%;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--nova-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title {
  margin: 0;
  color: var(--nova-text);
  font-family: var(--nova-hero-title-font, inherit);
  font-size: clamp(30px, 4vw, 48px);
  line-height: .98;
  font-weight: 900;
  letter-spacing: -.05em;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__subtitle {
  margin: 11px 0 28px;
  color: var(--nova-muted);
  font-size: 12px;
  line-height: 1.6;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px 18px;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__card {
  min-width: 0;
  max-width: 220px;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--nova-image-ratio, .8);
  border-radius: var(--nova-radius);
  background: var(--nova-card-bg);
  border: var(--nova-card-border, 0 solid var(--nova-border));
  box-shadow: var(--nova-card-shadow, none);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-link {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: var(--nova-image-fit, cover);
  transition: transform 550ms cubic-bezier(.22,1,.36,1);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__image-link:hover .nova-recently-viewed__image {
  transform: scale(var(--nova-image-hover-scale, 1.025));
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__info {
  padding: var(--nova-info-spacing, 15px) 2px 0;
  text-align: var(--nova-recent-text-align, left);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title-link {
  display: block;
  color: var(--nova-text);
  text-decoration: none;
  font-family: var(--nova-product-title-font, inherit);
  font-size: var(--nova-product-title-size, 13px);
  font-weight: var(--nova-product-title-weight, 800);
  line-height: 1.35;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__title-link:hover {
  color: var(--nova-accent);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__price {
  margin-top: 8px;
  color: var(--nova-text);
  font-family: var(--nova-price-font, inherit);
  font-size: var(--nova-price-size, 11px);
  font-weight: var(--nova-price-weight, 800);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 35px 20px;
  text-align: center;
  border: 1px dashed var(--nova-border);
  border-radius: var(--nova-radius);
  color: var(--nova-muted);
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty-icon {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-accent);
  font-size: 30px;
  line-height: 1;
}

#NovaCollection-{{ section.id }} .nova-recently-viewed__empty p {
  margin: 0;
  font-size: 11px;
}

@media screen and (max-width: 1099px) {
  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  #NovaCollection-{{ section.id }} .nova-recently-viewed {
    margin-top: 65px;
    padding-top: 44px;
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--nova-mobile-grid-horizontal-gap, 10px);
    row-gap: var(--nova-mobile-grid-vertical-gap, 35px);
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__title-link {
    font-size: var(--nova-product-title-mobile-size, 11px);
  }

  #NovaCollection-{{ section.id }} .nova-recently-viewed__price {
    font-size: var(--nova-price-mobile-size, 10px);
  }
}
/* END_SECTION:nova-collection2 */

/* START_SECTION:nova-footer (INDEX:33) */
.nova-footer {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background: var(--nova-footer-bg);
  color: var(--nova-footer-text);
}
.nova-footer *, .nova-footer *::before, .nova-footer *::after { box-sizing: border-box; }
.nova-footer__inner { width: 100%; max-width: var(--nova-footer-max-width); margin: 0 auto; padding: var(--nova-footer-section-pad) 5vw 26px; }
.nova-footer__top {
  display: grid;
  grid-template-columns: minmax(250px,.8fr) minmax(0,1.8fr);
  gap: clamp(50px,8vw,140px);
  padding-bottom: 72px;
}
.nova-footer__brand { max-width: var(--nova-footer-brand-width); }
.nova-footer__wordmark {
  display:inline-block; color:var(--nova-footer-text); text-decoration:none;
  font-size:clamp(42px,5vw,64px); line-height:.85; font-weight:900; letter-spacing:-.075em;
}
.nova-footer__logo { display:inline-block; text-decoration:none; }
.nova-footer__logo-image { display:block; width:auto; max-width:220px; height:auto; }
.nova-footer__description { max-width:330px; margin:24px 0 0; color:var(--nova-footer-muted); font-size:var(--nova-footer-description-size); line-height:1.7; }
.nova-footer__socials { display:flex; flex-wrap:wrap; gap:var(--nova-footer-social-gap); margin-top:28px; }
.nova-footer__socials a {
  display:flex; width:var(--nova-footer-social-size); height:var(--nova-footer-social-size); align-items:center; justify-content:center;
  border:1px solid var(--nova-footer-border); border-radius:var(--nova-footer-social-radius); color:var(--nova-footer-text);
  text-decoration:none; font-size:8px; font-weight:900; letter-spacing:.05em;
  transition:transform .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.nova-footer__socials a:hover { transform:translateY(-2px); background:var(--nova-footer-accent); color:#fff; border-color:var(--nova-footer-accent); }
.nova-footer__menus { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:var(--nova-footer-menu-gap); }
.nova-footer__menu-heading {
  width:100%; padding:0; display:flex; align-items:center; justify-content:space-between;
  border:0; background:transparent; color:var(--nova-footer-text); font-family:inherit;
  text-align:left; font-size:var(--nova-footer-heading-size); font-weight:900; letter-spacing:.16em; text-transform:uppercase; cursor:default;
}
.nova-footer__menu-plus { display:none; }
.nova-footer__menu-links { display:flex; flex-direction:column; gap:13px; margin-top:23px; }
.nova-footer__menu-links a {
  width:fit-content; color:var(--nova-footer-muted); text-decoration:none; font-size:var(--nova-footer-link-size); line-height:1.4;
  transition:color .16s ease,transform .16s ease;
}
.nova-footer__menu-links a:hover { color:var(--nova-footer-text); transform:translateX(3px); }
.nova-footer__newsletter {
  display:grid; grid-template-columns:minmax(0,.9fr) minmax(320px,1.1fr);
  align-items:center; gap:var(--nova-footer-newsletter-gap);
  padding:clamp(30px,4vw,52px); border:1px solid var(--nova-footer-border);
  border-radius:var(--nova-footer-newsletter-radius); background:var(--nova-footer-text); color:var(--nova-footer-bg);
}
.nova-footer__eyebrow {
  display:block; margin-bottom:12px; color:var(--nova-footer-accent); font-size:8px;
  font-weight:900; letter-spacing:.2em; text-transform:uppercase;
}
.nova-footer__newsletter-copy h2 {
  max-width:650px; margin:0; font-size:var(--nova-footer-newsletter-title-size); line-height:.9;
  font-weight:900; letter-spacing:-.065em;
}
.nova-footer__newsletter-copy p { max-width:520px; margin:18px 0 0; opacity:.65; font-size:11px; line-height:1.6; }
.nova-footer__newsletter-form { width:100%; }
.nova-footer__newsletter-input {
  min-height:64px; display:flex; align-items:center; padding:6px 6px 6px 20px;
  border:1px solid rgba(0,0,0,.18); border-radius:999px; background:rgba(0,0,0,.045);
}
.nova-footer__newsletter-input:focus-within { border-color:var(--nova-footer-accent); }
.nova-footer__newsletter-input input {
  min-width:0; flex:1; height:50px; padding:0; border:0; outline:0; background:transparent;
  color:var(--nova-footer-bg); font-family:inherit; font-size:12px;
}
.nova-footer__newsletter-input input::placeholder { color:var(--nova-footer-bg); opacity:.55; }
.nova-footer__newsletter-input button {
  min-height:50px; padding:0 22px; display:flex; align-items:center; justify-content:space-between;
  gap:18px; border:0; border-radius:999px; background:var(--nova-footer-bg); color:var(--nova-footer-text);
  cursor:pointer; font-family:inherit; font-size:9px; font-weight:900; letter-spacing:.12em; text-transform:uppercase;
  transition:background .18s ease,color .18s ease;
}
.nova-footer__newsletter-input button:hover { background:var(--nova-footer-accent); color:#fff; }
.nova-footer__form-message { margin:10px 5px 0; font-size:9px; line-height:1.5; }
.nova-footer__form-message--success { color:var(--nova-footer-accent); }
.nova-footer__form-message--error { color:#ff6b6b; }
.nova-footer__bottom {
  min-height:72px; padding-top:24px; display:flex; align-items:center; justify-content:space-between;
  gap:25px; border-top:1px solid var(--nova-footer-border); color:var(--nova-footer-muted); font-size:9px;
}
.nova-footer__copyright { line-height:1.5; }
.nova-footer__policies { display:flex; align-items:center; flex-wrap:wrap; gap:20px; }
.nova-footer__policies a { color:inherit; text-decoration:none; transition:color .16s ease; }
.nova-footer__policies a:hover { color:var(--nova-footer-text); }
.nova-footer .visually-hidden {
  position:absolute!important; width:1px!important; height:1px!important; padding:0!important; margin:-1px!important;
  overflow:hidden!important; clip:rect(0,0,0,0)!important; white-space:nowrap!important; border:0!important;
}
@media screen and (max-width:1000px) {
  .nova-footer__inner { padding:65px 5vw 24px; }
  .nova-footer__top { grid-template-columns:1fr; gap:55px; }
  .nova-footer__brand { max-width:560px; }
  .nova-footer__newsletter { grid-template-columns:1fr; gap:30px; }
}
@media screen and (max-width:749px) {
  .nova-footer__inner { padding:var(--nova-footer-mobile-top, 52px) 20px 20px; }
  .nova-footer__top { gap:42px; padding-bottom:48px; }
  .nova-footer__wordmark { font-size:{{ section.settings.mobile_logo_size }}px; }
  .nova-footer__menus { display:block; }
  .nova-footer__menu { border-top:1px solid var(--nova-footer-border); }
  .nova-footer__menu:last-child { border-bottom:1px solid var(--nova-footer-border); }
  .nova-footer__menu-heading { min-height:58px; cursor:pointer; font-size:9px; }
  .nova-footer__menu-plus { display:block; color:var(--nova-footer-muted); font-size:18px; font-weight:400; transition:transform .2s ease; }
  .nova-footer__menu.is-open .nova-footer__menu-plus { transform:rotate(45deg); }
  .nova-footer__menu-links { max-height:0; margin:0; overflow:hidden; gap:0; transition:max-height .25s ease,padding .25s ease; }
  .nova-footer__menu.is-open .nova-footer__menu-links { max-height:400px; padding-bottom:20px; gap:12px; }
  .nova-footer__newsletter { padding:28px 20px; border-radius:14px; }
  .nova-footer__newsletter-copy h2 { font-size:{{ section.settings.mobile_newsletter_title_size }}px; }
  .nova-footer__newsletter-input { min-height:54px; padding-left:14px; }
  .nova-footer__newsletter-input input { height:42px; font-size:10px; }
  .nova-footer__newsletter-input button { min-height:42px; padding:0 15px; gap:10px; }
  .nova-footer__bottom { padding-top:20px; flex-direction:column; align-items:flex-start; gap:15px; }
  .nova-footer__policies { gap:12px; }
}
@media screen and (max-width:430px) {
  .nova-footer__inner { padding-left:15px; padding-right:15px; }
  .nova-footer__newsletter { padding:24px 16px; }
  .nova-footer__newsletter-copy h2 { font-size:34px; }
  .nova-footer__newsletter-input button span:first-child { display:none; }
}
@media (prefers-reduced-motion:reduce) {
  .nova-footer *, .nova-footer *::before, .nova-footer *::after { transition:none!important; }
}
.nova-footer__inner.nova-footer__layout--wide { max-width: 100%; }
.nova-footer__inner.nova-footer__layout--boxed { max-width: var(--nova-footer-max-width); }
.nova-footer__inner.nova-footer__align--left { text-align:left; }
.nova-footer__inner.nova-footer__align--center { text-align:center; }
.nova-footer__inner.nova-footer__align--right { text-align:right; }
.nova-footer__align--center .nova-footer__brand,
.nova-footer__align--right .nova-footer__brand { margin-left:auto; margin-right:auto; }
.nova-footer__align--center .nova-footer__description,
.nova-footer__align--right .nova-footer__description { margin-left:auto; margin-right:auto; }
.nova-footer__align--center .nova-footer__socials,
.nova-footer__align--right .nova-footer__socials { justify-content:center; }
.nova-footer__align--right .nova-footer__socials { justify-content:flex-end; }
.nova-footer__newsletter--center { text-align:center; }
.nova-footer__newsletter--center .nova-footer__newsletter-copy p { margin-left:auto; margin-right:auto; }
.nova-footer__newsletter--center .nova-footer__newsletter-form { max-width:760px; margin:0 auto; }
.nova-footer__newsletter--stacked { grid-template-columns:1fr; }
.nova-footer__newsletter--stacked .nova-footer__newsletter-form { max-width:760px; }
.nova-footer__newsletter--stacked .nova-footer__newsletter-copy p { max-width:650px; }
.nova-footer__socials a { border-radius:var(--nova-footer-social-radius); }
@media screen and (max-width:749px) {
  .nova-footer__inner { max-width:100%; }
  .nova-footer__newsletter--center,
  .nova-footer__newsletter--stacked { text-align:left; }
  .nova-footer__newsletter--center .nova-footer__newsletter-copy p,
  .nova-footer__newsletter--stacked .nova-footer__newsletter-copy p { margin-left:0; margin-right:0; }
  .nova-footer__align--center .nova-footer__socials,
  .nova-footer__align--right .nova-footer__socials { justify-content:flex-start; }
  .nova-footer__align--center .nova-footer__brand,
  .nova-footer__align--right .nova-footer__brand { margin-left:0; margin-right:0; }
}
/* END_SECTION:nova-footer */

/* START_SECTION:nova-search (INDEX:49) */
/* =========================================================
   NOVA SEARCH
   ========================================================= */

.nova-search {
  width: 100%;
  padding: 0 0 110px;
  background: var(--nova-search-bg);
  color: var(--nova-search-text);
}

.nova-search *,
.nova-search *::before,
.nova-search *::after {
  box-sizing: border-box;
}

.nova-search__container {
  width: min(
    calc(100% - 48px),
    var(--nova-search-width)
  );
  margin: 0 auto;
}


/* =========================================================
   HERO
   ========================================================= */

.nova-search__hero {
  padding: 85px 0 70px;
  text-align: center;
}

.nova-search__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--nova-search-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nova-search__title {
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
}

.nova-search__subtitle {
  max-width: 550px;
  margin: 22px auto 0;
  color: var(--nova-search-muted);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   SEARCH FORM
   ========================================================= */

.nova-search__form {
  width: min(100%, 760px);
  margin: 38px auto 0;
}

.nova-search__input-wrap {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 8px 0 20px;
  border: 1px solid var(--nova-search-border);
  border-radius: 999px;
  background: var(--nova-search-card);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nova-search__input-wrap:focus-within {
  border-color: var(--nova-search-accent);
  box-shadow:
    0 0 0 4px rgba(255, 45, 126, 0.08);
}

.nova-search__search-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--nova-search-muted);
}

.nova-search__input {
  min-width: 0;
  flex: 1;
  height: 58px;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--nova-search-text);
  font-family: inherit;
  font-size: 14px;
}

.nova-search__input::placeholder {
  color: var(--nova-search-muted);
}

.nova-search__input::-webkit-search-cancel-button {
  cursor: pointer;
}

.nova-search__submit {
  min-height: 48px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: var(--nova-search-text);
  color: var(--nova-search-bg);
  cursor: pointer;
  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nova-search__submit:hover {
  background: var(--nova-search-accent);
  transform: translateY(-1px);
}


/* =========================================================
   RESULTS HEADER
   ========================================================= */

.nova-search__results-header {
  min-height: 85px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--nova-search-border);
}

.nova-search__results-label {
  display: block;
  margin-bottom: 5px;
  color: var(--nova-search-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nova-search__results-title {
  margin: 0;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.nova-search__results-count {
  flex-shrink: 0;
  color: var(--nova-search-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.nova-search__grid {
  padding-top: 35px;
  display: grid;
  grid-template-columns:
    repeat(
      var(--nova-search-columns),
      minmax(0, 1fr)
    );
  gap: 45px 20px;
}


/* =========================================================
   PRODUCT CARD
   ========================================================= */

.nova-search-card {
  min-width: 0;
}

.nova-search-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.8;
  background: var(--nova-search-card);
  border-radius: var(--nova-search-radius);
}

.nova-search-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.nova-search-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    opacity 350ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-search-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.nova-search-card:hover
.nova-search-card__image--primary {
  transform: scale(1.025);
}

.nova-search-card:hover
.nova-search-card__image--secondary {
  opacity: 1;
  transform: scale(1.025);
}

.nova-search-card__placeholder {
  width: 100%;
  height: 100%;
}

.nova-search-card__placeholder svg {
  width: 100%;
  height: 100%;
}


/* =========================================================
   BADGES
   ========================================================= */

.nova-search-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;

  min-height: 27px;
  padding: 0 10px;

  display: inline-flex;
  align-items: center;

  border-radius: 999px;
  background: #ffffff;
  color: #111111;

  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.08);
}

.nova-search-card__badge--sale {
  background: var(--nova-search-accent);
  color: #ffffff;
}

.nova-search-card__badge--sold {
  background: #111111;
  color: #ffffff;
}


/* =========================================================
   QUICK ADD
   ========================================================= */

.nova-search-card__quick-add {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  z-index: 3;

  min-height: 45px;
  padding: 0 15px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.94);
  color: #111111;

  text-decoration: none;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.12);

  backdrop-filter: blur(12px);

  cursor: pointer;

  font-family: inherit;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  opacity: 0;
  transform: translateY(9px);

  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nova-search-card:hover
.nova-search-card__quick-add,

.nova-search-card__quick-add:focus-visible,

.nova-search-card__quick-add:focus-within {
  opacity: 1;
  transform: translateY(0);
}

.nova-search-card__quick-add:hover {
  background: var(--nova-search-accent);
  color: #ffffff;
}

.nova-search-card__quick-add button {
  width: 100%;
  min-height: 43px;
  padding: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  background: transparent;
  color: inherit;

  cursor: pointer;

  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nova-search-card__quick-icon {
  width: 25px;
  height: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: 14px;
  font-weight: 400;
}

.nova-search-card__quick-add:hover
.nova-search-card__quick-icon {
  transform: rotate(90deg);
}


/* =========================================================
   PRODUCT INFO
   ========================================================= */

.nova-search-card__info {
  padding: 15px 2px 0;
}

.nova-search-card__vendor {
  display: block;
  margin-bottom: 6px;
  color: var(--nova-search-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-search-card__title {
  display: block;
  color: var(--nova-search-text);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.nova-search-card__title:hover {
  color: var(--nova-search-accent);
}

.nova-search-card__excerpt {
  margin: 6px 0 0;
  color: var(--nova-search-muted);
  font-size: 10px;
  line-height: 1.5;
}

.nova-search-card__price {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--nova-search-text);
  font-size: 11px;
  font-weight: 800;
}

.nova-search-card__price-current {
  color: var(--nova-search-accent);
}

.nova-search-card__price s {
  color: var(--nova-search-muted);
  font-size: 9px;
  font-weight: 500;
}


/* =========================================================
   PAGE / ARTICLE RESULTS
   ========================================================= */

.nova-search-result {
  min-width: 0;
}

.nova-search-result__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--nova-search-border);
  border-radius: var(--nova-search-radius);
  background: var(--nova-search-card);
  color: inherit;
  text-decoration: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.nova-search-result__link:hover {
  transform: translateY(-3px);
  border-color: var(--nova-search-accent);
}

.nova-search-result__image {
  aspect-ratio: 1.5;
  overflow: hidden;
}

.nova-search-result__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nova-search-result__link:hover
.nova-search-result__image img {
  transform: scale(1.035);
}

.nova-search-result__content {
  position: relative;
  flex: 1;
  padding: 20px;
}

.nova-search-result__type {
  display: block;
  margin-bottom: 8px;
  color: var(--nova-search-accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nova-search-result__content h3 {
  margin: 0;
  padding-right: 35px;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.nova-search-result__content p {
  margin: 10px 0 0;
  color: var(--nova-search-muted);
  font-size: 10px;
  line-height: 1.6;
}

.nova-search-result__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;

  width: 27px;
  height: 27px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid var(--nova-search-border);
  border-radius: 50%;

  font-size: 13px;

  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nova-search-result__link:hover
.nova-search-result__arrow {
  background: var(--nova-search-accent);
  color: #ffffff;
  transform: translateX(2px);
}


/* =========================================================
   PAGINATION
   ========================================================= */

.nova-search__pagination {
  margin-top: 65px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 7px;
}

.nova-search__page-number,
.nova-search__page-arrow,
.nova-search__page-ellipsis {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--nova-search-text);
  text-decoration: none;

  border-radius: 50%;

  font-size: 10px;
  font-weight: 800;
}

.nova-search__page-number:hover,
.nova-search__page-arrow:hover {
  background: var(--nova-search-card);
}

.nova-search__page-number.is-current {
  background: var(--nova-search-text);
  color: var(--nova-search-bg);
}


/* =========================================================
   EMPTY
   ========================================================= */

.nova-search__empty {
  min-height: 480px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.nova-search__empty-icon {
  width: 68px;
  height: 68px;
  margin-bottom: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--nova-search-card);
  color: var(--nova-search-accent);

  border-radius: 50%;
}

.nova-search__empty-icon svg {
  width: 28px;
  height: 28px;
}

.nova-search__empty > span {
  color: var(--nova-search-accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nova-search__empty h2 {
  max-width: 600px;
  margin: 10px 0 10px;

  font-size: clamp(34px, 6vw, 55px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.nova-search__empty p {
  margin: 0 0 24px;
  color: var(--nova-search-muted);
  font-size: 12px;
}

.nova-search__empty a {
  min-height: 46px;
  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--nova-search-text);
  color: var(--nova-search-bg);

  text-decoration: none;

  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    background 180ms ease,
    transform 180ms ease;
}

.nova-search__empty a:hover {
  background: var(--nova-search-accent);
  transform: translateY(-1px);
}


/* =========================================================
   LANDING
   ========================================================= */

.nova-search__landing {
  min-height: 300px;
  padding: 35px 0;

  display: flex;
  align-items: center;
  gap: 18px;

  color: var(--nova-search-muted);
}

.nova-search__landing > span {
  flex-shrink: 0;

  color: var(--nova-search-accent);

  font-size: 9px;
  font-weight: 900;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nova-search__landing-line {
  width: 60px;
  height: 1px;
  background: var(--nova-search-border);
}

.nova-search__landing p {
  margin: 0;
  font-size: 11px;
}


/* =========================================================
   HIDDEN ACCESSIBILITY
   ========================================================= */

.nova-search .visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media screen and (max-width: 1099px) {

  .nova-search__container {
    width: min(
      calc(100% - 36px),
      var(--nova-search-width)
    );
  }

  .nova-search__grid {
    grid-template-columns:
      repeat(
        var(--nova-search-columns-tablet),
        minmax(0, 1fr)
      );

    gap: 35px 15px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media screen and (max-width: 749px) {

  .nova-search {
    padding-bottom: 70px;
  }

  .nova-search__container {
    width: calc(100% - 28px);
  }

  .nova-search__hero {
    padding: 55px 0 50px;
  }

  .nova-search__title {
    font-size: clamp(46px, 14vw, 64px);
  }

  .nova-search__subtitle {
    font-size: 11px;
  }

  .nova-search__form {
    margin-top: 30px;
  }

  .nova-search__input-wrap {
    min-height: 56px;
    padding-left: 15px;
  }

  .nova-search__input {
    height: 50px;
    font-size: 12px;
  }

  .nova-search__submit {
    min-height: 42px;
    padding: 0 15px;
    font-size: 8px;
  }

  .nova-search__results-header {
    min-height: 70px;
    align-items: flex-end;
  }

  .nova-search__results-title {
    font-size: 20px;
  }

  .nova-search__grid {
    grid-template-columns:
      repeat(
        var(--nova-search-columns-mobile),
        minmax(0, 1fr)
      );

    gap: 32px 9px;
    padding-top: 25px;
  }

  .nova-search-card__media {
    border-radius: calc(var(--nova-search-radius) * 0.75);
  }

  .nova-search-card__badge {
    top: 7px;
    left: 7px;

    min-height: 22px;
    padding: 0 7px;

    font-size: 6px;
  }

  .nova-search-card__quick-add {
    right: 7px;
    bottom: 7px;
    left: 7px;

    min-height: 37px;
    padding: 0 10px;

    opacity: 1;
    transform: none;

    font-size: 7px;
    letter-spacing: 0.06em;
  }

  .nova-search-card__quick-add button {
    min-height: 35px;
  }

  .nova-search-card__quick-icon {
    width: 21px;
    height: 21px;
    font-size: 11px;
  }

  .nova-search-card__info {
    padding-top: 10px;
  }

  .nova-search-card__title {
    font-size: 10px;
  }

  .nova-search-card__excerpt {
    display: none;
  }

  .nova-search-card__price {
    margin-top: 6px;
    font-size: 9px;
  }

  .nova-search-card__price s {
    font-size: 8px;
  }

  .nova-search-result__content {
    padding: 15px;
  }

  .nova-search-result__content h3 {
    font-size: 14px;
  }

  .nova-search-result__content p {
    font-size: 9px;
  }

  .nova-search__landing {
    min-height: 220px;
    flex-wrap: wrap;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media screen and (max-width: 430px) {

  .nova-search__container {
    width: calc(100% - 20px);
  }

  .nova-search__input-wrap {
    padding-right: 6px;
  }

  .nova-search__submit {
    padding: 0 12px;
  }

  .nova-search__results-count {
    font-size: 8px;
  }

}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .nova-search *,
  .nova-search *::before,
  .nova-search *::after {
    transition: none !important;
  }

}
/* END_SECTION:nova-search */

/* START_SECTION:search (INDEX:60) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:61) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:62) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:64) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */