:root{
    --sl-ink:#101621;
    --sl-ink-2:#202938;
    --sl-muted:#667085;
    --sl-line:#e6e1d7;
    --sl-paper:#fbfaf6;
    --sl-cream:#f3ead9;
    --sl-gold:#d8ad57;
    --sl-red:#9f1d33;
    --sl-red-2:#d91f3c;
    --sl-teal:#0f7f74;
    --sl-shadow:0 18px 46px rgba(16,22,33,.12);
}

*{
    box-sizing:border-box;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans TC","PingFang TC","Microsoft JhengHei",Arial,sans-serif!important;
    background:
        linear-gradient(90deg,rgba(15,127,116,.06) 0 1px,transparent 1px 54px),
        linear-gradient(180deg,#fffaf1 0,#f6f7f9 34%,#f5f2ea 100%)!important;
    color:var(--sl-ink)!important;
    overflow-x:hidden;
}

body::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    pointer-events:none;
    background:
        radial-gradient(circle at 78% 8%,rgba(216,173,87,.18),transparent 28%),
        linear-gradient(135deg,transparent 0 38%,rgba(159,29,51,.08) 38% 40%,transparent 40% 70%,rgba(15,127,116,.08) 70% 72%,transparent 72%);
}

.container{
    width:100%;
    max-width:1320px!important;
    margin:0 auto;
    padding:0 16px;
}

.topbar{
    background:linear-gradient(90deg,#111722,#7e1830,#d91f3c)!important;
    color:#fff!important;
    letter-spacing:.08em;
    font-weight:800;
    padding:11px 12px!important;
}

.header{
    position:sticky!important;
    top:0;
    z-index:80!important;
    margin:0!important;
    padding:14px 0 10px;
    backdrop-filter:blur(18px);
}

.header.is-scrolled{
    background:rgba(255,250,241,.86);
    box-shadow:0 10px 30px rgba(16,22,33,.08);
}

.header-box{
    border-radius:8px!important;
    border:1px solid rgba(230,225,215,.86);
    background:rgba(255,255,255,.88)!important;
    box-shadow:0 14px 34px rgba(16,22,33,.08)!important;
}

.header-main{
    display:flex;
    align-items:center;
    gap:22px!important;
}

.logo{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    flex:0 0 284px!important;
    gap:12px;
}

.search-row{
    flex:1;
    min-width:0;
}

.logo img{
    display:none!important;
}

.brand-wordmark{
    display:flex;
    flex-direction:column;
    line-height:1.05;
    color:var(--sl-ink);
    font-weight:950;
    letter-spacing:.04em;
    font-size:22px;
    white-space:nowrap;
}

.brand-wordmark em{
    margin-top:6px;
    color:var(--sl-red);
    font-style:normal;
    font-size:11px;
    letter-spacing:.22em;
    text-transform:uppercase;
}

.search-form{
    display:flex;
    align-items:center;
    min-width:0;
    height:56px;
    border:1px solid #dcd7cd!important;
    border-radius:8px!important;
    background:#fff!important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

.search-form input{
    flex:1;
    min-width:0;
    border:0;
    outline:0;
    background:transparent;
    height:56px!important;
    padding:0 22px!important;
    font-size:16px!important;
}

.search-form button{
    flex:0 0 auto;
    border:0;
    height:56px!important;
    min-width:118px;
    border-radius:0 8px 8px 0;
    background:var(--sl-red)!important;
    font-size:16px!important;
    letter-spacing:.04em;
}

.search-form button:hover{
    background:var(--sl-ink)!important;
}

.sl-home-hero{
    position:relative;
    min-height:620px;
    margin:8px 0 20px;
    overflow:hidden;
    background:#111722 url("/static/index/home2026/home2026-hero.webp") center/cover no-repeat;
    box-shadow:var(--sl-shadow);
}

.sl-home-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(10,14,21,.92) 0%,rgba(10,14,21,.78) 34%,rgba(10,14,21,.12) 68%,rgba(10,14,21,.04) 100%),
        linear-gradient(0deg,rgba(10,14,21,.28),transparent 55%);
}

.sl-hero-copy{
    position:relative;
    z-index:2;
    width:min(690px,56%);
    padding:70px 54px 44px;
    color:#fff;
}

