/* ==========================================================
   STEP4FE_CH3_HOMEPAGE_V2_START
   New public homepage visual system
   ========================================================== */

body:has(.sm-home-v2) {
    background: #fffaf5;
}

body:has(.sm-home-v2) main:not(.sm-home-v2) {
    max-width: none;
}

.sm-home-v2 {
    --sm-v2-orange: #ef681a;
    --sm-v2-orange-dark: #b9440f;
    --sm-v2-brown: #542411;
    --sm-v2-brown-soft: #7d4226;
    --sm-v2-cream: #fff7ed;
    --sm-v2-surface: #ffffff;
    --sm-v2-line: rgba(92, 43, 20, .14);
    --sm-v2-shadow: 0 22px 60px rgba(89, 42, 20, .13);

    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 0 72px;
    overflow: clip;
    color: #3b2418;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(242, 153, 84, .10),
            transparent 28%),
        #fffaf5;
}

.sm-home-v2 *,
.sm-home-v2 *::before,
.sm-home-v2 *::after {
    box-sizing: border-box;
}

.sm-home-v2 a {
    color: inherit;
}

.sm-home-v2-masthead {
    position: relative;
    z-index: 20;
    width: min(1720px, calc(100% - 48px));
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(240px, auto) 1fr auto;
    align-items: center;
    gap: 28px;
}

.sm-home-v2-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
    text-decoration: none;
}

.sm-home-v2-brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    background:
        linear-gradient(
            135deg,
            #ff8b2d 0%,
            #dd4514 62%,
            #70200f 100%);
    box-shadow: 0 10px 24px rgba(221, 69, 20, .24);
}

.sm-home-v2-brand-mark::after {
    content: "";
    position: absolute;
    inset: 7px 5px 7px 15px;
    border-radius: 50%;
    background: #fffaf5;
}

.sm-home-v2-brand-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.sm-home-v2-brand-copy strong {
    overflow: hidden;
    color: var(--sm-v2-brown);
    font-size: clamp(16px, 1.25vw, 22px);
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sm-home-v2-brand-copy small {
    margin-top: 3px;
    color: rgba(84, 36, 17, .58);
    font-size: 9px;
    letter-spacing: .11em;
    white-space: nowrap;
}

.sm-home-v2-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 38px);
}

.sm-home-v2-nav a {
    position: relative;
    padding: 30px 0;
    color: #5b3827;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.sm-home-v2-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--sm-v2-orange);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.sm-home-v2-nav a:hover::after,
.sm-home-v2-nav a:focus-visible::after {
    transform: scaleX(1);
}

.sm-home-v2-menu-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid var(--sm-v2-line);
    border-radius: 999px;
    color: var(--sm-v2-brown);
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 10px 30px rgba(84, 36, 17, .08);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.sm-home-v2-hero {
    width: 100%;
}

.sm-home-v2-carousel {
    position: relative;
    min-height: clamp(420px, 38vw, 650px);
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #4d1608,
            #9e3514 55%,
            #e87926);
}

.sm-home-v2-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.015);
    transition:
        opacity .7s ease,
        visibility .7s ease,
        transform 1.2s ease;
}

.sm-home-v2-slide.is-active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sm-home-v2-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sm-home-v2-slide-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(49, 13, 4, .90) 0%,
            rgba(70, 19, 5, .70) 35%,
            rgba(70, 19, 5, .22) 69%,
            rgba(42, 9, 2, .20) 100%);
}

.sm-home-v2-slide-content {
    position: relative;
    z-index: 2;
    width: min(1720px, calc(100% - 96px));
    margin: 0 auto;
    padding-right: min(48vw, 760px);
    color: #fff;
}

.sm-home-v2-kicker {
    margin: 0 0 14px;
    color: #ffcfa7;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.sm-home-v2-slide-content h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(42px, 5vw, 82px);
    line-height: 1.04;
    letter-spacing: -.05em;
    text-shadow: 0 8px 26px rgba(0, 0, 0, .28);
}

.sm-home-v2-lead {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, .90);
    font-size: clamp(17px, 1.45vw, 23px);
    line-height: 1.75;
}

.sm-home-v2-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.sm-home-v2-primary-button,
.sm-home-v2-secondary-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
    transition:
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.sm-home-v2-primary-button {
    color: #fff;
    background: var(--sm-v2-orange);
    box-shadow: 0 14px 34px rgba(239, 104, 26, .34);
}

.sm-home-v2-secondary-button {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .09);
    backdrop-filter: blur(10px);
}

.sm-home-v2-primary-button:hover,
.sm-home-v2-secondary-button:hover {
    transform: translateY(-2px);
}

.sm-home-v2-carousel-arrow {
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(41, 13, 5, .38);
    backdrop-filter: blur(8px);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.sm-home-v2-carousel-arrow-prev {
    left: 28px;
}

.sm-home-v2-carousel-arrow-next {
    right: 28px;
}

.sm-home-v2-carousel-dots {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 26px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sm-home-v2-carousel-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    cursor: pointer;
    transition:
        width .2s ease,
        background .2s ease;
}

.sm-home-v2-carousel-dots button.is-active {
    width: 30px;
    background: #fff;
}

.sm-home-v2-slide-fallback {
    position: relative;
    min-height: clamp(420px, 38vw, 650px);
    opacity: 1;
    visibility: visible;
    background:
        radial-gradient(
            circle at 76% 46%,
            rgba(255, 195, 124, .54),
            transparent 25%),
        linear-gradient(
            135deg,
            #4d1608,
            #9e3514 55%,
            #e87926);
}

.sm-home-v2-section {
    width: min(1600px, calc(100% - 64px));
    margin: 0 auto;
    padding: 76px 0 0;
}

.sm-home-v2-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.sm-home-v2-section-heading h2 {
    margin: 4px 0 8px;
    color: var(--sm-v2-brown);
    font-size: clamp(30px, 3vw, 48px);
    letter-spacing: -.04em;
}

.sm-home-v2-section-heading p {
    max-width: 760px;
    margin: 0;
    color: rgba(59, 36, 24, .68);
    line-height: 1.8;
}

.sm-home-v2-section-kicker {
    color: var(--sm-v2-orange) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
}

.sm-home-v2-text-link {
    flex: 0 0 auto;
    color: var(--sm-v2-brown);
    font-weight: 900;
    text-decoration: none;
}

.sm-home-v2-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.sm-home-v2-category-card {
    position: relative;
    min-height: 220px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(110px, .8fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--sm-v2-line);
    border-radius: 28px;
    color: var(--sm-v2-brown);
    background:
        linear-gradient(
            135deg,
            #fff 0%,
            #fff6eb 100%);
    box-shadow: 0 18px 44px rgba(84, 36, 17, .08);
    text-decoration: none;
    transition:
        transform .22s ease,
        box-shadow .22s ease;
}

.sm-home-v2-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sm-v2-shadow);
}

.sm-home-v2-category-copy {
    position: relative;
    z-index: 2;
    padding: 28px 8px 28px 28px;
}

.sm-home-v2-category-copy > span {
    color: var(--sm-v2-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
}

.sm-home-v2-category-copy h3 {
    margin: 10px 0 8px;
    font-size: clamp(21px, 1.6vw, 29px);
}

.sm-home-v2-category-copy p {
    margin: 0 0 18px;
    color: rgba(59, 36, 24, .66);
    line-height: 1.65;
}

.sm-home-v2-category-copy strong {
    color: var(--sm-v2-orange-dark);
}

.sm-home-v2-category-card img,
.sm-home-v2-category-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.sm-home-v2-category-placeholder {
    display: grid;
    place-items: center;
    color: rgba(128, 55, 20, .35);
    background:
        radial-gradient(
            circle,
            rgba(239, 104, 26, .22),
            transparent 68%);
    font-size: 38px;
    font-weight: 900;
}

.sm-home-v2-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 20px;
}

.sm-home-v2-preview-card {
    min-width: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--sm-v2-line);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 15px 40px rgba(84, 36, 17, .08);
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.sm-home-v2-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(84, 36, 17, .12);
}

.sm-home-v2-preview-image {
    width: 100%;
    min-width: 0;
    aspect-ratio: 4 / 3;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    color: rgba(84, 36, 17, .42);
    background:
        radial-gradient(
            circle at 50% 46%,
            rgba(239, 104, 26, .20),
            transparent 34%),
        #fff4e8;
    font-weight: 900;
}

.sm-home-v2-preview-body {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.sm-home-v2-preview-badge {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    color: #fff;
    background: var(--sm-v2-orange);
    font-size: 12px;
    font-weight: 900;
}

.sm-home-v2-preview-body h3 {
    min-height: 2.9em;
    display: -webkit-box;
    margin: 13px 0 7px;
    overflow: hidden;
    color: var(--sm-v2-brown);
    font-size: 20px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sm-home-v2-preview-description {
    min-height: 4.8em;
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: rgba(59, 36, 24, .62);
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.sm-home-v2-preview-price {
    margin-top: auto;
    padding-top: 18px;
    color: var(--sm-v2-brown);
    font-size: 22px;
    font-weight: 900;
}

.sm-home-v2-preview-button {
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(239, 104, 26, .86);
    box-shadow: 0 10px 24px rgba(239, 104, 26, .18);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
    transition:
        transform .16s ease,
        background .16s ease,
        box-shadow .16s ease,
        opacity .16s ease;
}

.sm-home-v2-preview-button:hover:not(:disabled),
.sm-home-v2-preview-button:focus-visible:not(:disabled) {
    transform: translateY(-1px);
    background: var(--sm-v2-orange);
    box-shadow: 0 14px 30px rgba(239, 104, 26, .26);
}

.sm-home-v2-preview-button:focus-visible {
    outline: 3px solid rgba(239, 104, 26, .24);
    outline-offset: 3px;
}

.sm-home-v2-preview-button:disabled {
    cursor: not-allowed;
    opacity: .72;
}

.sm-home-v2-preview-button.is-added {
    background: #2f7d45;
    box-shadow: 0 12px 28px rgba(47, 125, 69, .22);
    opacity: 1;
}

.sm-home-v2-preview-status {
    min-height: 1.45em;
    margin: 10px 0 0;
    color: rgba(59, 36, 24, .60);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    opacity: 0;
    transition:
        color .16s ease,
        opacity .16s ease;
}

.sm-home-v2-preview-status:not(:empty) {
    opacity: 1;
}

.sm-home-v2-preview-status.is-success {
    color: #2f7d45;
}

.sm-home-v2-preview-status.is-error {
    color: #b42318;
}

.sm-home-v2-benefits {
    width: min(1600px, calc(100% - 64px));
    margin: 70px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--sm-v2-line);
    border-radius: 24px;
    background: #fff6eb;
}

.sm-home-v2-benefits > div {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 22px 30px;
    border-right: 1px solid var(--sm-v2-line);
}

.sm-home-v2-benefits > div:last-child {
    border-right: 0;
}

.sm-home-v2-benefits strong {
    color: var(--sm-v2-brown);
    font-size: 18px;
}

.sm-home-v2-benefits span {
    color: rgba(59, 36, 24, .62);
}

.sm-home-v2-floating-menu {
    position: fixed;
    z-index: 45;
    right: 20px;
    bottom: 24px;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: var(--sm-v2-orange);
    box-shadow: 0 18px 40px rgba(137, 53, 16, .34);
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.sm-home-v2-drawer-backdrop {
    position: fixed;
    z-index: 80;
    inset: 0;
    background: rgba(31, 12, 4, .48);
    backdrop-filter: blur(3px);
}

.sm-home-v2-drawer {
    position: fixed;
    z-index: 90;
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: min(390px, calc(100vw - 36px));
    overflow-y: auto;
    border: 1px solid rgba(84, 36, 17, .12);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(42, 14, 4, .30);
    transform: translateX(calc(100% + 40px));
    visibility: hidden;
    transition:
        transform .28s ease,
        visibility .28s ease;
}

.sm-home-v2-drawer.is-open {
    visibility: visible;
    transform: translateX(0);
}

.sm-home-v2-drawer-header {
    position: sticky;
    z-index: 2;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--sm-v2-line);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
}

.sm-home-v2-drawer-header span {
    color: var(--sm-v2-orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .14em;
}

.sm-home-v2-drawer-header h2 {
    margin: 4px 0 0;
    color: var(--sm-v2-brown);
}

.sm-home-v2-drawer-header button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--sm-v2-brown);
    background: #fff3e8;
    font-size: 28px;
    cursor: pointer;
}

.sm-home-v2-drawer-links {
    display: grid;
    padding: 16px;
}

.sm-home-v2-drawer-links a {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    border-radius: 16px;
    color: var(--sm-v2-brown);
    font-weight: 900;
    text-decoration: none;
}

.sm-home-v2-drawer-links a:hover {
    background: #fff4e8;
}

.sm-home-v2-drawer-links a span {
    width: 24px;
    text-align: center;
}

.sm-home-v2-drawer-category-list {
    padding: 8px 24px 24px;
}

.sm-home-v2-drawer-category-list h3 {
    color: var(--sm-v2-brown);
}

.sm-home-v2-drawer-category-list a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--sm-v2-line);
    color: #6e4631;
    font-weight: 800;
    text-decoration: none;
}

.sm-home-v2-drawer-note {
    margin: 0 20px 24px;
    padding: 20px;
    border-radius: 20px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            var(--sm-v2-brown),
            var(--sm-v2-orange-dark));
}

.sm-home-v2-drawer-note p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
}

body.sm-home-v2-drawer-open {
    overflow: hidden;
}

