/* 영카트5 B2B 상품 리스트 전용 CSS */
.shop-category-nav {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.shop-category-nav .cate-item {
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-block;
    transition: all 0.2s;
}

.shop-category-nav .cate-item:hover,
.shop-category-nav .cate-item.active {
    background-color: var(--theme-color);
    color: #ffffff;
    font-weight: 700;
}

.filter-sidebar {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
}

.filter-group {
    border-bottom: 1px dashed #e9ecef;
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.filter-group:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.product-card-b2b {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-b2b:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.product-card-b2b .img-box {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f8f9fa;
    margin-bottom: 12px;
    position: relative;
}

.product-card-b2b .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-b2b:hover .img-box img {
    transform: scale(1.05);
}

.badge-b2b-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--theme-color);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    z-index: 2;
}

.shop-pagination .pagination {
    margin-bottom: 0;
    gap: 4px;
}

.shop-pagination .page-link {
    color: #495057;
    border-radius: 8px !important;
    border: 1px solid #e9ecef;
    padding: 8px 14px;
    font-size: 0.88rem;
}

.shop-pagination .page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #ffffff;
}