.sl-kicker{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:8px 12px;
    border:1px solid rgba(216,173,87,.6);
    color:#ffe7a8;
    background:rgba(216,173,87,.12);
    font-size:13px;
    font-weight:900;
    letter-spacing:.12em;
}

.sl-home-hero h1{
    margin:22px 0 16px;
    font-size:clamp(40px,4.8vw,68px);
    line-height:1.03;
    letter-spacing:0;
    font-weight:950;
}

.sl-hero-lede{
    margin:0;
    color:rgba(255,255,255,.84);
    font-size:19px;
    line-height:1.8;
    max-width:590px;
}

.sl-hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.sl-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:50px;
    padding:0 22px;
    border-radius:6px;
    font-weight:900;
    letter-spacing:.04em;
    transition:transform .2s ease,background .2s ease,border-color .2s ease;
}

.sl-btn:hover{
    transform:translateY(-2px);
}

.sl-btn-primary{
    background:var(--sl-red-2);
    color:#fff;
    box-shadow:0 18px 32px rgba(217,31,60,.28);
}

.sl-btn-ghost{
    color:#fff;
    border:1px solid rgba(255,255,255,.5);
    background:rgba(255,255,255,.08);
}

.sl-hero-badges{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-top:42px;
    max-width:720px;
}

.sl-hero-badges span{
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    padding:12px 10px;
    color:rgba(255,255,255,.92);
    font-weight:850;
    text-align:center;
    backdrop-filter:blur(8px);
}

.sl-hero-note{
    position:absolute;
    left:54px;
    bottom:30px;
    z-index:3;
    color:rgba(255,255,255,.66);
    font-size:13px;
}

.sl-proof-strip{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    margin:0 0 34px;
    background:var(--sl-ink);
    color:#fff;
    box-shadow:var(--sl-shadow);
}

.sl-proof-item{
    min-height:116px;
    padding:24px 24px 20px;
    background:linear-gradient(135deg,#101621,#1d2635);
}

.sl-proof-num{
    color:#ffd978;
    font-size:30px;
    line-height:1;
    font-weight:950;
}

.sl-proof-label{
    margin-top:10px;
    font-size:15px;
    font-weight:850;
}

.sl-proof-desc{
    margin-top:6px;
    color:rgba(255,255,255,.62);
    font-size:13px;
    line-height:1.55;
}

.hero{
    margin:0 0 34px!important;
}

.banner{
    border-radius:8px!important;
    border:1px solid var(--sl-line);
    box-shadow:var(--sl-shadow)!important;
}

.banner-item img{
    aspect-ratio:16/5.6!important;
}

.section{
    margin-bottom:42px!important;
}

.section-card{
    background:transparent!important;
    border-radius:0!important;
    padding:0!important;
    box-shadow:none!important;
}

.section-head{
    align-items:end!important;
    margin-bottom:18px!important;
}

.section-title{
    font-size:34px!important;
    color:var(--sl-ink)!important;
    letter-spacing:0;
}

.section-sub{
    margin-top:8px;
    color:var(--sl-muted)!important;
    font-size:16px!important;
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr)!important;
    gap:12px!important;
}

.category-item{
    display:flex!important;
    align-items:center;
    gap:12px;
    min-height:96px;
    padding:14px!important;
    text-align:left!important;
    border-radius:8px!important;
    border:1px solid var(--sl-line)!important;
    background:rgba(255,255,255,.82)!important;
    box-shadow:0 12px 26px rgba(16,22,33,.06);
}

.category-item:hover{
    transform:translateY(-4px)!important;
    border-color:rgba(159,29,51,.32)!important;
}

.category-item img{
    width:64px!important;
    height:64px!important;
    margin:0!important;
    border-radius:8px!important;
}

.category-item span{
    min-height:0!important;
    color:var(--sl-ink)!important;
    font-weight:900;
}

.sl-craft-section{
    display:grid;
    grid-template-columns:1.02fr .98fr;
    gap:28px;
    align-items:stretch;
    margin:0 0 44px;
}

