/* Shop All Products page styles */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

:root {
    --ink: #171429;
    --muted: #65687a;
    --cream: #fbf5e7;
    --line: #ddd3c2;
    --yellow: #ffc72f;
    --coral: #ff6b5c;
    --mint: #76dfc4;
    --lilac: #b78df7;
    --dark: #171325;
    --white: #fffdf8;
    --shadow: 0 12px 40px rgba(23, 20, 41, .06)
}

* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: 'Nunito Sans', system-ui, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 52% 0, #fffaf0 0, #fbf5e7 48%, #faf1df 100%);
    font-size: 16px;
    line-height: 1.45
}

a {
    text-decoration: none;
    color: inherit
}

.page-container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 22px;
    padding-right: 22px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(251, 245, 231, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(31, 27, 45, .16)
}

.navbar {
    height: 92px;
    padding: 0
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 25px;
    letter-spacing: .02em
}

.brand-mark {
    width: 41px;
    height: 41px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--dark);
    color: white;
    font-weight: 900;
    font-size: 22px
}

.main-nav {
    align-items: center;
    gap: 31px
}

.main-nav a {
    display: flex;
    height: 92px;
    align-items: center;
    font-size: 14px;
    font-weight: 800;
    position: relative;
    color: #222033
}

.main-nav a.active:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--ink);
    border-radius: 8px
}

.cart-pill {
    min-width: 52px;
    height: 44px;
    border-radius: 22px;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(20, 17, 34, .12)
}

.mobile-toggle {
    border: 0;
    box-shadow: none !important
}

.mobile-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--ink);
    margin: 5px 0
}

.mobile-canvas {
    background: var(--cream)
}

.mobile-canvas .offcanvas-body {
    display: grid;
    gap: 6px
}

.mobile-canvas .offcanvas-body a {
    font-weight: 900;
    padding: 14px 6px;
    border-bottom: 1px solid var(--line)
}

.shop-promo-banner {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr);
    align-items: center;
    padding: 42px clamp(22px, 5vw, 76px);
    background: linear-gradient(110deg, #7bcfc3 0%, #aadfd7 48%, #f6f2d5 100%);
    border-bottom: 1px solid rgba(31, 27, 45, .12)
}

.shop-promo-banner:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(28, 94, 84, .34), rgba(255, 255, 255, 0) 55%), repeating-linear-gradient(0deg, rgba(30, 83, 77, .14) 0 2px, transparent 2px 74px), repeating-linear-gradient(90deg, rgba(30, 83, 77, .14) 0 2px, transparent 2px 96px)
}

.promo-copy,
.promo-products,
.promo-badge {
    position: relative;
    z-index: 1
}

.promo-copy {
    max-width: 690px
}

.promo-copy p {
    margin: 0 0 10px;
    color: #173f3b;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase
}

.promo-copy h1 {
    margin: 0;
    color: #f5ff34;
    font-size: clamp(48px, 8.5vw, 126px);
    font-weight: 900;
    line-height: .83;
    letter-spacing: -.055em;
    text-transform: lowercase;
    text-shadow: 0 3px 0 rgba(20, 42, 40, .16)
}

.promo-copy span {
    display: block;
    max-width: 520px;
    margin-top: 20px;
    color: #183a38;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.45
}

.promo-products {
    min-height: 300px
}

.promo-product {
    position: absolute;
    width: min(48%, 230px);
    filter: drop-shadow(0 24px 26px rgba(25, 23, 46, .22))
}

.promo-product-one {
    right: 34%;
    top: 4px;
    transform: rotate(-8deg)
}

.promo-product-two {
    right: 2%;
    bottom: -18px;
    transform: rotate(13deg)
}

.promo-badge {
    position: absolute;
    right: 34px;
    top: 30px;
    display: grid;
    place-items: center;
    width: 106px;
    height: 106px;
    border: 3px solid var(--ink);
    border-radius: 18px;
    background: var(--yellow);
    color: var(--ink);
    box-shadow: 6px 6px 0 #fff;
    text-align: center;
    text-transform: uppercase
}

