@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&family=Oswald:wght@500;700&family=Noto+Sans+JP:wght@400;700;900&display=swap');

body.shop, body {
    background-color: #050505 !important;
    color: #f0f0f0 !important;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif !important;
    -webkit-font-smoothing: antialiased;
}

a { color: #f0f0f0; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); }
a:hover { color: #ccff00; text-decoration: none; }
.mainHeaderNavColor { color: #f0f0f0 !important; font-family: 'Oswald', sans-serif; font-weight: 700; letter-spacing: 1px; }
.mainHeaderNavColor:hover { color: #ccff00 !important; }

body.shop #mainHeader {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 9999;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    margin: 0;
    box-sizing: border-box;
    border-bottom: 1px solid rgba(204, 255, 0, 0.3);
}
body.shop { padding-top: 70px; }

body.shop #shopHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0;
}
body.shop #shopHeader h1 { margin: 0; display: flex; align-items: center; }
body.shop #shopHeader h1 a {
    color: #ffffff !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    font-size: 28px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
body.shop #shopHeader h1 a img {
    max-height: 45px;
    width: auto;
    vertical-align: middle;
}

body.shop #shopHeader nav { border: none; margin: 0; }
@media(min-width: 769px) {
    body.shop #shopHeader nav ul { display: flex; align-items: center; gap: 20px; flex-wrap: nowrap; margin: 0; }
    body.shop #shopHeader nav ul li { width: auto; height: auto; padding: 0; }
    body.shop #shopHeader nav ul li a { padding: 5px 0; font-size: 14px; position: relative; white-space: nowrap; display: block; }
    body.shop #shopHeader nav ul li:hover { border-bottom: none; height: auto; }

    body.shop #shopHeader nav ul li a::after {
        content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
        background-color: #ccff00; transition: width 0.3s ease;
    }
    body.shop #shopHeader nav ul li a:hover::after { width: 100%; }

    body.shop #shopHeader nav ul li.itemSearch { padding: 0; width: auto; }
    body.shop #shopHeader nav ul li.itemSearch form { position: relative; display: flex; align-items: center; padding: 0; height: auto; width: auto; border-bottom: 1px solid rgba(255,255,255,0.2); }
    body.shop #shopHeader nav ul li.itemSearch form input { background: transparent; color: #fff; padding: 5px 30px 5px 5px; position: relative; border: none; width: 150px; }
    body.shop #shopHeader nav ul li.itemSearch form .itemSearch__btn { position: absolute; right: 0; }
}

.work-world-hero {
    position: relative;
    width: 100%;
    box-sizing: border-box;
    height: 85vh;
    min-height: 600px;
    background-image: url("https://basefile.akamaized.net/workw-base-shop/69f5790825621/work_world_hero_2.jpg");
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 5%;
    margin-bottom: 80px;
    overflow: hidden;
}
.work-world-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-left: 5%;
}
.hero-badge {
    display: inline-block;
    background-color: #ccff00;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    padding: 5px 15px;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    transform: skewX(-15deg);
}
.hero-badge span { display: block; transform: skewX(15deg); }
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 8vw, 90px);
    color: #ffffff;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.0;
    text-transform: uppercase;
}
.hero-subtitle {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
    letter-spacing: 1px;
    font-weight: 700;
    border-left: 4px solid #ccff00;
    padding-left: 20px;
}
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 50px;
    background-color: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
}
.hero-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.hero-btn:hover svg { transform: translateX(4px); }
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: #ccff00;
    transition: all 0.3s ease;
    z-index: -1;
}
.hero-btn:hover { color: #000 !important; border-color: #ccff00; }
.hero-btn:hover::before { left: 0; }

.work-world-concept {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    margin: 0 auto 80px;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.concept-text { flex: 1; min-width: 300px; padding-right: 5%; }
.concept-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 4px;
    font-weight: 700;
    text-transform: uppercase;
}
.concept-text h3 span { color: #ccff00; }
.concept-text p {
    font-size: 16px;
    line-height: 2.0;
    color: #999;
    margin-bottom: 30px;
}
.concept-kobasyo {
    flex: 0 1 400px;
    background: #111;
    padding: 40px;
    border-left: 4px solid #ccff00;
}
.concept-kobasyo h4 { font-family: 'Oswald', sans-serif; font-size: 14px; color: #ccff00; margin-bottom: 15px; letter-spacing: 2px;}
.concept-kobasyo p { font-size: 14px; color: #ccc; line-height: 1.8; }
.concept-kobasyo a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-weight: bold;
    text-decoration: underline;
}
.concept-kobasyo a svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

.titleForSearchResult { font-family: 'Oswald', sans-serif; letter-spacing: 2px; }

body#shopTopPage .itemList { padding-top: 20px; }
body#shopTopPage .item {
    background: transparent;
    border: none;
    overflow: visible;
    position: relative;
    padding: 0;
    margin-bottom: 60px;
}
body#shopTopPage .item .itemImg {
    background: #111;
    overflow: hidden;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
body#shopTopPage .item:hover .itemImg {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}
body#shopTopPage .item .itemImg img.image-resize { transition: transform 0.6s ease; }
body#shopTopPage .item:hover .itemImg img.image-resize { transform: scale(1.08); }

body#shopTopPage .item .itemTitle { text-align: left; margin: 20px 0 10px; }
body#shopTopPage .item a .itemTitle h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
body#shopTopPage .item .itemDetail .itemPrice {
    color: #ccff00;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    letter-spacing: 1px;
}

body#shopDetailPage {
    background-color: #050505 !important;
    color: #f0f0f0 !important;
}