.sl-craft-copy{
    min-height:420px;
    padding:46px;
    color:#fff;
    background:linear-gradient(135deg,#111722,#67192c);
}

.sl-eyebrow{
    color:#ffd978;
    font-weight:950;
    letter-spacing:.12em;
    font-size:13px;
}

.sl-craft-copy h2,
.sl-scene-copy h2{
    margin:12px 0 16px;
    font-size:clamp(32px,4vw,54px);
    line-height:1.08;
    letter-spacing:0;
}

.sl-craft-copy p,
.sl-scene-copy p{
    margin:0;
    color:rgba(255,255,255,.78);
    font-size:17px;
    line-height:1.85;
}

.sl-craft-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-top:30px;
}

.sl-craft-list span{
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.08);
    padding:13px 14px;
    font-weight:850;
}

.sl-craft-image{
    min-height:420px;
    background:#f4ead8 url("/static/index/home2026/home2026-craft.webp") center/cover no-repeat;
    border:1px solid var(--sl-line);
    box-shadow:var(--sl-shadow);
}

.sl-scene-banner{
    position:relative;
    min-height:420px;
    margin:0 0 46px;
    overflow:hidden;
    background:#111722 url("/static/index/home2026/home2026-scenes.webp") center/cover no-repeat;
    box-shadow:var(--sl-shadow);
}

.sl-scene-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(10,14,21,.78) 0,rgba(10,14,21,.26) 55%,rgba(10,14,21,.08));
}

.sl-scene-copy{
    position:relative;
    z-index:2;
    width:min(560px,52%);
    padding:50px 44px;
    color:#fff;
}

.sl-scene-tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:28px;
}

.sl-scene-tags span{
    padding:9px 12px;
    color:#fff;
    border:1px solid rgba(255,255,255,.28);
    background:rgba(255,255,255,.1);
    font-weight:850;
}

.tabs{
    display:flex!important;
    flex-wrap:wrap;
    gap:12px!important;
}

.tab-panel{
    display:none;
}

.tab-panel.active{
    display:block;
}

.tab-btn{
    border:1px solid var(--sl-line)!important;
    border-radius:6px!important;
    padding:12px 20px!important;
    background:#fff!important;
    color:var(--sl-ink)!important;
}

.tab-btn.active{
    background:var(--sl-ink)!important;
    color:#fff!important;
    border-color:var(--sl-ink)!important;
}

.goods-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr))!important;
    gap:18px!important;
}

.goods-card{
    position:relative;
    border:1px solid var(--sl-line)!important;
    border-radius:8px!important;
    background:#fff!important;
    box-shadow:0 14px 30px rgba(16,22,33,.07);
    overflow:hidden;
}

.goods-card:hover{
    transform:translateY(-5px)!important;
    box-shadow:0 22px 42px rgba(16,22,33,.14)!important;
}

.goods-thumb{
    background:#f6f1e8!important;
}

.goods-thumb img{
    aspect-ratio:1/1!important;
    transition:transform .38s ease;
}

.goods-card:hover .goods-thumb img{
    transform:scale(1.04);
}

.goods-tag{
    border-radius:4px!important;
    background:var(--sl-red)!important;
    letter-spacing:.08em;
}

.goods-body{
    padding:16px!important;
}

.goods-title{
    color:var(--sl-ink)!important;
    font-size:16px!important;
    min-height:48px!important;
    line-height:1.48!important;
}

.goods-keywords{
    min-height:40px!important;
    color:var(--sl-muted)!important;
}

.goods-sold{
    display:inline-flex;
    width:max-content;
    padding:5px 8px;
    background:#f5efe2;
    color:#85602d!important;
    font-weight:800;
}

.old-price{
    color:#9b9388!important;
}

.sale-price{
    color:var(--sl-red-2)!important;
    font-size:26px!important;
}

.buy-btn{
    border-radius:6px!important;
    background:var(--sl-red)!important;
    padding:13px 14px!important;
    letter-spacing:.06em;
}

.buy-btn:hover{
    background:var(--sl-ink)!important;
}

.footer{
    background:#0d1118!important;
    color:#fff!important;
}

.footer-inner{
    padding:34px 16px 96px!important;
}

.footer-desc{
    color:rgba(255,255,255,.78)!important;
}

.mobile-bar{
    border-top:1px solid rgba(16,22,33,.08)!important;
    box-shadow:0 -12px 28px rgba(16,22,33,.1)!important;
}

.mobile-bar a{
    color:var(--sl-ink)!important;
    font-weight:850;
}

.mobile-bar a:first-child{
    color:var(--sl-red)!important;
}