.promo-badge strong {
    font-size: 28px;
    line-height: .9
}

.promo-badge span {
    font-size: 15px;
    font-weight: 900
}

.collection-strip {
    padding: 50px 0 0;
    background: #fff8e8;
}

.collection-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px
}

.collection-head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em
}

.collection-card-row {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px
}

.collection-card {
    min-height: 148px;
    border: 1px solid rgba(31, 27, 45, .16);
    border-radius: 14px;
    padding: 16px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: center;
    color: var(--ink);
    font-weight: 900;
    line-height: 1.15;
    box-shadow: 0 10px 24px rgba(23, 20, 41, .06);
    transition: transform .2s ease, box-shadow .2s ease
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(23, 20, 41, .1)
}

.collection-card img {
    height: 78px;
    width: 100%;
    object-fit: contain
}

.collection-card span {
    font-size: 14px
}

.collection-card-mint {
    background: #d9f8ed
}

.collection-card-lilac {
    background: #eadcff
}

.collection-card-coral {
    background: #ffe0d8
}

.collection-card-cream {
    background: #fff4d6
}

.collection-card-yellow {
    background: #ffef9e
}

.collection-card-purple {
    background: #f0ddff
}

.section-gap {
    padding-top: 54px
}

.section-gap-sm {
    padding-top: 28px;
    padding-bottom: 28px;
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em
}

.shop-hero h1 {
    font-size: 62px;
    letter-spacing: -.045em;
    line-height: .98;
    margin: 0 0 20px;
    font-weight: 900
}

.result-count {
    font-size: 18px;
    color: #3f4050;
    margin: 0
}

.filter-bar {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 253, 248, .72);
    box-shadow: var(--shadow);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 15px;
}

.filter-select-wrap,
.sort-control {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--ink);
    font-weight: 800;
    font-size: 15px;
    white-space: nowrap
}

.sort-control {
    margin-left: auto;
    border-left: 1px solid var(--line);
    padding-left: 94px
}

.filter-select-wrap select,
.sort-control select {
    height: 42px;
    min-width: 178px;
    border: 1px solid rgba(31, 27, 45, .16);
    border-radius: 10px;
    background: #fffdf8;
    color: var(--ink);
    padding: 0 42px 0 14px;
    font-weight: 800;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 18px) 18px, calc(100% - 12px) 18px;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat
}

.sort-control span {
    color: #696b78;
    font-weight: 800
}

.coral {
    background: #ff6b5b
}

.mint {
    background: #74dfc2
}

.lilac {
    background: #b98bf4
}

.yellow {
    background: #ffc62e
}

.purple {
    background: #b98bf4
}

.pagination-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 37px 0 45px
}

.page-btn {
    width: 41px;
    height: 41px;
    border-radius: 9px;
    border: 1px solid var(--line);
    background: rgba(255, 253, 248, .75);
    font-weight: 800;
    color: var(--ink)
}

.page-btn.active {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark)
}

.page-btn.muted {
    color: #b0a99d
}

