/* 公共布局样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* 面包屑导航统一样式 */
.breadcrumb {
    padding: 0.75rem 1rem;
    background-color: var(--light-bg-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    padding: 0 0.5rem;
}

/* 按钮系统 */
.btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all 0.2s;
}

.btn-group .btn {
    margin-right: var(--space-xs);
}

.btn:last-child {
    margin-right: 0;
}

/* 表单统一样式 */
.form-control, .form-select {
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.form-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* 卡片统一样式 */
.card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.card-body {
    padding: var(--space-lg);
}

/* 间距系统 */
:root {
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-xxl: 3rem;
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    
    --border-color: #dee2e6;
    --light-bg-color: #f8f9fa;
    --text-color: #212529;
    --text-muted: #6c757d;
}

/* 从list.html迁移的通用样式 */
.filter-section {
    background-color: var(--light-bg-color);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    margin-bottom: var(--space-lg);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.no-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-bg-color);
    color: var(--text-muted);
}

.badge-section {
    min-height: 28px;
}

/* 卡片悬停效果 */
.clothing-card {
    transition: transform 0.2s;
    height: 100%;
}

.clothing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
