
.style-selector {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
    flex-wrap: nowrap;
}

.style-selector-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-right: 8px;
    white-space: nowrap;
}

/* Radio Label 容器 */
.style-radio {
    position: relative;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

/* 隐藏原始radio */
.style-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Hover效果 */
.style-radio:hover {
    border-color: #667eea;
    transform: scale(1.05);
}

/* 选中状态 */
.style-radio:has(input[type="radio"]:checked) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
    transform: scale(1.05);
}

/* 响应式设计 - 小屏幕允许换行 */
@media (max-width: 768px) {
    .style-selector {
        flex-wrap: wrap;
    }
}