.sl-reveal{
    opacity:0;
    transform:translateY(22px);
    transition:opacity .55s ease,transform .55s ease;
}

.sl-reveal.is-visible{
    opacity:1;
    transform:none;
}

@media (max-width:1180px){
    .sl-home-hero{
        min-height:580px;
    }

    .sl-hero-copy{
        width:min(600px,64%);
        padding:56px 38px 42px;
    }

    .sl-proof-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .category-grid{
        grid-template-columns:repeat(3,1fr)!important;
    }

    .goods-grid{
        grid-template-columns:repeat(3,minmax(0,1fr))!important;
    }
}

@media (max-width:768px){
    body{
        padding-bottom:64px;
    }

    .container{
        padding:0 12px!important;
    }

    .topbar{
        font-size:12px!important;
        line-height:1.45;
        letter-spacing:.04em;
    }

    .header{
        padding:8px 0;
    }

    .header-box{
        padding:9px 10px!important;
    }

    .header-main{
        flex-wrap:wrap;
        gap:8px!important;
    }

    .logo{
        flex:1 0 100%!important;
        min-width:0!important;
        justify-content:center;
    }

    .search-row{
        flex:0 0 calc(100vw - 44px)!important;
        width:calc(100vw - 44px);
        max-width:100%;
        overflow:hidden;
    }

    .search-form{
        width:100%;
        max-width:100%;
    }

    .brand-wordmark{
        font-size:16px;
    }

    .brand-wordmark em{
        font-size:9px;
        letter-spacing:.08em;
    }

    .search-form{
        height:42px;
    }

    .search-form input{
        height:42px!important;
        padding:0 10px!important;
        font-size:13px!important;
    }

    .search-form button{
        min-width:64px;
        flex-basis:64px;
        height:42px!important;
        padding:0 10px!important;
        font-size:13px!important;
        border-radius:0 6px 6px 0;
    }

    .sl-home-hero{
        min-height:650px;
        margin-top:6px;
        background-image:url("/static/index/home2026/home2026-hero-mobile.webp");
        background-position:center bottom;
    }

    .sl-home-hero::before{
        background:linear-gradient(180deg,rgba(9,13,20,.94) 0%,rgba(9,13,20,.66) 48%,rgba(9,13,20,.24) 100%);
    }

    .sl-hero-copy{
        width:100%;
        padding:28px 18px 24px;
    }

    .sl-home-hero h1{
        font-size:42px;
        line-height:1.05;
        margin:18px 0 12px;
    }

    .sl-hero-lede{
        font-size:15px;
        line-height:1.75;
        max-width:100%;
    }

    .sl-hero-actions{
        gap:9px;
        margin-top:20px;
    }

    .sl-btn{
        min-height:44px;
        padding:0 14px;
        font-size:14px;
    }

    .sl-hero-badges{
        grid-template-columns:repeat(2,1fr);
        margin-top:20px;
        max-width:100%;
    }

    .sl-hero-badges span{
        padding:9px 8px;
        font-size:13px;
    }

    .sl-hero-note{
        left:18px;
        bottom:16px;
        font-size:12px;
    }

    .sl-proof-strip{
        grid-template-columns:repeat(2,1fr);
        margin-bottom:26px;
    }

    .sl-proof-item{
        min-height:108px;
        padding:18px 14px;
    }

    .sl-proof-num{
        font-size:25px;
    }

    .sl-proof-label{
        font-size:14px;
    }

    .sl-proof-desc{
        font-size:12px;
    }

    .banner-item img{
        aspect-ratio:16/8!important;
    }

    .section{
        margin-bottom:30px!important;
    }

    .section-title{
        font-size:26px!important;
    }

    .section-sub{
        font-size:14px!important;
    }

    .category-grid{
        display:flex!important;
        gap:10px!important;
        overflow-x:auto;
        padding-bottom:8px;
        scroll-snap-type:x mandatory;
    }

    .category-item{
        flex:0 0 178px;
        min-height:86px;
        scroll-snap-align:start;
    }

    .category-item img{
        width:54px!important;
        height:54px!important;
    }

    .sl-craft-section{
        grid-template-columns:1fr;
        gap:12px;
        margin-bottom:30px;
    }

    .sl-craft-copy{
        min-height:0;
        padding:28px 18px;
    }

    .sl-craft-copy h2,
    .sl-scene-copy h2{
        font-size:32px;
    }

    .sl-craft-copy p,
    .sl-scene-copy p{
        font-size:15px;
    }

    .sl-craft-list{
        grid-template-columns:1fr 1fr;
        gap:8px;
        margin-top:20px;
    }

    .sl-craft-list span{
        padding:10px 9px;
        font-size:13px;
    }

    .sl-craft-image{
        min-height:260px;
    }

    .sl-scene-banner{
        min-height:520px;
        background-position:center;
        margin-bottom:34px;
    }

    .sl-scene-banner::before{
        background:linear-gradient(180deg,rgba(10,14,21,.88),rgba(10,14,21,.42) 58%,rgba(10,14,21,.2));
    }

    .sl-scene-copy{
        width:100%;
        padding:28px 18px;
    }

    .goods-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
        gap:12px!important;
    }

    .goods-body{
        padding:11px!important;
    }

    .goods-title{
        font-size:14px!important;
        min-height:42px!important;
    }

    .goods-keywords{
        display:none;
    }

    .sale-price{
        font-size:20px!important;
    }

    .buy-btn{
        padding:11px 8px!important;
        font-size:13px!important;
    }
}

