html
{
    box-sizing: border-box;
}

*, *:before, *:after
{
    box-sizing: inherit;
}

body
{
    margin: 0;
    background: #fff;
    color: #191919;
}

body *
{
    font-family: "Poppins", Arial, sans-serif;
    letter-spacing: 0;
}

a
{
    color: inherit;
    text-decoration: none;
    transition: color 0.2s, background-color 0.2s, opacity 0.2s;
}

a:hover
{
    color: #2fad86;
}

img
{
    border: 0;
    max-width: 100%;
}

table
{
    width: 100%;
}

table, td
{
    border: 0;
    border-collapse: collapse;
    border-spacing: 0;
    padding: 0;
    vertical-align: top;
}

.container
{
    width: min(100%, 1400px);
    margin: 0 auto;
    padding: 0 32px;
}

#shipping-bar
{
    background: #191919;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    line-height: 58px;
    min-height: 58px;
    text-align: center;
    text-transform: uppercase;
}

#utility-bar
{
    background: #f4f4f4;
    color: #111;
}

#utility-bar .container
{
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 55px;
}

#utility-bar .contact,
#utility-bar .actions,
#utility-bar .icon-link,
#utility-bar .cart
{
    align-items: center;
    display: flex;
}

#utility-bar .contact
{
    gap: 18px;
    font-size: 14px;
}

#utility-bar .icon-link
{
    gap: 10px;
}

#utility-bar .icon-link img
{
    height: 27px;
    width: 27px;
}

#utility-bar .actions
{
    gap: 20px;
}

#utility-bar .search-toggle,
#utility-bar .cart,
.menu-toggle
{
    flex: 0 0 auto;
}

#utility-bar .search-toggle,
#utility-bar .cart
{
    align-items: center;
    height: 44px;
    justify-content: center;
    width: 44px;
}

#utility-bar button
{
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
}

#utility-bar .search-toggle img,
#utility-bar .cart img
{
    display: block;
    height: 36px;
    width: 36px;
}

#utility-bar .cart
{
    position: relative;
}

#utility-bar .cart span
{
    align-items: center;
    background: #df242e;
    border-radius: 999px;
    color: #fff;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0 6px;
    position: absolute;
    right: -13px;
    top: -7px;
}

#utility-bar .account
{
    border-left: 1px solid #c9c9c9;
    color: #2fad86;
    font-size: 13px;
    font-weight: 800;
    padding-left: 30px;
    text-transform: uppercase;
}

.menu-toggle
{
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 32px;
}

.menu-toggle span
{
    background: #aaa;
    display: block;
    height: 3px;
    width: 32px;
}

#site-header
{
    background: #fff;
    border-bottom: 1px solid #d9d9d9;
}

#site-header .container
{
    align-items: center;
    display: grid;
    gap: 50px;
    grid-template-columns: 390px 1fr;
    min-height: 166px;
}

#site-header .logo img
{
    display: block;
    width: 360px;
}

#main-menu ul,
#mobile-menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

#main-menu > ul
{
    align-items: flex-start;
    display: flex;
    justify-content: flex-end;
}

#main-menu > ul > li
{
    position: relative;
}

#main-menu > ul > li > span > a
{
    color: #191919;
    display: block;
    font-size: 15px;
    font-weight: 800;
    padding: 18px 22px;
    text-transform: uppercase;
    white-space: nowrap;
}