.footer {
    background: radial-gradient(circle at 20% 0, #252034 0, #171325 48%, #13101d 100%);
    color: #fff;
    padding: 40px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr .9fr .9fr 1.15fr 1.9fr;
    gap: 38px;
    padding-bottom: 37px
}

.footer .brand {
    font-size: 23px
}

.light-mark {
    background: #fff;
    color: var(--dark)
}

.footer p {
    color: #d4d0dc;
    font-size: 16px;
    line-height: 1.55;
    margin: 19px 0 0;
    max-width: 255px
}

.socials {
    display: flex;
    gap: 18px;
    margin-top: 26px
}

.socials a {
    width: 23px;
    height: 23px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 4px;
    display: grid;
    place-items: center;
    font-size: 14px
}

.footer h4 {
    color: #ffd22e;
    font-size: 14px;
    font-weight: 900;
    margin: 0 0 14px
}

.footer-grid>div:not(.footer-brand) a {
    display: block;
    color: #fff;
    font-size: 15px;
    margin: 0 0 10px;
    opacity: .93
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin: 17px 0 18px
}

.newsletter input {
    height: 43px;
    border: 0;
    border-radius: 21px;
    padding: 0 20px;
    flex: 1;
    min-width: 0
}

.newsletter button {
    height: 43px;
    border: 0;
    border-radius: 21px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 900;
    min-width: 78px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #dfdbe5;
    font-size: 14px
}

.payments {
    display: flex;
    align-items: center;
    gap: 14px
}

.payments b {
    background: #fff;
    color: #1d1a2d;
    border-radius: 4px;
    min-width: 49px;
    height: 26px;
    display: grid;
    place-items: center;
    font-size: 12px
}

.mobile-bottom-nav {
    display: none
}

.toast-lite {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: var(--dark);
    color: white;
    border-radius: 12px;
    padding: 13px 18px;
    font-weight: 800;
    transform: translateY(90px);
    opacity: 0;
    transition: .25s;
    z-index: 2000
}

.toast-lite.show {
    transform: translateY(0);
    opacity: 1
}

@media(max-width:1100px) {
    .shop-promo-banner {
        min-height: 320px
    }

    .collection-card-row {
        grid-template-columns: repeat(3, 1fr)
    }

    .main-nav {
        gap: 18px
    }

    .sort-control {
        padding-left: 30px
    }

    .filter-bar {
        gap: 14px;
        overflow: auto
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 28px
    }

    .newsletter {
        grid-column: span 2
    }
}

@media(max-width:767px) {
    body {
        padding-bottom: 72px
    }

    .shop-promo-banner {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 34px 18px 28px
    }

    .promo-copy h1 {
        font-size: 58px
    }

    .promo-copy span {
        font-size: 15px
    }

    .promo-products {
        min-height: 210px;
        margin-top: 10px
    }

    .promo-product {
        width: 42%;
        max-width: 150px
    }

    .promo-product-one {
        left: 16%;
        right: auto
    }

    .promo-product-two {
        right: 14%;
        bottom: 0
    }

    .promo-badge {
        right: 18px;
        top: 18px;
        width: 78px;
        height: 78px;
        border-radius: 14px
    }

    .promo-badge strong {
        font-size: 20px
    }

    .promo-badge span {
        font-size: 12px
    }

    .collection-strip {
        padding-top: 26px
    }

    .collection-head {
        display: block
    }

    .collection-head h2 {
        font-size: 24px
    }

    .collection-card-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .collection-card {
        min-height: 132px;
        padding: 13px 10px
    }

    .collection-card img {
        height: 66px
    }

    .page-container {
        padding-left: 16px;
        padding-right: 16px
    }

    .navbar {
        height: 72px
    }

    .brand {
        font-size: 20px
    }

    .brand-mark {
        width: 35px;
        height: 35px;
        font-size: 18px
    }

    .cart-pill {
        height: 39px;
        min-width: 47px
    }

    .section-gap {
        padding-top: 42px
    }

    .shop-hero h1 {
        font-size: 43px;
        line-height: 1.04
    }

    .result-count {
        font-size: 16px
    }

    .filter-bar {
        margin-top: 24px;
        padding: 14px;
        gap: 10px;
        border-radius: 13px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: center;
        overflow: visible;
        scrollbar-width: auto
    }

    .filter-select-wrap,
    .sort-control {
        min-width: 0;
        font-size: 13px;
        gap: 8px
    }

    .sort-control {
        margin-left: 0;
        border-left: 0;
        padding-left: 0
    }

    .sort-control span {
        display: none
    }

    .filter-select-wrap select,
    .sort-control select {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
        height: 39px;
        border-radius: 20px;
        font-size: 13px
    }

    .pagination-wrap {
        padding: 29px 0 34px
    }

    .footer {
        padding: 33px 0 94px
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 27px
    }

    .footer-brand,
    .newsletter {
        grid-column: 1/-1
    }

    .footer p {
        font-size: 14px
    }

    .newsletter form {
        max-width: 100%
    }

    .footer-bottom {
        display: block;
        text-align: left
    }

    .payments {
        margin-top: 18px;
        flex-wrap: wrap
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 68px;
        background: #fffdf8;
        border-top: 1px solid var(--line);
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        z-index: 1200
    }

    .mobile-bottom-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        font-size: 11px;
        font-weight: 800;
        color: #6c6877
    }

    .mobile-bottom-nav i {
        font-size: 18px
    }

    .mobile-bottom-nav .active {
        color: var(--ink)
    }
}