body#shopDetailPage #mainContent {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 40px;
    background-color: transparent !important;
    color: #f0f0f0 !important;
}

body#shopDetailPage #mainContent > header {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

body#shopDetailPage header h1.itemTitle {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    border: none;
}

body#shopDetailPage #mainContent > .item {
    width: 55%;
    padding-right: 40px;
    box-sizing: border-box;
    background: transparent;
    border: none;
}

body#shopDetailPage .itemImg {
    width: 100%;
    max-width: 100%;
    background: transparent;
    padding: 0;
    margin-bottom: 40px;
    box-sizing: border-box;
    border: none;
}

body#shopDetailPage #slideImg .imgBox img {
    border: 1px solid rgba(255,255,255,0.1);
    width: 100%;
    height: auto;
}

body#shopDetailPage .itemDescription {
    color: #cccccc;
    line-height: 1.8;
    font-size: 15px;
}

body#shopDetailPage #mainContent > .purchase {
    width: 45%;
    box-sizing: border-box;
    margin: 0 !important;
    position: sticky;
    top: 40px;
    z-index: 10000;
}

body#shopDetailPage .itemPrice h2 {
    font-family: 'Oswald', sans-serif;
    color: #ccff00 !important;
    font-size: 42px !important;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

body#shopDetailPage #purchase_form {
    background: #0a0a0a;
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 20px;
}

body#shopDetailPage #purchase_form label {
    color: #ffffff !important;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

body#shopDetailPage #purchase_form select,
body#shopDetailPage #purchase_form input {
    background-color: #1a1a1a !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    padding: 12px !important;
    border-radius: 4px !important;
    width: 100% !important;
    box-sizing: border-box;
}

body#shopDetailPage #purchase_form .btn {
    display: block;
    width: 100%;
    padding: 20px;
    background-color: #ccff00;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
}

body#shopDetailPage #purchase_form .btn:hover {
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4);
    transform: translateY(-2px);
}

body#shopDetailPage .itemAttention,
body#shopDetailPage #itemAttention {
    color: #aaa;
    line-height: 1.8;
    margin-top: 20px;
    font-size: 13px;
    background: #111;
    padding: 20px;
    border-left: 4px solid #ccff00;
}

body#shopDetailPage .attention { color: #ccc; }

@media (max-width: 768px) {
    body#shopDetailPage #mainContent { flex-direction: column; }
    body#shopDetailPage #mainContent > .item,
    body#shopDetailPage #mainContent > .purchase {
        width: 100%;
        padding-right: 0;
    }
}

body.shop #about {
    max-width: 800px;
    margin: 60px auto 100px;
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
}

body.shop #about h2 {
    font-family: 'Oswald', sans-serif;
    color: #ccff00;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

body.shop #about p {
    color: #f0f0f0;
    line-height: 2;
    font-size: 16px;
    margin-bottom: 40px;
    text-align: left;
    white-space: pre-wrap;
}

body.shop #about .social ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body.shop #about .social ul li {
    transition: transform 0.3s ease;
}

