/* 1. 材质图容器布局 */
.bss-swatch-container {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin: 15px 0;
}

/* 2. 隐藏原生的丑陋单选框 */
.bss-swatch-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* 3. 材质图样式：圆形切片更有赛车质感 */
.bss-swatch-item img {
    width: 65px !important;
    height: 65px !important;
    border-radius: 50%;
    border: 2px solid #e5e5e5;
    padding: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    object-fit: cover;
}

/* 4. 选中状态：ApexSteer 专属品牌橙色边框 */
.bss-swatch-item input[type="radio"]:checked + label img {
    border-color: #ff5500; /* 橙色边框 */
    transform: scale(1.1); /* 微微放大 */
    box-shadow: 0 0 12px rgba(255, 85, 0, 0.4);
}

/* 5. 鼠标悬停效果 */
.bss-swatch-item img:hover {
    border-color: #ff5500;
}