@media (max-width:420px){
    .sl-home-hero h1{
        font-size:36px;
    }

    .sl-proof-strip{
        grid-template-columns:1fr;
    }

    .goods-grid{
        gap:10px!important;
    }
}

/* Coach-style luxury commerce override */
body{
    background:#fff!important;
    color:#000!important;
}

body::before{
    display:none!important;
}

.topbar{
    background:#000!important;
    color:#fff!important;
    padding:11px 12px!important;
    font-size:13px!important;
    letter-spacing:.04em!important;
}

.header{
    position:sticky!important;
    top:0;
    z-index:90!important;
    padding:0!important;
    background:#fff!important;
    border-bottom:1px solid #e8e8e8;
    backdrop-filter:none!important;
}

.header.is-scrolled{
    box-shadow:0 10px 24px rgba(0,0,0,.06)!important;
}

.header-box{
    max-width:1320px;
    margin:0 auto;
    padding:14px 16px 0!important;
    border:0!important;
    border-radius:0!important;
    background:#fff!important;
    box-shadow:none!important;
}

.header-main{
    position:relative;
    justify-content:center;
    min-height:50px;
}

.logo{
    flex:0 0 auto!important;
    justify-content:center!important;
}

.brand-wordmark{
    align-items:center;
    font-size:28px!important;
    color:#000!important;
    letter-spacing:.03em!important;
}

.brand-wordmark em{
    color:#000!important;
    font-size:11px!important;
    letter-spacing:.22em!important;
}

.search-row{
    position:absolute;
    right:0;
    top:4px;
    width:330px;
    max-width:32vw;
}

.search-form{
    width:100%;
    height:40px!important;
    border:1px solid #d9d9d9!important;
    border-radius:0!important;
    background:#fff!important;
    box-shadow:none!important;
}

.search-form input{
    height:40px!important;
    padding:0 12px!important;
    font-size:14px!important;
}

.search-form button{
    height:40px!important;
    min-width:72px!important;
    border-radius:0!important;
    background:#000!important;
    color:#fff!important;
    font-size:14px!important;
}

.sl-coach-nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:42px;
    min-height:58px;
    margin-top:12px;
    border-top:1px solid #ededed;
    overflow-x:auto;
    white-space:nowrap;
    scrollbar-width:none;
}

.sl-coach-nav::-webkit-scrollbar{
    display:none;
}

.sl-coach-nav a{
    color:#000!important;
    font-size:16px;
    font-weight:850;
    line-height:58px;
    border-bottom:3px solid transparent;
}

.sl-coach-nav a:hover{
    border-bottom-color:#000;
}

.sl-home-hero{
    left:50%;
    width:100vw;
    margin:0 0 48px -50vw!important;
    min-height:660px!important;
    background:#111 url("/static/index/home2026/home2026-coach-hero.webp") center/cover no-repeat!important;
    box-shadow:none!important;
}

.sl-home-hero::before{
    background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.16) 45%,rgba(0,0,0,.58) 100%)!important;
}

.sl-hero-copy{
    width:min(860px,92%)!important;
    margin:0 auto;
    padding:386px 24px 48px!important;
    text-align:center;
}

