@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-medium.woff2") format("woff2");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-semibold.woff2") format("woff2");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --forest-950: #1c2f2d;
    --forest-900: #263b39;
    --forest-700: #2f5c5d;
    --moss-700: #446338;
    --ink: #232323;
    --muted: #777;
    --sale: #d52323;
    --page-width: 1170px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Roboto", "Noto Sans TC", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.page-width {
    width: min(var(--page-width), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 8px;
    left: 8px;
    padding: 8px 14px;
    color: #fff;
    background: #111;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 60;
    height: 50px;
    color: #fff;
    background: var(--forest-900);
}

.site-header__desktop {
    display: grid;
    grid-template-columns: 180px 1fr 60px;
    align-items: center;
    height: 50px;
}

.brand {
    display: inline-flex;
    align-items: center;
    width: max-content;
}

.brand img {
    width: 150px;
    height: 36px;
    object-fit: contain;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    height: 100%;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-nav > a,
.desktop-nav__trigger {
    position: relative;
    display: grid;
    align-items: center;
    height: 100%;
}

.desktop-nav > a::after,
.desktop-nav__trigger::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    content: "";
    background: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a:focus-visible::after,
.desktop-nav__trigger:hover::after,
.desktop-nav__trigger:focus-visible::after {
    transform: scaleX(1);
}

.desktop-nav__item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.desktop-nav__trigger {
    grid-template-columns: auto 9px;
    gap: 7px;
}

.nav-chevron,
.flyout-chevron,
.mobile-menu__chevron {
    width: 7px;
    height: 7px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.desktop-nav__dropdown,
.desktop-nav__flyout {
    position: absolute;
    z-index: 70;
    width: 220px;
    padding: 5px 0 5px 20px;
    color: #fff;
    background: #263b39;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(4px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    pointer-events: none;
}

.desktop-nav__dropdown {
    top: 100%;
    left: 0;
}

.desktop-nav__item:hover > .desktop-nav__dropdown,
.desktop-nav__item:focus-within > .desktop-nav__dropdown,
.desktop-nav__category:hover > .desktop-nav__flyout,
.desktop-nav__category:focus-within > .desktop-nav__flyout {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.desktop-nav__dropdown > a,
.desktop-nav__category > a,
.desktop-nav__flyout > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 180px;
    min-height: 38px;
    padding: 8px 15px 8px 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .02em;
    color: #fff;
    border-bottom: 1px solid #ebebeb;
    white-space: normal;
}

.desktop-nav__dropdown > a:hover,
.desktop-nav__category > a:hover,
.desktop-nav__flyout > a:hover,
.desktop-nav__dropdown > a:focus-visible,
.desktop-nav__category > a:focus-visible,
.desktop-nav__flyout > a:focus-visible {
    color: #fff;
    background: transparent;
    text-decoration: none;
}

.desktop-nav__all {
    display: none !important;
}

.desktop-nav__category {
    position: relative;
}

.desktop-nav__category > a {
    position: relative;
}

.desktop-nav__dropdown > a,
.desktop-nav__flyout > a {
    padding-right: 0;
}

.desktop-nav__flyout {
    top: -5px;
    left: calc(100% - 15px);
    transform: translateX(8px);
}

.desktop-nav__category:hover > .desktop-nav__flyout,
.desktop-nav__category:focus-within > .desktop-nav__flyout {
    transform: translateX(0);
}

.mobile-menu__catalog-links a { display: block; }

.flyout-chevron {
    flex: 0 0 auto;
    position: absolute;
    top: 50%;
    right: 15px;
    margin-left: 0;
    transform: translateY(-50%) rotate(-45deg);
}

.cart-link {
    position: relative;
    justify-self: end;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
}

.cart-link svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.cart-count {
    position: absolute;
    top: 8px;
    right: -1px;
    display: grid;
    min-width: 22px;
    height: 22px;
    padding-inline: 5px;
    color: #fff;
    background: var(--moss-700);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    place-items: center;
}

.site-header__mobile,
.mobile-menu,
.menu-scrim {
    display: none;
}

.announcement {
    height: 59px;
    overflow: hidden;
    color: #fff;
    background: var(--moss-700);
}

.announcement__viewport {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.announcement__track {
    display: flex;
    width: max-content;
    min-width: 100%;
    white-space: nowrap;
    animation: marquee var(--announcement-duration, 34s) linear infinite;
}

.announcement__track span {
    padding-right: 64px;
    font-size: 15px;
    font-weight: 500;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.hero-section,
.category-section {
    background: #000;
}

.hero-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1170 / 661;
}

.hero-slides,
.hero-slide,
.hero-slide > a,
.hero-slide img,
.hero-slide video {
    width: 100%;
    height: 100%;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease, visibility .5s ease;
}

.hero-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > a {
    display: block;
}

.hero-slide img,
.hero-slide video {
    display: block;
    object-fit: cover;
}

.hero-arrow {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 1px solid #f8f8f8;
    border-radius: 50%;
    color: #f8f8f8;
    background: transparent;
    cursor: pointer;
    opacity: 0;
    place-items: center;
    transform: translateY(-50%);
    transition: opacity .2s ease;
}

.hero-arrow--previous {
    left: 4%;
}

.hero-arrow--next {
    right: 4%;
}

.hero-arrow svg {
    width: 25px;
    height: 25px;
    fill: currentColor;
}

.hero-arrow--previous svg {
    transform: rotate(180deg);
}

.hero-frame:hover .hero-arrow,
.hero-frame:focus-within .hero-arrow {
    opacity: 1;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 12px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.hero-dots button,
.category-dots span {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 50%;
    background: rgba(255,255,255,.1);
}

.hero-dots button {
    overflow: hidden;
    color: transparent;
    font-size: 0;
    cursor: pointer;
}

.hero-dots button:not(.is-active) {
    border-color: #f8f8f8;
    background: #f8f8f8;
    opacity: .8;
}

.hero-dots button.is-active {
    border-color: #446338;
    background: transparent;
    opacity: 1;
}

.category-dots .is-active {
    background: #fff;
}

.category-viewport {
    position: relative;
    padding-block: 28px 32px;
}

.category-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

.category-card {
    display: block;
    overflow: hidden;
}

.category-card img {
    width: 100%;
    aspect-ratio: .965 / 1;
    object-fit: cover;
    transition: transform .45s ease;
}

.category-card:hover img {
    transform: scale(1.025);
}

.category-dots {
    display: none;
}

.featured-products {
    min-height: 496px;
    padding: 24px 0 30px;
    background: #fff;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(30px, 105px) auto minmax(30px, 105px);
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 26px;
}

.section-heading span {
    height: 2px;
    background: var(--ink);
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: .06em;
}

.product-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    overflow: hidden;
}

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

.product-card__media {
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
}

.product-card__media > a,
.product-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
}

.product-card__media img {
    object-fit: cover;
    transition: transform .4s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.025);
}

.product-view {
    position: absolute;
    top: 10px;
    left: 10px;
    display: grid;
    width: 34px;
    height: 34px;
    background: #fff;
    border-radius: 50%;
    place-items: center;
}

.product-view svg {
    width: 22px;
    fill: none;
    stroke: #151515;
    stroke-width: 1.5;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 54px;
    padding: 5px 15px;
    color: #fff;
    background: #df1f1f;
    font-size: 14px;
}

.quick-add {
    width: 100%;
    height: 46px;
    margin-top: 10px;
    color: #fff;
    background: var(--forest-700);
    border: 0;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s ease;
}

.quick-add:hover,
.quick-add:focus-visible {
    background: var(--forest-950);
}

.quick-add.is-added {
    background: var(--moss-700);
}

.product-card h3 {
    margin: 13px 0 4px;
    color: var(--forest-900);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    font-size: 16px;
}

.product-price s {
    color: #404040;
}

.price-prefix {
    color: var(--muted);
}

.product-price strong {
    font-weight: 400;
}

.product-price .is-sale {
    color: var(--sale);
}

.product-pagination {
    display: none;
}

.site-footer {
    color: #e0e3e3;
    background: #192826;
}

.site-footer__top {
    padding: 20px 0 45px;
    border-top: 1px solid #445c60;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.site-footer h2 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 22px;
}

.site-footer p {
    margin: 0;
    color: #e0e3e3;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 30px;
}

.footer-contact h2 {
    color: #e0e3e3;
    font-weight: 700;
    letter-spacing: normal;
}

.site-footer a {
    color: #e0e3e3;
}

.site-footer a:hover {
    text-decoration: underline;
}

.footer-address {
    margin-top: 20px !important;
}

.footer-contact-links {
    display: grid;
    gap: 15px;
    margin-top: 25px;
}

.footer-schedule {
    margin-top: 37px;
}

.footer-schedule p {
    line-height: 23px;
}

.footer-social {
    padding-top: 46px;
    text-align: right;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
    margin: 4px -13px 24px 0;
    padding: 0;
    list-style: none;
}

.social-links li {
    margin: 0 10px 6px 0;
}

.social-links a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 17px;
    border: 10px solid transparent;
    border-radius: 50%;
    color: #fff;
    background: transparent;
    line-height: 1;
}