body.shop #about .social ul li:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 0 10px rgba(204, 255, 0, 0.5));
}

body.shop #about .social ul li img {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    body.shop #about { margin: 40px 5%; padding: 30px 20px; }
}

.childCategoryList01_child,
.childCategoryList01_link,
.appsItemCategoryTag_lowerLink,
.categoryTitle01,
.footerNav,
#openIllegalReport {
    color: #f0f0f0 !important;
    transition: color 0.3s ease;
}

.childCategoryList01_link:hover,
.appsItemCategoryTag_lowerLink:hover,
.footerNav:hover,
#openIllegalReport:hover {
    color: #ccff00 !important;
    text-decoration: none;
}

body.shop #mainFooter {
    color: #aaa;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 80px;
}

body.shop #shopHeader nav ul li.itemSearch form input::placeholder {
    color: rgba(255,255,255,0.6);
}

body.shop #law, body.shop .law,
body.shop #privacy, body.shop .privacy,
body.shop #contact, body.shop .contact,
body.shop #blog, body.shop .blog {
    max-width: 800px;
    margin: 60px auto 100px;
    background-color: #0a0a0a !important;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 50px 40px;
    border-radius: 4px;
    color: #f0f0f0 !important;
}

body.shop #law h2, body.shop .law h2,
body.shop #privacy h2, body.shop .privacy h2,
body.shop #contact h2, body.shop .contact h2,
body.shop #blog h2, body.shop .blog h2 {
    font-family: 'Oswald', sans-serif;
    color: #ccff00 !important;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

body.shop #law h3, body.shop .law h3,
body.shop #privacy h3, body.shop .privacy h3,
body.shop #contact h3, body.shop .contact h3 {
    color: #ccff00 !important;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 10px;
}

body.shop #law p, body.shop .law p,
body.shop #privacy p, body.shop .privacy p,
body.shop #contact p, body.shop .contact p,
body.shop #law div, body.shop .law div,
body.shop #privacy div, body.shop .privacy div,
body.shop #contact div, body.shop .contact div {
    color: #f0f0f0 !important;
    line-height: 1.8;
    background-color: transparent !important;
}

@media (max-width: 768px) {
    body.shop #law, body.shop .law,
    body.shop #privacy, body.shop .privacy,
    body.shop #contact, body.shop .contact,
    body.shop #blog, body.shop .blog {
        margin: 40px 5%; padding: 30px 20px;
    }
}

body.shop #category-menu .category-list ul,
body.shop .appsItemCategoryTag_lowerchild {
    background-color: #111 !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8) !important;
    border-radius: 4px !important;
    padding: 0 !important;
}

@media (min-width: 769px) {
    body.shop .appsItemCategoryTag_lowerchild {
        z-index: 10000 !important;
    }
}

body.shop #category-menu .category-list ul li,
body.shop .appsItemCategoryTag_child,
body.shop .appsItemCategoryTag_lowerchild li {
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

body.shop #category-menu .category-list ul li:last-child,
body.shop .appsItemCategoryTag_child:last-child,
body.shop .appsItemCategoryTag_lowerchild li:last-child {
    border-bottom: none !important;
}

body.shop #category-menu .category-list ul li a,
body.shop .appsItemCategoryTag_child a,
body.shop .appsItemCategoryTag_lowerLink {
    color: #f0f0f0 !important;
    transition: all 0.3s ease;
    background-color: transparent !important;
    padding: 12px 20px !important;
}

body.shop #category-menu:hover .category-list ul li:hover,
body.shop .appsItemCategoryTag_child:hover,
body.shop .appsItemCategoryTag_lowerchild li:hover,
body.shop #category-menu:hover .category-list ul li:hover > a,
body.shop .appsItemCategoryTag_child:hover > a,
body.shop .appsItemCategoryTag_lowerchild li:hover > a {
    background-color: #222 !important;
    color: #ccff00 !important;
    text-decoration: none !important;
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; padding: 15px; }
.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block; background: #fff; height: 2px; width: 24px; border-radius: 2px;
    position: relative; transition: all 0.3s ease;
}
.nav-toggle-label span::before,
.nav-toggle-label span::after { content: ''; position: absolute; }
.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