.sl-kicker{
    border:1px solid rgba(255,255,255,.74)!important;
    background:rgba(0,0,0,.18)!important;
    color:#fff!important;
}

.sl-home-hero h1{
    margin:22px 0 10px!important;
    font-size:clamp(38px,4.6vw,60px)!important;
    line-height:1.12!important;
}

.sl-hero-lede{
    max-width:760px!important;
    margin:0 auto!important;
    color:rgba(255,255,255,.92)!important;
}

.sl-hero-actions{
    justify-content:center!important;
    margin-top:28px!important;
}

.sl-btn{
    border-radius:0!important;
    min-width:160px;
    background:transparent!important;
    color:#fff!important;
    border:1px solid #fff!important;
    box-shadow:none!important;
}

.sl-btn:hover{
    background:#fff!important;
    color:#000!important;
}

.sl-hero-badges,
.sl-hero-note{
    display:none!important;
}

.sl-proof-strip{
    margin:0 auto 54px!important;
    max-width:1320px;
    background:#fff!important;
    color:#000!important;
    box-shadow:none!important;
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
}

.sl-proof-item{
    background:#fff!important;
    border-right:1px solid #e6e6e6;
    text-align:center;
}

.sl-proof-num{
    color:#000!important;
}

.sl-proof-desc{
    color:#666!important;
}

.sl-promo-banner{
    position:relative;
    min-height:250px;
    margin:0 0 58px;
    background:#ffc9d5 url("/static/index/home2026/home2026-coach-promo.webp") center/cover no-repeat;
    overflow:hidden;
}

.sl-promo-copy{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:#000;
    min-width:320px;
}

.sl-promo-title{
    font-size:34px;
    font-weight:950;
}

.sl-promo-copy p{
    margin:10px 0 18px;
    font-size:17px;
}

.sl-promo-copy a{
    display:inline-flex;
    min-height:42px;
    align-items:center;
    justify-content:center;
    padding:0 28px;
    border:1px solid #000;
    color:#000;
    font-weight:900;
}

.section-title{
    color:#000!important;
    font-size:32px!important;
    text-align:center;
}

.section-sub{
    text-align:center;
    color:#666!important;
}

.section-head{
    justify-content:center!important;
}

.category-grid{
    gap:18px!important;
}

.category-item{
    min-height:88px!important;
    border:1px solid #e5e5e5!important;
    background:#fff!important;
    box-shadow:none!important;
}

.category-item:hover{
    border-color:#000!important;
    transform:none!important;
}

.sl-craft-section{
    grid-template-columns:1fr 1fr!important;
    gap:28px!important;
    margin-bottom:58px!important;
}

.sl-craft-copy{
    background:#f6f1ea!important;
    color:#000!important;
    text-align:center;
}

.sl-eyebrow{
    color:#000!important;
}

.sl-craft-copy p{
    color:#333!important;
}

.sl-craft-list span{
    border-color:#000!important;
    background:#fff!important;
    color:#000!important;
}

.sl-craft-image,
.sl-scene-banner{
    box-shadow:none!important;
    border:0!important;
}

.sl-scene-banner{
    min-height:500px!important;
    margin-bottom:58px!important;
}

.sl-scene-banner::before{
    background:linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.48))!important;
}

.sl-scene-copy{
    width:min(760px,92%)!important;
    margin:0 auto;
    padding:300px 24px 42px!important;
    text-align:center;
}

.sl-scene-copy p{
    margin:0 auto!important;
    color:rgba(255,255,255,.9)!important;
}

.sl-scene-tags{
    justify-content:center;
}

.tabs{
    justify-content:center;
}

.tab-btn{
    border:0!important;
    border-bottom:3px solid transparent!important;
    border-radius:0!important;
    background:#fff!important;
    color:#777!important;
}

.tab-btn.active{
    background:#fff!important;
    color:#000!important;
    border-bottom-color:#000!important;
}

.goods-card{
    border:0!important;
    border-radius:0!important;
    box-shadow:none!important;
}

.goods-card:hover{
    transform:none!important;
    box-shadow:none!important;
}

.goods-thumb{
    background:#f7f7f7!important;
}

.goods-body{
    text-align:center;
}

.goods-title{
    color:#000!important;
}

.goods-sold{
    margin:0 auto;
    background:#fff!important;
    color:#777!important;
}