#main-menu > ul > li.haschilds > span > a::after
{
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 7px solid #2fad86;
    content: "";
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

#main-menu > ul > li.last > span > a
{
    color: #df242e;
}

#main-menu > ul > li > ul
{
    background: #f4f4f4;
    display: inline-flex;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 0;
    opacity: 0;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s;
    width: max-content;
    z-index: 20;
}

#main-menu > ul > li:hover > ul
{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#main-menu > ul > li > ul a
{
    color: #555;
    display: block;
    font-size: 14px;
    padding: 18px 26px;
    white-space: nowrap;
}

#mobile-menu-overlay
{
    background: rgba(0, 0, 0, 0.38);
    display: none;
    inset: 0;
    position: fixed;
    z-index: 110;
}

#mobile-menu
{
    background: #fff;
    box-shadow: -12px 0 34px rgba(0, 0, 0, 0.22);
    display: block;
    height: 100vh;
    max-width: 390px;
    overflow-y: auto;
    padding: 24px 28px 40px;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(110%);
    transition: transform 0.25s ease;
    width: min(88vw, 390px);
    z-index: 120;
}

.mobile-menu-open
{
    overflow: hidden;
}

.mobile-menu-open #mobile-menu
{
    transform: translateX(0);
}

.mobile-menu-open #mobile-menu-overlay
{
    display: block;
}

#mobile-menu .close
{
    background: #191919;
    border: 0;
    color: #fff;
    cursor: pointer;
    float: right;
    font-weight: 800;
    padding: 8px 12px;
}

#mobile-menu .mobile-logo
{
    clear: both;
    display: block;
    padding: 35px 0 24px;
}

#mobile-menu .mobile-logo img
{
    display: block;
    width: min(100%, 270px);
}

#mobile-menu .mobile-menu-links
{
    clear: both;
}

#mobile-menu ul
{
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-nav
{
    border-top: 1px solid #e8e8e8;
}

.mobile-menu-section
{
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-section-toggle,
.mobile-menu-direct
{
    align-items: center;
    background: transparent;
    border: 0;
    color: #191919;
    cursor: pointer;
    display: flex;
    font-size: 17px;
    font-weight: 800;
    justify-content: space-between;
    line-height: 1.25;
    padding: 18px 0;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

.mobile-menu-direct
{
    border-bottom: 1px solid #e8e8e8;
}

.mobile-menu-section-toggle:hover,
.mobile-menu-direct:hover,
.mobile-menu-section.is-open > .mobile-menu-section-toggle,
.mobile-menu-direct.active
{
    color: #2fad86;
}

.mobile-menu-chevron
{
    color: inherit;
    display: inline-flex;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mobile-menu-section.is-open > .mobile-menu-section-toggle .mobile-menu-chevron
{
    transform: rotate(180deg);
}

.mobile-menu-section-panel
{
    padding: 0 0 14px;
}

#mobile-menu .mobile-section-links > li
{
    position: relative;
}

#mobile-menu .mobile-section-links li > span > a,
#mobile-menu .mobile-section-links li > a
{
    display: block;
}

#mobile-menu .mobile-section-links a
{
    color: #4f4f4f;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    padding: 10px 0;
    text-transform: none;
}

#mobile-menu .mobile-section-links > li.first > span > a
{
    color: #191919;
    font-weight: 800;
}

#mobile-menu .mobile-section-links a:hover,
#mobile-menu .mobile-section-links a.active
{
    color: #2fad86;
}

#mobile-menu .mobile-section-links ul
{
    margin: 0;
    padding: 0 0 0 18px;
}

#mobile-menu .mobile-section-links li.haschilds > span > a
{
    font-weight: 700;
}

.mobile-menu-contact
{
    border-top: 1px solid #e8e8e8;
    color: #191919;
    display: grid;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
}

.mobile-menu-contact > span
{
    color: #555;
    font-size: 13px;
    font-weight: 600;
}

.mobile-menu-contact > strong
{
    font-size: 14px;
    font-weight: 800;
}

.mobile-menu-contact-link
{
    align-items: center;
    display: inline-flex;
    gap: 12px;
    justify-self: start;
}

.mobile-menu-contact-link img
{
    height: 28px;
    width: 28px;
}

.mobile-menu-contact-link strong,
.mobile-menu-contact-link span
{
    font-size: 15px;
    font-weight: 800;
}

.button
{
    background: #2fad86;
    color: #fff;
    display: inline-flex;
    font-size: 23px;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 2px;
    min-width: 226px;
    padding: 18px 28px;
    text-transform: uppercase;
}

.button:hover
{
    background: #191919;
    color: #fff;
}

.hero
{
    background: #9f8475 url(images/slide-scrubs.jpg) center top / cover no-repeat;
    min-height: 768px;
    position: relative;
}

.hero-copy
{
    color: #fff;
    left: 51%;
    position: absolute;
    text-align: center;
    top: 280px;
    transform: translateX(-2%);
    width: min(760px, 48vw);
}

.hero-copy h1
{
    color: #fff;
    font-size: clamp(72px, 9vw, 178px);
    font-weight: 800;
    line-height: 0.85;
    margin: 0 0 28px;
    text-transform: uppercase;
}

.hero-copy p
{
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0 0 46px;
}

.hero-copy .button + .button
{
    margin-left: 22px;
}

#header-blocks
{
    background: #fff;
    overflow: hidden;
}

#header-blocks .block,
#header-blocks .block .content
{
    margin: 0;
    padding: 0;
}

#header-blocks [id^="animated-block-container-"],
#header-blocks [id^="animated-block-header-"],
#header-blocks .animated-block-link,
#header-blocks .animated-block-slide
{
    max-width: 100vw !important;
    overflow: hidden;
    width: 100% !important;
}

#header-blocks [id^="animated-block-header-"],
#header-blocks .animated-block-link,
#header-blocks .animated-block-slide
{
    aspect-ratio: 1920 / 768;
    height: auto !important;
    min-height: clamp(360px, 40vw, 768px);
}

#header-blocks .animated-block-slide
{
    background-position: center top !important;
    background-size: cover !important;
    border: 0 !important;
    overflow: hidden;
    position: relative;
}

#header-blocks .animated-block-content
{
    background: transparent !important;
}

#header-blocks .animated-block-content-container
{
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: auto !important;
    right: 6vw;
    text-align: center;
    width: min(50vw, 760px) !important;
    z-index: 2;
}

#header-blocks .animated-block-title
{
    color: #fff;
    font-size: clamp(72px, 9vw, 178px) !important;
    font-weight: 800;
    line-height: 0.85;
    text-transform: uppercase;
}

#header-blocks .animated-block-description
{
    color: #fff;
    font-size: clamp(24px, 2vw, 32px) !important;
    font-weight: 600;
}

#header-blocks .animated-block-description p
{
    font-weight: 600;
    margin: 0 0 46px;
}

#header-blocks .muv4-hero-actions
{
    display: flex;
    gap: 22px;
    justify-content: center;
}

#header-blocks .muv4-hero-actions .button + .button
{
    margin-left: 0;
}

body.page-contact #header-blocks
{
    overflow: hidden;
}

body.page-contact #header-blocks .block-90 .content
{
    border: 0 !important;
    margin-top: 0 !important;
}

body.page-contact #header-blocks .block-90 .content > p:last-child
{
    display: none;
}

body.page-contact #header-blocks .block-90 iframe
{
    display: block;
    height: clamp(300px, 34vw, 420px);
    max-width: 100%;
    width: 100%;
}

body.page-contact #header-blocks .block-90 table.responsive,
body.page-contact #header-blocks .block-90 table.responsive tbody
{
    display: block;
    width: 100% !important;
}

body.page-contact #header-blocks .block-90 table.responsive tr
{
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 18px 56px;
    justify-content: space-between;
    width: 100%;
}

body.page-contact #header-blocks .block-90 table.responsive td
{
    box-sizing: border-box;
    display: block;
    flex: 1 1 230px;
    min-width: 0;
    padding: 0 !important;
    width: auto !important;
}

body.page-contact #header-blocks .block-90 table.responsive td:last-child
{
    flex: 1 1 320px;
    text-align: center !important;
}

body.page-contact #header-blocks .block-90 .phone
{
    margin-bottom: 18px;
}

body.page-contact #header-blocks .block-90 .phone strong
{
    color: #111;
    display: inline-block;
    font-size: 15px !important;
    line-height: 1.3;
}

body.page-contact #header-blocks .block-90 .phone span
{
    display: inline-block;
}

body.page-contact #header-blocks .block-90 .phone span a
{
    color: #111;
    font-size: clamp(22px, 2.2vw, 30px) !important;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

body.page-contact #header-blocks .block-90 .support-phone
{
    max-width: 100%;
}

body.page-contact #header-blocks .block-90 .support-phone p
{
    margin: 0 0 18px;
}

body.page-contact #header-blocks .block-90 .support-phone strong
{
    color: #111;
    font-size: clamp(18px, 1.9vw, 24px) !important;
}

body.page-contact #header-blocks .block-90 .support-phone .phone
{
    box-sizing: border-box;
    display: inline-block;
    font-size: clamp(30px, 4.3vw, 48px) !important;
    line-height: 1.1;
    max-width: 100%;
    white-space: nowrap;
}

.muv4-color-banner
{
    background: #191919;
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.muv4-color-banner img
{
    display: block;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.muv4-color-banner::after
{
    background: rgba(0, 0, 0, 0.18);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.muv4-color-banner-label
{
    color: #fff;
    font-size: clamp(42px, 7vw, 92px);
    font-weight: 800;
    left: 50%;
    line-height: 0.95;
    position: absolute;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 980px);
    z-index: 2;
}

.listing-title-banner
{
    background: #191919;
    height: 400px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.listing-title-banner img
{
    display: block;
    height: 400px;
    object-fit: cover;
    width: 100%;
}

.listing-title-banner::after
{
    background: rgba(0, 0, 0, 0.18);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 1;
}

.listing-title-banner-label
{
    color: #fff;
    font-size: clamp(42px, 7vw, 92px);
    font-weight: 800;
    left: 50%;
    line-height: 0.95;
    position: absolute;
    text-align: center;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    text-transform: uppercase;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(92%, 980px);
    z-index: 2;
}

.color-strip
{
    padding: 28px 0 86px;
}

.search-color-strip
{
    padding-bottom: 42px;
}

.strip-scroll
{
    display: grid;
    gap: clamp(12px, 1.4vw, 18px);
    grid-auto-flow: column;
    grid-auto-columns: clamp(104px, 13vw, 160px);
    justify-content: flex-start;
    overflow-anchor: none;
    overflow-x: auto;
    padding: 0 clamp(16px, 3vw, 24px) 8px;
    scroll-behavior: auto;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    user-select: none;
}

.strip-scroll.is-dragging
{
    cursor: grabbing;
    scroll-behavior: auto;
}

.strip-scroll a
{
    cursor: grab;
    display: block;
    min-width: 0;
}

.strip-scroll > a img
{
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.strip-scroll > a > span
{
    color: #161616;
    display: block;
    font-size: 15px;
    letter-spacing: 1.6px;
    margin-top: 12px;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.categories-section
{
    padding: 0 0 130px;
}

.categories-section h2
{
    color: #555;
    font-size: 27px;
    font-weight: 500;
    margin: 0 0 46px;
    text-align: center;
    text-transform: uppercase;
}

.category-grid
{
    display: grid;
    gap: 32px 20px;
    grid-template-columns: repeat(4, 262px);
    justify-content: center;
}

.category-card
{
    display: block;
}

.category-card img
{
    border-radius: 7px;
    display: block;
    height: 349px;
    object-fit: cover;
    width: 100%;
}

.category-card span
{
    color: #191919;
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 13px;
    text-transform: uppercase;
}

.trending-section
{
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 32px 120px;
}

.section-heading
{
    align-items: end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-heading h2
{
    font-size: 40px;
    line-height: 1;
    margin: 0 0 22px;
}

.section-heading p
{
    color: #555;
    font-size: 29px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0;
}

.section-heading > div:last-child
{
    display: flex;
    gap: 16px;
}

.section-heading .button
{
    min-width: 176px;
}

.section-heading .button + .button
{
    margin-left: 0;
}

.product-grid
{
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, 1fr);
}

.product-grid .block,
.product-grid .block > .content
{
    display: contents;
}

.product-grid .block > .title
{
    display: none;
}

.product-grid .block:has(.instant-block-edit),
.product-grid .block:has(.instant-block-edit) > .content
{
    display: block;
    grid-column: 1 / -1;
    position: relative;
}

.product-grid .listing-block-container
{
    display: grid;
    gap: 14px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-grid .listing-block-product
{
    display: block;
    margin: 0;
    position: relative;
}

.product-grid .listing-block-product .image img
{
    aspect-ratio: 341 / 513;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
    display: block;
    object-fit: cover;
    width: 100%;
}

.product-grid .listing-block-product h3
{
    font-size: 19px;
    letter-spacing: 1.8px;
    margin: 14px 0 6px;
}

.product-grid .listing-block-product h3 a
{
    color: #191919;
}

.product-grid .listing-block-product .price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
}

.product-grid .listing-block-product .swatches
{
    gap: 9px;
    margin: 13px 0 0;
}

.product-grid .listing-block-product .swatches span
{
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 2px #fff;
    height: 18px;
    width: 18px;
}

.product-card img
{
    aspect-ratio: 341 / 513;
    border-radius: 7px;
    display: block;
    object-fit: cover;
    width: 100%;
}

.product-card h3,
.listing-grid-product .title
{
    font-size: 19px;
    letter-spacing: 1.8px;
    margin: 14px 0 6px;
}

.product-card h3 a,
.listing-grid-product .title a
{
    color: #191919;
}

.price-row,
.listing-grid-product .list-price
{
    align-items: baseline;
    display: flex;
    gap: 18px;
    min-height: 25px;
}

.price-row strong,
.listing-grid-product .price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
}

.price-row span,
.listing-grid-product .regular-label,
.listing-grid-product .regular-price
{
    color: #9e9e9e;
    font-size: 14px;
    font-style: italic;
}

.swatches
{
    display: flex;
    gap: 12px;
    margin: 18px 0;
}

.swatches span
{
    border-radius: 50%;
    display: block;
    height: 32px;
    width: 32px;
}

.swatches .more-colors
{
    align-items: center;
    background: #f4f4f4;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 999px;
    box-shadow: 0 0 0 2px #fff;
    color: #191919;
    display: inline-flex;
    font-size: 11px;
    font-weight: 800;
    justify-content: center;
    line-height: 1;
    min-width: 18px;
    padding: 0 5px;
    width: auto;
}

.reviews
{
    align-items: center;
    display: flex;
    gap: 18px;
}

.reviews span
{
    color: #ffb12a;
    letter-spacing: 0;
}

.reviews a
{
    color: #555;
    font-size: 13px;
    text-decoration: underline;
}

.why-section
{
    background: #0f0f0f url(images/btm-bg.jpg) center / cover no-repeat;
    color: #fff;
    min-height: 766px;
}

.why-section .container
{
    background: url(images/btm-picture.png) right bottom / auto 100% no-repeat;
    min-height: 766px;
    padding-top: 115px;
}

.why-copy
{
    max-width: 920px;
}

.why-copy h2
{
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 70px;
    text-transform: uppercase;
}

.why-copy h2 span
{
    color: #2fad86;
    font-weight: 800;
}

.why-copy p
{
    font-size: 23px;
    font-weight: 500;
    line-height: 1.35;
    margin: 0 0 30px;
}

.why-copy strong
{
    font-weight: 800;
}

#content
{
    min-height: 420px;
    padding-bottom: 70px;
    padding-top: 44px;
}

#content .layout
{
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1fr);
}

#content .layout:has(#left-blocks)
{
    grid-template-columns: 250px minmax(0, 1fr);
}

#content .layout:has(#right-blocks)
{
    grid-template-columns: minmax(0, 1fr) 250px;
}

#content .layout:has(#left-blocks):has(#right-blocks)
{
    grid-template-columns: 230px minmax(0, 1fr) 230px;
}

#content h1
{
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 24px;
}

#breadcrumb,
#messages,
#tabs-menu
{
    margin-bottom: 20px;
}

#messages
{
    background: #f1fbf7;
    border: 1px solid rgba(47, 173, 134, 0.22);
    border-left: 5px solid #2fad86;
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(25, 25, 25, 0.06);
    color: #197a5d;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
    padding: 14px 18px;
}

#messages .error
{
    color: #df242e;
}

#messages:has(.error)
{
    background: #fff3f3;
    border-color: rgba(223, 36, 46, 0.22);
    border-left-color: #df242e;
}

#tabs-menu ul
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#tabs-menu a
{
    background: #f4f4f4;
    color: #191919;
    display: block;
    padding: 10px 16px;
}

#tabs-menu a.selected,
#tabs-menu span.selected,
#tabs-menu span.selected a,
#jaris-tabs .tabs li a.selected,
#jaris-tabs .tabs li span.selected,
#jaris-tabs .tabs li span.selected a
{
    background: #2fad86;
    color: #fff;
    display: block;
    font-weight: 800;
    padding: 10px 16px;
}

#tabs-menu span.selected:has(> a),
#jaris-tabs .tabs li span.selected:has(> a)
{
    padding: 0;
}

#tabs-menu a:not(.selected):hover,
#tabs-menu span:not(.selected):hover,
#tabs-menu span:not(.selected):hover a,
#jaris-tabs .tabs li a:not(.selected):hover,
#jaris-tabs .tabs li span:not(.selected):hover,
#jaris-tabs .tabs li span:not(.selected):hover a
{
    background: #191919;
    color: #fff;
}

#my-account .register-link
{
    align-items: center;
    background: #2fad86;
    border-radius: 7px;
    box-shadow: 0 12px 24px rgba(47, 173, 134, 0.22);
    color: #fff;
    display: inline-flex;
    font-size: 18px;
    font-weight: 800;
    justify-content: center;
    min-width: 220px;
    padding: 16px 28px;
    text-transform: uppercase;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

#my-account .register-link:hover
{
    background: #191919;
    box-shadow: 0 14px 28px rgba(25, 25, 25, 0.2);
    color: #fff;
    transform: translateY(-1px);
}

#content .ecommerce-wishlist-create,
#content .ecommerce-wishlist-list
{
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 7px;
    box-shadow: 0 16px 34px rgba(25, 25, 25, 0.06);
    padding: 22px;
}

#content .ecommerce-wishlist-list h2
{
    color: #191919;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0;
}

#content .ecommerce-wishlist-products
{
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
}

#content .wishlist-product
{
    border: 0;
    padding: 0;
}

#content .wishlist-product-image
{
    background: #f8f8f8;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    overflow: hidden;
}

#content .wishlist-product h3
{
    color: #191919;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    margin: 0 0 8px;
    text-transform: uppercase;
}

#content .wishlist-product-price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 900;
}

#content .wishlist-product-actions
{
    align-items: center;
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

#content .wishlist-product-move
{
    margin: 0;
}

#content .wishlist-product-move-select
{
    appearance: auto;
    background: #fff;
    border: 1px solid #2fad86;
    border-radius: 999px;
    color: #191919;
    font-size: 14px;
    font-weight: 700;
    height: 36px;
    max-width: 132px;
    padding: 0 10px;
}

#content .wishlist-product-move-select:hover,
#content .wishlist-product-move-select:focus
{
    background: #2fad86;
    color: #fff;
    outline: none;
}

#content .wishlist-product-move-submit
{
    display: none;
}

#content .wishlist-product-remove
{
    align-items: center;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    color: #191919;
    display: inline-flex;
    font-size: 16px;
    font-weight: 900;
    height: 36px;
    justify-content: center;
    line-height: 1;
    width: 36px;
}

#content .wishlist-product-remove:before
{
    content: "\2715";
}

#content .wishlist-product-remove span
{
    display: none;
}

#content .wishlist-product-remove:hover
{
    background: #df242e;
    border-color: #df242e;
    color: #fff;
}

@media all and (max-width: 640px)
{
    #content .ecommerce-wishlist-create form,
    #content .ecommerce-wishlist-list-header,
    #content .ecommerce-wishlist-list-actions
    {
        align-items: stretch;
        flex-direction: column;
    }
}

.block,
.content-block
{
    margin-bottom: 24px;
}

.block > .title,
.content-block > .title
{
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

#right-blocks .block
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    padding: 22px;
}

#right-blocks .block > .title
{
    border-bottom: 2px solid #2fad86;
    color: #191919;
    font-size: 21px;
    letter-spacing: 0.8px;
    line-height: 1.2;
    margin: 0 0 14px;
    padding-bottom: 12px;
}

#right-blocks ul.menu
{
    list-style: none;
    margin: 0;
    padding: 0;
}

#right-blocks ul.menu li
{
    list-style: none;
    margin: 0;
    padding: 0;
}

#right-blocks ul.menu li span
{
    display: block;
}

#right-blocks ul.menu a
{
    border-radius: 5px;
    color: #303030;
    display: block;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    padding: 8px 10px;
}

#right-blocks ul.menu a:hover,
#right-blocks ul.menu a.active,
#right-blocks ul.menu span.active > a
{
    background: #f4f4f4;
    color: #2fad86;
}

#right-blocks ul.menu ul
{
    border-left: 1px solid #e5e5e5;
    margin: 2px 0 4px 12px;
    padding-left: 10px;
}

#right-blocks ul.menu ul a
{
    color: #555;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 6px;
    padding-top: 6px;
}

#right-blocks ul.menu ul ul
{
    margin-left: 10px;
}

#right-blocks ul.menu ul ul a
{
    font-size: 13px;
}

#shopping-cart td.quantity
{
    text-align: center;
    vertical-align: middle;
}

#shopping-cart td.quantity input[type="number"]
{
    box-sizing: border-box;
    display: inline-block;
    font-size: 16px;
    min-height: 44px;
    min-width: 74px;
    padding: 8px 10px !important;
    text-align: center;
    width: 74px !important;
}

body.page-admin-ecommerce-orders #content h1
{
    margin-bottom: 18px;
}

body.page-admin-ecommerce-orders #content .center > form
{
    align-items: center;
    background: #fafafa;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 14px 18px 0;
    padding: 14px;
}

body.page-admin-ecommerce-orders #content .center > form select,
body.page-admin-ecommerce-orders #content .center > form input[type="text"]
{
    min-height: 42px;
}

body.page-admin-ecommerce-orders #content .center > form input[type="text"]
{
    width: 170px;
}

body.page-admin-ecommerce-orders #content .center > form input[type="submit"]
{
    min-height: 42px;
    padding: 10px 18px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-orders #content .center > b
{
    background: #f4f4f4;
    border-radius: 999px;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    margin: 0 6px 16px 0;
    padding: 8px 12px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-orders .navigation
{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 !important;
}

body.page-admin-ecommerce-orders .navigation a,
body.page-admin-ecommerce-orders .navigation span,
body.page-admin-ecommerce-orders .navigation .current-page
{
    background: #f4f4f4;
    border: 1px solid #eeeeee !important;
    border-radius: 7px;
    color: #191919;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    margin: 0 !important;
    min-height: 36px;
    padding: 10px 12px;
}

body.page-admin-ecommerce-orders .navigation a:hover,
body.page-admin-ecommerce-orders .navigation .current-page
{
    background: #2fad86 !important;
    border-color: #2fad86 !important;
    color: #fff !important;
}

body.page-admin-ecommerce-orders #ecommerce-orders
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-collapse: separate;
    border-radius: 7px;
    border-spacing: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    margin: 12px 0 20px;
    min-width: 900px;
    width: 100%;
}

body.page-admin-ecommerce-orders #ecommerce-orders tr
{
    display: table-row;
}

body.page-admin-ecommerce-orders #ecommerce-orders thead td
{
    background: #191919;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 16px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody td
{
    border-bottom: 1px solid #eeeeee;
    color: #303030;
    font-size: 14px;
    padding: 14px 16px;
    vertical-align: middle;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody tr:nth-child(even) td
{
    background: #fafafa;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody tr:hover td
{
    background: rgba(47, 173, 134, 0.08);
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody td:first-child a
{
    background: rgba(47, 173, 134, 0.12);
    border-radius: 999px;
    color: #2fad86;
    display: inline-block;
    font-weight: 800;
    padding: 6px 10px;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody td:first-child a:hover
{
    background: #2fad86;
    color: #fff;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody td:last-child a
{
    background: #df242e;
    border-radius: 7px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 9px 12px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-orders #ecommerce-orders tbody td:last-child a:hover
{
    background: #191919;
}

body.page-admin-ecommerce-orders .muv4-table-scroll
{
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

body.page-admin-ecommerce-orders #content .center
{
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
}

body.page-admin-ecommerce-order-edit #content .center
{
    max-width: 100%;
    min-width: 0;
}

body.page-admin-ecommerce-order-edit #content h1
{
    margin-bottom: 18px;
}

body.page-admin-ecommerce-order-edit #content .center > h3
{
    border-bottom: 2px solid #2fad86;
    color: #191919;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 28px 0 14px;
    padding-bottom: 10px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit #content .center > b
{
    color: #555;
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    min-width: 150px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit #content .center > hr
{
    border: 0;
    border-top: 1px solid #eeeeee;
    margin: 26px 0;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status,
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-downloads-access,
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order,
body.page-admin-ecommerce-order-edit #content .center > fieldset
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    margin: 0 0 20px;
    overflow: hidden;
    padding: 0;
}

body.page-admin-ecommerce-order-edit fieldset
{
    border: 0;
    margin: 0;
    padding: 0;
}

body.page-admin-ecommerce-order-edit fieldset > legend
{
    box-sizing: border-box;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

body.page-admin-ecommerce-order-edit fieldset > legend a
{
    background: #fff;
    border-radius: 0;
    color: #191919;
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 16px 18px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit fieldset > legend a:hover
{
    background: #2fad86;
    color: #fff;
}

body.page-admin-ecommerce-order-edit fieldset .fieldset-description
{
    color: #555;
    font-size: 14px;
    margin: 12px 0 0;
}

body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed),
body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed)
{
    padding: 0 18px 18px;
}

body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed) > legend,
body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed) > legend
{
    margin-left: -18px;
    width: calc(100% + 36px);
}

body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed) > legend a,
body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed) > legend a
{
    background: #f4f4f4;
    margin-bottom: 16px;
}

body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed) > legend a:hover,
body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed) > legend a:hover
{
    background: #eeeeee;
    color: #191919;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status .field_select,
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status .field_textarea
{
    max-width: 760px;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status textarea
{
    min-height: 120px;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order input[type="submit"],
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status input[type="submit"],
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-downloads-access input[type="submit"]
{
    margin: 6px 8px 0 0;
    min-height: 42px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order .field_inline
{
    box-sizing: border-box;
    margin: 0 14px 16px 0;
    max-width: 100%;
    width: 260px;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order input[type="text"],
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order input[type="email"],
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order select,
body.page-admin-ecommerce-order-edit form.ecommerce-edit-order textarea
{
    box-sizing: border-box;
    width: 100%;
}

body.page-admin-ecommerce-order-edit form.ecommerce-edit-order h2
{
    border-bottom: 2px solid #2fad86;
    clear: both;
    color: #191919;
    font-size: 17px;
    letter-spacing: 1px;
    margin: 20px 0 16px;
    padding: 0 0 10px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit .muv4-table-scroll
{
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

body.page-admin-ecommerce-order-edit #shopping-cart
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-collapse: separate;
    border-radius: 7px;
    border-spacing: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    margin: 12px 0 20px;
    overflow: hidden;
    width: 100%;
}

body.page-admin-ecommerce-order-edit #shopping-cart thead td
{
    background: #191919;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 16px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit #shopping-cart td
{
    border-bottom: 1px solid #eeeeee;
    color: #303030;
    font-size: 14px;
    padding: 14px 16px;
    vertical-align: middle;
}

body.page-admin-ecommerce-order-edit #shopping-cart tr:last-child td
{
    border-bottom: 0;
}

body.page-admin-ecommerce-order-edit #shopping-cart tr:nth-child(even) td
{
    background: #fafafa;
}

body.page-admin-ecommerce-order-edit #shopping-cart td.image
{
    width: 130px;
}

body.page-admin-ecommerce-order-edit #shopping-cart td.image img
{
    border-radius: 7px;
    display: block;
    max-width: 110px;
}

body.page-admin-ecommerce-order-edit #shopping-cart td.description a
{
    color: #191919;
    font-weight: 800;
    text-transform: uppercase;
}

body.page-admin-ecommerce-order-edit #shopping-cart td.description a:hover
{
    color: #2fad86;
}

body.page-admin-ecommerce-order-edit #shopping-cart td.price
{
    color: #2fad86;
    font-weight: 800;
    text-align: right;
    white-space: nowrap;
}

body.page-admin-ecommerce-order-edit pre
{
    background: #191919;
    border-radius: 7px;
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    max-width: 100%;
    overflow: auto;
    padding: 14px;
}

body.page-admin-ecommerce-reports #content .center
{
    max-width: 100%;
    min-width: 0;
}

body.page-admin-ecommerce-reports #content h1
{
    margin-bottom: 18px;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    margin: 0 0 22px;
    overflow: hidden;
    padding: 0;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset
{
    border: 0;
    margin: 0;
    padding: 0 18px 18px;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by legend
{
    box-sizing: border-box;
    display: block;
    float: none;
    margin: 0 0 16px -18px;
    padding: 0;
    width: calc(100% + 36px);
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by legend a
{
    background: #f4f4f4;
    color: #191919;
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 16px 18px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by legend a:hover
{
    background: #eeeeee;
    color: #191919;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset.j-collapsed
{
    padding: 0;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset.j-collapsed legend
{
    margin: 0;
    width: 100%;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset.j-collapsed legend a
{
    background: #fff;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset.j-collapsed legend a:hover
{
    background: #2fad86;
    color: #fff;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by .field_inline
{
    box-sizing: border-box;
    margin: 0 14px 0 0;
    max-width: 100%;
    min-width: 150px;
    width: calc(20% - 14px);
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by .caption
{
    color: #555;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin: 0 0 6px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by select
{
    box-sizing: border-box;
    width: 100%;
}

body.page-admin-ecommerce-reports #ecommerce-reports-total
{
    display: grid !important;
    gap: 12px;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    margin: 0 0 22px !important;
}

body.page-admin-ecommerce-reports #ecommerce-reports-total .total,
body.page-admin-ecommerce-reports #page-content td.content > div[style*="display: flex"] > div
{
    background: #fff !important;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    color: #303030;
    margin: 0 !important;
    padding: 16px !important;
    text-align: left !important;
}

body.page-admin-ecommerce-reports #ecommerce-reports-total .total div:first-child,
body.page-admin-ecommerce-reports #page-content td.content > div[style*="display: flex"] > div:first-child
{
    margin-bottom: 6px;
}

body.page-admin-ecommerce-reports #ecommerce-reports-total .total strong,
body.page-admin-ecommerce-reports #page-content td.content > div[style*="display: flex"] strong
{
    color: #555;
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-right: 4px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-reports #ecommerce-reports-total .total div:last-child,
body.page-admin-ecommerce-reports #page-content td.content > div[style*="display: flex"] > div div:last-child
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
}

body.page-admin-ecommerce-reports .muv4-table-scroll
{
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

body.page-admin-ecommerce-reports table.navigation-list
{
    background: #fff;
    border: 1px solid #eeeeee;
    border-collapse: separate;
    border-radius: 7px;
    border-spacing: 0;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
    margin: 12px 0 20px;
    overflow: hidden;
    width: 100%;
}

body.page-admin-ecommerce-reports table.navigation-list thead td
{
    background: #191919;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 14px 16px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-reports table.navigation-list tbody td
{
    border-bottom: 1px solid #eeeeee;
    color: #303030;
    font-size: 14px;
    padding: 14px 16px;
    vertical-align: middle;
}

body.page-admin-ecommerce-reports table.navigation-list tbody tr:last-child td
{
    border-bottom: 0;
}

body.page-admin-ecommerce-reports table.navigation-list tbody tr:nth-child(even) td
{
    background: #fafafa;
}

body.page-admin-ecommerce-reports table.navigation-list tbody tr:hover td
{
    background: rgba(47, 173, 134, 0.08);
}

body.page-admin-ecommerce-reports table.navigation-list tbody td:first-child
{
    min-width: 360px;
}

body.page-admin-ecommerce-reports table.navigation-list tbody td:not(:first-child)
{
    text-align: right;
    white-space: nowrap;
}

body.page-admin-ecommerce-reports table.navigation-list tbody td strong
{
    color: #555;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

body.page-admin-ecommerce-reports .navigation
{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 !important;
}

body.page-admin-ecommerce-reports .navigation a,
body.page-admin-ecommerce-reports .navigation span,
body.page-admin-ecommerce-reports .navigation .current-page
{
    background: #f4f4f4;
    border: 1px solid #eeeeee !important;
    border-radius: 7px;
    color: #191919;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    margin: 0 !important;
    min-height: 36px;
    padding: 10px 12px;
}

body.page-admin-ecommerce-reports .navigation a:hover,
body.page-admin-ecommerce-reports .navigation .current-page
{
    background: #2fad86 !important;
    border-color: #2fad86 !important;
    color: #fff !important;
}

.listing-grid-product
{
    position: relative;
}

.filter-listing-results .content-list-options
{
    align-items: end;
    gap: 14px;
    margin: 0 0 28px !important;
}

.filter-listing-results .caption
{
    color: #555;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

#content .layout:has(#left-blocks form[name="listing-filter-by"])
{
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
}

#content .layout.has-listing-filter
{
    gap: 24px;
    grid-template-columns: minmax(0, 1fr);
    overflow: visible;
}

#content .layout:has(#left-blocks form[name="listing-filter-by"]) #left-blocks
{
    border-bottom: 1px solid #eeeeee;
    grid-column: 1;
    margin-bottom: 8px;
    padding-bottom: 22px;
}

#content .layout.has-listing-filter #left-blocks
{
    border-bottom: 1px solid #eeeeee;
    grid-column: 1;
    margin-bottom: 8px;
    max-width: none;
    overflow: visible;
    padding-bottom: 22px;
    position: relative;
    z-index: 1000;
    width: 100%;
}

#content .layout:has(#left-blocks form[name="listing-filter-by"]) #left-blocks .block,
#content .layout:has(#left-blocks form[name="listing-filter-by"]) #left-blocks .content
{
    margin: 0;
}

#content .layout.has-listing-filter #left-blocks .block,
#content .layout.has-listing-filter #left-blocks .content
{
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 1000;
}

#content .layout:has(#left-blocks form[name="listing-filter-by"]) .center
{
    grid-column: 1;
}

#content .layout.has-listing-filter .center
{
    grid-column: 1;
    position: relative;
    z-index: 1;
}

#left-blocks form[name="listing-filter-by"]
{
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
}

#left-blocks form[name="listing-filter-by"].muv4-filters-ready
{
    display: flex;
    flex-wrap: nowrap;
    overflow: visible;
    padding-bottom: 4px;
    width: 100%;
}

.muv4-filters-ready
{
    display: flex;
    gap: 10px 24px;
    margin: 0 auto;
    max-width: 1400px;
    padding-left: 32px;
    padding-right: 32px;
}

#left-blocks form[name="listing-filter-by"] .field_select
{
    display: block;
    flex: 0 0 auto;
    float: none;
    margin: 0;
    overflow: visible;
    position: relative;
    z-index: 1000;
}

#left-blocks form[name="listing-filter-by"].muv4-filters-ready .field_select .caption,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .field_select select,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .field_select .select2,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .field_select .select2-container,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .field_submit,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready input[type="submit"],
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .muv4-filter-fallback,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .muv4-filter-field-ready > .caption,
#left-blocks form[name="listing-filter-by"].muv4-filters-ready .muv4-filter-field-ready > select,
#content .layout:has(#left-blocks form[name="listing-filter-by"]) #left-blocks .block > .title,
#content .layout.has-listing-filter #left-blocks .block > .title
{
    display: none !important;
}

.muv4-filter-menu
{
    position: relative;
    z-index: 1000;
}

.muv4-filter-menu.open
{
    z-index: 2000;
}

.muv4-filter-toggle
{
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 3px;
    color: #191919;
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    gap: 9px;
    letter-spacing: 1.8px;
    min-height: 34px;
    padding: 8px 12px;
    text-transform: uppercase;
}

.muv4-filter-menu.active .muv4-filter-toggle,
.muv4-filter-menu.open .muv4-filter-toggle,
.muv4-filter-toggle:hover
{
    background: #f4f4f4;
    color: #191919;
    transform: none;
}

.muv4-filter-arrow
{
    font-size: 13px;
    line-height: 1;
}

.muv4-filter-menu.open .muv4-filter-arrow
{
    transform: rotate(180deg);
}

.muv4-filter-options
{
    background: #fff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    display: none;
    left: 0;
    min-width: 210px;
    padding: 14px 16px;
    position: absolute;
    top: calc(100% + 8px);
    z-index: 2001;
}

.muv4-filter-menu.open .muv4-filter-options
{
    display: block;
}

.muv4-filter-option
{
    align-items: center;
    color: #303030;
    cursor: pointer;
    display: flex;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
    line-height: 1.3;
    padding: 7px 4px;
    white-space: nowrap;
}

.muv4-filter-option:hover
{
    color: #2fad86;
}

.muv4-filter-option input
{
    appearance: none;
    background: #fff;
    border: 1px solid #9e9e9e;
    border-radius: 2px;
    height: 16px;
    margin: 0;
    width: 16px;
}

.muv4-filter-option input:checked
{
    background: #2fad86;
    border-color: #2fad86;
    box-shadow: inset 0 0 0 3px #fff;
}

.listing-grid-table,
.listing-grid-table tbody
{
    display: block;
    width: 100%;
}

.listing-grid-table tbody
{
    display: block;
}

.listing-grid-table tr
{
    display: grid;
    gap: 14px;
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: column;
    margin-bottom: 24px;
}

.listing-grid-table tbody td
{
    border: 0;
    display: block;
    min-width: 0;
    padding: 0;
}

.listing-grid
{
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 0;
    position: relative;
}

.listing-grid .image
{
    background: #f4f4f4;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
}

.listing-grid .image a,
.listing-grid .image img
{
    display: block;
    width: 100%;
}

.listing-grid .image img
{
    aspect-ratio: 341 / 513;
    object-fit: cover;
}

.listing-grid .details
{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.listing-grid .title h2
{
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.25;
    margin: 14px 0 6px;
    text-transform: uppercase;
}

.listing-grid .title a
{
    color: #191919;
}

.listing-grid .price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
    min-height: 25px;
}

.listing-grid .price .on-sale
{
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.listing-grid .price .on-sale span
{
    background: #df242e;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    text-transform: uppercase;
}

.listing-grid .swatches
{
    gap: 9px;
    margin: 13px 0 0;
}

.listing-grid .swatches span
{
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 2px #fff;
    height: 18px;
    width: 18px;
}

.search-results .navigation
{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 38px;
}

.search-results .navigation a
{
    align-items: center;
    background: #f4f4f4;
    border-radius: 7px;
    color: #191919;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 42px;
    min-width: 42px;
    padding: 10px 14px;
    text-transform: uppercase;
}

.search-results .navigation .previous,
.search-results .navigation .next
{
    background: #191919;
    color: #fff;
    padding-left: 18px;
    padding-right: 18px;
}

.search-results .navigation a:hover,
.search-results .navigation .current-page
{
    background: #2fad86;
    color: #fff;
}

.search-results .navigation .previous:hover,
.search-results .navigation .next:hover
{
    background: #2fad86;
    color: #fff;
}

#search-engine
{
    margin-bottom: 36px;
}

#search-engine fieldset
{
    background: #f4f4f4;
    border: 0;
    border-radius: 7px;
    margin: 0 0 18px;
    padding: 0 18px 18px;
}

#search-engine fieldset::after
{
    clear: both;
    content: "";
    display: table;
}

#search-engine fieldset.j-collapsed
{
    background: transparent;
    margin-bottom: 22px;
    padding: 0;
}

#search-engine fieldset.j-collapsed > div
{
    visibility: visible;
}

#search-engine fieldset > div
{
    clear: both;
}

#search-engine legend
{
    background: transparent;
    border-radius: 7px;
    box-sizing: border-box;
    color: #191919;
    display: block;
    float: left;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 16px;
    padding: 14px 18px;
    text-transform: uppercase;
    width: 100%;
}

#search-engine fieldset.j-collapsed legend
{
    background: #f4f4f4;
    margin-bottom: 0;
}

#search-engine legend a
{
    align-items: center;
    color: #191919;
    display: inline-flex !important;
}

#search-engine legend a:hover
{
    color: #2fad86;
}

#search-engine .field_inline
{
    margin-bottom: 12px;
}

body.page-search #search-engine
{
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

body.page-search #search-engine > fieldset
{
    flex: 0 0 100%;
}

body.page-search #search-engine > div[style*="clear"]
{
    display: none;
}

body.page-search #search-engine > .field_text
{
    display: contents;
    flex: 1 1 360px;
    margin: 0;
    max-width: 620px;
    min-width: 220px;
}

body.page-search #search-engine > input[type="submit"]
{
    flex: 0 0 auto;
    margin: 0;
}

body.page-search #search-engine > .field_text .caption
{
    flex: 0 0 100%;
    text-align: center;
}

body.page-search #search-engine > .field_text input[type="text"]
{
    flex: 1 1 360px;
    max-width: 620px;
    min-width: 220px;
}

#search-engine input[type="text"]
{
    float: none !important;
    margin: 0 10px 0 0 !important;
    width: min(100%, 520px) !important;
}

body.page-search #search-engine input[type="text"]
{
    margin: 0 !important;
    width: 100% !important;
}

#search-engine input[type="submit"]
{
    float: none !important;
    margin: 0 !important;
}

body.page-search #search-engine input[type="submit"]
{
    height: 100%;
    min-height: 52px;
    padding-left: 28px;
    padding-right: 28px;
}

.search-results-title
{
    color: #191919;
    font-size: 28px;
    line-height: 1.15;
    margin: 24px 0;
    text-transform: uppercase;
}

.search-results-container
{
    display: grid;
    gap: 24px 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.search-results-container .result
{
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.search-results-container .result .image
{
    background: #f4f4f4;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
    overflow: hidden;
}

.search-results-container .result .image a,
.search-results-container .result .image img
{
    display: block;
    width: 100%;
}

.search-results-container .result .image a
{
    float: none !important;
    padding: 0 !important;
}

.search-results-container .result .image img
{
    aspect-ratio: 341 / 513;
    object-fit: cover;
}

.search-results-container .result .details
{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.search-results-container .result .title h2
{
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 1.8px;
    line-height: 1.25;
    margin: 14px 0 6px;
    text-transform: uppercase;
}

.search-results-container .result .title a
{
    color: #191919;
}

.search-results-container .result .price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
    min-height: 25px;
}

.search-results-container .result .swatches
{
    gap: 9px;
    margin: 13px 0 0;
}

.search-results-container .result .swatches span
{
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 2px #fff;
    height: 18px;
    width: 18px;
}

.listing-grid-product .container
{
    padding: 0;
    position: relative;
}

.listing-grid-product .image img
{
    aspect-ratio: 341 / 513;
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
    display: block;
    object-fit: cover;
    width: 100%;
}

.listing-grid-product .view-more a,
.listing-block-product .view-more a
{
    color: #2fad86;
    font-weight: 800;
    text-transform: uppercase;
}

.listing-block-product
{
    display: grid;
    gap: 18px;
    grid-template-columns: 140px 1fr;
    margin-bottom: 24px;
}

.listing-block-product .image img
{
    border: 1px solid #eeeeee;
    border-radius: 7px;
    box-sizing: border-box;
}

.listing-block-product h3
{
    margin: 0 0 8px;
}

#footer-blocks
{
    padding: 0 0 70px;
}

#center-blocks
{
    margin-bottom: 48px;
}

#footer-blocks .block > .title
{
    font-size: 28px;
    line-height: 1.15;
    margin: 0 0 24px;
    text-transform: uppercase;
}

#footer-blocks .listing-block-container
{
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

#footer-blocks .listing-block-product
{
    display: block;
    margin: 0;
    min-width: 0;
}

#footer-blocks .listing-block-product .image img
{
    aspect-ratio: 341 / 513;
    border-radius: 7px;
    display: block;
    object-fit: cover;
    width: 100%;
}

#footer-blocks .listing-block-product h3
{
    font-size: 19px;
    letter-spacing: 1.8px;
    margin: 14px 0 6px;
}

#footer-blocks .listing-block-product h3 a
{
    color: #191919;
}

#footer-blocks .listing-block-product .price
{
    color: #2fad86;
    font-size: 18px;
    font-weight: 800;
}

#footer-blocks .listing-block-product .swatches
{
    gap: 9px;
    margin: 13px 0 0;
}

#footer-blocks .listing-block-product .swatches span
{
    border: 1px solid rgba(0, 0, 0, 0.18);
    box-shadow: 0 0 0 2px #fff;
    height: 18px;
    width: 18px;
}

.product-grid .listing-block-product .swatches span.more-colors,
.listing-grid .swatches span.more-colors,
.search-results-container .result .swatches span.more-colors,
#footer-blocks .listing-block-product .swatches span.more-colors
{
    border-radius: 999px;
    box-sizing: border-box;
    flex: 0 0 auto;
    min-width: 28px;
    padding: 0 6px;
    width: auto;
}

#site-footer
{
    color: #555;
}

.footer-main
{
    background: #f4f4f4;
    padding: 78px 0;
}

.footer-main .container
{
    display: grid;
    gap: 70px;
    grid-template-columns: 1.5fr 0.7fr 0.7fr;
}

.footer-main img
{
    display: block;
    width: 355px;
}

.footer-main h3
{
    color: #090909;
    font-size: 22px;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.footer-main a
{
    color: #555;
    display: block;
    font-size: 16px;
    line-height: 1.45;
}

.footer-main a.sale
{
    color: #df242e;
}

.footer-main .brand > a:first-child
{
    margin-bottom: 38px;
}

.footer-main .social
{
    align-items: center;
    display: flex;
    gap: 18px;
    margin-top: 28px;
}

.footer-main .social a
{
    display: block;
}

.footer-main .social img
{
    height: 25px;
    object-fit: contain;
    width: 25px;
}

.footer-bottom
{
    background: #fff;
    color: #aaa;
    font-size: 16px;
    padding: 34px 0;
}

.footer-bottom .container
{
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.footer-legal
{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-powered p
{
    margin: 0;
}

.footer-bottom a
{
    color: #aaa;
    text-decoration: underline;
}

.footer-bottom a + a
{
    margin-left: 22px;
}

#search-panel
{
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: 80px 24px;
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
    visibility: hidden;
    z-index: 100;
}

.search-open #search-panel
{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

#search-panel form
{
    display: grid;
    gap: 12px;
    margin: 0 auto;
    max-width: 1200px;
    width: 90%;
}

#search-panel input
{
    border: 1px solid #c9c9c9;
    font-size: 24px;
    padding: 18px;
}

#search-panel button
{
    background: #2fad86;
    border: 0;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    padding: 14px 20px;
    text-transform: uppercase;
}

#search-panel .close
{
    background: #191919;
}

#search-panel .icon-close
{
    align-items: center;
    background: #191919;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-size: 18px;
    font-weight: 800;
    height: 44px;
    justify-content: center;
    position: absolute;
    right: 28px;
    top: 28px;
    width: 44px;
}

@media (max-width: 1200px)
{
    body.page-contact #header-blocks .block-90 table.responsive tr
    {
        display: grid;
        gap: 10px 42px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-contact #header-blocks .block-90 table.responsive td
    {
        min-width: 0;
    }

    body.page-contact #header-blocks .block-90 table.responsive td:last-child
    {
        grid-column: 1 / -1;
        padding-top: 0 !important;
        text-align: center !important;
    }

    body.page-contact #header-blocks .block-90 .phone
    {
        margin-bottom: 14px;
    }

    #site-header .container
    {
        gap: 24px;
        grid-template-columns: 280px 1fr;
    }

    #site-header .logo img
    {
        width: 280px;
    }

    #main-menu > ul > li > span > a
    {
        font-size: 13px;
        padding: 16px 11px;
    }

    .hero
    {
        min-height: 620px;
    }

    .hero-copy
    {
        top: 230px;
    }

    .category-grid
    {
        grid-template-columns: repeat(3, 262px);
    }

    .section-heading
    {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 900px)
{
    .container
    {
        padding: 0 20px;
    }

    #utility-bar .container
    {
        gap: 12px;
        justify-content: flex-end;
    }

    #utility-bar .contact
    {
        display: none;
    }

    #utility-bar .actions
    {
        justify-content: flex-end;
        margin-left: auto;
        width: 100%;
    }

    body.page-contact #header-blocks .block-90 table.responsive tr
    {
        align-items: flex-start;
        gap: 18px 28px;
    }

    body.page-contact #header-blocks .block-90 table.responsive td
    {
        flex: 1 1 calc(50% - 28px);
    }

    body.page-contact #header-blocks .block-90 table.responsive td:last-child
    {
        flex-basis: 100%;
        padding-top: 12px !important;
        text-align: center !important;
    }

    #site-header .container
    {
        display: flex;
        justify-content: center;
        min-height: 110px;
    }

    #main-menu
    {
        display: none;
    }

    .hero
    {
        background-position: 27% top;
        min-height: 580px;
    }

    .hero-copy
    {
        background: rgba(159, 132, 117, 0.72);
        left: 0;
        padding: 36px 20px;
        top: auto;
        bottom: 0;
        transform: none;
        width: 100%;
    }

    .hero-copy h1
    {
        font-size: 72px;
    }

    .hero-copy p
    {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .hero-copy .button
    {
        min-width: 145px;
    }

    #header-blocks .animated-block-content-container
    {
        right: clamp(16px, 4vw, 36px);
        width: min(58vw, 520px) !important;
    }

    #header-blocks .animated-block-title
    {
        font-size: clamp(42px, 10vw, 92px) !important;
    }

    #header-blocks .animated-block-description
    {
        font-size: clamp(17px, 3vw, 26px) !important;
    }

    #header-blocks .animated-block-description p
    {
        margin-bottom: 26px;
    }

    #header-blocks .muv4-hero-actions
    {
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
    }

    #header-blocks .muv4-hero-actions .button
    {
        flex: 1 1 132px;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .color-strip
    {
        padding-bottom: 60px;
    }

    .strip-scroll
    {
        justify-content: flex-start;
    }

    .category-grid,
    .product-grid,
    .product-grid .listing-block-container,
    #footer-blocks .listing-block-container,
    .listing-grid-table tr,
    .search-results-container
    {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-grid-table tr
    {
        grid-auto-flow: row;
    }

    .listing-grid-table tbody td:empty
    {
        display: none;
    }

    .trending-section .trending-product-strip
    {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin-left: 0;
        margin-right: 0;
        overflow: visible;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }

    .trending-section .trending-product-strip .listing-block-container
    {
        box-sizing: border-box;
        display: grid !important;
        gap: 14px;
        grid-column: 1 / -1;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        margin: 0;
        max-width: none;
        overflow: visible;
        overscroll-behavior-x: contain;
        padding: 0;
        scrollbar-width: thin;
        scroll-snap-type: x proximity;
        touch-action: pan-x pan-y;
        width: 100%;
    }

    .trending-section .trending-product-strip .block,
    .trending-section .trending-product-strip .block > .content
    {
        display: contents;
    }

    .trending-section .trending-product-strip .listing-block-container
    {
        grid-column: 1 / -1;
    }

    .trending-section .trending-product-strip > .product-card
    {
        display: inline-block;
        margin-right: 14px;
        vertical-align: top;
        width: clamp(150px, 42vw, 190px);
    }

    .trending-section .trending-product-strip .listing-block-product,
    .trending-section .trending-product-strip .product-card
    {
        flex: none;
        min-width: 0;
        scroll-snap-align: start;
        width: auto;
    }

    #content .layout:has(#right-blocks),
    #content .layout:has(#left-blocks),
    #content .layout:has(#left-blocks):has(#right-blocks)
    {
        grid-template-columns: minmax(0, 1fr);
    }

    .muv4-filters-ready
    {
        gap: 8px 14px;
        overflow-x: auto;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: thin;
    }

    .muv4-filter-toggle
    {
        font-size: 12px;
        letter-spacing: 1.2px;
        padding: 8px 10px;
        white-space: nowrap;
    }

    .category-card img
    {
        height: auto;
    }

    .trending-section
    {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-heading p
    {
        font-size: 22px;
    }

    .why-section,
    .why-section .container
    {
        min-height: 0;
    }

    .why-section .container
    {
        background: rgba(0, 0, 0, 0.18);
        padding-bottom: 70px;
        padding-top: 70px;
    }

    .why-copy h2
    {
        font-size: 32px;
        margin-bottom: 42px;
    }

    .why-copy p
    {
        font-size: 18px;
    }

    .footer-main .container
    {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container
    {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 560px)
{
    #shipping-bar
    {
        font-size: 12px;
        line-height: 44px;
        min-height: 44px;
    }

    #utility-bar .account
    {
        font-size: 11px;
        padding-left: 12px;
    }

    #site-header .logo img
    {
        width: 260px;
    }

    body.page-contact #header-blocks .block-90 iframe
    {
        height: 360px;
    }

    body.page-contact #header-blocks .block-90 table.responsive td,
    body.page-contact #header-blocks .block-90 table.responsive td:last-child
    {
        display: block;
        margin-bottom: 0;
        padding: 0 !important;
        text-align: left !important;
        width: 100% !important;
    }

    body.page-contact #header-blocks .block-90 table.responsive tr
    {
        gap: 0;
        grid-template-columns: minmax(0, 1fr);
    }

    body.page-contact #header-blocks .block-90 table.responsive td:last-child
    {
        grid-column: auto;
        margin-top: 8px;
    }

    body.page-contact #header-blocks .block-90 .phone span a
    {
        font-size: clamp(24px, 7vw, 32px) !important;
    }

    body.page-contact #header-blocks .block-90 .phone
    {
        margin-bottom: 20px;
    }

    body.page-contact #header-blocks .block-90 .support-phone
    {
        display: block;
        text-align: left;
        width: 100%;
    }

    body.page-contact #header-blocks .block-90 .support-phone p
    {
        text-align: left !important;
    }

    body.page-contact #header-blocks .block-90 .support-phone .phone
    {
        font-size: clamp(30px, 8vw, 40px) !important;
    }

    .hero
    {
        min-height: 520px;
    }

    .hero-copy h1
    {
        font-size: 54px;
    }

    .hero-copy .button + .button
    {
        margin-left: 0;
        margin-top: 12px;
    }

    #header-blocks [id^="animated-block-header-"],
    #header-blocks .animated-block-link,
    #header-blocks .animated-block-slide
    {
        min-height: clamp(480px, 86vw, 560px);
    }

    #header-blocks .animated-block-slide
    {
        background-position: left top !important;
    }

    #header-blocks .animated-block-content-container
    {
        background: rgba(159, 132, 117, 0.72);
        bottom: 0;
        height: auto !important;
        justify-content: flex-end;
        left: 0 !important;
        padding: 22px 18px 26px;
        right: 0;
        top: auto !important;
        width: 100% !important;
    }

    #header-blocks .animated-block-title
    {
        font-size: clamp(40px, 12vw, 58px) !important;
    }

    #header-blocks .animated-block-description
    {
        font-size: clamp(17px, 5vw, 22px) !important;
        width: 100%;
    }

    #header-blocks .animated-block-description p
    {
        margin-bottom: 18px;
    }

    #header-blocks .muv4-hero-actions .button
    {
        flex: 1 1 0;
        min-width: 0;
    }

    .button
    {
        font-size: 18px;
        min-width: 100%;
    }

    .color-strip
    {
        padding-bottom: 44px;
    }

    .strip-scroll
    {
        grid-auto-columns: clamp(92px, 34vw, 128px);
    }

    .strip-scroll span
    {
        font-size: 12px;
        letter-spacing: 1px;
        margin-top: 9px;
    }

    .section-heading > div:last-child
    {
        width: 100%;
    }

    .section-heading .button
    {
        flex: 1;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    #header-blocks .muv4-hero-actions
    {
        gap: 12px;
        width: min(100%, 360px);
    }

    #header-blocks .muv4-hero-actions .button
    {
        flex: 1;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .product-grid,
    .product-grid .listing-block-container,
    #footer-blocks .listing-block-container,
    .search-results-container
    {
        gap: 20px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trending-section .trending-product-strip .listing-block-container
    {
        box-sizing: border-box;
        display: flex !important;
        flex-wrap: nowrap;
        gap: 14px;
        grid-column: auto;
        grid-template-columns: none;
        margin: 0;
        max-width: none;
        overflow-x: auto;
        padding: 0 20px 8px;
        width: 100%;
    }

    .trending-section .trending-product-strip
    {
        display: block;
        margin-left: -20px;
        margin-right: -20px;
        width: calc(100% + 40px);
    }

    .trending-section .trending-product-strip .listing-block-product,
    .trending-section .trending-product-strip .product-card
    {
        flex: 0 0 clamp(130px, 44vw, 170px);
        flex-basis: clamp(130px, 44vw, 170px);
        width: clamp(130px, 44vw, 170px);
    }

    .listing-grid-table tbody
    {
        display: grid;
        gap: 24px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .listing-grid-table tr
    {
        display: contents;
        margin: 0;
    }

    .listing-grid-table tbody td
    {
        min-width: 0;
    }

    .category-grid
    {
        gap: 24px 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 16px;
        padding-right: 16px;
    }

    .category-card span
    {
        font-size: 12px;
        letter-spacing: 1.4px;
    }

    .product-grid .listing-block-product h3,
    #footer-blocks .listing-block-product h3,
    .listing-block-product h3,
    .listing-grid .title h2,
    .search-results-container .result .title h2
    {
        font-size: 13px;
        letter-spacing: 0.6px;
        line-height: 1.25;
        margin-top: 10px;
    }

    .product-grid .listing-block-product .price,
    #footer-blocks .listing-block-product .price,
    .listing-block-product .price,
    .listing-grid .price,
    .search-results-container .result .price
    {
        font-size: 15px;
        min-height: 0;
    }

    .product-grid .listing-block-product .swatches,
    #footer-blocks .listing-block-product .swatches,
    .listing-block-product .swatches,
    .listing-grid .swatches,
    .search-results-container .result .swatches
    {
        gap: 6px;
        margin-top: 9px;
    }

    .product-grid .listing-block-product .swatches span,
    #footer-blocks .listing-block-product .swatches span,
    .listing-block-product .swatches span,
    .listing-grid .swatches span,
    .search-results-container .result .swatches span
    {
        height: 14px;
        width: 14px;
    }

    .product-grid .listing-block-product .swatches span.more-colors,
    .listing-grid .swatches span.more-colors,
    .search-results-container .result .swatches span.more-colors,
    #footer-blocks .listing-block-product .swatches span.more-colors
    {
        min-width: 24px;
        padding: 0 5px;
    }

    #search-engine input[type="text"],
    #search-engine input[type="submit"]
    {
        width: 100% !important;
    }

    body.page-search #search-engine
    {
        align-items: stretch;
        flex-direction: column;
    }

    body.page-search #search-engine > .field_text,
    body.page-search #search-engine > input[type="submit"]
    {
        flex-basis: auto;
        max-width: none;
        min-width: 0;
    }

    body.page-search #search-engine > input[type="submit"]
    {
        align-self: center;
    }

    body.page-search #search-engine > .field_text input[type="text"]
    {
        flex-basis: auto;
        max-width: none;
        min-width: 0;
    }

    body.page-search #search-engine input[type="submit"]
    {
        width: 100% !important;
    }

    #search-engine input[type="text"]
    {
        margin: 0 0 10px !important;
    }

    .filter-listing-results .content-list-options
    {
        align-items: stretch;
        flex-direction: column;
    }

    body.page-admin-ecommerce-orders #content .center > form
    {
        align-items: stretch;
        box-sizing: border-box;
        display: flex;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    body.page-admin-ecommerce-orders #content .center > form select,
    body.page-admin-ecommerce-orders #content .center > form input[type="text"],
    body.page-admin-ecommerce-orders #content .center > form input[type="submit"]
    {
        box-sizing: border-box;
        min-width: 0;
        width: 100%;
    }

    body.page-admin-ecommerce-orders .muv4-table-scroll
    {
        max-width: calc(100vw - 40px);
        width: calc(100vw - 40px);
    }

    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status,
    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-downloads-access,
    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order,
    body.page-admin-ecommerce-order-edit #content .center > fieldset
    {
        padding: 0;
    }

    body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed),
    body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed)
    {
        padding: 0 14px 14px;
    }

    body.page-admin-ecommerce-order-edit fieldset.j-collapsible:not(.j-collapsed) > legend,
    body.page-admin-ecommerce-order-edit fieldset.collapsible:not(.collapsed) > legend
    {
        margin-left: -14px;
        width: calc(100% + 28px);
    }

    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order .field_inline
    {
        margin-right: 0;
        width: 100%;
    }

    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-status input[type="submit"],
    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order-downloads-access input[type="submit"],
    body.page-admin-ecommerce-order-edit form.ecommerce-edit-order input[type="submit"]
    {
        box-sizing: border-box;
        margin-right: 0;
        width: 100%;
    }

    body.page-admin-ecommerce-order-edit #content .center > b
    {
        display: block;
        margin-top: 8px;
        min-width: 0;
    }

    body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by fieldset
    {
        padding: 0 14px 14px;
    }

    body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by legend
    {
        margin-left: -14px;
        width: calc(100% + 28px);
    }

    body.page-admin-ecommerce-reports form.ecommerce-reports-filter-by .field_inline
    {
        margin: 0 0 12px;
        min-width: 0;
        width: 100%;
    }

    body.page-admin-ecommerce-reports #ecommerce-reports-total
    {
        grid-template-columns: 1fr;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(1)
    {
        width: 130px;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(2)
    {
        width: 150px;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(3)
    {
        width: 190px;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(4)
    {
        width: 180px;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(5)
    {
        width: 250px;
    }

    body.page-admin-ecommerce-orders #ecommerce-orders td:nth-child(6)
    {
        width: 110px;
    }

    #left-blocks form[name="listing-filter-by"].muv4-filters-ready,
    .muv4-filters-ready
    {
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        overflow: visible;
        padding-left: 20px;
        padding-right: 20px;
    }

    #left-blocks form[name="listing-filter-by"] .field_select,
    .muv4-filter-menu,
    .muv4-filter-toggle
    {
        width: 100%;
    }

    .muv4-filter-toggle
    {
        justify-content: space-between;
    }

    .muv4-filter-options
    {
        max-width: calc(100vw - 40px);
        width: calc(100vw - 40px);
    }

    .section-heading .button + .button
    {
        margin-left: 0;
        margin-top: 0;
    }

    .footer-main img
    {
        width: 280px;
    }
}

@media (max-width: 430px)
{
    #header-blocks [id^="animated-block-header-"],
    #header-blocks .animated-block-link,
    #header-blocks .animated-block-slide
    {
        min-height: clamp(430px, 118vw, 500px);
    }

    #header-blocks .animated-block-slide
    {
        background-position: left top !important;
        background-size: auto 100% !important;
    }

    #header-blocks .animated-block-content-container
    {
        padding: 18px 18px 24px;
    }

    #header-blocks .animated-block-title
    {
        font-size: clamp(36px, 12vw, 46px) !important;
        margin-bottom: 14px !important;
    }

    #header-blocks .animated-block-description
    {
        font-size: clamp(15px, 4.6vw, 18px) !important;
    }

    #header-blocks .animated-block-description p
    {
        margin-bottom: 18px;
    }

    #header-blocks .muv4-hero-actions
    {
        gap: 10px;
    }

    #header-blocks .muv4-hero-actions .button
    {
        font-size: 16px;
        padding: 16px 10px;
    }
}

@media (max-width: 350px)
{
    #header-blocks .animated-block-slide
    {
        background-position: -40px top !important;
    }
}
