﻿:root {
    --bg: #f6f4ef;
    --panel: #f9f7f2;
    --card: #ffffff;
    --ink: #1a1a1a;
    --muted: #5b5f64;
    --line: #d6d3cc;
    --accent: #1f7a3f;
    --accent-dark: #155833;
    --accent-yellow: #f2c230;
    --accent-red: #e45745;
    --accent-soft: #dff1e5;
    --sand: #efe6d8;
    --shadow: 0 16px 40px rgba(18, 28, 22, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: radial-gradient(circle at 10% 10%, #ffffff 0%, #f6f4ef 55%, #ece7df 100%);
    background-color: #f6f4ef;
}

body {
    margin: 0;
    font-family: 'DM Sans', 'Noto Sans SC', sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at 10% 10%, #ffffff 0%, #f6f4ef 55%, #ece7df 100%);
    background-color: #f6f4ef;
}

.mockup-directory {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

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

.brand-eyebrow {
    display: none;
}

.brand-title {
    display: block;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 2.4vw, 34px);
    line-height: 1.05;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
}

@media (min-width: 1400px) {
    .main-nav {
        gap: 34px;
    }
}

.main-nav a {
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--ink);
    border-color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(28, 36, 41, 0.35);
    background: #fff;
    box-shadow: none;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    flex-direction: column;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--accent-dark);
    border-radius: 999px;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

body.sidebar-open .mobile-menu-toggle span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform-origin: center;
}

body.sidebar-open .mobile-menu-toggle span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

body.sidebar-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.sidebar-open .mobile-menu-toggle span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 140;
}

body.sidebar-open .sidebar-overlay {
    opacity: 1;
    pointer-events: auto;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-link,
.chip,
.pill {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(28, 107, 92, 0.2);
}

.btn-secondary {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    color: var(--accent-dark);
    border: 1px solid var(--accent-yellow);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-ghost {
    background: transparent;
    color: var(--accent-dark);
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 12px;
    font-weight: 600;
}

.btn-link {
    background: transparent;
    color: var(--accent-dark);
    font-weight: 700;
    padding: 0;
    text-align: left;
}

.btn-link.is-disabled {
    color: rgba(80, 94, 105, 0.6);
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

.chip {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pill {
    background: var(--accent-soft);
    color: var(--accent-dark);
    font-weight: 700;
    padding: 10px 14px;
    border-radius: 16px;
    text-align: left;
}

.page {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 24px 32px 48px;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}


.sidebar-top,
.sidebar-social {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.sidebar-top p,
.sidebar-social p {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--muted);
}

.sidebar-social {
    display: grid;
    gap: 10px;
}

.sidebar-social h3 {
    margin: 0;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 16px;
}

.sidebar-social p {
    margin: 0;
    line-height: 1.4;
}

.sidebar-section-label {
    margin: 0;
    padding-left: 16px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    justify-items: center;
}

.social-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    padding: 2px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    position: relative;
}

.social-btn:hover {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.6);
}

.social-logo {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 8px 18px rgba(21, 37, 27, 0.12);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.social-logo.facebook,
.social-logo.instagram,
.social-logo.tiktok {
    border-radius: 999px;
}

.social-logo.xiaohongshu {
    border-radius: 12px;
}

.social-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sidebar details {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 14px;
    padding: 8px 14px;
    box-shadow: 0 12px 26px rgba(15, 23, 20, 0.12);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.sidebar details.pet-controls-section {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.sidebar details.pet-controls-section summary {
    display: none;
}

.sidebar details:hover {
    box-shadow: 0 16px 32px rgba(15, 23, 20, 0.16);
    transform: translateY(-1px);
}

.sidebar summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    position: relative;
    padding: 8px 0;
}

.sidebar summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 6px;
    color: var(--accent-dark);
    font-size: 18px;
}

.sidebar details[open] summary::after {
    content: '-';
}

.sidebar ul {
    list-style: none;
    padding: 0 0 12px 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.sidebar ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
}

.sidebar ul a:hover {
    color: var(--accent-dark);
}

.content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 24px;
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 24px;
    padding: 28px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.18), rgba(242, 194, 48, 0.12), rgba(228, 87, 69, 0.12));
    pointer-events: none;
}