@media(max-width:430px) {
    .promo-copy h1 {
        font-size: 46px
    }

    .collection-card-row {
        grid-template-columns: 1fr
    }

    .collection-card {
        min-height: 118px;
        flex-direction: row;
        text-align: left;
        justify-content: flex-start
    }

    .collection-card img {
        width: 84px;
        height: 74px
    }

    .shop-hero h1 {
        font-size: 38px
    }

    .filter-bar {
        margin-left: -16px;
        margin-right: -16px;
        border-left: 0;
        border-right: 0;
        border-radius: 0
    }

    .filter-select-wrap {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .newsletter {
        grid-column: auto
    }
}

@media(max-width:390px) {
    .filter-bar {
        grid-template-columns: 1fr
    }
}


/* Shop banner and collection refinements */
.shop-promo-banner {
    display: block;
    min-height: 0;
    padding: 0;
    background: #fff8e8;
    border-bottom: 0;
    overflow: hidden
}

.shop-promo-banner:before,
.promo-copy,
.promo-products,
.promo-badge {
    display: none
}

.shop-promo-banner img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    object-position: center
}

.collection-strip {
    padding: 50px 0 0;
    background: #fff8e8
}

.collection-head {
    align-items: center;
    margin-bottom: 18px
}

.collection-head .eyebrow {
    margin: 0
}

.collection-card-row {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 18px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: rgba(36, 29, 42, .28) transparent
}

.collection-card-row::-webkit-scrollbar {
    height: 8px
}

.collection-card-row::-webkit-scrollbar-track {
    background: transparent
}

.collection-card-row::-webkit-scrollbar-thumb {
    background: rgba(36, 29, 42, .22);
    border-radius: 999px
}

.collection-card {
    flex: 0 0 270px;
    min-height: 126px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 18px;
    text-align: left;
    scroll-snap-align: start
}

.collection-card img {
    width: 86px;
    height: 92px;
    object-fit: contain;
    flex: 0 0 auto
}

.collection-card span {
    font-size: 15px;
    line-height: 1.12
}

.collection-card-cream img,
.collection-card-yellow img {
    width: 96px
}

@media(max-width:1100px) {
    .shop-promo-banner {
        min-height: 0
    }

    .collection-card-row {
        display: flex;
        grid-template-columns: none
    }

    .collection-card {
        flex-basis: 260px
    }
}

@media(max-width:767px) {
    .shop-promo-banner {
        display: block;
        min-height: 0;
        padding: 0
    }

    .shop-promo-banner img {
        max-height: none;
        aspect-ratio: 16/7;
        object-fit: cover
    }

    .collection-strip {
        padding: 24px 0 8px
    }

    .collection-head {
        display: block
    }

    .collection-card-row {
        gap: 12px;
        padding-bottom: 16px
    }

    .collection-card {
        flex-basis: 236px;
        min-height: 112px;
        padding: 14px;
        gap: 12px
    }

    .collection-card img {
        width: 74px;
        height: 78px
    }

    .collection-card span {
        font-size: 14px
    }

    .collection-card-cream img,
    .collection-card-yellow img {
        width: 82px
    }
}

@media(max-width:430px) {
    .shop-promo-banner img {
        aspect-ratio: 16/8.5
    }

    .collection-card-row {
        grid-template-columns: none
    }

    .collection-card {
        flex-direction: row;
        flex-basis: 222px;
        min-height: 106px;
        text-align: left;
        justify-content: flex-start
    }

    .collection-card img {
        width: 68px;
        height: 72px
    }
}
/* .archive-notices {
  padding-top: 18px;
} */

.archive-ordering-form {
  display: contents;
}

