.bts-wrap{
            margin:20px 0;
            font-family:'Poppins';
        }

        .bts-buttons{
            display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
        }

        .bts-btn{
            appearance:none;
            font-family:'Poppins';
            border:1px solid #d8d8d8;
            background:#fff;
            color:#222;
            padding:10px 16px;
            border-radius:999px;
            cursor:pointer;
            font-size:12px;
            font-weight:500;
            line-height:1.2;
            transition:all .2s ease;
            box-shadow:0 2px 10px rgba(0,0,0,.04);
        }

        .bts-btn:hover,
        .bts-btn.is-active{
            background:#b37d83;
            color:#fff;
            border-color:#b37d83;
            transform:translateY(-1px);
        }

        .bts-overlay{
            position:fixed;
            inset:0;
            background:rgba(0,0,0,.45);
            opacity:0;
            visibility:hidden;
            transition:all .25s ease;
            z-index:99998;
        }

        .bts-overlay.active{
            opacity:1;
            visibility:visible;
        }

        .bts-sidebar{
            position:fixed;
            top:0;
            right:0;
            width:min(980px, 96vw);
            height:100vh;
            background:#fff;
            box-shadow:-10px 0 40px rgba(0,0,0,.18);
            transform:translateX(100%);
            transition:transform .28s ease;
            z-index:99999;
            display:flex;
            flex-direction:column;
        }

        .bts-sidebar.active{
            transform:translateX(0);
        }

        .bts-header{
            padding:20px 20px 16px;
            border-bottom:1px solid #eee;
            display:flex;
            align-items:flex-start;
            justify-content:space-between;
            gap:10px;
        }

        .bts-title-wrap{
            min-width:0;
        }

        .bts-title{
            margin:0;
            font-size:22px;
            line-height:1.1;
            font-weight:700;
            color:#111;
        }

        .bts-subtitle{
            margin:6px 0 0;
            font-size:13px;
            color:#777;
        }

        .bts-close{
            appearance:none;
            border:none;
            background:#f4f4f4;
            color:#111;
            width:38px;
            height:38px;
            border-radius:50%;
            cursor:pointer;
            font-size:20px;
            line-height:1;
            flex:0 0 auto;
        }

        .bts-body{
            flex:1;
            min-height:0;
            display:grid;
            grid-template-columns:220px 1fr;
        }

        .bts-tabs{
            border-right:1px solid #eee;
            background:#fafafa;
            overflow:auto;
            padding:14px;
        }

        .bts-tab{
            width:100%;
            font-family:'Poppins';
            display:block;
            text-align:left;
            appearance:none;
            border:1px solid #e3e3e3;
            background:#fff;
            color:#222;
            border-radius:14px;
            padding:12px 14px;
            margin:0 0 10px;
            cursor:pointer;
            font-size:12px;
            font-weight:500;
            transition:all .2s ease;
        }

        .bts-tab:hover,
        .bts-tab.active{
            background:#b37d83;
            color:#fff;
            border-color:#b37d83;
        }

        .bts-content{
            padding:20px;
            overflow:auto;
        }

        .bts-grid{
            display:grid;
            grid-template-columns:repeat(4, minmax(0,1fr));
            gap:14px;
        }

        .bts-color-card{
            border:1px solid #ececec;
            border-radius:16px;
            overflow:hidden;
            background:#fff;
            box-shadow:0 3px 12px rgba(0,0,0,.04);
        }

        .bts-thumb-btn{
            display:block;
            width:100%;
            border:none;
            background:none;
            padding:0;
            margin:0;
            cursor:pointer;
        }

        .bts-thumb{
            display:block;
            width:100%;
            height:120px !important;
            object-fit:cover;
            border-bottom:1px solid #ececec;
            background:#f7f7f7;
            max-height:120px !important;
        }

        .bts-color-name{
            padding:12px 12px 14px;
            font-size:14px;
            font-weight:600;
            color:#222;
            text-align:center;
        }

        .bts-empty{
            padding:14px 16px;
            border:1px dashed #ddd;
            border-radius:14px;
            background:#fafafa;
            color:#666;
            font-size:14px;
        }

        .bts-lightbox{
            position:fixed;
            inset:0;
            background:rgba(0,0,0,.82);
            display:flex;
            align-items:center;
            justify-content:center;
            padding:24px;
            opacity:0;
            visibility:hidden;
            transition:all .2s ease;
            z-index:100001;
        }

        .bts-lightbox.active{
            opacity:1;
            visibility:visible;
        }

        .bts-lightbox-inner{
            position:relative;
            width:min(1200px, 94vw);
            max-width:94vw;
            max-height:90vh;
            display:flex;
            align-items:center;
            justify-content:center;
        }

        .bts-lightbox-img{
            display:block;
            max-width:94vw;
            max-height:78vh;
            width:auto;
            height:auto;
            border-radius:12px;
            box-shadow:0 10px 40px rgba(0,0,0,.35);
            background:#fff;
        }

        .bts-lightbox-close{
            position:absolute;
            top:-14px;
            right:-14px;
            width:42px;
            height:42px;
            border:none;
            border-radius:50%;
            cursor:pointer;
            background:#fff;
            color:#111;
            font-size:22px;
            box-shadow:0 6px 20px rgba(0,0,0,.25);
            z-index:3;
        }
        h4 {
        font-weight:600 !important;
        }
        .bts-lightbox-nav{
            position:absolute;
            top:50%;
            transform:translateY(-50%);
            width:48px;
            height:48px;
            border:none;
            border-radius:50%;
            cursor:pointer;
            background:rgba(255,255,255,.95);
            color:#111;
            font-size:24px;
            line-height:1;
            box-shadow:0 6px 20px rgba(0,0,0,.25);
            z-index:3;
        }

        .bts-lightbox-prev{
            left:-18px;
        }

        .bts-lightbox-next{
            right:-18px;
        }

        .bts-lightbox-meta{
            position:absolute;
            left:50%;
            bottom:20px;
            transform:translateX(-50%);
            width:min(300px, 90vw);
            text-align:center;
            color:#fff;
            z-index:3;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            padding: 13px;
        }

        .bts-lightbox-material{
            font-size:18px;
            font-weight:700;
            line-height:1.2;
            margin-bottom:0px;
        }

        .bts-lightbox-color{
            font-size:14px;
            opacity:.92;
            margin-bottom:0px;
        }

        .bts-lightbox-count{
            font-size:13px;
            opacity:.8;
        }

        @media (max-width: 900px){
            .bts-body{
                grid-template-columns:1fr;
            }

            .bts-tabs{
                border-right:none;
                border-bottom:1px solid #eee;
                display:flex;
                gap:10px;
                overflow:auto;
                white-space:nowrap;
            }

            .bts-tab{
                width:auto;
                min-width:max-content;
                margin:0;
            }

            .bts-grid{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }

            .bts-lightbox-prev{
                left:6px;
            }

            .bts-lightbox-next{
                right:6px;
            }
        }

        @media (max-width: 560px){
            .bts-grid{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }

            .bts-thumb{
                height:200px;
            }

            .bts-lightbox{
                padding:16px;
            }

            .bts-lightbox-img{
                max-width:92vw;
                max-height:70vh;
            }

            .bts-lightbox-meta{
                bottom:-74px;
            }
        }
                    .bts-badges{
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:18px;
            align-items:center;
            margin:0;
        }

        .bts-badge{
            display:flex;
            align-items:center;
            justify-content:center;
            border:1px solid #ececec;
            border-radius:16px;
            background:#fff;
            min-height:120px;
            padding:18px;
            
        }

        .bts-badge img{
            display:block;
            max-width:100%;
            max-height:60px;
            width:auto;
            height:auto;
            object-fit:contain;
        }

        @media (max-width: 767px){
            .bts-badges{
                grid-template-columns:repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 480px){
            .bts-badges{
                grid-template-columns:1fr;
            }
        }
                    .bts-bases{
            display:grid;
            grid-template-columns:repeat(3, minmax(0, 1fr));
            gap:18px;
            margin:0 0 20px;
        }

        

        .bts-base-title{
            margin:0;
            font-size:12px !important;
            font-weight:500 !important;
            line-height:1.2;
            
            background: #f5f5f5;
    color: #333333;
    border-color: #b37d83;
    transform: translateY(-1px);
    padding: 10px 16px;
    border-radius: 999px;
    text-align:center;
    
    
    transition: all .2s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
        }

        .bts-base-subtypes{
            margin:12px 0 0;
            padding:0;
            list-style:none;
            display:flex;
            flex-wrap:wrap;
            gap:8px;
        }

        .bts-base-subtypes li{
            display:inline-flex;
            align-items:center;
            justify-content:center;
            padding:7px 12px;
            border-radius:999px;
            background:#f5f5f5;
            border:1px solid #e6e6e6;
            font-size:13px;
            font-weight:600;
            color:#444;
        }

        @media (max-width: 900px){
            .bts-bases{
                grid-template-columns:repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px){
            .bts-bases{
                grid-template-columns:1fr;
            }
        }

                .bts-showcase{
            margin:20px 0;
            font-family:'Poppins';
        }

        .bts-showcase-header{
            margin:0 0 18px;
        }

        .bts-showcase-title{
            margin:0;
            font-size:28px;
            line-height:1.1;
            font-weight:600;
            color:#111;
        }

        .bts-showcase-subtitle{
            margin:8px 0 0;
            font-size:14px;
            color:#666;
        }

        .bts-showcase-tabs{
            display:grid;
            grid-template-columns:repeat(4, minmax(0, 1fr));
            gap:10px;
            margin:0 0 24px;
        }

        .bts-showcase-tab{
            appearance:none;
            font-family:'Poppins';
            border:1px solid #d8d8d8;
            background:#fff;
            color:#222;
            padding:10px 16px;
            border-radius:999px;
            cursor:pointer;
            font-size:12px;
            font-weight:500;
            line-height:1.2;
            transition:all .2s ease;
            box-shadow:0 2px 10px rgba(0,0,0,.04);
        }

        .bts-showcase-tab:hover,
        .bts-showcase-tab.is-active{
            background:#b37d83;
            color:#fff;
            border-color:#b37d83;
            transform:translateY(-1px);
        }

        .bts-showcase-grid{
            display:grid;
            grid-template-columns:repeat(4, minmax(0,1fr));
            gap:14px;
        }

        .bts-showcase-card{
            border:1px solid #ececec;
            border-radius:16px;
            overflow:hidden;
            background:#fff;
            box-shadow:0 3px 12px rgba(0,0,0,.04);
        }

        .bts-showcase-thumb-btn{
            display:block;
            width:100%;
            border:none;
            background:none;
            padding:0;
            margin:0;
            cursor:pointer;
        }

        .bts-showcase-thumb{
            display:block;
            width:100%;
            height:180px !important;
            object-fit:cover;
            border-bottom:1px solid #ececec;
            background:#f7f7f7;
        }

        .bts-showcase-color-name{
            padding:12px 12px 14px;
            font-size:14px;
            font-weight:600;
            color:#222;
            text-align:center;
        }

        @media (max-width: 1024px){
            .bts-showcase-tabs{
                grid-template-columns:repeat(3, minmax(0,1fr));
            }
        }

        @media (max-width: 900px){
            .bts-showcase-grid{
                grid-template-columns:repeat(3, minmax(0,1fr));
            }
        }

        @media (max-width: 767px){
            .bts-showcase-tabs{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }

            .bts-showcase-grid{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }
        }

        @media (max-width: 480px){
            .bts-showcase-tabs{
                grid-template-columns:1fr 1fr;
            }

            .bts-showcase-grid{
                grid-template-columns:repeat(2, minmax(0,1fr));
            }
        }
            .bts-showcase{
    margin:20px 0;
    font-family:'Poppins';
}

.bts-showcase-layout{
    display:grid;
    grid-template-columns:220px 1fr;
    gap:20px;
    align-items:start;
}

.bts-showcase-sidebar{
    border-right:1px solid #eee;
    background:#fafafa;
    padding:14px;
    border-radius:16px;
}

.bts-showcase-tabs{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:0;
}

.bts-showcase-tab{
    width:100%;
    font-family:'Poppins';
    display:block;
    text-align:left;
    appearance:none;
    border:1px solid #e3e3e3;
    background:#fff;
    color:#222;
    border-radius:14px;
    padding:12px 14px;
    cursor:pointer;
    font-size:12px;
    font-weight:500;
    transition:all .2s ease;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
}

.bts-showcase-tab:hover,
.bts-showcase-tab.is-active{
    background:#b37d83;
    color:#fff;
    border-color:#b37d83;
    transform:translateY(-1px);
}

.bts-showcase-main{
    min-width:0;
}

.bts-showcase-header{
    margin:0 0 18px;
}

.bts-showcase-title{
    margin:0;
    font-size:28px;
    line-height:1.1;
    font-weight:600;
    color:#111;
}

.bts-showcase-subtitle{
    margin:8px 0 0;
    font-size:14px;
    color:#666;
}

.bts-showcase-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0,1fr));
    gap:14px;
}

.bts-showcase-card{
    border:1px solid #ececec;
    border-radius:16px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.04);
}

.bts-showcase-thumb-btn{
    display:block;
    width:100%;
    border:none;
    background:none;
    padding:0;
    margin:0;
    cursor:pointer;
}

.bts-showcase-thumb{
    display:block;
    width:100%;
    height:180px !important;
    object-fit:cover;
    border-bottom:1px solid #ececec;
    background:#f7f7f7;
}

.bts-showcase-color-name{
    padding:12px 12px 14px;
    font-size:14px;
    font-weight:600;
    color:#222;
    text-align:center;
}

@media (max-width: 900px){
    .bts-showcase-layout{
        grid-template-columns:1fr;
    }

    .bts-showcase-sidebar{
        border-right:none;
        border-bottom:1px solid #eee;
    }

    .bts-showcase-tabs{
        display:grid;
        grid-template-columns:repeat(2, minmax(0,1fr));
    }

    .bts-showcase-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 560px){
    .bts-showcase-tabs{
        grid-template-columns:1fr 1fr;
    }

    .bts-showcase-grid{
        grid-template-columns:repeat(2, minmax(0,1fr));
    }
}