@media (max-width: 1180px) {
    .sm-home-v2-masthead {
        grid-template-columns: minmax(220px, 1fr) auto;
    }

    .sm-home-v2-nav {
        display: none;
    }

    .sm-home-v2-category-grid,
    .sm-home-v2-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .sm-home-v2 {
        padding-bottom: 48px;
    }

    .sm-home-v2-masthead {
        width: calc(100% - 28px);
        min-height: 68px;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px;
    }

    .sm-home-v2-brand-mark {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
    }

    .sm-home-v2-brand-copy strong {
        font-size: 15px;
    }

    .sm-home-v2-brand-copy small {
        display: none;
    }

    .sm-home-v2-menu-button {
        width: 46px;
        min-height: 46px;
        justify-content: center;
        padding: 0;
    }

    .sm-home-v2-menu-button span:last-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }

    .sm-home-v2-carousel {
        min-height: 480px;
    }

    .sm-home-v2-slide-content {
        width: calc(100% - 48px);
        padding: 0 0 70px;
        align-self: end;
    }

    .sm-home-v2-slide-content h1 {
        font-size: clamp(36px, 11vw, 54px);
    }

    .sm-home-v2-lead {
        font-size: 16px;
    }

    .sm-home-v2-slide-shade {
        background:
            linear-gradient(
                0deg,
                rgba(44, 11, 3, .94) 0%,
                rgba(57, 15, 4, .65) 56%,
                rgba(57, 15, 4, .20) 100%);
    }

    .sm-home-v2-carousel-arrow {
        top: 42%;
        width: 42px;
        height: 42px;
    }

    .sm-home-v2-carousel-arrow-prev {
        left: 12px;
    }

    .sm-home-v2-carousel-arrow-next {
        right: 12px;
    }

    .sm-home-v2-section {
        width: calc(100% - 28px);
        padding-top: 54px;
    }

    .sm-home-v2-section-heading {
        display: block;
    }

    .sm-home-v2-text-link {
        display: inline-flex;
        margin-top: 14px;
    }

    .sm-home-v2-category-grid,
    .sm-home-v2-preview-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sm-home-v2-preview-card {
        width: 100%;
        border-radius: 22px;
    }

    .sm-home-v2-preview-body {
        padding: 18px;
    }

    .sm-home-v2-preview-button {
        width: 100%;
    }

    .sm-home-v2-category-card {
        min-height: 190px;
        border-radius: 22px;
    }

    .sm-home-v2-category-copy {
        padding: 22px 6px 22px 22px;
    }

    .sm-home-v2-category-card img,
    .sm-home-v2-category-placeholder {
        min-height: 190px;
    }

    .sm-home-v2-benefits {
        width: calc(100% - 28px);
        margin-top: 54px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm-home-v2-benefits > div {
        min-height: 92px;
        padding: 18px;
        border-bottom: 1px solid var(--sm-v2-line);
    }

    .sm-home-v2-floating-menu {
        display: inline-flex;
    }

    .sm-home-v2-drawer {
        top: 10px;
        right: 10px;
        bottom: 10px;
        width: min(92vw, 390px);
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-home-v2 *,
    .sm-home-v2 *::before,
    .sm-home-v2 *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* STEP4FE_CH3_HOMEPAGE_V2_END */
/* ==========================================================
   STEP4FE_CH5_FIX2_HOME_SHELL_ISOLATION_START
   The public homepage owns its full viewport layout.
   ========================================================== */

body.sm-home-v2-body {
    margin: 0;
    background: #fffaf5;
}

body.sm-home-v2-body > .site-header {
    display: none !important;
}

body.sm-home-v2-body > main.page {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.sm-home-v2-body > main.page > .sm-home-v2 {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
}

/* STEP4FE_CH5_FIX2_HOME_SHELL_ISOLATION_END */
/* ==========================================================
   STEP4FE_CH6_FIXED_HOMEPAGE_HEADER_START
   Fixed homepage masthead
   ========================================================== */

body.sm-home-v2-body {
    padding-top: 82px;
}

.sm-home-v2-masthead {
    position: fixed;
    z-index: 70;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    min-height: 82px;
    padding-right: max(24px, calc((100vw - 1720px) / 2));
    padding-left: max(24px, calc((100vw - 1720px) / 2));
    border-bottom: 1px solid rgba(92, 43, 20, .10);
    background: rgba(255, 250, 245, .94);
    box-shadow: 0 8px 30px rgba(84, 36, 17, .08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 760px) {
    body.sm-home-v2-body {
        padding-top: 68px;
    }

    .sm-home-v2-masthead {
        min-height: 68px;
        padding-right: 14px;
        padding-left: 14px;
    }
}

/* STEP4FE_CH6_FIXED_HOMEPAGE_HEADER_END */

/* STEP4FL_CH5_CATEGORY_NAV_START */
.sm-home-v2-nav-category {
    position: relative;
}

.sm-home-v2-nav-category-toggle {
    min-height: 82px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    color: #5b3827;
    background: transparent;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.sm-home-v2-nav-category-toggle::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--sm-v2-orange);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.sm-home-v2-nav-category-toggle:hover::after,
.sm-home-v2-nav-category-toggle:focus-visible::after,
.sm-home-v2-nav-category-toggle[aria-expanded="true"]::after {
    transform: scaleX(1);
}

.sm-home-v2-nav-category-toggle[aria-expanded="true"] > span {
    transform: rotate(180deg);
}

.sm-home-v2-nav-category-toggle > span {
    transition: transform .2s ease;
}

.sm-home-v2-nav-category-panel {
    position: absolute;
    top: calc(100% - 12px);
    left: 50%;
    z-index: 80;
    width: min(280px, 82vw);
    padding: 10px;
    border: 1px solid var(--sm-v2-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 22px 55px rgba(84, 36, 17, .18);
    transform: translateX(-50%);
}

.sm-home-v2-nav-category-panel a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 12px;
    color: #5b3827;
    font-weight: 800;
    text-decoration: none;
}

.sm-home-v2-nav-category-panel a::after {
    display: none;
}

.sm-home-v2-nav-category-panel a:hover,
.sm-home-v2-nav-category-panel a:focus-visible {
    background: #fff4e8;
    outline: none;
}

.sm-home-v2-nav-category-panel .sm-home-v2-nav-category-other {
    margin-top: 8px;
    border-top: 1px solid var(--sm-v2-line);
    border-radius: 0 0 12px 12px;
}

.sm-home-v2-drawer-category {
    display: grid;
}

.sm-home-v2-drawer-category-toggle {
    min-height: 58px;
    display: grid;
    grid-template-columns: 24px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    border: 0;
    border-radius: 16px;
    color: var(--sm-v2-brown);
    background: transparent;
    font: inherit;
    text-align: left;
    cursor: pointer;
}

.sm-home-v2-drawer-category-toggle:hover,
.sm-home-v2-drawer-category-toggle:focus-visible {
    background: #fff4e8;
    outline: none;
}

.sm-home-v2-drawer-category-chevron {
    transition: transform .2s ease;
}

.sm-home-v2-drawer-category-toggle[aria-expanded="true"] .sm-home-v2-drawer-category-chevron {
    transform: rotate(180deg);
}

.sm-home-v2-drawer-category-panel {
    display: grid;
    margin: 0 14px 10px 52px;
    padding: 8px 0 4px 14px;
    border-left: 2px solid #f3c8a7;
}

.sm-home-v2-drawer-category-panel a {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 12px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-drawer-category-other {
    margin-top: 4px;
    border-top: 1px solid var(--sm-v2-line);
}

/* STEP4FO_CH14_PUBLIC_CATEGORY_ACCORDION_START */
.sm-home-v2-nav-category-panel {
    width: min(390px, 90vw);
    max-height: min(72vh, 600px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sm-home-v2-category-node {
    min-width: 0;
}

.sm-home-v2-category-row {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: center;
    gap: 4px;
    border-radius: 12px;
}

.sm-home-v2-category-row:hover {
    background: #fff4e8;
}

.sm-home-v2-category-link {
    min-width: 0;
    min-height: 46px;
    display: flex !important;
    align-items: center;
    gap: 9px;
    padding: 0 8px !important;
    color: #5b3827;
    text-decoration: none;
}

.sm-home-v2-category-link:hover,
.sm-home-v2-category-link:focus-visible {
    background: transparent !important;
    outline: none;
}

.sm-home-v2-category-dot {
    flex: 0 0 18px;
    width: 18px;
    color: #d97706;
    text-align: center;
    font-size: .78rem;
    line-height: 1;
}

.sm-home-v2-category-name {
    min-width: 0;
    overflow-wrap: anywhere;
    line-height: 1.35;
}

.sm-home-v2-category-branch-toggle {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 10px;
    color: #8a4a21;
    background: rgba(239, 104, 26, .10);
    font: inherit;
    cursor: pointer;
}

.sm-home-v2-category-branch-toggle:hover,
.sm-home-v2-category-branch-toggle:focus-visible {
    background: rgba(239, 104, 26, .20);
    outline: 2px solid rgba(239, 104, 26, .22);
    outline-offset: 1px;
}

.sm-home-v2-category-branch-toggle > span {
    transition: transform .18s ease;
}

.sm-home-v2-category-branch-toggle[aria-expanded="true"] > span {
    transform: rotate(180deg);
}

.sm-home-v2-category-children {
    display: grid;
    margin-left: 14px;
    padding-left: 10px;
    border-left: 1px solid rgba(217, 119, 6, .28);
}

.sm-home-v2-category-children[hidden] {
    display: none !important;
}

.sm-home-v2-category-depth-1 > .sm-home-v2-category-row {
    font-weight: 900;
}

.sm-home-v2-category-depth-2 > .sm-home-v2-category-row {
    padding-left: 8px;
}

.sm-home-v2-category-depth-3 > .sm-home-v2-category-row {
    padding-left: 14px;
    color: #70462f;
}

.sm-home-v2-category-depth-4 > .sm-home-v2-category-row {
    padding-left: 20px;
    color: #80533b;
    font-size: .94rem;
}

.sm-home-v2-category-depth-1 + .sm-home-v2-category-depth-1 {
    margin-top: 5px;
    border-top: 1px solid rgba(124, 63, 22, .10);
}

.sm-home-v2-drawer-category-panel {
    margin: 0 8px 10px 18px;
    padding: 8px 0 4px 6px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-row {
    grid-template-columns: minmax(0, 1fr) 42px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-link {
    min-height: 48px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-children {
    margin-left: 8px;
    padding-left: 6px;
}

@media (max-width: 420px) {
    .sm-home-v2-drawer-category-panel {
        margin-left: 6px;
        margin-right: 2px;
    }

    .sm-home-v2-category-depth-2 > .sm-home-v2-category-row,
    .sm-home-v2-category-depth-3 > .sm-home-v2-category-row,
    .sm-home-v2-category-depth-4 > .sm-home-v2-category-row {
        padding-left: 4px;
    }
}
/* STEP4FO_CH18_CATEGORY_ACCORDION_VISUAL_POLISH_START */
.sm-home-v2-category-row {
    min-height: 52px;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 8px;
    padding: 3px 4px;
    border: 1px solid transparent;
    transition:
        background-color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease;
}

.sm-home-v2-category-row:hover {
    background: #fff1df;
}

.sm-home-v2-category-link {
    min-height: 50px;
    padding: 0 10px !important;
}

.sm-home-v2-category-branch-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(217, 119, 6, .28);
    border-radius: 13px;
    color: #9a4f0d;
    background: #ffe7c7;
    box-shadow: 0 3px 9px rgba(146, 64, 14, .12);
    font-size: 1.08rem;
    font-weight: 900;
    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        transform .12s ease;
}

.sm-home-v2-category-branch-toggle:hover,
.sm-home-v2-category-branch-toggle:focus-visible {
    color: #7c2d12;
    background: #ffd59f;
    border-color: rgba(194, 65, 12, .48);
    box-shadow: 0 5px 14px rgba(194, 65, 12, .18);
    outline: 3px solid rgba(251, 146, 60, .24);
    outline-offset: 1px;
}

.sm-home-v2-category-branch-toggle:active {
    transform: scale(.96);
}

.sm-home-v2-category-branch-toggle[aria-expanded="true"] {
    color: #ffffff;
    background: #e86718;
    border-color: #cf4f0f;
    box-shadow: 0 7px 18px rgba(194, 65, 12, .28);
}

.sm-home-v2-category-node.is-expanded > .sm-home-v2-category-row {
    background: linear-gradient(90deg, #fff1df 0%, #fff8ef 100%);
    border-color: rgba(234, 88, 12, .22);
    box-shadow: inset 4px 0 0 #e86718;
}

.sm-home-v2-category-node.is-expanded > .sm-home-v2-category-row .sm-home-v2-category-name {
    color: #7c2d12;
    font-weight: 900;
}

.sm-home-v2-category-node.is-expanded > .sm-home-v2-category-row .sm-home-v2-category-dot {
    color: #ea580c;
}

.sm-home-v2-category-depth-1 + .sm-home-v2-category-depth-1 {
    margin-top: 8px;
}

.sm-home-v2-category-children {
    margin-top: 4px;
    margin-bottom: 4px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-row {
    grid-template-columns: minmax(0, 1fr) 50px;
    min-height: 54px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-link {
    min-height: 52px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-branch-toggle {
    width: 46px;
    height: 46px;
}

@media (max-width: 420px) {
    .sm-home-v2-drawer-category-panel {
        margin-left: 2px;
        margin-right: 0;
        padding-left: 2px;
    }

    .sm-home-v2-drawer-category-panel .sm-home-v2-category-children {
        margin-left: 4px;
        padding-left: 4px;
    }

    .sm-home-v2-category-depth-2 > .sm-home-v2-category-row,
    .sm-home-v2-category-depth-3 > .sm-home-v2-category-row,
    .sm-home-v2-category-depth-4 > .sm-home-v2-category-row {
        padding-left: 0;
    }

    .sm-home-v2-category-link {
        padding-left: 6px !important;
    }
}
/* STEP4FO_CH22_QUICK_MENU_CATEGORY_WIDTH_POLISH_START */
.sm-home-v2-drawer {
    width: min(460px, calc(100vw - 36px));
}

.sm-home-v2-drawer-links {
    padding-left: 12px;
    padding-right: 12px;
}

.sm-home-v2-drawer-category {
    min-width: 0;
    width: 100%;
}

.sm-home-v2-drawer-category-panel {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    margin: 0 0 10px;
    padding: 8px 0 4px;
    border-left: 0;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-row {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 6px;
    padding-left: 2px;
    padding-right: 2px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-link {
    min-width: 0;
    padding-left: 8px !important;
    padding-right: 4px !important;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-name {
    min-width: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    white-space: normal;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-children {
    min-width: 0;
    width: auto;
    margin-left: 3px;
    padding-left: 3px;
    border-left-color: rgba(217, 119, 6, .24);
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-depth-2 > .sm-home-v2-category-row,
.sm-home-v2-drawer-category-panel .sm-home-v2-category-depth-3 > .sm-home-v2-category-row,
.sm-home-v2-drawer-category-panel .sm-home-v2-category-depth-4 > .sm-home-v2-category-row {
    padding-left: 0;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-branch-toggle {
    width: 44px;
    height: 44px;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-drawer-category-other {
    width: 100%;
    min-height: 52px;
    box-sizing: border-box;
    margin-top: 8px;
    padding: 0 10px !important;
    border-top: 1px solid var(--sm-v2-line);
    border-radius: 12px;
}

@media (max-width: 520px) {
    .sm-home-v2-drawer {
        width: min(96vw, 430px);
    }

    .sm-home-v2-drawer-links {
        padding-left: 8px;
        padding-right: 8px;
    }

    .sm-home-v2-drawer-category-panel .sm-home-v2-category-children {
        margin-left: 2px;
        padding-left: 2px;
    }

    .sm-home-v2-drawer-category-panel .sm-home-v2-category-row {
        grid-template-columns: minmax(0, 1fr) 46px;
        gap: 4px;
        padding-left: 0;
        padding-right: 0;
    }

    .sm-home-v2-drawer-category-panel .sm-home-v2-category-link {
        padding-left: 5px !important;
        padding-right: 2px !important;
    }
}
/* STEP4FO_CH25_QUICK_MENU_CATEGORY_NAME_WIDTH_COLLISION_FIX_START */
.sm-home-v2-drawer-category-panel .sm-home-v2-category-name {
    width: auto !important;
    min-width: 0;
    flex: 1 1 auto;
    display: block;
    text-align: left !important;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.sm-home-v2-drawer-category-panel .sm-home-v2-category-dot {
    width: 18px !important;
    flex: 0 0 18px;
}
/* STEP4FO_CH25_QUICK_MENU_CATEGORY_NAME_WIDTH_COLLISION_FIX_END */
/* STEP4FO_CH22_QUICK_MENU_CATEGORY_WIDTH_POLISH_END */
/* STEP4FO_CH18_CATEGORY_ACCORDION_VISUAL_POLISH_END */
/* STEP4FO_CH14_PUBLIC_CATEGORY_ACCORDION_END */
/* STEP4FL_CH5_CATEGORY_NAV_END */
/* ==========================================================
   STEP4FM_CH2_CART_COUNT_BADGE_START
   Global cart quantity badge
   ========================================================== */

.sm-cart-badge-link {
    position: relative;
}

.sm-cart-count-badge {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #dc2626;
    box-shadow: 0 5px 14px rgba(185, 28, 28, .34);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    pointer-events: none;
}

.sm-cart-count-badge[hidden] {
    display: none !important;
}

.sm-home-v2-drawer-links .sm-cart-count-badge {
    top: 7px;
    right: 8px;
}

/* STEP4FM_CH2_CART_COUNT_BADGE_END */

/* STEP4FY_CH4_FIX2_MOBILE_FLOATING_CART_START */
.sm-home-v2-floating-button--cart {
    position: relative;
    border-color: #b91c1c;
    color: #fff;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    box-shadow: 0 16px 34px rgba(153, 27, 27, .38);
    text-decoration: none;
}

.sm-home-v2-floating-button--cart:hover,
.sm-home-v2-floating-button--cart:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
}

.sm-home-v2-floating-button--cart .sm-cart-count-badge {
    top: -8px;
    right: -8px;
}

@media (min-width: 761px) {
    .sm-home-v2-floating-button--cart {
        display: none;
    }
}
/* STEP4FY_CH4_FIX2_MOBILE_FLOATING_CART_END */
/* STEP4GQ_CH27_HEADER_TOOLS_START */
.sm-home-v2-header-tools{display:flex;align-items:center;justify-content:flex-end;gap:8px}
.sm-home-v2-header-tool{min-height:42px;display:inline-flex;align-items:center;gap:6px;padding:0 11px;border:1px solid rgba(84,36,17,.12);border-radius:999px;background:#fff;color:#6b351c;text-decoration:none;font-weight:900;white-space:nowrap}
.sm-home-v2-header-tool:hover,.sm-home-v2-header-tool:focus-visible{background:#fff1e4;outline:2px solid rgba(239,104,26,.18)}
@media (max-width:1180px){.sm-home-v2-masthead{grid-template-columns:minmax(220px,1fr) auto auto}}
@media (max-width:760px){
  .sm-home-v2-masthead{grid-template-columns:minmax(0,1fr) auto auto;gap:7px}
  .sm-home-v2-header-tools{gap:5px}
  .sm-home-v2-header-tool{width:40px;min-height:40px;justify-content:center;padding:0;font-size:18px}
  .sm-home-v2-header-tool-text{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
  .sm-home-v2-header-tool--logout{display:none}
  .sm-home-v2-brand-copy strong{font-size:14px}
}
@media (max-width:430px){
  .sm-home-v2-brand{gap:8px}
  .sm-home-v2-brand-mark{width:32px;height:32px;flex-basis:32px}
  .sm-home-v2-brand-copy strong{font-size:12px}
}
/* STEP4GQ_CH27_HEADER_TOOLS_END */

/* STEP4GQ_CH27_FEATURED_GRID_START */
.sm-home-v2-preview-grid[data-home-featured-grid]{
  grid-template-columns:repeat(auto-fit,minmax(min(100%,260px),320px));
  justify-content:center;
}
.sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{width:100%}
/* STEP4GQ_CH27_FEATURED_GRID_END */

/* STEP4GQ_CH27_FIX4_LOGOUT_CSS_START */
.sm-home-v2-header-logout-form{display:inline-flex;margin:0}
.sm-home-v2-header-logout-form button{font:inherit;cursor:pointer}
@media (max-width:760px){.sm-home-v2-header-logout-form{display:none}}
/* STEP4GQ_CH27_FIX4_LOGOUT_CSS_END */

/* STEP4GQ_CH27_FIX4_IMAGE_CSS_START */
.sm-home-v2-preview-grid[data-home-featured-grid]{
  grid-template-columns:repeat(auto-fit,minmax(280px,360px));
  justify-content:center;
  align-items:start;
}
.sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{
  width:100%;
  max-width:360px;
}
.sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image{
  aspect-ratio:auto;
  height:320px;
  padding:14px;
  box-sizing:border-box;
  background:#fff;
}
.sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
}
@media (max-width:760px){
  .sm-home-v2-preview-grid[data-home-featured-grid]{grid-template-columns:minmax(0,1fr)}
  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{max-width:none}
  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image{height:auto;min-height:260px;max-height:420px}
}
/* STEP4GQ_CH27_FIX4_IMAGE_CSS_END */

/* STEP4GQ_CH27_FIX6_QUICK_MENU_CLEANUP_START */
@media (min-width:761px){
  .sm-home-v2-menu-button{display:none!important}
}
@media (max-width:760px){
  .sm-home-v2-menu-button{display:inline-flex!important}
}
/* STEP4GQ_CH27_FIX6_QUICK_MENU_CLEANUP_END */

/* STEP4GQ_CH27_FIX9_MOBILE_HEADER_SINGLE_ROW_START */
@media (max-width:760px){
  .sm-home-v2-masthead{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto auto!important;
    grid-template-rows:auto!important;
    align-items:center!important;
    gap:6px!important;
    padding:10px 12px!important;
    min-height:68px!important;
  }

  .sm-home-v2-brand{
    grid-column:1!important;
    grid-row:1!important;
    min-width:0!important;
    display:flex!important;
    align-items:center!important;
    gap:8px!important;
  }

  .sm-home-v2-nav{
    display:none!important;
  }

  .sm-home-v2-header-tools{
    grid-column:2!important;
    grid-row:1!important;
    display:flex!important;
    align-items:center!important;
    gap:4px!important;
    min-width:0!important;
  }

  .sm-home-v2-menu-button{
    grid-column:3!important;
    grid-row:1!important;
    position:static!important;
    margin:0!important;
    width:42px!important;
    min-width:42px!important;
    height:42px!important;
    padding:0!important;
    justify-content:center!important;
    border-radius:50%!important;
  }

  .sm-home-v2-brand-mark{
    width:42px!important;
    height:42px!important;
    min-width:42px!important;
    flex-basis:42px!important;
  }

  .sm-home-v2-brand-copy{
    min-width:0!important;
  }

  .sm-home-v2-brand-copy strong{
    display:block!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:14px!important;
    line-height:1.2!important;
  }

  .sm-home-v2-brand-copy span{
    display:none!important;
  }

  .sm-home-v2-header-tool{
    width:42px!important;
    min-width:42px!important;
    height:42px!important;
    min-height:42px!important;
    padding:0!important;
    justify-content:center!important;
    border-radius:50%!important;
  }
}

@media (max-width:430px){
  .sm-home-v2-masthead{
    grid-template-columns:minmax(0,1fr) 38px 38px!important;
    gap:4px!important;
    padding:8px 10px!important;
  }

  .sm-home-v2-brand-mark{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    flex-basis:36px!important;
  }

  .sm-home-v2-brand-copy strong{
    font-size:12px!important;
  }

  .sm-home-v2-header-tool,
  .sm-home-v2-menu-button{
    width:38px!important;
    min-width:38px!important;
    height:38px!important;
    min-height:38px!important;
  }
}
/* STEP4GQ_CH27_FIX9_MOBILE_HEADER_SINGLE_ROW_END */

/* STEP4GQ_CH27_FIX10_HOME_PRODUCT_GRID_LIMIT_START */
.sm-home-v2-product-limit-grid{
  display:grid!important;
  grid-template-columns:repeat(5,minmax(0,1fr))!important;
  gap:20px!important;
}

.sm-home-v2-product-limit-item[hidden]{
  display:none!important;
}

.sm-home-v2-product-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.sm-home-v2-product-more-button{
  appearance:none;
  border:1px solid rgba(102,45,17,.28);
  border-radius:999px;
  min-width:160px;
  min-height:46px;
  padding:0 28px;
  background:#fffaf5;
  color:#642d11;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 10px 24px rgba(78,34,14,.08);
}

.sm-home-v2-product-more-button:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(78,34,14,.12);
}

@media (max-width:760px){
  .sm-home-v2-product-limit-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:12px!important;
  }

  .sm-home-v2-product-more-wrap{
    margin-top:20px;
  }

  .sm-home-v2-product-more-button{
    min-width:140px;
    min-height:42px;
    padding:0 22px;
  }
}
/* STEP4GQ_CH27_FIX10_HOME_PRODUCT_GRID_LIMIT_END */

/* STEP4GQ_CH27_FIX11_MOBILE_COMMERCE_HEADER_START */
.sm-mobile-commerce-header{
  display:none;
}

@media (max-width:760px){
  .sm-home-v2-masthead{
    display:none!important;
  }

  .sm-mobile-commerce-header{
    position:sticky;
    top:0;
    z-index:1200;
    display:block;
    background:#fff8f1;
    border-bottom:1px solid rgba(103,45,18,.12);
    box-shadow:0 6px 18px rgba(75,31,10,.08);
  }

  .sm-mobile-commerce-header__top{
    display:grid;
    grid-template-columns:38px minmax(0,1fr) 38px;
    align-items:center;
    gap:8px;
    padding:8px 10px;
  }

  .sm-mobile-commerce-header__brand{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    overflow:hidden!important;
    text-decoration:none!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    width:36px!important;
    height:36px!important;
    min-width:36px!important;
    margin:0!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy{
    display:none!important;
  }

  .sm-mobile-commerce-header__search{
    display:grid;
    grid-template-columns:minmax(0,1fr) 42px;
    min-width:0;
    height:42px;
    border:1px solid rgba(99,43,17,.18);
    border-radius:14px;
    background:#fff;
    overflow:hidden;
  }

  .sm-mobile-commerce-header__search input{
    min-width:0;
    width:100%;
    border:0;
    outline:0;
    padding:0 12px;
    background:transparent;
    color:#4e2412;
    font:inherit;
    font-size:15px;
  }

  .sm-mobile-commerce-header__search button{
    border:0;
    background:transparent;
    color:#6b3218;
    font-size:23px;
    cursor:pointer;
  }

  .sm-mobile-commerce-header__account{
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
    padding:0!important;
    border-radius:50%!important;
    overflow:hidden!important;
    white-space:nowrap!important;
    text-indent:-9999px;
    position:relative;
  }

  .sm-mobile-commerce-header__account::after{
    content:"♙";
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    text-indent:0;
    color:#6b3218;
    font-size:22px;
  }

  .sm-mobile-commerce-header__parents{
    display:flex;
    gap:4px;
    overflow-x:auto;
    padding:2px 10px 8px;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .sm-mobile-commerce-header__parents::-webkit-scrollbar{
    display:none;
  }

  .sm-mobile-commerce-header__parent{
    flex:0 0 auto;
    border:0;
    border-bottom:3px solid transparent;
    background:transparent;
    padding:8px 12px 7px;
    color:#653018;
    font:inherit;
    font-size:14px;
    font-weight:800;
    white-space:nowrap;
    cursor:pointer;
  }

  .sm-mobile-commerce-header__parent.is-active{
    color:#f15a18;
    border-bottom-color:#f15a18;
  }

  .sm-mobile-commerce-header__children{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:8px;
    padding:12px;
    background:#fffdf9;
    border-top:1px solid rgba(103,45,18,.1);
  }

  .sm-mobile-commerce-header__children[hidden]{
    display:none!important;
  }

  .sm-mobile-commerce-header__child{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:40px;
    padding:7px 8px;
    border-radius:999px;
    background:#f5eee8;
    color:#5d2a14;
    text-align:center;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    line-height:1.25;
  }
}

@media (max-width:430px){
  .sm-mobile-commerce-header__top{
    grid-template-columns:34px minmax(0,1fr) 34px;
    gap:6px;
    padding:7px 8px;
  }

  .sm-mobile-commerce-header__brand,
  .sm-mobile-commerce-header__account{
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    width:32px!important;
    height:32px!important;
    min-width:32px!important;
  }

  .sm-mobile-commerce-header__search{
    height:38px;
    grid-template-columns:minmax(0,1fr) 38px;
  }

  .sm-mobile-commerce-header__children{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
/* STEP4GQ_CH27_FIX11_MOBILE_COMMERCE_HEADER_END */

/* STEP4GQ_CH27_FIX12_MOBILE_FEATURED_INTRO_HIDE_START */
@media (max-width:760px){
  .sm-home-v2-mobile-hide-featured-description,
  .sm-home-v2-mobile-hide-featured-viewall{
    display:none!important;
  }
}
/* STEP4GQ_CH27_FIX12_MOBILE_FEATURED_INTRO_HIDE_END */

/* STEP4GQ_CH27_FIX13_MOBILE_HERO_ONE_THIRD_TEXT_COMPACT_START */
@media (max-width:760px){
  .sm-home-v2-carousel,
  .sm-home-v2-slide,
  .sm-home-v2-slide-fallback,
  .sm-home-v2-carousel-track,
  .sm-home-v2-carousel-item{
    height:290px!important;
    min-height:290px!important;
    max-height:290px!important;
  }

  .sm-home-v2-slide-content{
    width:calc(100% - 34px)!important;
    max-width:none!important;
    padding:22px 0 34px!important;
  }

  .sm-home-v2-kicker{
    margin:0 0 6px!important;
    font-size:10px!important;
    line-height:1.2!important;
    letter-spacing:.12em!important;
  }

  .sm-home-v2-slide-content h1,
  .sm-home-v2-slide-content h2{
    max-width:88%!important;
    margin:0!important;
    font-size:24px!important;
    line-height:1.02!important;
    letter-spacing:-.02em!important;
  }

  .sm-home-v2-lead{
    max-width:90%!important;
    margin:9px 0 0!important;
    font-size:12px!important;
    line-height:1.35!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }

  .sm-home-v2-hero-actions{
    gap:8px!important;
    margin-top:12px!important;
  }

  .sm-home-v2-primary-button,
  .sm-home-v2-secondary-button{
    min-height:36px!important;
    padding:0 13px!important;
    border-radius:999px!important;
    font-size:12px!important;
    line-height:1!important;
  }

  .sm-home-v2-carousel-arrow{
    width:32px!important;
    height:32px!important;
    font-size:22px!important;
  }

  .sm-home-v2-carousel-dots{
    bottom:10px!important;
  }
}

@media (max-width:430px){
  .sm-home-v2-carousel,
  .sm-home-v2-slide,
  .sm-home-v2-slide-fallback,
  .sm-home-v2-carousel-track,
  .sm-home-v2-carousel-item{
    height:255px!important;
    min-height:255px!important;
    max-height:255px!important;
  }

  .sm-home-v2-slide-content{
    padding:18px 0 30px!important;
  }

  .sm-home-v2-slide-content h1,
  .sm-home-v2-slide-content h2{
    font-size:21px!important;
  }

  .sm-home-v2-lead{
    font-size:11px!important;
    -webkit-line-clamp:2!important;
  }

  .sm-home-v2-primary-button,
  .sm-home-v2-secondary-button{
    min-height:34px!important;
    padding:0 10px!important;
    font-size:11px!important;
  }
}
/* STEP4GQ_CH27_FIX13_MOBILE_HERO_ONE_THIRD_TEXT_COMPACT_END */

/* STEP4GQ_CH27_FIX15A_ROBUST_MOBILE_DESCRIPTION_HIDE_START */
@media (max-width:760px){
  .sm-home-v2-products-preview .sm-home-v2-mobile-hide-featured-description,
  .sm-home-v2-products-preview .sm-home-v2-mobile-hide-featured-viewall,
  .sm-home-v2-products-preview .sm-home-v2-preview-description{
    display:none!important;
  }

  .sm-home-v2-products-preview .sm-home-v2-section-heading{
    margin-bottom:16px!important;
  }

  .sm-home-v2-products-preview .sm-home-v2-preview-body{
    gap:8px!important;
  }
}
/* STEP4GQ_CH27_FIX15A_ROBUST_MOBILE_DESCRIPTION_HIDE_END */

/* STEP4GQ_CH27_FIX16_MOBILE_DENSE_PRODUCT_CARDS_START */
@media (max-width:760px){
  .sm-home-v2-preview-grid[data-home-featured-grid]{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
    gap:10px!important;
    align-items:stretch!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{
    width:100%!important;
    max-width:none!important;
    min-width:0!important;
    border-radius:16px!important;
    overflow:hidden!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image{
    height:170px!important;
    min-height:170px!important;
    max-height:170px!important;
    padding:8px!important;
    background:#fff!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image img{
    width:100%!important;
    height:100%!important;
    object-fit:contain!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-body{
    padding:10px 10px 12px!important;
    gap:7px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-badge{
    min-height:24px!important;
    padding:3px 9px!important;
    border-radius:999px!important;
    font-size:11px!important;
    line-height:1!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] h3{
    min-height:42px!important;
    margin:0!important;
    font-size:15px!important;
    line-height:1.35!important;
    display:-webkit-box!important;
    -webkit-line-clamp:2!important;
    -webkit-box-orient:vertical!important;
    overflow:hidden!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-price{
    margin-top:2px!important;
    font-size:17px!important;
    line-height:1.2!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-price span{
    font-size:12px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-member-hint{
    font-size:12px!important;
    line-height:1.2!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-button{
    min-height:38px!important;
    margin-top:4px!important;
    padding:8px 10px!important;
    border-radius:999px!important;
    font-size:13px!important;
  }
}

@media (max-width:430px){
  .sm-home-v2-preview-grid[data-home-featured-grid]{
    gap:8px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-image{
    height:145px!important;
    min-height:145px!important;
    max-height:145px!important;
    padding:6px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-body{
    padding:8px 8px 10px!important;
    gap:6px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] h3{
    min-height:38px!important;
    font-size:13px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-price{
    font-size:15px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-button{
    min-height:34px!important;
    font-size:12px!important;
  }
}
/* STEP4GQ_CH27_FIX16_MOBILE_DENSE_PRODUCT_CARDS_END */

/* STEP4GQ_CH27_FIX17_MOBILE_CATEGORY_ROW_CARD_WHITESPACE_START */
@media (max-width:760px){
  .sm-mobile-commerce-header__parents{
    display:flex!important;
    overflow-x:auto!important;
    gap:8px!important;
    padding:7px 10px 8px!important;
    background:#fff8f0!important;
    border-top:1px solid rgba(101,48,22,.08)!important;
    border-bottom:1px solid rgba(101,48,22,.10)!important;
    scrollbar-width:none!important;
  }

  .sm-mobile-commerce-header__parents::-webkit-scrollbar{
    display:none!important;
  }

  .sm-mobile-commerce-header__parent{
    flex:0 0 auto!important;
    min-height:34px!important;
    padding:0 13px!important;
    border:1px solid rgba(103,50,24,.15)!important;
    border-radius:999px!important;
    background:#fff!important;
    color:#6a351c!important;
    font-size:13px!important;
    font-weight:800!important;
    white-space:nowrap!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid]{
    align-items:start!important;
    grid-auto-rows:auto!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{
    height:auto!important;
    min-height:0!important;
    align-self:start!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-body{
    height:auto!important;
    min-height:0!important;
    flex:0 0 auto!important;
    padding-bottom:10px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-button{
    margin-top:2px!important;
    margin-bottom:0!important;
  }
}
/* STEP4GQ_CH27_FIX17_MOBILE_CATEGORY_ROW_CARD_WHITESPACE_END */

/* STEP4GQ_CH27_FIX18_MOBILE_HEADER_BRAND_CARD_COMPACT_START */
@media (max-width:760px){
  body.sm-home-v2-body{
    padding-top:0!important;
  }

  .sm-mobile-commerce-header{
    position:sticky!important;
    top:0!important;
    margin:0!important;
  }

  .sm-mobile-commerce-header__top{
    grid-template-columns:auto minmax(0,1fr) 36px!important;
    gap:8px!important;
    padding:8px 10px!important;
  }

  .sm-mobile-commerce-header__brand{
    width:auto!important;
    min-width:0!important;
    max-width:128px!important;
    display:flex!important;
    align-items:center!important;
    gap:7px!important;
    overflow:hidden!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    flex:0 0 34px!important;
    width:34px!important;
    height:34px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy{
    display:block!important;
    min-width:0!important;
    overflow:hidden!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy strong{
    display:block!important;
    max-width:86px!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:12px!important;
    line-height:1.1!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy span{
    display:none!important;
  }

  .sm-mobile-commerce-header__search{
    width:100%!important;
    min-width:0!important;
    max-width:none!important;
  }

  .sm-mobile-commerce-header__search input{
    min-width:0!important;
    font-size:14px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid]{
    align-items:start!important;
    grid-auto-rows:auto!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-card{
    display:block!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    align-self:start!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-body{
    display:block!important;
    flex:none!important;
    height:auto!important;
    min-height:0!important;
    max-height:none!important;
    padding:8px 9px 9px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-badge{
    display:block!important;
    margin:0 0 7px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] h3{
    margin:0 0 10px!important;
    min-height:38px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-price{
    margin:0 0 5px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-member-hint{
    display:inline-block!important;
    margin:0 0 8px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-button{
    width:100%!important;
    margin:0!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-status{
    display:none!important;
    margin:0!important;
    min-height:0!important;
  }
}

@media (max-width:430px){
  .sm-mobile-commerce-header__top{
    grid-template-columns:auto minmax(0,1fr) 34px!important;
    gap:6px!important;
    padding:7px 8px!important;
  }

  .sm-mobile-commerce-header__brand{
    max-width:112px!important;
    gap:6px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    flex-basis:32px!important;
    width:32px!important;
    height:32px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy strong{
    max-width:72px!important;
    font-size:11px!important;
  }

  .sm-mobile-commerce-header__search input{
    font-size:13px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-body{
    padding:7px 8px 8px!important;
  }

  .sm-home-v2-preview-grid[data-home-featured-grid] h3{
    margin-bottom:8px!important;
    min-height:36px!important;
  }
}
/* STEP4GQ_CH27_FIX18_MOBILE_HEADER_BRAND_CARD_COMPACT_END */

/* STEP4GQ_CH27_FIX22_RESTORE_MOBILE_BRAND_AUTH_HEADER_START */
@media (max-width:760px){
  html,
  body,
  body.sm-public-shell,
  body.sm-home-v2-body{
    margin-top:0!important;
    padding-top:0!important;
  }

  .sm-mobile-commerce-header{
    top:0!important;
    margin-top:0!important;
  }

  .sm-mobile-commerce-header__top{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto!important;
    align-items:center!important;
    gap:10px!important;
    min-height:62px!important;
    padding:8px 10px!important;
  }

  .sm-mobile-commerce-header__brand{
    width:auto!important;
    max-width:none!important;
    min-width:0!important;
    height:auto!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-start!important;
    gap:8px!important;
    overflow:visible!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    flex:0 0 38px!important;
    width:38px!important;
    height:38px!important;
    min-width:38px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy{
    display:block!important;
    min-width:0!important;
    overflow:hidden!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy strong{
    display:block!important;
    max-width:none!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
    white-space:nowrap!important;
    font-size:14px!important;
    line-height:1.15!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy small{
    display:none!important;
  }

  .sm-mobile-commerce-header__search,
  .sm-mobile-commerce-header__account{
    display:none!important;
  }

  .sm-mobile-commerce-header__auth{
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:6px!important;
    min-width:max-content!important;
  }

  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool,
  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool--logout{
    width:auto!important;
    min-width:38px!important;
    min-height:38px!important;
    height:38px!important;
    display:inline-flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:4px!important;
    padding:0 9px!important;
    border-radius:999px!important;
    font-size:15px!important;
    text-indent:0!important;
  }

  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool-text{
    position:static!important;
    width:auto!important;
    height:auto!important;
    overflow:visible!important;
    clip:auto!important;
    font-size:12px!important;
  }

  .sm-mobile-commerce-header__auth .sm-home-v2-header-logout-form{
    display:block!important;
    margin:0!important;
  }

  .sm-mobile-commerce-header__parents{
    display:flex!important;
  }
}

@media (max-width:430px){
  .sm-mobile-commerce-header__top{
    gap:6px!important;
    padding:7px 8px!important;
  }

  .sm-mobile-commerce-header__brand{
    gap:6px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-mark{
    flex-basis:34px!important;
    width:34px!important;
    height:34px!important;
    min-width:34px!important;
  }

  .sm-mobile-commerce-header__brand .sm-home-v2-brand-copy strong{
    font-size:12px!important;
  }

  .sm-mobile-commerce-header__auth{
    gap:4px!important;
  }

  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool,
  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool--logout{
    min-width:34px!important;
    min-height:34px!important;
    height:34px!important;
    padding:0 7px!important;
  }

  .sm-mobile-commerce-header__auth .sm-home-v2-header-tool-text{
    font-size:11px!important;
  }
}
/* STEP4GQ_CH27_FIX22_RESTORE_MOBILE_BRAND_AUTH_HEADER_END */

/* STEP4GQ_CH34_FIXED_HOME_BANNER_FRAME_START */
.sm-home-v2-carousel {
    width: 100% !important;
    height: clamp(320px, 34vw, 520px) !important;
    min-height: 320px !important;
    max-height: 520px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    background: #2b160d !important;
}

.sm-home-v2-carousel .sm-home-v2-slide,
.sm-home-v2-carousel .sm-home-v2-slide-fallback {
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
}

.sm-home-v2-carousel .sm-home-v2-slide > img,
.sm-home-v2-carousel .sm-home-v2-slide-picture,
.sm-home-v2-carousel .sm-home-v2-slide-picture img {
    width: 100% !important;
    height: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    background: #2b160d !important;
}

@media (max-width: 760px) {
    .sm-home-v2-carousel {
        height: 290px !important;
        min-height: 290px !important;
        max-height: 290px !important;
    }
}

@media (max-width: 430px) {
    .sm-home-v2-carousel {
        height: 255px !important;
        min-height: 255px !important;
        max-height: 255px !important;
    }
}
/* STEP4GQ_CH34_FIXED_HOME_BANNER_FRAME_END */


/* STEP4GQ_CH26_FIX1_HOME_CAROUSEL_TRUE_FULL_WIDTH_START */
/*
  Desktop banner contract:
  - break out of any centered/max-width parent
  - use viewport width
  - preserve 1920x960 ratio (2:1)
  - no fixed-height letterboxing
  - keep the complete artwork visible
*/
@media (min-width: 761px) {
    .sm-home-v2-hero {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 2 / 1 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel-track,
    .sm-home-v2-hero .sm-home-v2-carousel-item,
    .sm-home-v2-hero .sm-home-v2-slide,
    .sm-home-v2-hero .sm-home-v2-slide-fallback,
    .sm-home-v2-hero .sm-home-v2-slide-picture {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .sm-home-v2-hero .sm-home-v2-slide > img,
    .sm-home-v2-hero .sm-home-v2-slide-picture > img,
    .sm-home-v2-hero img[data-sm-home-banner-image] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 !important;
    }
}
/* STEP4GQ_CH26_FIX1_HOME_CAROUSEL_TRUE_FULL_WIDTH_END */

/* STEP4GQ_CH26_FIX3_HOME_CAROUSEL_1440_START */
/*
  Desktop final contract:
  - centered banner
  - maximum width 1440px
  - natural 2:1 ratio for 1920x960 artwork
  - no crop and no stretching
  - previous full-viewport rule overridden
*/
@media (min-width: 761px) {
    .sm-home-v2-hero {
        width: 100% !important;
        max-width: none !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel {
        width: min(1440px, 100%) !important;
        max-width: 1440px !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 2 / 1 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel-track,
    .sm-home-v2-hero .sm-home-v2-carousel-item,
    .sm-home-v2-hero .sm-home-v2-slide,
    .sm-home-v2-hero .sm-home-v2-slide-fallback,
    .sm-home-v2-hero .sm-home-v2-slide-picture {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .sm-home-v2-hero .sm-home-v2-slide > img,
    .sm-home-v2-hero .sm-home-v2-slide-picture > img,
    .sm-home-v2-hero img[data-sm-home-banner-image] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center center !important;
        margin: 0 !important;
    }
}
/* STEP4GQ_CH26_FIX3_HOME_CAROUSEL_1440_END */

/* STEP4GQ_CH26_FIX4_HOME_CAROUSEL_FULL_WIDTH_4TO1_START */
@media (min-width: 761px) {
    .sm-home-v2-hero {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 4 / 1 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel-track,
    .sm-home-v2-hero .sm-home-v2-carousel-item,
    .sm-home-v2-hero .sm-home-v2-slide,
    .sm-home-v2-hero .sm-home-v2-slide-fallback,
    .sm-home-v2-hero .sm-home-v2-slide-picture {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .sm-home-v2-hero .sm-home-v2-slide > img,
    .sm-home-v2-hero .sm-home-v2-slide-picture > img,
    .sm-home-v2-hero img[data-sm-home-banner-image] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
    }
}
/* STEP4GQ_CH26_FIX4_HOME_CAROUSEL_FULL_WIDTH_4TO1_END */

/* STEP4GQ_CH26_FIX5_HOME_CAROUSEL_1920X600_START */
/*
  Desktop banner contract:
  - Full viewport width
  - 1920x600 artwork ratio
  - Exact ratio 16:5
  - New matching artwork displays without crop
  - Mobile rules remain unchanged
*/
@media (min-width: 761px) {
    .sm-home-v2-hero {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 16 / 5 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel-track,
    .sm-home-v2-hero .sm-home-v2-carousel-item,
    .sm-home-v2-hero .sm-home-v2-slide,
    .sm-home-v2-hero .sm-home-v2-slide-fallback,
    .sm-home-v2-hero .sm-home-v2-slide-picture {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .sm-home-v2-hero .sm-home-v2-slide > img,
    .sm-home-v2-hero .sm-home-v2-slide-picture > img,
    .sm-home-v2-hero img[data-sm-home-banner-image] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
    }
}
/* STEP4GQ_CH26_FIX5_HOME_CAROUSEL_1920X600_END */

/* STEP4GQ_CH26_FIX6_MOBILE_BANNER_1200X900_FULL_WIDTH_START */
/*
  Mobile banner contract:
  - Full viewport width
  - Recommended artwork 1200x900
  - Exact aspect ratio 4:3
  - No side gaps
  - Desktop 1920x600 rules remain unchanged
*/
@media (max-width: 760px) {
    .sm-home-v2-hero {
        width: 100vw !important;
        max-width: none !important;
        margin-left: calc(50% - 50vw) !important;
        margin-right: calc(50% - 50vw) !important;
        padding: 0 !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel {
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        aspect-ratio: 4 / 3 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    .sm-home-v2-hero .sm-home-v2-carousel-track,
    .sm-home-v2-hero .sm-home-v2-carousel-item,
    .sm-home-v2-hero .sm-home-v2-slide,
    .sm-home-v2-hero .sm-home-v2-slide-fallback,
    .sm-home-v2-hero .sm-home-v2-slide-picture {
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .sm-home-v2-hero .sm-home-v2-slide > img,
    .sm-home-v2-hero .sm-home-v2-slide-picture > img,
    .sm-home-v2-hero img[data-sm-home-banner-image] {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        object-fit: cover !important;
        object-position: center center !important;
        margin: 0 !important;
    }
}
/* STEP4GQ_CH26_FIX6_MOBILE_BANNER_1200X900_FULL_WIDTH_END */

/* STEP4GT_CH27_FIX1_HOME_BANNER_COMPLETE_UX_START */

/* A Banner button must never dim the uploaded artwork. */
.sm-home-v2-slide-shade--clear {
    background: transparent !important;
}

/* Whole-Banner link sits above the image, but below captions and carousel controls. */
.sm-home-v2-slide-full-link {
    position: absolute;
    z-index: 2;
    inset: 0;
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.sm-home-v2-slide-shade {
    z-index: 3;
    pointer-events: none;
}

.sm-home-v2-slide-shade .sm-home-v2-primary-button,
.sm-home-v2-slide-shade .sm-home-v2-secondary-button,
.sm-home-v2-slide-shade .sm-home-v2-actions {
    pointer-events: auto;
}

/* Desktop: move a button-only Banner away from the previous arrow-adjacent position. */
@media (min-width: 761px) {
    .sm-home-v2-slide-shade--button-only .sm-home-v2-slide-content {
        position: absolute !important;
        top: auto !important;
        right: auto !important;
        bottom: clamp(62px, 5.5vw, 94px) !important;
        left: clamp(112px, 8.5vw, 170px) !important;
        width: auto !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
    }

    .sm-home-v2-slide-shade--button-only .sm-home-v2-actions {
        margin: 0 !important;
    }
}

/* Mobile position remains controlled by the existing mobile rules. */
@media (max-width: 760px) {
    .sm-home-v2-slide-shade--button-only .sm-home-v2-primary-button {
        pointer-events: auto;
    }
}

/* STEP4GT_CH27_FIX1_HOME_BANNER_COMPLETE_UX_END */
/* =================================================================================================
   STEP4GU_CH2_SHOPPING_PROCESS_MODAL_START
   Header / drawer trigger + responsive shopping-process dialog
   ================================================================================================= */

.sm-shopping-process-trigger {
    -webkit-appearance: none;
    appearance: none;
    font: inherit;
    cursor: pointer;
}

.sm-shopping-process-trigger--desktop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 13px;
    border: 1px solid #0a9f91;
    border-radius: 10px;
    background: #ffffff;
    color: #087e73;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(8, 126, 115, .10);
    transition:
        background-color .18s ease,
        color .18s ease,
        border-color .18s ease,
        transform .18s ease;
}

.sm-shopping-process-trigger--desktop:hover,
.sm-shopping-process-trigger--desktop:focus-visible {
    border-color: #087e73;
    background: #087e73;
    color: #ffffff;
    outline: none;
    transform: translateY(-1px);
}

.sm-shopping-process-trigger--drawer {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(8, 126, 115, .22);
    border-radius: 14px;
    background: rgba(8, 126, 115, .07);
    color: #087e73;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
}

.sm-shopping-process-trigger--drawer:hover,
.sm-shopping-process-trigger--drawer:focus-visible {
    border-color: #087e73;
    background: rgba(8, 126, 115, .13);
    outline: none;
}

body.sm-shopping-process-dialog-open {
    overflow: hidden !important;
    touch-action: none;
}

.sm-shopping-process-dialog[hidden] {
    display: none !important;
}

.sm-shopping-process-dialog {
    position: fixed;
    z-index: 30000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
}

.sm-shopping-process-dialog__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(23, 23, 23, .68);
    cursor: pointer;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.sm-shopping-process-dialog__panel {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100vw - 48px));
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(0, 0, 0, .34);
}

.sm-shopping-process-dialog__title {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

.sm-shopping-process-dialog__close {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: #4b4b4b;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .18);
}

.sm-shopping-process-dialog__close:hover,
.sm-shopping-process-dialog__close:focus-visible {
    border-color: #087e73;
    background: #087e73;
    color: #ffffff;
    outline: none;
}

.sm-shopping-process-dialog__content {
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.sm-shopping-process-dialog__content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    background: #fffaf0;
}

@media (max-width: 760px) {
    .sm-shopping-process-trigger--desktop {
        display: none;
    }

    .sm-shopping-process-dialog {
        align-items: center;
        padding:
            max(10px, env(safe-area-inset-top))
            10px
            max(10px, env(safe-area-inset-bottom));
    }

    .sm-shopping-process-dialog__panel {
        width: 100%;
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
        border-radius: 16px;
    }

    .sm-shopping-process-dialog__content {
        max-height: calc(100vh - 20px);
        max-height: calc(100dvh - 20px);
    }

    .sm-shopping-process-dialog__close {
        position: sticky;
        float: right;
        top: 8px;
        right: 8px;
        width: 46px;
        height: 46px;
        margin: 8px 8px -54px 0;
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-shopping-process-trigger--desktop {
        transition: none;
    }
}

/* STEP4GU_CH2_SHOPPING_PROCESS_MODAL_END */
/* STEP4GW_CH3_FIX6_HOME_FEATURED_BADGE_PALE_RED_START */
.sm-home-v2-preview-grid[data-home-featured-grid] .sm-home-v2-preview-badge{
    background:#f6b8b8!important;
    color:#8f1d1d!important;
    border:1px solid #ee9d9d!important;
    box-shadow:none!important
}
/* STEP4GW_CH3_FIX6_HOME_FEATURED_BADGE_PALE_RED_END */
/* SUNMOON ABOUT GREEN EXPANDED FIX2 START */
.sm-about-page {
    --sm-about-red: #5f7f65;
    --sm-about-red-deep: #3f5f46;
    --sm-about-red-soft: #dfeadf;
    --sm-about-cream: #fafcf5;
    --sm-about-paper: #fffef9;
    --sm-about-ink: #2f3a31;
    --sm-about-muted: #68736a;
    --sm-about-line: rgba(63, 95, 70, .14);
    position: relative;
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 28px 28px 88px;
    color: var(--sm-about-ink);
}

.sm-about-page,
.sm-about-page * {
    box-sizing: border-box;
}

.sm-about-page img {
    max-width: 100%;
}

.sm-about-page section {
    position: relative;
    margin-top: 34px;
}

.sm-about-page h1,
.sm-about-page h2,
.sm-about-page h3,
.sm-about-page p {
    margin-top: 0;
}

.sm-about-page h1,
.sm-about-page h2,
.sm-about-page h3 {
    color: var(--sm-about-ink);
    letter-spacing: .02em;
}

.sm-about-page p {
    color: var(--sm-about-muted);
    line-height: 1.9;
}

.sm-about-page a {
    text-decoration: none;
}

/* Hero */
.sm-about-hero {
    isolation: isolate;
    overflow: hidden;
    min-height: 470px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 7vw, 92px) clamp(34px, 7vw, 88px);
    border: 1px solid rgba(95, 127, 101, .14);
    border-radius: 34px;
    background:
        radial-gradient(circle at 88% 18%, rgba(95, 127, 101, .17) 0 7%, transparent 7.3%),
        radial-gradient(circle at 84% 24%, rgba(95, 127, 101, .08) 0 18%, transparent 18.4%),
        linear-gradient(135deg, #fffdf9 0%, #f6f8ef 52%, #e5eee0 100%);
    box-shadow: 0 24px 65px rgba(47, 64, 51, .10);
}

.sm-about-hero::before,
.sm-about-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    pointer-events: none;
}

.sm-about-hero::before {
    width: 310px;
    height: 310px;
    right: -90px;
    top: -110px;
    border: 1px solid rgba(95, 127, 101, .18);
}

.sm-about-hero::after {
    width: 220px;
    height: 220px;
    right: 68px;
    bottom: -128px;
    background: rgba(255, 255, 255, .42);
    box-shadow: 0 0 0 34px rgba(255, 255, 255, .18);
}

.sm-about-hero > * {
    position: relative;
    z-index: 1;
    max-width: 790px;
}

.sm-about-hero > :first-child,
.sm-about-hero__eyebrow,
.sm-about-kicker,
.sm-about-section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    color: var(--sm-about-red-deep);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
}

.sm-about-hero > :first-child::before,
.sm-about-hero__eyebrow::before,
.sm-about-kicker::before,
.sm-about-section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    margin-right: 10px;
    border-radius: 999px;
    background: var(--sm-about-red);
}

.sm-about-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.03;
}

.sm-about-hero h1 + p,
.sm-about-hero__lead {
    max-width: 720px;
    margin-bottom: 15px;
    color: #4e5d50;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.9;
}

.sm-about-hero ul,
.sm-about-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.sm-about-hero li,
.sm-about-hero__tag {
    padding: 9px 15px;
    border: 1px solid rgba(95, 127, 101, .16);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #526457;
    font-size: .9rem;
    font-weight: 750;
    backdrop-filter: blur(8px);
}

/* Shared premium section shell */
.sm-about-story,
.sm-about-brand,
.sm-about-visuals,
.sm-about-commitments {
    overflow: hidden;
    padding: clamp(34px, 5vw, 62px);
    border: 1px solid var(--sm-about-line);
    border-radius: 30px;
    background: var(--sm-about-paper);
    box-shadow: 0 16px 46px rgba(52, 69, 56, .07);
}

.sm-about-story::before,
.sm-about-brand::before,
.sm-about-visuals::before,
.sm-about-commitments::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--sm-about-red), rgba(95, 127, 101, .14));
}

.sm-about-story > :first-child,
.sm-about-brand > :first-child,
.sm-about-visuals > :first-child,
.sm-about-commitments > :first-child {
    color: var(--sm-about-red-deep);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.sm-about-story h2,
.sm-about-brand h2,
.sm-about-visuals h2,
.sm-about-commitments h2,
.sm-about-closing h2 {
    margin-bottom: 25px;
    font-size: clamp(1.85rem, 3.5vw, 2.75rem);
    font-weight: 900;
    line-height: 1.2;
}

/* Story cards */
.sm-about-story__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.sm-about-story__grid > *,
.sm-about-story article,
.sm-about-story__card {
    position: relative;
    min-width: 0;
    padding: 27px 25px 25px;
    border: 1px solid rgba(95, 127, 101, .10);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95), rgba(255, 249, 242, .95));
    box-shadow: 0 9px 24px rgba(51, 68, 55, .06);
}

.sm-about-story__grid > *::before,
.sm-about-story article::before,
.sm-about-story__card::before {
    content: "";
    display: block;
    width: 34px;
    height: 5px;
    margin-bottom: 19px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--sm-about-red), #91aa8a);
}

.sm-about-story h3 {
    margin-bottom: 12px;
    font-size: 1.18rem;
    font-weight: 850;
    line-height: 1.45;
}

.sm-about-story p {
    margin-bottom: 0;
    font-size: .98rem;
}

/* Brand / shopping platform */
.sm-about-brand {
    background:
        linear-gradient(130deg, rgba(63, 95, 70, .98), rgba(95, 127, 101, .94)),
        var(--sm-about-red-deep);
    color: #fff;
}

.sm-about-brand::before {
    width: 100%;
    height: 100%;
    opacity: .20;
    background:
        radial-gradient(circle at 90% 12%, rgba(255,255,255,.7) 0 2px, transparent 3px),
        radial-gradient(circle at 88% 19%, rgba(255,255,255,.35) 0 86px, transparent 87px);
}

.sm-about-brand > * {
    position: relative;
    z-index: 1;
    max-width: 980px;
}

.sm-about-brand > :first-child,
.sm-about-brand h2,
.sm-about-brand h3,
.sm-about-brand p,
.sm-about-brand strong {
    color: #fff;
}

.sm-about-brand p {
    max-width: 900px;
    color: rgba(255,255,255,.85);
}

.sm-about-brand blockquote,
.sm-about-brand__statement,
.sm-about-brand > :last-child {
    margin: 26px 0 0;
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 18px;
    background: rgba(255,255,255,.10);
    color: #fff;
    font-size: clamp(1.05rem, 2vw, 1.34rem);
    font-weight: 800;
    line-height: 1.75;
    backdrop-filter: blur(8px);
}

/* Service images */
.sm-about-visuals > p {
    margin-bottom: 26px;
}

.sm-about-visuals__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sm-about-visuals__grid > *,
.sm-about-visuals figure,
.sm-about-visual-card {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(95, 127, 101, .12);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(49, 66, 53, .09);
    transition: transform .22s ease, box-shadow .22s ease;
}

.sm-about-visuals__grid > *:hover,
.sm-about-visuals figure:hover,
.sm-about-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(49, 66, 53, .14);
}

.sm-about-visuals button,
.sm-about-visuals a {
    display: block;
    width: 100%;
}

.sm-about-visuals img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #eef1e8;
    transition: transform .35s ease;
}

.sm-about-visuals__grid > *:hover img,
.sm-about-visuals figure:hover img,
.sm-about-visual-card:hover img {
    transform: scale(1.025);
}

.sm-about-visuals figcaption,
.sm-about-visual-card__body,
.sm-about-visuals__caption {
    padding: 23px 24px 25px;
}

.sm-about-visuals h3,
.sm-about-visuals figcaption strong {
    display: block;
    margin-bottom: 9px;
    color: var(--sm-about-ink);
    font-size: 1.12rem;
    font-weight: 850;
}

.sm-about-visuals figcaption p,
.sm-about-visual-card__body p {
    margin-bottom: 0;
}

/* Promise cards */
.sm-about-commitments__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.sm-about-commitments__grid > *,
.sm-about-commitment {
    min-width: 0;
    padding: 25px 21px;
    border: 1px solid rgba(95, 127, 101, .11);
    border-radius: 21px;
    background: linear-gradient(180deg, #fff, #fff9f2);
    text-align: left;
}

.sm-about-commitments__grid > * > :first-child,
.sm-about-commitment__icon {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: var(--sm-about-red-soft);
    color: var(--sm-about-red-deep);
    font-size: 1.1rem;
    font-weight: 900;
}

.sm-about-commitments h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 850;
}

.sm-about-commitments p {
    margin-bottom: 0;
    font-size: .94rem;
}

/* Closing CTA */
.sm-about-closing {
    overflow: hidden;
    padding: clamp(42px, 6vw, 70px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.22) 0 70px, transparent 71px),
        linear-gradient(135deg, #2f4033 0%, #45634c 54%, #66846d 100%);
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 52px rgba(46, 63, 50, .18);
}

.sm-about-closing > * {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.sm-about-closing > :first-child,
.sm-about-closing h2,
.sm-about-closing p,
.sm-about-closing strong {
    color: #fff;
}

.sm-about-closing > :first-child {
    color: rgba(255,255,255,.76);
    font-size: .8rem;
    font-weight: 850;
    letter-spacing: .16em;
}

.sm-about-closing p {
    color: rgba(255,255,255,.82);
}

.sm-about-closing a {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin: 14px 6px 0;
    padding: 11px 20px;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-weight: 800;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.sm-about-closing a:first-of-type {
    border-color: #fff;
    background: #fff;
    color: var(--sm-about-red-deep);
}

.sm-about-closing a:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.22);
}

.sm-about-closing a:first-of-type:hover {
    background: #f6f8ef;
}

/* Lightbox */
.sm-about-lightbox {
    position: fixed;
    z-index: 10050;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(24, 18, 18, .86);
    backdrop-filter: blur(8px);
}

.sm-about-lightbox[open],
.sm-about-lightbox.is-open,
.sm-about-lightbox[aria-hidden="false"] {
    display: flex;
}

.sm-about-lightbox img {
    display: block;
    max-width: min(1180px, 94vw);
    max-height: 84vh;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(0,0,0,.38);
}

.sm-about-lightbox button,
.sm-about-lightbox__close {
    position: absolute;
    top: 18px;
    right: 20px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    color: #fff;
    font-size: 1.45rem;
    cursor: pointer;
}

/* Tablet */
@media (max-width: 980px) {
    .sm-about-page {
        padding: 22px 18px 68px;
    }

    .sm-about-hero {
        min-height: 410px;
        border-radius: 28px;
    }

    .sm-about-story__grid {
        grid-template-columns: 1fr;
    }

    .sm-about-commitments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile */
@media (max-width: 760px) {
    .sm-about-page {
        padding: 14px 12px 52px;
    }

    .sm-about-page section {
        margin-top: 20px;
    }

    .sm-about-hero {
        min-height: auto;
        padding: 44px 24px 40px;
        border-radius: 23px;
    }

    .sm-about-hero::before {
        width: 190px;
        height: 190px;
    }

    .sm-about-hero h1 {
        font-size: clamp(2.35rem, 14vw, 3.5rem);
    }

    .sm-about-hero h1 + p,
    .sm-about-hero__lead {
        font-size: 1rem;
        line-height: 1.78;
    }

    .sm-about-story,
    .sm-about-brand,
    .sm-about-visuals,
    .sm-about-commitments {
        padding: 31px 22px;
        border-radius: 23px;
    }

    .sm-about-story h2,
    .sm-about-brand h2,
    .sm-about-visuals h2,
    .sm-about-commitments h2,
    .sm-about-closing h2 {
        font-size: 1.72rem;
    }

    .sm-about-story__grid,
    .sm-about-visuals__grid,
    .sm-about-commitments__grid {
        grid-template-columns: 1fr;
    }

    .sm-about-visuals img {
        aspect-ratio: 4 / 3;
    }

    .sm-about-closing {
        padding: 38px 22px;
        border-radius: 23px;
    }

    .sm-about-closing a {
        display: flex;
        width: 100%;
        margin: 10px 0 0;
    }

    .sm-about-lightbox {
        padding: 14px;
    }

    .sm-about-lightbox img {
        max-width: 96vw;
        max-height: 80vh;
        border-radius: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sm-about-page *,
    .sm-about-page *::before,
    .sm-about-page *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

/* FIX2 requested refinements */
.sm-about-brand h2,
.sm-about-closing h2 { font-size: clamp(2.25rem, 4.2vw, 3.35rem); }
.sm-about-brand p,
.sm-about-closing p { font-size: clamp(1.08rem, 1.45vw, 1.24rem); line-height: 2; }
.sm-about-brand blockquote,
.sm-about-brand__statement,
.sm-about-brand > :last-child { font-size: clamp(1.22rem, 2.25vw, 1.58rem); }
.sm-about-closing a { font-size: 1.05rem; }
.sm-about-visuals { padding-left: clamp(24px, 4vw, 48px); padding-right: clamp(24px, 4vw, 48px); }
.sm-about-visuals__grid { gap: 26px; }
.sm-about-visuals__grid > *,
.sm-about-visuals figure,
.sm-about-visual-card { border-radius: 18px; }
.sm-about-visuals img { aspect-ratio: auto; height: auto; object-fit: contain; }
@media (min-width: 981px) {
    .sm-about-visuals { width: calc(100% + 56px); margin-left: -28px; margin-right: -28px; }
}
@media (max-width: 760px) {
    .sm-about-brand h2,
    .sm-about-closing h2 { font-size: 2rem; }
    .sm-about-brand p,
    .sm-about-closing p { font-size: 1.03rem; }
    .sm-about-brand blockquote,
    .sm-about-brand__statement,
    .sm-about-brand > :last-child { font-size: 1.16rem; }
    .sm-about-visuals { padding-left: 14px; padding-right: 14px; }
}
/* SUNMOON ABOUT GREEN EXPANDED FIX2 END */

/* SUNMOON BRAND CARD FINAL APPROVED GREEN DESIGN FIX8 START */
div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"] {
    display: block !important;
    margin-top: 16px !important;
    padding: 16px 14px 14px !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #3f8b4b 0%, #58a763 100%) !important;
    background-color: #4d9a58 !important;
    color: #ffffff !important;
    box-shadow: 0 8px 18px rgba(45, 105, 57, 0.24) !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"] > strong {
    display: block !important;
    margin: 0 0 6px !important;
    color: #ffffff !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.01em !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"] > p {
    display: block !important;
    margin: 0 0 12px !important;
    color: rgba(255, 255, 255, 0.94) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.55 !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"] > span.sm-home-v2-drawer-about-label {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 118px !important;
    min-width: 118px !important;
    min-height: 36px !important;
    margin: 0 !important;
    padding: 8px 12px 8px 16px !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    background-color: #ffffff !important;
    color: #397f45 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.04em !important;
    text-align: left !important;
    box-shadow: 0 3px 8px rgba(38, 83, 46, 0.18) !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"] > span.sm-home-v2-drawer-about-label::after {
    content: "›" !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: 10px !important;
    color: #397f45 !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 0.8 !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"]:hover > span.sm-home-v2-drawer-about-label {
    transform: translateY(-1px) !important;
}

div.sm-home-v2-drawer-note[data-sm-brand-about-link="/about"]:focus-visible {
    outline: 3px solid rgba(77, 154, 88, 0.38) !important;
    outline-offset: 3px !important;
}
/* SUNMOON BRAND CARD FINAL APPROVED GREEN DESIGN FIX8 END */

/* SUNMOON ABOUT V56 BRIGHTCITY SUNMOON FINAL START */

/*
    Final approved direction:
    - 中城整合行銷 × 日月傳奇購物網為頁面主體
    - 晶城生活服務事業（Bright-City Life）為專業服務根基
    - Forest green + sage green + warm ivory + restrained gold
    - Existing Razor content, SEO text, service images and lightbox behavior remain intact
*/

body .sm-about-page {
    --about-forest: #183e2a;
    --about-forest-2: #245438;
    --about-forest-3: #326b46;
    --about-sage: #dfead8;
    --about-sage-soft: #eef5e9;
    --about-cream: #fbfaf5;
    --about-paper: #fffefb;
    --about-gold: #a88032;
    --about-ink: #24312a;
    --about-muted: #667168;
    --about-line: #dce5d7;
    --about-shadow: 0 18px 50px rgba(28, 68, 46, .10);
    display: grid;
    gap: 0;
    width: min(1180px, calc(100% - 40px));
    margin: clamp(18px, 3vw, 38px) auto clamp(54px, 7vw, 96px);
    overflow: hidden;
    border: 1px solid rgba(24, 62, 42, .10);
    border-radius: clamp(24px, 3vw, 36px);
    background: linear-gradient(180deg, #ffffff 0%, var(--about-cream) 100%);
    color: var(--about-ink);
    box-shadow: 0 22px 70px rgba(28, 68, 46, .08);
}

body .sm-about-page,
body .sm-about-page *,
body .sm-about-page *::before,
body .sm-about-page *::after {
    box-sizing: border-box;
}

body .sm-about-page section,
body .sm-about-page h1,
body .sm-about-page h2,
body .sm-about-page h3,
body .sm-about-page p,
body .sm-about-page figure {
    margin: 0;
}

body .sm-about-page h1,
body .sm-about-page h2,
body .sm-about-page h3 {
    color: var(--about-forest);
    text-wrap: balance;
}

body .sm-about-page p,
body .sm-about-page span {
    text-wrap: pretty;
}

/* HERO */
body .sm-about-page .sm-about-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(300px, .86fr);
    gap: clamp(36px, 6vw, 76px);
    align-items: center;
    min-height: 590px;
    padding: clamp(58px, 7vw, 86px);
    overflow: hidden;
    background:
        radial-gradient(circle at 91% 8%, rgba(153, 185, 127, .22), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #fbfaf3 50%, #eef4e8 100%);
    border-bottom: 1px solid #edf0e7;
}

body .sm-about-page .sm-about-hero::before {
    content: "BRIGHT-CITY LIFE";
    position: absolute;
    z-index: -1;
    right: -24px;
    top: 72px;
    color: rgba(31, 76, 49, .038);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.4rem, 9vw, 7.6rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: .025em;
    white-space: nowrap;
}

body .sm-about-page .sm-about-hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    left: -40px;
    bottom: -75px;
    width: 210px;
    height: 210px;
    border: 1px solid rgba(50, 107, 70, .10);
    border-radius: 50%;
    box-shadow: 0 0 0 32px rgba(50, 107, 70, .035), 0 0 0 68px rgba(50, 107, 70, .018);
}

body .sm-about-page .sm-about-hero__content,
body .sm-about-page .sm-about-hero__badge {
    position: relative;
    z-index: 1;
}

body .sm-about-page .sm-about-eyebrow,
body .sm-about-page .sm-about-section-heading > p,
body .sm-about-page .sm-about-closing > p {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--about-forest-2);
    font-size: .78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .18em;
    text-transform: uppercase;
}

body .sm-about-page .sm-about-eyebrow::before,
body .sm-about-page .sm-about-section-heading > p::before,
body .sm-about-page .sm-about-closing > p::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--about-gold);
}

body .sm-about-page .sm-about-hero h1 {
    margin-top: 18px;
    font-size: clamp(3.55rem, 6.2vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .025em;
}

body .sm-about-page .sm-about-hero__lead {
    margin-top: 14px;
    color: #946d24;
    font-size: clamp(1.35rem, 2.6vw, 1.85rem);
    font-weight: 800;
    line-height: 1.45;
}

body .sm-about-page .sm-about-hero__content > p:last-child {
    max-width: 650px;
    margin-top: 24px;
    color: #445249;
    font-size: clamp(1rem, 1.25vw, 1.08rem);
    line-height: 1.95;
}

body .sm-about-page .sm-about-hero__content strong {
    color: var(--about-forest);
    font-weight: 900;
}

body .sm-about-page .sm-about-hero__badge {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
    padding: 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 38px;
    background:
        radial-gradient(circle at 82% 10%, rgba(255, 255, 255, .14), transparent 30%),
        linear-gradient(155deg, #244d34 0%, #163622 100%);
    color: #ffffff;
    box-shadow: var(--about-shadow);
}

body .sm-about-page .sm-about-hero__badge::before,
body .sm-about-page .sm-about-hero__badge::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
}

body .sm-about-page .sm-about-hero__badge::before {
    width: 360px;
    height: 360px;
    right: -125px;
    top: -95px;
}

body .sm-about-page .sm-about-hero__badge::after {
    width: 220px;
    height: 220px;
    right: -15px;
    top: 75px;
}

body .sm-about-page .sm-about-hero__badge span {
    position: relative;
    z-index: 1;
    color: #dce8d9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .20em;
    text-transform: uppercase;
}

body .sm-about-page .sm-about-hero__badge strong {
    position: relative;
    z-index: 1;
    display: block;
    color: #ffffff;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 900;
    line-height: 1.55;
}

body .sm-about-page .sm-about-hero__badge strong::after {
    content: "1998";
    display: block;
    margin-top: 30px;
    color: #d3bf7c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.4rem, 7vw, 6rem);
    font-weight: 700;
    line-height: .9;
    letter-spacing: -.04em;
}

/* SHARED SECTION HEAD */
body .sm-about-page .sm-about-section-heading {
    max-width: 820px;
    margin: 0 auto 42px;
    text-align: center;
}

body .sm-about-page .sm-about-section-heading > p {
    justify-content: center;
    margin-bottom: 8px;
    color: var(--about-gold);
}

body .sm-about-page .sm-about-section-heading > p::after {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--about-gold);
}

body .sm-about-page .sm-about-section-heading h2,
body .sm-about-page .sm-about-closing h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: .015em;
}

body .sm-about-page .sm-about-section-heading > span {
    display: block;
    margin-top: 10px;
    color: var(--about-muted);
    font-size: .98rem;
    line-height: 1.8;
}

/* OUR STORY */
body .sm-about-page .sm-about-story {
    padding: clamp(72px, 8vw, 104px) clamp(36px, 7vw, 82px);
    background: #ffffff;
}

body .sm-about-page .sm-about-story__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    counter-reset: about-story;
}

body .sm-about-page .sm-about-story__grid article {
    counter-increment: about-story;
    position: relative;
    min-height: 305px;
    overflow: hidden;
    padding: 32px 28px 30px;
    border: 1px solid var(--about-line);
    border-radius: 24px;
    background: var(--about-paper);
    box-shadow: 0 12px 32px rgba(33, 74, 50, .06);
}

body .sm-about-page .sm-about-story__grid article::before {
    content: "0" counter(about-story);
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #759e58, #9dbb71);
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    line-height: 1;
}

body .sm-about-page .sm-about-story__grid article::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #eff5ea;
}

body .sm-about-page .sm-about-story__grid h3 {
    margin-bottom: 15px;
    color: var(--about-forest);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    font-weight: 900;
    line-height: 1.45;
}

body .sm-about-page .sm-about-story__grid p,
body .sm-about-page .sm-about-brand__copy > p,
body .sm-about-page .sm-about-commitments p {
    position: relative;
    z-index: 1;
    color: #59655d;
    font-size: .96rem;
    line-height: 1.9;
}

/* OUR SHOPPING PLATFORM */
body .sm-about-page .sm-about-brand {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(340px, 1.05fr);
    gap: clamp(34px, 6vw, 70px);
    align-items: center;
    padding: clamp(68px, 8vw, 96px) clamp(36px, 7vw, 82px);
    overflow: hidden;
    background: linear-gradient(105deg, #f0f5ea 0%, #fbfaf4 56%, #e4eee0 100%);
}

body .sm-about-page .sm-about-brand::after {
    content: "";
    position: absolute;
    z-index: -1;
    right: -70px;
    top: -90px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(111, 153, 90, .10);
}

body .sm-about-page .sm-about-brand__copy .sm-about-section-heading {
    margin: 0 0 25px;
    text-align: left;
}

body .sm-about-page .sm-about-brand__copy .sm-about-section-heading > p {
    justify-content: flex-start;
}

body .sm-about-page .sm-about-brand__copy .sm-about-section-heading > p::after {
    display: none;
}

body .sm-about-page .sm-about-brand__copy > p + p {
    margin-top: 18px;
}

body .sm-about-page .sm-about-brand__statement {
    position: relative;
    min-height: 360px;
    padding: 46px 42px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .86);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: var(--about-shadow);
    backdrop-filter: blur(8px);
}

body .sm-about-page .sm-about-brand__statement::before {
    content: "“";
    position: absolute;
    top: -48px;
    left: 28px;
    color: #a7bd8d;
    font-family: Georgia, serif;
    font-size: 8.5rem;
    line-height: 1;
    opacity: .46;
}

body .sm-about-page .sm-about-brand__statement span {
    display: block;
    margin-top: 165px;
    color: #5f6c63;
    font-size: .92rem;
    line-height: 1.8;
}

body .sm-about-page .sm-about-brand__statement strong {
    position: absolute;
    z-index: 1;
    top: 64px;
    left: 42px;
    right: 42px;
    color: #8c6822;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1.5;
}

/* OUR SERVICE NETWORK */
body .sm-about-page .sm-about-visuals {
    padding: clamp(72px, 8vw, 104px) clamp(36px, 7vw, 82px);
    background: #ffffff;
}

body .sm-about-page .sm-about-visuals__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

body .sm-about-page .sm-about-visual-card {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--about-line);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(35, 69, 48, .08);
    transition: transform .22s ease, box-shadow .22s ease;
}

body .sm-about-page .sm-about-visual-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(35, 69, 48, .13);
}

body .sm-about-page .sm-about-image-button {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 500px;
    padding: 20px;
    place-items: center;
    overflow: hidden;
    border: 0;
    background: #f2f4ef;
    cursor: zoom-in;
}

body .sm-about-page .sm-about-image-button img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 510px;
    object-fit: contain;
    transition: transform .30s ease;
}

body .sm-about-page .sm-about-visual-card:hover .sm-about-image-button img {
    transform: scale(1.012);
}

body .sm-about-page .sm-about-image-button > span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 999px;
    background: rgba(24, 62, 42, .90);
    color: #ffffff;
    font-size: .8rem;
    font-weight: 800;
    box-shadow: 0 9px 24px rgba(24, 62, 42, .22);
}

body .sm-about-page .sm-about-image-button:focus-visible {
    outline: 4px solid rgba(50, 107, 70, .26);
    outline-offset: -4px;
}

body .sm-about-page .sm-about-visual-card figcaption {
    padding: 25px 28px 29px;
    border-top: 1px solid #e8ede6;
}

body .sm-about-page .sm-about-visual-card figcaption strong {
    display: block;
    margin-bottom: 7px;
    color: var(--about-forest);
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    font-weight: 900;
    line-height: 1.4;
}

body .sm-about-page .sm-about-visual-card figcaption span {
    color: var(--about-muted);
    font-size: .92rem;
    line-height: 1.75;
}

/* OUR PROMISE */
body .sm-about-page .sm-about-commitments {
    padding: clamp(72px, 8vw, 104px) clamp(36px, 7vw, 82px);
    background: linear-gradient(180deg, #f6f8f2 0%, #ffffff 100%);
}

body .sm-about-page .sm-about-commitments__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body .sm-about-page .sm-about-commitments article {
    min-height: 220px;
    padding: 28px 24px;
    border: 1px solid #dfe7da;
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 10px 26px rgba(32, 73, 48, .05);
}

body .sm-about-page .sm-about-commitments article > span {
    display: grid;
    width: 66px;
    height: 66px;
    margin: 0 auto 19px;
    place-items: center;
    border-radius: 20px;
    background: var(--about-sage-soft);
    color: var(--about-forest);
    font-size: 1.7rem;
    font-weight: 900;
}

body .sm-about-page .sm-about-commitments h3 {
    margin-bottom: 8px;
    color: var(--about-forest);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 900;
    line-height: 1.4;
}

body .sm-about-page .sm-about-commitments p {
    font-size: .9rem;
    line-height: 1.75;
}

/* CLOSING */
body .sm-about-page .sm-about-closing {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 46px;
    align-items: center;
    padding: clamp(62px, 8vw, 82px) clamp(36px, 7vw, 82px);
    overflow: hidden;
    background: linear-gradient(130deg, #153923, #234f34);
    color: #ffffff;
}

body .sm-about-page .sm-about-closing::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -180px;
    top: -180px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
}

body .sm-about-page .sm-about-closing > p {
    grid-column: 1 / 2;
    color: #d7c27e;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    letter-spacing: .04em;
    text-transform: none;
}

body .sm-about-page .sm-about-closing > p::before {
    display: none;
}

body .sm-about-page .sm-about-closing h2 {
    grid-column: 1 / 2;
    margin-top: 8px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 2.75rem);
}

body .sm-about-page .sm-about-closing > span {
    grid-column: 1 / 2;
    display: block;
    max-width: 820px;
    margin-top: 12px;
    color: #dbe5dc;
    font-size: .98rem;
    line-height: 1.9;
}

body .sm-about-page .sm-about-closing__actions {
    grid-column: 2 / 3;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
}

body .sm-about-page .sm-about-closing__actions a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 13px 20px;
    border: 1px solid rgba(255, 255, 255, .44);
    border-radius: 999px;
    background: #ffffff;
    color: var(--about-forest);
    font-size: .92rem;
    font-weight: 900;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

body .sm-about-page .sm-about-closing__actions a:first-child {
    border-color: #c1a45a;
    background: #c1a45a;
}

body .sm-about-page .sm-about-closing__actions a:hover,
body .sm-about-page .sm-about-closing__actions a:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
    outline: none;
}

/* LIGHTBOX */
body .sm-about-page .sm-about-lightbox {
    width: min(1220px, calc(100vw - 32px));
    max-width: none;
    max-height: calc(100vh - 32px);
    margin: auto;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 32px 100px rgba(0, 0, 0, .44);
}

body .sm-about-page .sm-about-lightbox::backdrop {
    background: rgba(7, 22, 14, .76);
    backdrop-filter: blur(8px);
}

body .sm-about-page .sm-about-lightbox__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    max-height: calc(100vh - 32px);
}

body .sm-about-page .sm-about-lightbox__panel > header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 16px 13px 22px;
    border-bottom: 1px solid var(--about-line);
    background: #ffffff;
}

body .sm-about-page .sm-about-lightbox__panel h2 {
    color: var(--about-forest);
    font-size: 1rem;
    font-weight: 900;
}

body .sm-about-page .sm-about-lightbox__panel header button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--about-line);
    border-radius: 50%;
    background: var(--about-sage-soft);
    color: var(--about-forest);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

body .sm-about-page .sm-about-lightbox__body {
    overflow: auto;
    overscroll-behavior: contain;
    background: #e8eee5;
}

body .sm-about-page .sm-about-lightbox__body img {
    display: block;
    width: auto;
    max-width: none;
    min-width: 100%;
    height: auto;
    margin: 0 auto;
    background: #ffffff;
}

@media (max-width: 980px) {
    body .sm-about-page .sm-about-hero {
        grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
        gap: 34px;
        min-height: 540px;
        padding: 52px 42px;
    }

    body .sm-about-page .sm-about-hero__badge {
        min-height: 340px;
        padding: 32px;
    }

    body .sm-about-page .sm-about-story__grid {
        grid-template-columns: 1fr;
    }

    body .sm-about-page .sm-about-story__grid article {
        min-height: 0;
    }

    body .sm-about-page .sm-about-brand {
        grid-template-columns: 1fr;
    }

    body .sm-about-page .sm-about-brand__statement {
        min-height: 320px;
    }

    body .sm-about-page .sm-about-commitments__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body .sm-about-page .sm-about-closing {
        grid-template-columns: 1fr;
    }

    body .sm-about-page .sm-about-closing__actions {
        grid-column: 1;
        grid-row: auto;
        flex-direction: row;
        min-width: 0;
    }

    body .sm-about-page .sm-about-closing__actions a {
        flex: 1;
    }
}

@media (max-width: 720px) {
    body .sm-about-page {
        width: min(100% - 18px, 1180px);
        margin: 9px auto 48px;
        border-radius: 24px;
    }

    body .sm-about-page .sm-about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: 0;
        padding: 44px 24px 28px;
    }

    body .sm-about-page .sm-about-hero::before {
        right: -10px;
        top: 36px;
        font-size: 3.2rem;
    }

    body .sm-about-page .sm-about-hero h1 {
        font-size: clamp(2.9rem, 14vw, 4rem);
    }

    body .sm-about-page .sm-about-hero__lead {
        font-size: clamp(1.25rem, 6vw, 1.6rem);
    }

    body .sm-about-page .sm-about-hero__content > p:last-child {
        font-size: .95rem;
        line-height: 1.85;
    }

    body .sm-about-page .sm-about-hero__badge {
        min-height: 290px;
        padding: 30px 26px;
        border-radius: 28px;
    }

    body .sm-about-page .sm-about-hero__badge strong {
        font-size: 1.65rem;
    }

    body .sm-about-page .sm-about-story,
    body .sm-about-page .sm-about-brand,
    body .sm-about-page .sm-about-visuals,
    body .sm-about-page .sm-about-commitments,
    body .sm-about-page .sm-about-closing {
        padding: 62px 22px;
    }

    body .sm-about-page .sm-about-section-heading {
        margin-bottom: 32px;
    }

    body .sm-about-page .sm-about-section-heading h2,
    body .sm-about-page .sm-about-closing h2 {
        font-size: clamp(1.8rem, 9vw, 2.45rem);
    }

    body .sm-about-page .sm-about-story__grid {
        gap: 15px;
    }

    body .sm-about-page .sm-about-story__grid article {
        padding: 26px 22px;
        border-radius: 20px;
    }

    body .sm-about-page .sm-about-brand {
        gap: 28px;
    }

    body .sm-about-page .sm-about-brand__statement {
        min-height: 300px;
        padding: 34px 26px;
    }

    body .sm-about-page .sm-about-brand__statement strong {
        top: 56px;
        left: 26px;
        right: 26px;
    }

    body .sm-about-page .sm-about-brand__statement span {
        margin-top: 175px;
    }

    body .sm-about-page .sm-about-visuals__grid,
    body .sm-about-page .sm-about-commitments__grid {
        grid-template-columns: 1fr;
    }

    body .sm-about-page .sm-about-image-button {
        min-height: 0;
        padding: 14px;
    }

    body .sm-about-page .sm-about-image-button img {
        height: auto;
        max-height: none;
    }

    body .sm-about-page .sm-about-visual-card figcaption {
        padding: 22px 21px 25px;
    }

    body .sm-about-page .sm-about-commitments article {
        min-height: 205px;
    }

    body .sm-about-page .sm-about-closing__actions {
        flex-direction: column;
    }

    body .sm-about-page .sm-about-closing__actions a {
        width: 100%;
    }

    body .sm-about-page .sm-about-lightbox {
        width: calc(100vw - 12px);
        max-height: calc(100dvh - 12px);
        border-radius: 16px;
    }

    body .sm-about-page .sm-about-lightbox__panel {
        max-height: calc(100dvh - 12px);
    }
}

@media (prefers-reduced-motion: reduce) {
    body .sm-about-page *,
    body .sm-about-page *::before,
    body .sm-about-page *::after {
        transition: none !important;
        animation: none !important;
    }
}

/* SUNMOON ABOUT V56 BRIGHTCITY SUNMOON FINAL END */

/* SUNMOON ABOUT V56 FIX1 SPLITSCREEN OVERLAP START */

/*
   Root cause fixed:
   The statement card used absolute positioning for every strong element.
   When the sentence contains more than one strong segment, the segments occupy the same coordinates.
   This block restores normal document flow and stacks the section earlier on split-screen widths.
*/
body .sm-about-page .sm-about-brand__statement {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: clamp(36px, 4vw, 48px) !important;
}

body .sm-about-page .sm-about-brand__statement::before {
    top: -30px !important;
    left: auto !important;
    right: 24px !important;
    font-size: 7rem !important;
    pointer-events: none;
}

body .sm-about-page .sm-about-brand__statement > * {
    position: static !important;
    inset: auto !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
}

body .sm-about-page .sm-about-brand__statement strong {
    display: block !important;
    margin: 0 !important;
    color: #8c6822;
    font-size: clamp(1.55rem, 2.4vw, 2.05rem) !important;
    font-weight: 900;
    line-height: 1.5 !important;
    letter-spacing: .01em;
    overflow-wrap: anywhere;
}

body .sm-about-page .sm-about-brand__statement strong + strong {
    margin-top: 4px !important;
    color: #214b35;
}

body .sm-about-page .sm-about-brand__statement span {
    display: block !important;
    margin: 20px 0 0 !important;
    padding-top: 18px;
    border-top: 1px solid rgba(33, 75, 53, .13);
    color: #5f6c63;
    font-size: .94rem !important;
    line-height: 1.85 !important;
}

@media (max-width: 1180px) {
    body .sm-about-page .sm-about-brand {
        grid-template-columns: minmax(0, 1fr) !important;
        gap: 32px !important;
    }

    body .sm-about-page .sm-about-brand__copy,
    body .sm-about-page .sm-about-brand__statement {
        width: 100%;
        max-width: none;
    }

    body .sm-about-page .sm-about-brand__copy .sm-about-section-heading h2 {
        max-width: 18ch;
    }

    body .sm-about-page .sm-about-brand__statement strong {
        font-size: clamp(1.55rem, 3.8vw, 2rem) !important;
    }
}

@media (max-width: 720px) {
    body .sm-about-page .sm-about-brand__statement {
        min-height: 0 !important;
        padding: 30px 24px !important;
        border-radius: 22px !important;
    }

    body .sm-about-page .sm-about-brand__statement::before {
        top: -20px !important;
        right: 16px !important;
        font-size: 5rem !important;
    }

    body .sm-about-page .sm-about-brand__statement strong {
        font-size: 1.5rem !important;
        line-height: 1.55 !important;
    }

    body .sm-about-page .sm-about-brand__statement span {
        margin-top: 16px !important;
        padding-top: 15px;
        font-size: .9rem !important;
    }
}

/* SUNMOON ABOUT V56 FIX1 SPLITSCREEN OVERLAP END */
/* SUNMOON_MOBILE_SEARCH_OVERLAY_STATIC_20260801_START */
@media (max-width:760px){
  .sm-mobile-commerce-header__top{
    position:relative;
  }

  .sm-mobile-search-toggle{
    width:42px;
    min-width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:1px solid rgba(84,36,17,.14);
    border-radius:999px;
    background:#fff;
    color:#6b351c;
    box-shadow:0 4px 14px rgba(78,40,20,.08);
    cursor:pointer;
    font:inherit;
    font-size:23px;
    line-height:1;
    text-decoration:none;
  }

  .sm-mobile-search-toggle:focus-visible{
    outline:3px solid rgba(239,104,26,.22);
    outline-offset:2px;
  }

  .sm-mobile-search-overlay{
    display:none;
    width:calc(100% - 20px);
    margin:0 10px 10px;
    padding:8px;
    grid-template-columns:minmax(0,1fr) 42px 42px;
    align-items:center;
    gap:7px;
    border:1px solid rgba(84,36,17,.12);
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 28px rgba(78,40,20,.14);
  }

  .sm-mobile-search-overlay.is-open{
    display:grid;
    animation:sunmoonMobileSearchOpen .18s ease-out;
  }

  .sm-mobile-search-overlay input{
    width:100%;
    min-width:0;
    height:42px;
    padding:0 13px;
    border:1px solid #ead8c6;
    border-radius:12px;
    background:#fffaf6;
    color:#452716;
    font-size:16px;
    outline:none;
  }

  .sm-mobile-search-overlay input:focus{
    border-color:#ef681a;
    box-shadow:0 0 0 3px rgba(239,104,26,.13);
  }

  .sm-mobile-search-overlay button{
    width:42px;
    min-width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0;
    border:0;
    border-radius:12px;
    cursor:pointer;
    font:inherit;
  }

  .sm-mobile-search-submit{
    background:#ef681a;
    color:#fff;
    font-size:22px;
  }

  .sm-mobile-search-close{
    background:#f4ede7;
    color:#6b351c;
    font-size:27px;
    line-height:1;
  }

  @keyframes sunmoonMobileSearchOpen{
    from{opacity:0;transform:translateY(-5px)}
    to{opacity:1;transform:translateY(0)}
  }
}

@media (min-width:761px){
  .sm-mobile-search-overlay{
    display:none !important;
  }
}
/* SUNMOON_MOBILE_SEARCH_OVERLAY_STATIC_20260801_END */
/* SUNMOON_MOBILE_HEADER_SEARCH_CH28_FIX1_20260802_START */
@media (max-width:760px){
  .sm-mobile-commerce-header__top{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto auto!important;
    align-items:center!important;
    column-gap:6px!important;
  }

  .sm-mobile-commerce-header__brand{
    grid-column:1!important;
    min-width:0!important;
  }

  .sm-mobile-commerce-header__auth{
    grid-column:2!important;
    display:flex!important;
    align-items:center!important;
    justify-content:flex-end!important;
    gap:5px!important;
    min-width:0!important;
  }

  .sm-mobile-search-toggle{
    grid-column:3!important;
    display:inline-grid!important;
    place-items:center!important;
    width:40px!important;
    min-width:40px!important;
    height:40px!important;
    min-height:40px!important;
    margin:0!important;
    padding:0!important;
    border:1px solid rgba(84,36,17,.16)!important;
    border-radius:50%!important;
    color:#6b351c!important;
    background:#fff!important;
    box-shadow:0 5px 14px rgba(84,36,17,.10)!important;
    cursor:pointer!important;
    visibility:visible!important;
    opacity:1!important;
  }

  .sm-mobile-search-toggle:hover,
  .sm-mobile-search-toggle:focus-visible{
    color:#b84f16!important;
    background:#fff1e4!important;
    outline:3px solid rgba(239,104,26,.18)!important;
    outline-offset:1px!important;
  }

  .sm-mobile-search-toggle svg{
    width:21px!important;
    height:21px!important;
    fill:none!important;
    stroke:currentColor!important;
    stroke-width:2.2!important;
    stroke-linecap:round!important;
  }

  .sm-mobile-commerce-header__auth [title="晶城員工資格"]{
    width:auto!important;
    min-width:0!important;
    padding-right:8px!important;
    padding-left:8px!important;
    white-space:nowrap!important;
  }

  .sm-mobile-search-overlay{
    width:calc(100% - 20px)!important;
  }
}

@media (max-width:430px){
  .sm-mobile-search-toggle{
    width:38px!important;
    min-width:38px!important;
    height:38px!important;
    min-height:38px!important;
  }

  .sm-mobile-commerce-header__auth{
    gap:4px!important;
  }
}
/* SUNMOON_MOBILE_HEADER_SEARCH_CH28_FIX1_20260802_END */
/* SUNMOON_DESKTOP_HEADER_SEARCH_OVERLAY_CH29_20260802_START */
.sm-desktop-search-toggle,
.sm-desktop-search-overlay{
  display:none;
}

@media (min-width:761px){
  .sm-home-v2-masthead{
    overflow:visible!important;
  }

  .sm-desktop-search-toggle{
    display:inline-flex!important;
    appearance:none;
    cursor:pointer;
  }

  .sm-desktop-search-toggle svg{
    width:19px;
    height:19px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.2;
    stroke-linecap:round;
  }

  .sm-desktop-search-overlay{
    position:absolute;
    z-index:1300;
    top:calc(100% + 10px);
    right:max(24px,calc((100vw - 1720px) / 2));
    width:min(560px,calc(100vw - 48px));
    display:block;
    visibility:hidden;
    opacity:0;
    pointer-events:none;
    transform:translateY(-8px);
    transition:
      opacity .18s ease,
      transform .18s ease,
      visibility .18s ease;
  }

  .sm-desktop-search-overlay.is-open{
    visibility:visible;
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }

  .sm-desktop-search-overlay__inner{
    display:grid;
    grid-template-columns:minmax(0,1fr) 48px 44px;
    align-items:center;
    min-height:54px;
    overflow:hidden;
    border:1px solid rgba(84,36,17,.16);
    border-radius:18px;
    background:#fff;
    box-shadow:0 18px 48px rgba(69,29,10,.18);
  }

  .sm-desktop-search-overlay input{
    width:100%;
    min-width:0;
    height:54px;
    padding:0 16px;
    border:0;
    outline:0;
    color:#4e2412;
    background:transparent;
    font:inherit;
    font-size:15px;
  }

  .sm-desktop-search-submit,
  .sm-desktop-search-close{
    width:100%;
    height:54px;
    display:grid;
    place-items:center;
    padding:0;
    border:0;
    color:#6b351c;
    background:transparent;
    cursor:pointer;
  }

  .sm-desktop-search-submit:hover,
  .sm-desktop-search-submit:focus-visible,
  .sm-desktop-search-close:hover,
  .sm-desktop-search-close:focus-visible{
    color:#b84f16;
    background:#fff1e4;
    outline:none;
  }

  .sm-desktop-search-submit svg{
    width:21px;
    height:21px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.2;
    stroke-linecap:round;
  }

  .sm-desktop-search-close{
    border-left:1px solid rgba(84,36,17,.10);
    font-size:27px;
    line-height:1;
  }
}

@media (min-width:761px) and (max-width:1180px){
  .sm-desktop-search-overlay{
    right:14px;
    width:min(520px,calc(100vw - 28px));
  }
}
/* SUNMOON_DESKTOP_HEADER_SEARCH_OVERLAY_CH29_20260802_END */