@media (max-width: 768px) {
    body.shop { padding-top: 60px; overflow-x: hidden; }
    body.shop #mainHeader { padding: 10px 15px; }
    body.shop #shopHeader h1 a img { max-height: 35px; }
    body.shop #shopHeader h1 a { font-size: 18px; position: relative; z-index: 10000; }

    .nav-toggle-label { display: block; position: absolute; right: 15px; top: 15px; z-index: 10002; }
    body.shop #shopHeader nav {
        position: fixed; top: 0; right: -80%; width: 80%; height: 100vh;
        background-color: rgba(5, 5, 5, 0.98);
        transition: right 0.3s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 10001;
        padding-top: 80px;
        border-left: 1px solid rgba(255,255,255,0.1);
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    }
    body.shop #shopHeader nav ul { display: flex; flex-direction: column; align-items: flex-start; padding: 0 20px; gap: 0; }
    body.shop #shopHeader nav ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 0; height: auto; }
    body.shop #shopHeader nav ul li a,
    body.shop #shopHeader nav ul li span.mainHeaderNavColor {
        font-size: 16px; padding: 18px 0; display: block; width: 100%;
        color: #ffffff !important;
    }

    body.shop #shopHeader .nav-toggle:checked ~ nav { right: 0; }
    body.shop #shopHeader .nav-toggle:checked ~ .nav-toggle-label span { background: transparent; }
    body.shop #shopHeader .nav-toggle:checked ~ .nav-toggle-label span::before { bottom: 0; transform: rotate(45deg); }
    body.shop #shopHeader .nav-toggle:checked ~ .nav-toggle-label span::after { top: 0; transform: rotate(-45deg); }

    body.shop #category-menu .category-list,
    body.shop #category-menu:hover .category-list {
        display: block !important;
        padding: 0 !important;
        position: static !important;
    }
    body.shop #category-menu .category-list ul {
        position: static !important; box-shadow: none !important; border: none !important;
        background: transparent !important; margin-left: 15px; padding-bottom: 15px !important;
    }
    body.shop #category-menu .category-list ul li { border-bottom: none !important; }
    body.shop #category-menu .category-list ul li a { padding: 8px 0 !important; font-size: 14px; color: #ccc !important; }
    body.shop #category-menu:hover .category-list ul li a:hover { background: transparent !important; color: #ccff00 !important; }

    .work-world-hero {
        min-height: auto;
        height: auto;
        padding: 60vw 20px 60px;
        background-image: url("https://basefile.akamaized.net/workw-base-shop/69f53a3462e11/work_world_hero.jpg");
        background-size: 100% auto;
        background-attachment: scroll;
        background-position: top center;
        margin-bottom: 40px;
    }
    .hero-title { font-size: 32px; line-height: 1.3; margin-bottom: 15px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 30px; }
    .hero-btn { padding: 15px; font-size: 16px; width: 100%; text-align: center; box-sizing: border-box; }

    .work-world-concept { padding: 40px 20px; margin-bottom: 40px; }
    .concept-text { padding-right: 0; margin-bottom: 40px; }
    .concept-text h3 { font-size: 24px; word-break: keep-all; overflow-wrap: break-word; line-height: 1.5; letter-spacing: 2px; }
    .concept-kobasyo { flex: 1 1 100%; padding: 25px; }

    body#shopTopPage .item { margin-bottom: 40px; }
    body#shopTopPage .item .itemTitle h2 { font-size: 14px; }
    body#shopDetailPage .itemPrice h2 { font-size: 28px !important; }

    body#shopDetailPage #mainContent { padding-top: 20px; }
    body#shopDetailPage header h1.itemTitle { font-size: 22px; }
    body#shopDetailPage #purchase_form { padding: 20px; }
    body#shopDetailPage #purchase_form .btn { padding: 15px; font-size: 16px; }

    body.shop #mainFooter { margin-top: 40px; padding-top: 30px; padding-bottom: 30px; }
    body.shop #mainFooter .footerMenu ul { display: flex; flex-direction: column; gap: 15px; align-items: center; }
    body.shop #mainFooter .footerMenu ul li { margin: 0; text-align: center; }
    body.shop #mainFooter .footerMenu li.boxRight { margin-top: 20px; }
    body.shop #mainFooter .footerMenu li.boxRight div { justify-content: center; }
}