.social-links a::before {
    position: absolute;
    inset: -7px;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0 0 0 2px #fff;
    content: "";
    opacity: 0;
    transform: scale(.8);
    transition: transform .2s ease, opacity .2s ease;
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.social-links a:hover {
    color: #282828;
    border-color: #fff;
    background: #fff;
    text-decoration: none;
}

.social-links a:hover::before {
    opacity: 1;
    transform: scale(1);
}

.social-links a:hover svg {
    fill: #282828;
}

.policy-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 24px;
}

.policy-links a {
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 30px;
}

.payment-methods {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.payment-methods li,
.payment-methods svg {
    display: block;
}

.footer-bottom {
    padding: 29px 0 32px;
    border-top: 1px solid #282828;
    background: #192826;
}

.toast {
    position: fixed;
    z-index: 150;
    right: 20px;
    bottom: 20px;
    max-width: min(360px, calc(100% - 40px));
    padding: 12px 18px;
    color: #fff;
    background: var(--forest-900);
    border-radius: 3px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .desktop-nav { gap: 18px; font-size: 14px; }
    .site-header__desktop { grid-template-columns: 150px 1fr 50px; }
}

@media (min-width: 750px) {
    .footer-social h2 {
        position: relative;
        top: 6px;
    }

    .quick-add {
        position: relative;
        z-index: 2;
        margin-top: -46px;
        opacity: 0;
        transform: translateY(8px);
    }

    .product-card:hover .quick-add,
    .product-card:focus-within .quick-add {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 749px) {
    .page-width {
        width: calc(100% - 20px);
    }

    .site-header {
        position: sticky;
        top: 0;
        height: 50px;
    }

    .site-header__desktop {
        display: none;
    }

    .site-header__mobile {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 50px;
        padding: 0 10px;
    }

    .mobile-actions {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .icon-button {
        display: grid;
        width: 26px;
        height: 32px;
        padding: 0;
        color: #fff;
        background: transparent;
        border: 0;
        place-items: center;
    }

    .menu-button {
        align-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .menu-button span {
        display: block;
        width: 24px;
        height: 1px;
        background: currentColor;
    }

    .search-button svg {
        width: 25px;
        fill: none;
        stroke: currentColor;
        stroke-linecap: round;
        stroke-width: 1.6;
    }

    .brand--mobile {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .brand--mobile img {
        width: 120px;
        height: 31px;
    }

    .cart-link--mobile {
        justify-self: auto;
        width: 38px;
        height: 44px;
    }

    .cart-link--mobile .cart-count {
        top: 1px;
        right: -2px;
        min-width: 22px;
        height: 22px;
        color: #333;
        background: #fff;
        font-size: 13px;
    }

    .menu-scrim {
        position: fixed;
        z-index: 79;
        inset: 0;
        display: block;
        background: rgba(0,0,0,.48);
        opacity: 0;
        transition: opacity .25s ease;
    }

    .menu-scrim[hidden] {
        display: none;
    }

    .menu-scrim.is-open {
        opacity: 1;
    }

    .mobile-menu {
        position: fixed;
        z-index: 80;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: min(340px, 88vw);
        padding: 21px 24px;
        background: #fff;
        box-shadow: 4px 0 24px rgba(0,0,0,.18);
        transform: translateX(-105%);
        transition: transform .25s ease;
    }

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

    .mobile-menu__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid #ddd;
        color: var(--forest-900);
        font-size: 19px;
        font-weight: 700;
    }

    .mobile-menu__close {
        width: 36px;
        height: 36px;
        color: #444;
        background: transparent;
        border: 0;
        font-size: 32px;
        line-height: 1;
        cursor: pointer;
    }

    .mobile-menu nav {
        display: flex;
        flex-direction: column;
        padding-top: 8px;
    }

    .mobile-menu nav a {
        padding: 14px 2px;
        border-bottom: 1px solid #eee;
        color: var(--forest-900);
        font-weight: 600;
    }

    .mobile-menu__catalog {
        border-bottom: 1px solid #eee;
    }

    .mobile-menu__catalog > button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 49px;
        padding: 0 2px;
        color: var(--forest-900);
        background: transparent;
        border: 0;
        font: inherit;
        font-weight: 600;
        text-align: left;
        cursor: pointer;
    }

    .mobile-menu__chevron {
        margin-right: 5px;
        transition: transform .2s ease;
    }

    .mobile-menu__catalog > button[aria-expanded="true"] .mobile-menu__chevron {
        transform: rotate(225deg) translate(-2px, -2px);
    }

    .mobile-menu__catalog-links[hidden] {
        display: none;
    }

    .mobile-menu__catalog-links {
        padding: 0 0 8px 14px;
        border-left: 1px solid #dfe5da;
    }

    .mobile-menu nav .mobile-menu__catalog-links a {
        padding: 10px 8px;
        border-bottom: 0;
        color: #4e574c;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.35;
    }

    .announcement {
        height: 34px;
    }

    .announcement__track span {
        padding-right: 34px;
        font-size: 14px;
        line-height: 34px;
    }

    .hero-frame {
        aspect-ratio: 355 / 204;
    }

    .hero-dots {
        bottom: 16px;
        gap: 8px;
    }

    .hero-dots button {
        width: 12px;
        height: 12px;
    }

    .hero-arrow {
        opacity: 1;
    }

    .category-viewport {
        width: 100%;
        padding: 15px 10px 52px;
    }

    .category-track {
        grid-auto-columns: calc((100% - 24px) / 3);
        grid-template-columns: none;
        grid-auto-flow: column;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .category-track::-webkit-scrollbar,
    .product-track::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        scroll-snap-align: start;
    }

    .category-card img {
        aspect-ratio: 1 / 1;
        border-radius: 12px;
    }

    .category-dots {
        position: absolute;
        right: 0;
        bottom: 15px;
        left: 0;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .category-dots span {
        width: 12px;
        height: 12px;
        border-color: #353535;
        background: transparent;
    }

    .category-dots .is-active {
        background: #252525;
    }

    .featured-products {
        min-height: 451px;
        padding: 23px 0 34px;
    }

    .section-heading {
        grid-template-columns: minmax(30px, 105px) auto minmax(30px, 105px);
        gap: 17px;
        margin-bottom: 25px;
    }

    .section-heading h1,
    .section-heading h2 {
        font-size: 20px;
        white-space: nowrap;
    }

    .product-track {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: inline mandatory;
        scrollbar-width: none;
    }

    .product-card {
        flex: 0 0 calc((100% - 10px) / 2);
        scroll-snap-align: start;
    }

    .product-view {
        top: 9px;
        left: 9px;
        width: 33px;
        height: 33px;
    }

    .product-badge {
        top: 13px;
        left: 73px;
        padding: 4px 12px;
    }

    .quick-add {
        margin-top: 9px;
        height: 46px;
        font-size: 16px;
    }

    .product-card h3 {
        margin-top: 13px;
        font-size: 16px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .product-price {
        gap: 8px;
        font-size: 16px;
    }

    .product-pagination {
        display: flex;
        justify-content: center;
        gap: 11px;
        margin-top: 24px;
        color: #777;
        font-size: 13px;
    }

    .product-pagination strong {
        color: #222;
        font-weight: 500;
    }

    .site-footer__top {
        padding: 60px 0 86px;
    }

    .site-footer .page-width {
        width: min(var(--page-width), calc(100% - 10px));
    }

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

    .site-footer h2 {
        font-size: 16px;
    }

    .footer-social {
        padding-top: 97px;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
        margin-top: -3px;
        margin-right: 0;
        margin-left: -13px;
    }

    .policy-links {
        display: none;
    }

    .footer-bottom {
        padding-bottom: 32px;
    }

    .toast {
        right: 10px;
        bottom: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-arrow {
        transition: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* Original Shopify catalog label underline: text row expands left-to-right on hover/focus. */
.desktop-nav__dropdown > a,
.desktop-nav__flyout > a,
.desktop-nav__category > a > span:first-child {
    position: relative;
}

.desktop-nav__category > a > span:first-child {
    display: block;
    width: 165px;
}

.desktop-nav__dropdown > a::after,
.desktop-nav__flyout > a::after,
.desktop-nav__category > a > span:first-child::after {
    position: absolute;
    right: 0;
    bottom: 1px;
    left: 0;
    height: 1px;
    content: "";
    pointer-events: none;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform .2s ease-out;
}

.desktop-nav__dropdown > a:hover::after,
.desktop-nav__dropdown > a:focus-visible::after,
.desktop-nav__flyout > a:hover::after,
.desktop-nav__flyout > a:focus-visible::after,
.desktop-nav__category > a:hover > span:first-child::after,
.desktop-nav__category > a:focus-visible > span:first-child::after {
    transform: scaleX(1);
    transform-origin: left center;
}