.silk-screen-page .hero-card,
.dtf-page .hero-card {
    grid-template-columns: 1fr;
    color: #f7f4ec;
    min-height: 430px;
}

.silk-screen-page .hero-card {
    background: url("SILK%20SCREEN%20123/silk_shirt01.jpg") center/cover no-repeat;
}

.dtf-page .hero-card {
    background: url("png/DTF%20PICTURE.png") center/cover no-repeat;
}

.silk-screen-page .hero-card::before,
.dtf-page .hero-card::before {
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}

.silk-screen-page .hero-text h1,
.silk-screen-page .hero-text p,
.dtf-page .hero-text h1,
.dtf-page .hero-text p {
    color: #f7f4ec;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

.silk-screen-page .breadcrumb,
.dtf-page .breadcrumb {
    color: rgba(247, 244, 236, 0.8);
}

.hero-text {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 12px;
}

.hero-text h1 {
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 34px;
    margin: 0 0 12px;
}

.hero-text p {
    margin: 0 0 18px;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.5;
}

.search-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--panel);
    border-radius: 14px;
    padding: 10px 16px;
    border: 1px solid #e2ded5;
}

.search span {
    font-size: 12px;
    color: var(--muted);
    font-weight: 700;
    text-transform: uppercase;
}

.search input {
    border: none;
    outline: none;
    background: transparent;
    flex: 1;
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-media img {
    width: 100%;
    max-width: 360px;
    height: 100%;
    border-radius: 18px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.hero-art { display: none !important; }

.hero-swatch {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(242, 194, 48, 0.35) 45%, rgba(31, 122, 63, 0.35) 100%);
    border-radius: 50%;
    top: 10px;
    right: 20px;
}

.hero-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.hero-card-mini {
    position: absolute;
    width: 160px;
    height: 120px;
    background: var(--sand);
    border-radius: 18px;
    top: 30px;
    left: 15px;
    box-shadow: var(--shadow);
}

.hero-card-mini.alt {
    width: 140px;
    height: 160px;
    top: auto;
    bottom: 20px;
    right: 30px;
    left: auto;
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
}

.hero-shirt {
    width: 280px;
    max-width: 100%;
    filter: drop-shadow(0 20px 30px rgba(24, 24, 24, 0.2));
}

.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.toolbar span {
    color: var(--muted);
    margin-left: 8px;
    font-size: 13px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.mock-card {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    animation: fadeUp 0.6s ease forwards;
    opacity: 0;
    animation-delay: var(--delay, 0s);
}

.mock-card h3 {
    margin: 0;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 18px;
}

.mock-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

.mock-media {
    height: 150px;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 12px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 11px;
}

.gradient-a { background: linear-gradient(135deg, #2b6b5f 0%, #79b0a0 100%); }
.gradient-b { background: linear-gradient(135deg, #c28f54 0%, #e6c89a 100%); }
.gradient-c { background: linear-gradient(135deg, #427aa1 0%, #87b6d9 100%); }
.gradient-d { background: linear-gradient(135deg, #5b4f7a 0%, #b0a5d8 100%); }
.gradient-e { background: linear-gradient(135deg, #b0584f 0%, #efb2a7 100%); }
.gradient-f { background: linear-gradient(135deg, #1d3d5f 0%, #4a7aa6 100%); }
.gradient-g { background: linear-gradient(135deg, #5f6f4b 0%, #a8b88a 100%); }
.gradient-h { background: linear-gradient(135deg, #6a5c57 0%, #c2b0a8 100%); }

@keyframes fadeUp {
    from {
        transform: translateY(12px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 1100px) {
    .site-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .site-header {
        justify-items: center;
        text-align: center;
        padding: 12px 16px;
    }

    .brand {
        justify-content: center;
        justify-self: center;
        width: 100%;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .mobile-menu-toggle {
        display: inline-flex;
        margin-right: auto;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    .sidebar {
        position: fixed;
        top: var(--header-height, 64px);
        left: 12px;
        bottom: 12px;
        width: min(86vw, 320px);
        padding: 16px 14px 24px;
        background: #fdfbf7;
        border-radius: 18px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
        transform: translateX(-120%);
        transition: transform 0.25s ease;
        z-index: 150;
        overflow-y: auto;
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .page {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: 2;
    }

    .content {
        order: 1;
    }

    .hero-card {
        grid-template-columns: 1fr;
    }

    .hero-art { display: none !important; }
}

@media (min-width: 721px) and (max-width: 1100px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        justify-items: stretch;
        text-align: left;
    }

    .mobile-menu-toggle {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        margin-right: 0;
    }

    .brand {
        width: auto;
        justify-content: flex-start;
        margin-left: 52px;
    }

    .main-nav {
        width: auto;
        justify-content: center;
    }

    .header-actions {
        width: auto;
        justify-content: flex-end;
    }
}

@media (max-width: 720px) {
    .page {
        padding: 16px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .toolbar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.search.is-active {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(28, 107, 92, 0.15);
}




.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.section-head strong {
    font-size: 18px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.section-head span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.section-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip-green {
    border-color: var(--accent);
    color: #000000;
    background: rgba(31, 122, 63, 0.12);
}

.chip-yellow {
    border-color: var(--accent-yellow);
    color: #7a5a00;
    background: rgba(242, 194, 48, 0.14);
}

.chip-red {
    border-color: var(--accent-red);
    color: #7a2b1f;
    background: rgba(228, 87, 69, 0.14);
}

.chip.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.apparel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.apparel-card {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apparel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(20, 30, 25, 0.16);
}

.apparel-card.is-disabled {
    cursor: default;
    transform: none;
}

.apparel-card.is-disabled:hover {
    transform: none;
    box-shadow: var(--shadow);
}

.site-footer {
    margin-top: 48px;
    background: #0c0c0d;
    color: #e6e6e6;
    padding: 40px 32px 28px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 2.15fr);
    gap: 28px;
    align-items: start;
}

.footer-col-map {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: left;
    grid-column: 2;
}

.footer-col-map h4 {
    align-self: flex-start;
    font-size: 14px;
}

.footer-col-map iframe {
    width: min(1100px, 100%);
    height: 340px;
    border: 0;
    display: block;
    margin: 0;
}

.footer-col h4 {
    margin: 0 0 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #ffffff;
}

.footer-col-stack {
    grid-column: 1;
    max-width: none;
    margin: 0;
}

.footer-col-stack h4:not(:first-of-type) {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-col a {
    display: block;
    color: #c9c9c9;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 12px;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-divider {
    max-width: 1200px;
    margin: 24px auto;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}

.footer-newsletter {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
}

.footer-input {
    display: inline-flex;
    align-items: center;
    background: #111214;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 4px 6px;
}

.footer-input input {
    border: none;
    background: transparent;
    color: #ffffff;
    padding: 6px 10px;
    font-size: 12px;
    min-width: 180px;
}

.footer-input input:focus {
    outline: none;
}

.footer-input button {
    border: none;
    background: #ffffff;
    color: #0c0c0d;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.footer-top-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-legal span {
    white-space: nowrap;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-footer {
        padding: 32px 20px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col-map {
        align-items: center;
        text-align: center;
    }
    .footer-col-map h4 {
        align-self: center;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .footer-legal {
        justify-content: flex-start;
        text-align: left;
    }
    .footer-input input {
        min-width: 140px;
    }
}

.apparel-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.apparel-card.is-top {
    border: 2px solid var(--accent-yellow);
}

.apparel-media {
    background: #f2f2f2;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.apparel-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.apparel-meta {
    padding: 12px 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.apparel-meta h3 {
    margin: 0;
    font-size: 14px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.silk-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.silk-sample .apparel-media {
    aspect-ratio: 4 / 3;
}

.silk-sample .apparel-media img {
    object-fit: cover;
}

.view-count {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 4px;
}

@media (max-width: 720px) {
    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }
}
.catalog-section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#fabric-type .section-head {
    display: none;
}
.sidebar-card {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
}

.sidebar-card h3 {
    margin: 0;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 16px;
}

.sidebar-card p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}

.sidebar-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--panel);
    border: 1px solid var(--line);
    cursor: pointer;
}

.sidebar-link:hover {
    border-color: var(--accent);
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
}

.sidebar-link.is-disabled {
    opacity: 0.55;
    pointer-events: none;
}

.sidebar-link.is-hidden {
    display: none;
}

.sidebar-link:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.gate-controls {
    display: grid;
    gap: 8px;
}

.gate-input-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: center;
}

.gate-input {
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid var(--line);
    font-size: 13px;
    font-family: inherit;
    background: #fff;
    color: var(--ink);
    height: 36px;
    width: 100%;
}

.gate-input::placeholder {
    color: var(--muted);
}

.gate-input-row .sidebar-link {
    height: 36px;
    width: auto;
    justify-content: center;
    white-space: nowrap;
}

.gate-unlock {
    height: 36px;
    width: 100%;
    justify-content: center;
}

.gate-generate {
    height: 36px;
    width: 100%;
    justify-content: center;
}

.gate-status {
    min-height: 16px;
    font-size: 12px;
    color: var(--muted);
}

.gate-status.is-error {
    color: var(--accent-red);
}

.gate-status.is-success {
    color: var(--accent-dark);
}
.services-strip {
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.service-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    background: var(--panel);
    border-radius: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    align-items: start;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.service-icon.s-green {
    background: linear-gradient(135deg, #1f7a3f, #64c381);
}

.service-icon.s-yellow {
    background: linear-gradient(135deg, #f2c230, #ffe08b);
}

.service-icon.s-red {
    background: linear-gradient(135deg, #e45745, #f2a29b);
}

.service-icon.s-dark {
    background: linear-gradient(135deg, #1c2b36, #4a6a7a);
}

.service-card h3 {
    margin: 0;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    font-size: 16px;
}

.service-card p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.4;
}

/* Restore white backgrounds after services gradient update */
.btn-secondary {
    background: #fff;
}

.btn-ghost {
    background: transparent;
}

.chip {
    background: #fff;
    border: 1px solid var(--line);
}

.sidebar-top,
.sidebar-social,
.sidebar details,
.hero-card,
.hero-card-mini.alt,
.mock-card,
.apparel-card,
.sidebar-card {
    background: #fff;
}

.services-strip {
    position: relative;
    overflow: hidden;
}

.services-strip .section-head,
.services-strip .services-grid {
    position: relative;
    z-index: 1;
}

.services-decor {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}

.decor-box { display: none !important; }

.decor-circle { display: none !important; }
.top-banner {
    background: none;
    border-radius: 20px;
    height: 420px;
    padding: 0;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
    z-index: 0;
    backface-visibility: hidden;
    will-change: opacity;
}


.banner-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.28), rgba(242, 194, 48, 0.22), rgba(0, 0, 0, 0.42));
    z-index: 1;
}

.banner-slide.is-active {
    opacity: 1;
    z-index: 2;
}

.slide-text {
    max-width: 560px;
    position: absolute;
    left: 18px;
    top: 14px;
    z-index: 2;
    color: #f7f4ec;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.55);
    margin: 0;
}

.slide-text h2 {
    margin: 4px 0 10px;
    font-family: "Sora", "Noto Sans SC", sans-serif;
    font-size: 34px;
    letter-spacing: 0.02em;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
}

.slide-text p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    line-height: 1.55;
    font-size: 17px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.55);
}

.slide-tag {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}
.slide-tag::after {
    content: " · Image only for illustration purpose";
    margin-left: 10px;
    font-size: 11px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.78);
}

.slide-image {
    will-change: opacity;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    background: transparent;
    padding: 0;
    z-index: 0;
}

.slide-image.is-top {
    object-position: center 8%;
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 0;
    position: absolute;
    left: 24px;
    bottom: 18px;
    z-index: 3;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
}

.slider-dot.is-active {
    background: #ffffff;
}

.banner-note { display: none; }


@media (max-width: 900px) {
    .top-banner { height: 300px; }
    .banner-slider { height: 100%; }
    .slide-text { left: 16px; right: 16px; bottom: 18px; max-width: 90%; }
    .slider-dots { left: 18px; bottom: 14px; }
}
.services-strip { display: none !important; }
:root {
    --jj-green: #6fb253;
    --jj-dark: #a8a8a8;
    --jj-glass: rgba(255, 255, 255, 0.98);
    --bot-spacing: 24px;
}

#bot-window {
    position: fixed;
    bottom: 115px;
    right: 35px;
    width: 380px;
    height: 600px;
    max-height: 80vh;
    background: var(--jj-glass);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    animation: botFadeIn 0.4s ease-out;
}

@keyframes botFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#bot-header {
    background: var(--jj-dark);
    padding: 20px var(--bot-spacing);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bot-title {
    flex: 1;
}

#bot-close {
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

#bot-close:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.05);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: var(--jj-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--jj-green);
}

#bot-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#bot-header p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

#bot-body {
    flex: 1;
    padding: var(--bot-spacing);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #fcfcfc;
}

.msg-bubble {
    max-width: 85%;
    padding: 14px 20px;
    font-size: 14.5px;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.bot-bubble {
    background: #f0f0f0;
    color: #333;
    border-radius: 20px 20px 20px 5px;
    align-self: flex-start;
    white-space: pre-line;
}

.user-bubble {
    background: var(--jj-green);
    color: white;
    border-radius: 20px 20px 5px 20px;
    align-self: flex-end;
}

#bot-footer {
    padding: 20px var(--bot-spacing);
    background: white;
    border-top: 1px solid #f1f1f1;
}

#bot-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    padding: 14px 18px;
    border-radius: 35px;
    outline: none;
    font-size: 14px;
    background: #f9f9f9;
    transition: 0.3s;
}

#bot-input:focus {
    background: #fff;
    border-color: var(--jj-green);
    box-shadow: 0 5px 15px rgba(111, 178, 83, 0.15);
}

.typing {
    font-size: 12px;
    color: #aaa;
    padding: 0 var(--bot-spacing) 12px;
    display: none;
    font-style: italic;
}

.bot-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

#bot-send {
    border: none;
    border-radius: 28px;
    background: var(--jj-green);
    color: #fff;
    font-weight: 600;
    padding: 12px 16px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    white-space: nowrap;
}

#bot-send:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

#bot-send:active {
    transform: translateY(0);
}

.bot-suggestions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bot-chip {
    border: 1px solid #d9ead1;
    background: #f7fbf4;
    color: #355229;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.bot-chip:hover {
    background: #ecf6e7;
    transform: translateY(-1px);
}

#bot-body .bot-link {
    display: inline-block;
    margin-top: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--jj-green);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
}

#bot-body .bot-link:hover {
    opacity: 0.95;
}

@media (max-width: 768px) {
    #bot-window {
        width: calc(100vw - 20px);
        max-width: 400px;
        right: 10px;
        bottom: 85px;
    }

    .bot-input-row {
        gap: 8px;
    }

    #bot-send {
        padding: 11px 13px;
        font-size: 13px;
    }

    .bot-chip {
        font-size: 11px;
        padding: 7px 10px;
    }
}



.lang-toggle.is-active {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--accent-dark);
}


.lang-select {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    min-width: 150px;
}

.lang-select:focus {
    outline: 2px solid rgba(31, 122, 63, 0.22);
    outline-offset: 1px;
}

.skin-select {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    min-width: 130px;
}

.skin-select:focus {
    outline: 2px solid rgba(31, 122, 63, 0.22);
    outline-offset: 1px;
}

.translate-widget {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

.goog-te-banner-frame,
iframe.goog-te-banner-frame,
iframe[src*="translate.google.com"],
iframe[src*="translate.googleapis.com"],
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-te-menu-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    border: 0 !important;
}

body > .skiptranslate {
    height: auto !important;
    overflow: visible !important;
}

body.translated-ltr,
body.translated-rtl,
body {
    top: 0 !important;
    position: static !important;
    margin-top: 0 !important;
}

html {
    margin-top: 0 !important;
}

@media (max-width: 720px) {
    .header-actions {
        flex-wrap: wrap;
    }

    .lang-select {
        min-width: 128px;
    }

    .btn-link.is-hidden-mobile {
        display: none;
    }

    .sidebar-card.gate-card {
        display: none;
    }
}

@media (min-width: 721px) {
    .sidebar-overlay {
        display: none;
    }
}


.header-actions .lang-toggle {
    display: none;
}

#neck-list .apparel-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 14px;
}

#neck-list .apparel-card {
    border-radius: 14px;
}

#neck-list .apparel-meta {
    padding: 8px 10px 12px;
}

#neck-list .apparel-meta h3 {
    font-size: 12px;
}

.fabric-banner {
    width: 100%;
    height: 420px;
    max-width: none;
    margin: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, #f6f0e6, #efe7da, #f2eee5);
    background-size: 220% 220%;
    animation: fabricGlow 12s ease-in-out infinite;
}

@keyframes fabricGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.fabric-banner .slide-text {
    position: relative;
    left: auto;
    top: auto;
    max-width: none;
    width: 30%;
    order: 1;
    color: #111;
    text-shadow: none;
    padding: 22px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: transparent;
    box-shadow: none;
}

.fabric-banner .slide-text h2 {
    font-size: 45px;
    color: #111;
    text-shadow: none;
}

.fabric-banner .slide-text p {
    margin: 6px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: #1a1a1a;
}

.fabric-banner .banner-slide::before {
    background: none;
}

.fabric-banner .banner-slide {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    opacity: 0;
    transform: translateX(0);
    transition: none;
}

.fabric-banner .banner-slide.is-active,
.fabric-banner .banner-slide.is-entering,
.fabric-banner .banner-slide.is-exiting {
    opacity: 1;
}

.fabric-banner .banner-slide.is-entering {
    z-index: 3;
}

.fabric-banner .banner-slide.is-exiting {
    z-index: 2;
}

.fabric-banner .banner-slide.slide-in-right {
    animation: fabricSlideInFromRight 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.fabric-banner .banner-slide.slide-in-left {
    animation: fabricSlideInFromLeft 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.fabric-banner .banner-slide.slide-out-left {
    animation: fabricSlideOutToLeft 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.fabric-banner .banner-slide.slide-out-right {
    animation: fabricSlideOutToRight 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.top-banner:not(.fabric-banner) .banner-slide {
    transition: none;
}

.top-banner:not(.fabric-banner) .banner-slide.is-active,
.top-banner:not(.fabric-banner) .banner-slide.is-entering,
.top-banner:not(.fabric-banner) .banner-slide.is-exiting {
    opacity: 1;
}

.top-banner:not(.fabric-banner) .banner-slide.is-entering {
    z-index: 3;
}

.top-banner:not(.fabric-banner) .banner-slide.is-exiting {
    z-index: 2;
}

.top-banner:not(.fabric-banner) .banner-slide.slide-in-right {
    animation: fabricSlideInFromRight 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.top-banner:not(.fabric-banner) .banner-slide.slide-in-left {
    animation: fabricSlideInFromLeft 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.top-banner:not(.fabric-banner) .banner-slide.slide-out-left {
    animation: fabricSlideOutToLeft 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.top-banner:not(.fabric-banner) .banner-slide.slide-out-right {
    animation: fabricSlideOutToRight 3s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes fabricSlideInFromRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes fabricSlideInFromLeft {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

@keyframes fabricSlideOutToLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

@keyframes fabricSlideOutToRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

.fabric-banner .slide-image {
    position: relative;
    object-fit: cover;
    object-position: 100% center;
    width: 70%;
    height: 100%;
    inset: auto;
    flex: 0 0 auto;
    order: 2;
    display: block;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.fabric-banner .slide-tag {
    font-size: 12px;
    letter-spacing: 0.16em;
    color: #111;
}

.fabric-banner .slide-tag::after {
    content: "";
}

.fabric-slider {
    touch-action: pan-y;
    user-select: none;
    cursor: pointer;
}

.top-banner:not(.fabric-banner) .banner-slider {
    user-select: none;
    cursor: pointer;
    touch-action: pan-y;
}

.fabric-banner .slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(0, 0, 0, 0.3);
}

.fabric-banner .slider-dot.is-active {
    background: #111;
}

.fabric-banner .slider-dots {
    left: 22px;
    bottom: 16px;
    gap: 10px;
}


@media (max-width: 720px) {
    .fabric-banner {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
    }
    .fabric-banner .banner-slide {
        position: absolute;
        inset: 0;
        display: block;
    }
    .fabric-banner .slide-image {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        left: 0;
        right: 0;
        object-position: 99% center;
        object-fit: cover;
        background: transparent;
        z-index: 0;
    }
    .fabric-banner .slide-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: auto;
        padding: 18px 18px 14px;
        color: #ffffff;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
        z-index: 1;
    }
    .fabric-banner .slide-text h2 {
        font-size: 22px;
        color: #ffffff;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    .fabric-banner .slide-text p {
        color: rgba(255, 255, 255, 0.92);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
        max-width: 92%;
    }
    .fabric-banner .slide-tag {
        color: rgba(255, 255, 255, 0.85);
        text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
    }
    .fabric-banner .slider-dots {
        left: 50%;
        transform: translateX(-50%);
        bottom: 12px;
        z-index: 2;
    }
    .fabric-banner .slider-dot {
        background: rgba(255, 255, 255, 0.45);
    }
    .fabric-banner .slider-dot.is-active {
        background: #ffffff;
    }
}

@media (min-width: 1200px) {
    #neck-list .apparel-grid {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
}

.premium-list .apparel-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 240px));
    gap: 18px;
    justify-content: flex-start;
}

.premium-list .premium-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.premium-list .apparel-card {
    border-radius: 18px;
}

.premium-list .apparel-meta {
    min-height: 64px;
    align-items: flex-end;
    background: #0c0c0d;
    margin-top: auto;
}

.premium-list .apparel-meta h3 {
    color: #ffffff;
    line-height: 1.2;
    min-height: 3.6em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.premium-list .apparel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-list .apparel-media {
    flex: 1;
}

@media (max-width: 720px) {
    .premium-list .apparel-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        justify-content: stretch;
    }

    .premium-list .apparel-media {
        aspect-ratio: 1 / 1;
    }

    .premium-list .apparel-media img {
        object-fit: contain;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .premium-list .apparel-grid {
        grid-template-columns: 1fr;
    }
}

.oren-catalog .catalog-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.oren-catalog .catalog-toolbar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.oren-catalog .catalog-poster {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 8px 0 6px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.oren-catalog .catalog-poster img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.oren-catalog .catalog-poster img:last-child {
    border-right: none;
}

@media (max-width: 900px) {
    .oren-catalog .catalog-poster {
        grid-template-columns: 1fr;
    }

    .oren-catalog .catalog-poster img {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .oren-catalog .catalog-poster img:last-child {
        border-bottom: none;
    }
}

.oren-catalog .catalog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.oren-catalog .catalog-filters .chip {
    background: #ffffff;
    border: 1px solid var(--line);
}

.oren-catalog .catalog-filters .chip.is-active {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.oren-catalog .catalog-groups {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.oren-catalog .catalog-group-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
}

.oren-catalog .catalog-group-head h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.oren-catalog .catalog-group-head span {
    display: none;
}

.oren-catalog .catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.oren-catalog .catalog-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.oren-catalog .catalog-media {
    background: #f5f4f1;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oren-catalog .catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: zoom-in;
}

.oren-catalog .catalog-meta {
    padding: 10px 14px 12px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    display: none;
}

.oren-catalog .catalog-code {
    font-weight: 700;
    color: #1f1f1f;
}

.catalog-card.is-hidden {
    display: none;
}

.catalog-group.is-hidden {
    display: none;
}

.oren-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 9, 0.78);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 2000;
}

#fontLightbox {
    flex-direction: column;
}

#fontLightbox .lightbox-caption-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    width: min(92vw, 980px);
}

#fontLightbox .lightbox-nav {
    position: static;
    transform: none;
}

#fontLightbox .lightbox-caption {
    margin-top: 0;
    justify-self: center;
}

.oren-lightbox.is-open {
    display: flex;
}

.oren-lightbox img {
    max-width: min(92vw, 980px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.oren-lightbox .lightbox-caption {
    margin-top: 14px;
    background: #ffffff;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.oren-lightbox .lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: 24px;
    cursor: pointer;
    display: grid;
    place-items: center;
}

.oren-lightbox .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.oren-lightbox .lightbox-nav:hover:not(.is-disabled) {
    transform: translateY(-50%) scale(1.05);
}

.oren-lightbox .lightbox-prev {
    left: max(12px, calc(50% - min(46vw, 490px) + 8px));
}

.oren-lightbox .lightbox-next {
    right: max(12px, calc(50% - min(46vw, 490px) + 8px));
}

.oren-lightbox .lightbox-nav.is-disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

.thread-hero {
    grid-template-columns: 1fr;
    padding: 24px 26px;
}

.thread-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.thread-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: auto 1fr;
    animation: fadeUp 0.45s ease forwards;
    opacity: 0;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.thread-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(18, 28, 22, 0.14);
}

.thread-swatch {
    height: 120px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.thread-info {
    padding: 12px 14px 14px;
    display: grid;
    gap: 4px;
}

.thread-code {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.thread-subtitle {
    font-size: 12px;
    color: var(--muted);
}

.thread-name {
    margin: 0;
    font-size: 15px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.thread-empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
    padding: 10px 0;
}

.thread-lightbox .thread-lightbox-panel {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    width: min(92vw, 920px);
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(240px, 1.2fr);
    overflow: hidden;
}

.thread-lightbox .thread-lightbox-swatch {
    min-height: 320px;
}

.thread-lightbox .thread-lightbox-info {
    padding: 22px 24px;
    display: grid;
    gap: 8px;
    align-content: center;
}

.thread-lightbox .thread-lightbox-code {
    font-size: 16px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
}

.thread-lightbox .thread-lightbox-sub {
    font-size: 17px;
    color: var(--muted);
}

.thread-lightbox .thread-lightbox-name {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.thread-lightbox .thread-lightbox-hex {
    font-size: 18px;
    color: var(--accent-dark);
    font-weight: 700;
}

.thread-lightbox .thread-lightbox-rgb,
.thread-lightbox .thread-lightbox-cmyk {
    font-size: 18px;
    color: var(--accent-dark);
    font-weight: 600;
}

@media (max-width: 720px) {
    .thread-lightbox .thread-lightbox-panel {
        grid-template-columns: 1fr;
    }
    .thread-lightbox .thread-lightbox-swatch {
        min-height: 220px;
    }
}

.font-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.font-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: zoom-in;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.font-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(20, 30, 25, 0.12);
}

.font-thumb {
    background: #f5f4f1;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.font-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.font-name {
    margin: 0;
    padding: 10px 12px 12px;
    text-align: center;
    font-size: 14px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
    color: var(--ink);
}

@media (max-width: 720px) {
    .thread-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .font-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
}


.quote-form {
    background: var(--card);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.quote-field {
    display: grid;
    gap: 8px;
}

.quote-field span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    font-weight: 700;
}

.quote-field select,
.quote-field input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e2ded5;
    background: var(--panel);
    font-size: 13px;
    font-family: inherit;
}

.quote-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.quote-summary {
    display: grid;
    gap: 6px;
    background: linear-gradient(120deg, rgba(31, 122, 63, 0.08), rgba(242, 194, 48, 0.08), rgba(228, 87, 69, 0.08));
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 12px 16px;
}

.quote-total {
    font-size: 16px;
    font-weight: 700;
}

.quote-breakdown {
    font-size: 12px;
    color: var(--muted);
}

.quote-note {
    font-size: 11px;
    color: rgba(80, 94, 105, 0.75);
}

.silk-panel {
    background: var(--card);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 12px;
}

.silk-panel-head h3 {
    margin: 0;
    font-size: 16px;
    font-family: 'Sora', 'Noto Sans SC', sans-serif;
}

.silk-panel-head p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.silk-table-wrap {
    overflow-x: auto;
}

.silk-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 520px;
}

.silk-table th,
.silk-table td {
    border: 1px solid #e2e6ee;
    padding: 8px 10px;
    text-align: center;
    white-space: nowrap;
}

.silk-table thead th {
    background: #f4f7fb;
    font-weight: 700;
}

.silk-table tbody th {
    background: #f9fafc;
    text-align: left;
    font-weight: 700;
}

.silk-printing-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.silk-figure-stack {
    display: grid;
    gap: 16px;
}

.silk-figure {
    margin: 0;
    background: var(--card);
    border-radius: 18px;
    padding: 12px;
    box-shadow: var(--shadow);
}

.silk-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}