.work-world-features {
    padding: 80px 5%;
    background-color: #050505;
}
.features-header {
    text-align: center;
    margin-bottom: 60px;
}
.features-header .section-label {
    display: inline-block;
    color: #ccff00;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.features-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.feature-card {
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px 30px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
    border-color: #ccff00;
    transform: translateY(-5px);
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: #ccff00;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: #ccff00;
    stroke-width: 1.5;
}
.feature-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    color: #ccff00;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.feature-card p {
    color: #999;
    font-size: 14px;
    line-height: 1.9;
}
.feature-scene-tag {
    display: inline-block;
    background: rgba(204,255,0,0.1);
    color: #ccff00;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 2px;
    margin-top: 15px;
    letter-spacing: 1px;
}

.work-world-faq {
    padding: 80px 5%;
    background-color: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.faq-header {
    text-align: center;
    margin-bottom: 60px;
}
.faq-header .section-label {
    display: inline-block;
    color: #ccff00;
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.faq-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #f0f0f0;
    transition: color 0.3s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: #ccff00; }
.faq-item summary::after { display: none; }
.faq-toggle-icon {
    flex-shrink: 0;
    margin-left: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}
.faq-toggle-icon svg {
    width: 20px;
    height: 20px;
    stroke: #ccff00;
    stroke-width: 2;
}
.faq-item[open] .faq-toggle-icon { transform: rotate(45deg); }
.faq-item[open] summary { color: #ccff00; }
.faq-answer {
    padding: 0 0 25px;
    color: #999;
    line-height: 1.9;
    font-size: 15px;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; gap: 20px; }
    .work-world-features, .work-world-faq { padding: 50px 20px; }
    .faq-item summary { font-size: 15px; }
}

.ww-breadcrumb {
    padding: 14px 40px;
}
.ww-breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ww-breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #666;
    letter-spacing: 0.05em;
}
.ww-breadcrumb li + li::before {
    content: '/';
    margin-right: 6px;
    color: #444;
}
.ww-breadcrumb li a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}
.ww-breadcrumb li a:hover {
    color: #ccff00;
}
.ww-breadcrumb li:last-child span {
    color: #ccc;
}
@media (max-width: 768px) {
    .ww-breadcrumb { padding: 10px 16px; }
    .ww-breadcrumb li { font-size: 11px; }
}

.work-world-new-arrival-header {
    padding: 60px 40px 30px;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid #1e1e1e;
}
.new-arrival-inner .section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: #ccff00;
    background: rgba(204,255,0,0.08);
    border: 1px solid rgba(204,255,0,0.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}
.new-arrival-inner h2 {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 10px;
}
.new-arrival-inner p {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .work-world-new-arrival-header { padding: 40px 20px 20px; }
}

#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #ccff00;
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease, background-color 0.3s ease;
}
#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#back-to-top:hover {
    background-color: #fff;
}
#back-to-top svg {
    width: 22px;
    height: 22px;
    stroke: #000;
    stroke-width: 2.5;
}
@media (max-width: 768px) {
    #back-to-top { bottom: 20px; right: 20px; width: 44px; height: 44px; }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.fade-in-section:nth-child(2) { transition-delay: 0.1s; }
.fade-in-section:nth-child(3) { transition-delay: 0.2s; }

body#shopDetailPage .itemImg {
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
}

body#shopDetailPage .itemImgSlide,
body#shopDetailPage #mainContent .item .bx-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}

body#shopDetailPage #slideImg .imgBox {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    line-height: normal !important;
}

body#shopDetailPage #slideImg .imgBox img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

body#shopDetailPage #slideImgPager {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
    height: auto !important;
    padding: 15px 0 0 0 !important;
    float: none !important;
    box-sizing: border-box !important;
}

body#shopDetailPage #slideImgPager li {
    margin: 0 !important;
    width: calc(20% - 8px) !important;
}

body#shopDetailPage #slideImgPager li+li {
    margin-top: 0 !important;
}

body#shopDetailPage #slideImgPager .smallImgBox {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1/1 !important;
    line-height: normal !important;
    border: 2px solid transparent !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    transition: border-color 0.3s ease !important;
}

body#shopDetailPage #slideImgPager .smallImgBox:hover {
    border-color: #ccff00 !important;
}

body#shopDetailPage #slideImgPager .smallImgBox img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover !important;
}