.woocommerce nav.woocommerce-pagination {
  padding: 37px 0 45px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 253, 248, .75);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-weight: 800;
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.current {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.prev,
.woocommerce nav.woocommerce-pagination ul li .page-numbers.next {
  color: #6f6976;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  border-radius: 10px;
}

@media(max-width:767px) {
  .woocommerce nav.woocommerce-pagination {
    padding: 29px 0 34px;
  }
}

/* WooCommerce archive hard overrides */
body.shop-all-products-template .site-header.global-header {
  min-height: 56px !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

body.shop-all-products-template .global-header .brand {
  width: auto !important;
  max-width: 92px !important;
  overflow: hidden !important;
}

body.shop-all-products-template .global-header .brand-logo {
  display: block !important;
  width: auto !important;
  height: 34px !important;
  max-width: 84px !important;
  object-fit: contain !important;
}

body.shop-all-products-template .global-header .site-nav {
  font-size: 14px;
}

.products-section .shot-lemon {
  background: var(--yellow);
}

@media(max-width:767px) {
  body.shop-all-products-template .global-header .brand-logo {
    height: 30px !important;
    max-width: 74px !important;
  }

  .woocommerce .products-section.section-gap-sm {
    padding-top: 18px;
  }

  .woocommerce .products-section .page-container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Keep shared header consistent on product archives */
body.shop-all-products-template .site-header.global-header {
  min-height: 74px !important;
  height: auto !important;
  padding: 16px clamp(18px, 4vw, 54px) !important;
}

body.shop-all-products-template .global-header .brand {
  width: auto !important;
  max-width: none !important;
  overflow: visible !important;
  gap: 10px !important;
  font-size: 1.35rem !important;
}

body.shop-all-products-template .global-header .brand-logo {
  display: block !important;
  width: auto !important;
  height: 60px !important;
  max-width: 150px !important;
  object-fit: contain !important;
}

body.shop-all-products-template .global-header .site-nav {
  gap: 28px !important;
  color: var(--muted) !important;
  font-size: inherit !important;
  font-weight: 750 !important;
}

body.shop-all-products-template .global-header .site-nav a,
body.shop-all-products-template .global-header .collection-trigger {
  min-height: 42px !important;
  font-size: inherit !important;
}

body.shop-all-products-template .global-header .round-link,
body.shop-all-products-template .global-header .cart-pill {
  min-width: 38px !important;
  height: 38px !important;
  font-size: 20px !important;
}

body.shop-all-products-template .global-header .cart-pill {
  gap: 7px !important;
  min-width: 62px !important;
  padding: 0 14px !important;
}

body.shop-all-products-template .global-header .cart-pill span {
  font-size: 14px !important;
}

@media(max-width: 1101px) {
  body.shop-all-products-template .site-header.global-header {
    min-height: 68px !important;
    padding: 12px 16px !important;
  }

  body.shop-all-products-template .global-header .brand-logo {
    height: 60px !important;
    max-width: 150px !important;
  }

  body.shop-all-products-template .global-header .round-link {
    display: none !important;
  }

  body.shop-all-products-template .global-header .cart-pill {
    min-width: 54px !important;
    height: 36px !important;
    padding: 0 11px !important;
    font-size: 18px !important;
  }
}

@media(max-width: 767px) {
  body.shop-all-products-template .global-header .brand-logo {
    height: 55px !important;
    max-width: 132px !important;
  }
}
/* Align mega-menu wrapper with plain header nav links */
body.shop-all-products-template .global-header .site-nav .nav-menu-item {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 42px !important;
  line-height: 1 !important;
}

body.shop-all-products-template .global-header .site-nav .nav-menu-item > .collection-trigger {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
  line-height: 1 !important;
}
/* Final nav vertical alignment guard */
body.shop-all-products-template .global-header .site-nav {
    align-items: center !important;
}

body.shop-all-products-template .global-header .site-nav > a,
body.shop-all-products-template .global-header .site-nav > .nav-menu-item,
body.shop-all-products-template .global-header .site-nav > .nav-menu-item > .collection-trigger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    height: 42px !important;
    min-height: 42px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}