.sale-price{
    color:#000!important;
}

.buy-btn{
    border:1px solid #000;
    border-radius:0!important;
    background:#000!important;
}

.footer{
    background:#000!important;
}

@media (max-width:900px){
    .header-box{
        padding:10px 12px 0!important;
    }

    .header-main{
        flex-wrap:wrap;
    }

    .logo{
        flex:1 0 100%!important;
    }

    .brand-wordmark{
        font-size:19px!important;
    }

    .brand-wordmark em{
        font-size:10px!important;
    }

    .search-row{
        position:static;
        flex:0 0 calc(100vw - 24px)!important;
        width:calc(100vw - 24px)!important;
        max-width:calc(100vw - 24px)!important;
        margin-top:8px;
        overflow:hidden;
    }

    .search-form{
        display:block!important;
        position:relative;
        width:calc(100vw - 24px)!important;
        max-width:calc(100vw - 24px)!important;
        overflow:hidden;
    }

    .search-form input{
        width:calc(100% - 64px)!important;
        max-width:calc(100% - 64px)!important;
    }

    .search-form button{
        position:absolute;
        right:0;
        top:0;
        width:64px!important;
        min-width:64px!important;
        padding:0!important;
    }

    .sl-coach-nav{
        justify-content:flex-start;
        gap:26px;
        min-height:48px;
        margin-top:8px;
        padding:0 4px;
    }

    .sl-coach-nav a{
        line-height:48px;
        font-size:14px;
    }

    .sl-home-hero{
        min-height:640px!important;
        background-image:url("/static/index/home2026/home2026-coach-hero-mobile.webp")!important;
        background-position:center top!important;
    }

    .sl-home-hero::before{
        background:linear-gradient(180deg,rgba(0,0,0,.04),rgba(0,0,0,.2) 42%,rgba(0,0,0,.68) 100%)!important;
    }

    .sl-hero-copy{
        padding:350px 18px 36px!important;
    }

    .sl-home-hero h1{
        font-size:34px!important;
    }

    .sl-hero-lede{
        font-size:15px!important;
        line-height:1.75!important;
        word-break:break-word;
    }

    .sl-btn{
        min-width:132px;
        min-height:44px!important;
    }

    .sl-proof-strip{
        grid-template-columns:repeat(2,1fr)!important;
        margin-bottom:34px!important;
    }

    .sl-promo-banner{
        min-height:280px;
        background-position:center;
    }

    .sl-promo-title{
        font-size:28px;
    }

    .category-grid{
        display:flex!important;
        overflow-x:auto;
        gap:10px!important;
        padding-bottom:8px;
    }

    .category-item{
        flex:0 0 178px;
    }

    .sl-craft-section{
        grid-template-columns:1fr!important;
        gap:0!important;
    }

    .sl-craft-copy{
        padding:34px 22px!important;
    }

    .sl-scene-banner{
        min-height:520px!important;
    }

    .sl-scene-copy{
        padding:300px 18px 34px!important;
    }
}

@media (max-width:520px){
    .topbar{
        font-size:12px!important;
    }

    .sl-coach-nav{
        gap:22px;
    }

    .sl-home-hero{
        min-height:620px!important;
    }

    .sl-hero-copy{
        width:100%!important;
        padding:318px 20px 36px!important;
    }

    .sl-home-hero h1{
        font-size:30px!important;
        line-height:1.14!important;
    }

    .sl-hero-lede{
        max-width:340px!important;
        font-size:14px!important;
        line-height:1.65!important;
    }

    .sl-hero-actions{
        display:grid!important;
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:10px!important;
        width:100%;
        max-width:296px;
        margin-left:auto!important;
        margin-right:auto!important;
    }

    .sl-btn{
        width:100%;
        min-width:0;
        padding:0 10px!important;
    }

    .sl-proof-strip{
        grid-template-columns:repeat(2,1fr)!important;
    }

    .sl-proof-item{
        padding:18px 10px!important;
    }

    .sl-proof-label{
        font-size:13px!important;
        line-height:1.35!important;
        white-space:normal!important;
        word-break:keep-all;
        overflow-wrap:anywhere;
    }

    .sl-proof-desc{
        display:none!important;
    }

    .goods-grid{
        grid-template-columns:repeat(2,minmax(0,1fr))!important;
    }
}
